From: Nicholas Bellinger <nab@xxxxxxxxxxxxxxx> This patch fixes a bug in iscsi_target_tx_thread() where 'map_sg' was not being cleared after ISTATE_SEND_DATAIN and causing iscsit_fe_sendpage_sg() to be called for non ISTATE_SEND_DATAIN + non ISCSI_OP_SCSI_CMD payloads. Signed-off-by: Nicholas Bellinger <nab@xxxxxxxxxxxxxxx> --- drivers/target/iscsi/iscsi_target.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/target/iscsi/iscsi_target.c b/drivers/target/iscsi/iscsi_target.c index 5a14318..8dedfbf 100644 --- a/drivers/target/iscsi/iscsi_target.c +++ b/drivers/target/iscsi/iscsi_target.c @@ -3743,6 +3743,7 @@ check_rsp_state: goto transport_err; } } + map_sg = 0; iscsit_unmap_iovec(cmd); spin_lock_bh(&cmd->istate_lock); -- 1.7.2.5 -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html