Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=96809f1b15eddae2325b2ab78e6f931edc969074
Commit:     96809f1b15eddae2325b2ab78e6f931edc969074
Parent:     604cd794de3094ccf8a9c149f299237a642ba9b5
Author:     Mike Christie <[EMAIL PROTECTED]>
AuthorDate: Wed Aug 15 01:38:29 2007 -0500
Committer:  James Bottomley <[EMAIL PROTECTED]>
CommitDate: Wed Aug 15 13:08:14 2007 -0500

    [SCSI] libiscsi: fix null ptr regression when aborting a command with data 
to transfer
    
    We do not want to send data if we are aborting a task. There is
    a check in iscsi_xmit_ctask, but right before calling this we overwrite
    the state so we always go right past the test. Sending data causes problems
    because when we clean up from a successful abort the LLD assumes that
    the task is not running.
    
    Signed-off-by: Mike Christie <[EMAIL PROTECTED]>
    Signed-off-by: James Bottomley <[EMAIL PROTECTED]>
---
 drivers/scsi/libiscsi.c |   11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/drivers/scsi/libiscsi.c b/drivers/scsi/libiscsi.c
index 5606d1e..f5915d4 100644
--- a/drivers/scsi/libiscsi.c
+++ b/drivers/scsi/libiscsi.c
@@ -737,12 +737,19 @@ check_mgmt:
                 */
                conn->ctask = list_entry(conn->xmitqueue.next,
                                         struct iscsi_cmd_task, running);
-               if (conn->ctask->state == ISCSI_TASK_PENDING) {
+               switch (conn->ctask->state) {
+               case ISCSI_TASK_ABORTING:
+                       break;
+               case ISCSI_TASK_PENDING:
                        iscsi_prep_scsi_cmd_pdu(conn->ctask);
                        conn->session->tt->init_cmd_task(conn->ctask);
+                       /* fall through */
+               default:
+                       conn->ctask->state = ISCSI_TASK_RUNNING;
+                       break;
                }
-               conn->ctask->state = ISCSI_TASK_RUNNING;
                list_move_tail(conn->xmitqueue.next, &conn->run_list);
+
                rc = iscsi_xmit_ctask(conn);
                if (rc)
                        goto again;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to