Message ID | 20171025133730.GA5487@red-moon (mailing list archive) |
---|---|
State | New, archived |
Delegated to: | Bjorn Helgaas |
Headers | show |
> > > > removing libata modules and rebooting fixes it - so it seems to be > > > > loading of libata. > > > > > > Can you please cherry-pick: > > > > > > commit b1f9e5e355e9 ("ide: fix IRQ assignment for PCI bus order probing") > > > > > > from mainline and let us know if that solves the issue ? > > > > No, still breaks the same way (b1f9e5e355e9 patched on top of > > 0e4c2eeb758a). > > > > 4.14.0-rc5-00095-g1c9fec470b81 was also still broken the same way (tried > > on Sunday). > > I am not sure I patched the right sys file but if I did, does the patch > below help ? > > I think that at sata driver binding time the kernel finds a freed > pointer in the host bridge map_irq() hook and that's where things > go wrong. > > Please let me know if that's the right sys file, it is a mechanical > change and making it for other sys file should be reasonably simple. > > Lorenzo > > -- >8 -- > diff --git a/arch/alpha/kernel/sys_dp264.c b/arch/alpha/kernel/sys_dp264.c "Booting GENERIC on Tsunami variation Webbrick using machine vector Webbrick from SRM" Seems to be the correct file - tsunami is referenced from this file and the IRQ-s are DP264. But the patch does not make a difference :(
diff --git a/arch/alpha/kernel/sys_dp264.c b/arch/alpha/kernel/sys_dp264.c index 6c35159..88c72fe 100644 --- a/arch/alpha/kernel/sys_dp264.c +++ b/arch/alpha/kernel/sys_dp264.c @@ -356,7 +356,7 @@ * 10 64 bit PCI option slot 3 (not bus 0) */ -static int __init +static int isa_irq_fixup(const struct pci_dev *dev, int irq) { u8 irq8; @@ -372,10 +372,10 @@ return irq8 & 0xf; } -static int __init +static int dp264_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) { - static char irq_tab[6][5] __initdata = { + static char irq_tab[6][5] = { /*INT INTA INTB INTC INTD */ { -1, -1, -1, -1, -1}, /* IdSel 5 ISA Bridge */ { 16+ 3, 16+ 3, 16+ 2, 16+ 2, 16+ 2}, /* IdSel 6 SCSI builtin*/