| From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 |
| From: Anton Blanchard <anton@samba.org> |
| Date: Thu, 2 Mar 2017 10:20:30 -0300 |
| Subject: [PATCH 11/12] scsi: lpfc: Add shutdown method for kexec |
| |
| We see lpfc devices regularly fail during kexec. Fix this by adding |
| a shutdown method which mirrors the remove method. |
| |
| ( mfoliveira: this patch has been submitted upstream at: ) |
| ( http://www.spinics.net/lists/linux-scsi/msg105102.html ) |
| |
| Signed-off-by: Anton Blanchard <anton@samba.org> |
| Signed-off-by: Mauricio Faria de Oliveira <mauricfo@linux.vnet.ibm.com> |
| Signed-off-by: Joel Stanley <joel@jms.id.au> |
| --- |
| drivers/scsi/lpfc/lpfc_init.c | 1 + |
| 1 file changed, 1 insertion(+) |
| |
| diff --git a/drivers/scsi/lpfc/lpfc_init.c b/drivers/scsi/lpfc/lpfc_init.c |
| index 4776fd85514f..10f75ad2b9e8 100644 |
| --- a/drivers/scsi/lpfc/lpfc_init.c |
| +++ b/drivers/scsi/lpfc/lpfc_init.c |
| @@ -11447,6 +11447,7 @@ static struct pci_driver lpfc_driver = { |
| .id_table = lpfc_id_table, |
| .probe = lpfc_pci_probe_one, |
| .remove = lpfc_pci_remove_one, |
| + .shutdown = lpfc_pci_remove_one, |
| .suspend = lpfc_pci_suspend_one, |
| .resume = lpfc_pci_resume_one, |
| .err_handler = &lpfc_err_handler, |
| -- |
| 2.11.0 |
| |