nop: increase logging if more than one NOP is in flight

Signed-off-by: Peter Lieven <pl@kamp.de>
This commit is contained in:
Peter Lieven
2015-03-26 16:34:35 +01:00
parent 33c301335b
commit 0962150193

View File

@@ -83,7 +83,9 @@ iscsi_nop_out_async(struct iscsi_context *iscsi, iscsi_command_cb cb,
} }
iscsi->nops_in_flight++; iscsi->nops_in_flight++;
ISCSI_LOG(iscsi, 6, "NOP Out Send (nops_in_flight: %d)", iscsi->nops_in_flight); ISCSI_LOG(iscsi, (iscsi->nops_in_flight > 1) ? 1 : 6,
"NOP Out Send (nops_in_flight: %d, pdu->cmdsn %08x, maxcmdsn %08x)",
iscsi->nops_in_flight, pdu->cmdsn, iscsi->maxcmdsn);
return 0; return 0;
} }
@@ -137,9 +139,9 @@ iscsi_process_nop_out_reply(struct iscsi_context *iscsi, struct iscsi_pdu *pdu,
{ {
struct iscsi_data data; struct iscsi_data data;
iscsi->nops_in_flight = 0; ISCSI_LOG(iscsi, (iscsi->nops_in_flight > 1) ? 1 : 6, "NOP Out Reply received");
ISCSI_LOG(iscsi, 6, "NOP Out Reply received"); iscsi->nops_in_flight = 0;
if (pdu->callback == NULL) { if (pdu->callback == NULL) {
return 0; return 0;