* AHCI: ahci Driver crash in ahci_host_activate
@ 2013-07-15 14:08 Suravee Suthikulanit
2013-07-22 21:40 ` Tejun Heo
0 siblings, 1 reply; 2+ messages in thread
From: Suravee Suthikulanit @ 2013-07-15 14:08 UTC (permalink / raw)
To: agordeev, tj, linux-kernel@vger.kernel.org
I ran into a crash during booting with the latest 3.11.0-rc1. After
investigation, the crash was triggered by the patch below where the "pp"
is NULL in some cases.
Suravee
commit b29900e62598cecd519c9ab2b8e4d03f8ebf702d
Author: Alexander Gordeev <agordeev@redhat.com>
Date: Wed May 22 08:53:48 2013 +0900
AHCI: Make distinct names for ports in /proc/interrupts
Currently all interrupts assigned to AHCI ports show up in
'/proc/interrupts' as 'ahci'. This fix adds port numbers as
suffixes and hence makes the descriptions distinct.
Reported-by: Jan Beulich <JBeulich@suse.com>
Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c
index 251e57d..4d1c672 100644
--- a/drivers/ata/ahci.c
+++ b/drivers/ata/ahci.c
@@ -1142,9 +1142,11 @@ int ahci_host_activate(struct ata_host *host, int
irq, unsigned int n_msis)
return rc;
for (i = 0; i < host->n_ports; i++) {
+ struct ahci_port_priv *pp = host->ports[i]->private_data;
+
rc = devm_request_threaded_irq(host->dev,
irq + i, ahci_hw_interrupt, ahci_thread_fn,
IRQF_SHARED,
- dev_driver_string(host->dev), host->ports[i]);
+ pp->irq_desc, host->ports[i]);
if (rc)
goto out_free_irqs;
}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: AHCI: ahci Driver crash in ahci_host_activate
2013-07-15 14:08 AHCI: ahci Driver crash in ahci_host_activate Suravee Suthikulanit
@ 2013-07-22 21:40 ` Tejun Heo
0 siblings, 0 replies; 2+ messages in thread
From: Tejun Heo @ 2013-07-22 21:40 UTC (permalink / raw)
To: Suravee Suthikulanit; +Cc: agordeev, linux-kernel@vger.kernel.org
Hello,
On Mon, Jul 15, 2013 at 09:08:40AM -0500, Suravee Suthikulanit wrote:
> I ran into a crash during booting with the latest 3.11.0-rc1. After
> investigation, the crash was triggered by the patch below where the
> "pp" is NULL in some cases.
Yeap, fix is being worked on. Thanks a lot!
--
tejun
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-07-22 21:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-15 14:08 AHCI: ahci Driver crash in ahci_host_activate Suravee Suthikulanit
2013-07-22 21:40 ` Tejun Heo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox