]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
isci: Manage the IREQ_NO_AUTO_FREE_TAG under scic_lock.
authorJeff Skirvin <jeffrey.d.skirvin@intel.com>
Tue, 13 Mar 2012 00:29:51 +0000 (17:29 -0700)
committerDan Williams <dan.j.williams@intel.com>
Thu, 17 May 2012 21:33:44 +0000 (14:33 -0700)
Since there is a possibilty of a timeout waiting for the RNC suspension,
handle the exit case from the task termination under scic_lock, and leave
the tag allocated if the termination timed-out.

Signed-off-by: Jeff Skirvin <jeffrey.d.skirvin@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
drivers/scsi/isci/remote_device.c

index 48765aa8432851f8bb38941af53ccc97832d191d..a3a6487264ea5ee69a5f3c1bc68b24b4da7e72b5 100644 (file)
@@ -243,8 +243,11 @@ enum sci_status isci_remote_device_terminate_requests(
                                         idev->rnc.destination_state,
                                         ireq, ireq->flags);
                        }
+                       spin_lock_irqsave(&ihost->scic_lock, flags);
                        clear_bit(IREQ_NO_AUTO_FREE_TAG, &ireq->flags);
-                       isci_free_tag(ihost, ireq->io_tag);
+                       if (!test_bit(IREQ_ABORT_PATH_ACTIVE, &ireq->flags))
+                               isci_free_tag(ihost, ireq->io_tag);
+                       spin_unlock_irqrestore(&ihost->scic_lock, flags);
                } else {
                        /* Terminate all TCs. */
                        sci_remote_device_terminate_requests(idev);