All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] hpsa: add missing pci_set_master in kdump path
@ 2014-09-12 12:44 Tomas Henzl
  2014-09-24 10:31 ` Tomas Henzl
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Tomas Henzl @ 2014-09-12 12:44 UTC (permalink / raw)
  To: 'linux-scsi@vger.kernel.org'
  Cc: elliott, steve.cameron, Christoph Hellwig, Handzik, Joe

Add a call to pci_set_master(...)  missing in the previous
patch "hpsa: refine the pci enable/disable handling".
Found thanks to Rob Elliot.
---
 drivers/scsi/hpsa.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c
index 7828834..cef5d49 100644
--- a/drivers/scsi/hpsa.c
+++ b/drivers/scsi/hpsa.c
@@ -6544,7 +6544,7 @@ static int hpsa_init_reset_devices(struct pci_dev *pdev)
 		dev_warn(&pdev->dev, "failed to enable device.\n");
 		return -ENODEV;
 	}
-
+	pci_set_master(pdev);
 	/* Reset the controller with a PCI power-cycle or via doorbell */
 	rc = hpsa_kdump_hard_reset_controller(pdev);
 
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-09-25 16:59 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-12 12:44 [PATCH] hpsa: add missing pci_set_master in kdump path Tomas Henzl
2014-09-24 10:31 ` Tomas Henzl
2014-09-24 13:54   ` Christoph Hellwig
2014-09-24 13:59   ` Elliott, Robert (Server Storage)
2014-09-24 14:04     ` Christoph Hellwig
2014-09-25 12:20 ` Christoph Hellwig
2014-09-25 12:41   ` Tomas Henzl
2014-09-25 17:01 ` Christoph Hellwig

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.