projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
11e52a6
)
be2iscsi: Fix kernel panic when device initialization fails
author
John Soni Jose
<
[email protected]
>
Thu, 12 Feb 2015 01:15:47 +0000
(06:45 +0530)
committer
James Bottomley
<
[email protected]
>
Wed, 8 Apr 2015 16:40:57 +0000
(09:40 -0700)
Kernel panic was happening as iscsi_host_remove() was called on
a host which was not yet added.
Signed-off-by: John Soni Jose <
[email protected]
>
Reviewed-by: Mike Christie <
[email protected]
>
Cc: <
[email protected]
>
Signed-off-by: James Bottomley <
[email protected]
>
drivers/scsi/be2iscsi/be_main.c
patch
|
blob
|
history
diff --git
a/drivers/scsi/be2iscsi/be_main.c
b/drivers/scsi/be2iscsi/be_main.c
index a7cc618378187fb7d38e504d51befb93e78b223c..923a2b5a24395547212207312588b125f19de3a2 100644
(file)
--- a/
drivers/scsi/be2iscsi/be_main.c
+++ b/
drivers/scsi/be2iscsi/be_main.c
@@
-5734,9
+5734,9
@@
free_port:
hba_free:
if (phba->msix_enabled)
pci_disable_msix(phba->pcidev);
- iscsi_host_remove(phba->shost);
pci_dev_put(phba->pcidev);
iscsi_host_free(phba->shost);
+ pci_set_drvdata(pcidev, NULL);
disable_pci:
pci_disable_device(pcidev);
return ret;