linux-pci.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] PCI: imx6:don't sleep in atomic context
@ 2015-11-09 10:48 Sanjeev Sharma
  2015-11-10  8:41 ` Lucas Stach
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Sanjeev Sharma @ 2015-11-09 10:48 UTC (permalink / raw)
  To: Richard.Zhu, l.stach, bhelgaas
  Cc: linux-pci, linux-arm-kernel, linux-kernel, Sanjeev Sharma,
	David Mueller

If additional PCIe switch get connected between the
host and the NIC,the kernel crashes with "BUG:
scheduling while atomic". To handle this we need to
call mdelay() instead of usleep_range().

For more detail please refer bugzilla.kernel.org, Bug
100031

Signed-off-by: Sanjeev Sharma <sanjeev_sharma@mentor.com>
Signed-off-by: David Mueller <dave.mueller@gmx.ch>
---
 drivers/pci/host/pci-imx6.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/pci/host/pci-imx6.c b/drivers/pci/host/pci-imx6.c
index 233a196..9769b13 100644
--- a/drivers/pci/host/pci-imx6.c
+++ b/drivers/pci/host/pci-imx6.c
@@ -499,7 +499,7 @@ static int imx6_pcie_link_up(struct pcie_port *pp)
 		 * Wait a little bit, then re-check if the link finished
 		 * the training.
 		 */
-		usleep_range(1000, 2000);
+		mdelay(1000);
 	}
 	/*
 	 * From L0, initiate MAC entry to gen2 if EP/RC supports gen2.
-- 
1.7.11.7


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

end of thread, other threads:[~2016-02-19  9:18 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-09 10:48 [PATCH] PCI: imx6:don't sleep in atomic context Sanjeev Sharma
2015-11-10  8:41 ` Lucas Stach
2015-11-10  9:28   ` Arnd Bergmann
2015-11-10  9:35     ` Lucas Stach
2015-11-10  9:45       ` Arnd Bergmann
2015-11-16  9:36         ` Sharma, Sanjeev
2015-11-24 13:57           ` Lucas Stach
2015-12-02  7:43 ` [PATCH v2] " Sanjeev Sharma
2016-01-06  2:13   ` Bjorn Helgaas
2016-01-06 22:04 ` [PATCH] " Bjorn Helgaas
2016-02-18  7:17   ` Sharma, Sanjeev
2016-02-18 15:08     ` Bjorn Helgaas
2016-02-19  9:18       ` Sharma, Sanjeev

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).