This is a note to let you know that I've just added the patch titled

    [SCSI] qla2xxx: Fix hang during driver unload when vport is active.

to the 2.6.39-stable tree which can be found at:
    
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     qla2xxx-fix-hang-during-driver-unload-when-vport-is-active.patch
and it can be found in the queue-2.6.39 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.


>From 43ebf16d762b082663976b679b813e1b546548d1 Mon Sep 17 00:00:00 2001
From: Arun Easi <[email protected]>
Date: Tue, 10 May 2011 11:18:16 -0700
Subject: [SCSI] qla2xxx: Fix hang during driver unload when vport is active.

From: Arun Easi <[email protected]>

commit 43ebf16d762b082663976b679b813e1b546548d1 upstream.

Bumping ref count during fc_vport_terminate() was the cause. vport
delete would wait for ref count to drop to zero and that would never
happen.

Signed-off-by: Arun Easi <[email protected]>
Signed-off-by: Madhuranath Iyengar <[email protected]>
Signed-off-by: James Bottomley <[email protected]>
Signed-off-by: James Bottomley <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>

---
 drivers/scsi/qla2xxx/qla_os.c |   25 +++++++++++++++----------
 1 file changed, 15 insertions(+), 10 deletions(-)

--- a/drivers/scsi/qla2xxx/qla_os.c
+++ b/drivers/scsi/qla2xxx/qla_os.c
@@ -2360,21 +2360,26 @@ qla2x00_remove_one(struct pci_dev *pdev)
        base_vha = pci_get_drvdata(pdev);
        ha = base_vha->hw;
 
-       spin_lock_irqsave(&ha->vport_slock, flags);
-       list_for_each_entry(vha, &ha->vp_list, list) {
-               atomic_inc(&vha->vref_count);
+       mutex_lock(&ha->vport_lock);
+       while (ha->cur_vport_count) {
+               struct Scsi_Host *scsi_host;
 
-               if (vha->fc_vport) {
-                       spin_unlock_irqrestore(&ha->vport_slock, flags);
+               spin_lock_irqsave(&ha->vport_slock, flags);
 
-                       fc_vport_terminate(vha->fc_vport);
+               BUG_ON(base_vha->list.next == &ha->vp_list);
+               /* This assumes first entry in ha->vp_list is always base vha */
+               vha = list_first_entry(&base_vha->list, scsi_qla_host_t, list);
+               scsi_host = scsi_host_get(vha->host);
 
-                       spin_lock_irqsave(&ha->vport_slock, flags);
-               }
+               spin_unlock_irqrestore(&ha->vport_slock, flags);
+               mutex_unlock(&ha->vport_lock);
 
-               atomic_dec(&vha->vref_count);
+               fc_vport_terminate(vha->fc_vport);
+               scsi_host_put(vha->host);
+
+               mutex_lock(&ha->vport_lock);
        }
-       spin_unlock_irqrestore(&ha->vport_slock, flags);
+       mutex_unlock(&ha->vport_lock);
 
        set_bit(UNLOADING, &base_vha->dpc_flags);
 


Patches currently in stable-queue which might be from [email protected] are

_______________________________________________
stable mailing list
[email protected]
http://linux.kernel.org/mailman/listinfo/stable

Reply via email to