aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/be2iscsi
diff options
context:
space:
mode:
authorJayamohan Kallickal <jayamohan.kallickal@emulex.com>2011-08-22 10:08:29 -0700
committerJames Bottomley <JBottomley@Parallels.com>2011-08-29 00:16:18 -0700
commit8dce69ff481a8d17a7d1027f23595083f28b4556 (patch)
tree3ff0ebf6f1709a928410895de3ed97afa80e01cb /drivers/scsi/be2iscsi
parent[SCSI] be2iscsi: Adding a shutdown Routine (diff)
downloadlinux-dev-8dce69ff481a8d17a7d1027f23595083f28b4556.tar.xz
linux-dev-8dce69ff481a8d17a7d1027f23595083f28b4556.zip
[SCSI] be2iscsi: Add pci_disable device
This patch adds call to pci_disable_device during rmmod and shutdown. The lack of this call was causing hang in insmod - rmmod loop test Signed-off-by: Jayamohan Kallickal <jayamohan.kallickal@emulex.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/be2iscsi')
-rw-r--r--drivers/scsi/be2iscsi/be_main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/scsi/be2iscsi/be_main.c b/drivers/scsi/be2iscsi/be_main.c
index 51cfd4f2911d..57fea3848b69 100644
--- a/drivers/scsi/be2iscsi/be_main.c
+++ b/drivers/scsi/be2iscsi/be_main.c
@@ -4181,6 +4181,7 @@ static void beiscsi_remove(struct pci_dev *pcidev)
iscsi_host_remove(phba->shost);
pci_dev_put(phba->pcidev);
iscsi_host_free(phba->shost);
+ pci_disable_device(pcidev);
}
static void beiscsi_shutdown(struct pci_dev *pcidev)
@@ -4195,6 +4196,7 @@ static void beiscsi_shutdown(struct pci_dev *pcidev)
}
beiscsi_quiesce(phba);
+ pci_disable_device(pcidev);
}
static void beiscsi_msix_enable(struct beiscsi_hba *phba)