Re: [RESEND PATCH 2.6.11.2 1/1] PCI Allow OutOfRange PIRQ table address

2005-04-07 Thread Greg KH
On Mon, Mar 28, 2005 at 06:19:55AM -0800, [EMAIL PROTECTED] wrote: > Hi Greg, PCI folk, > > Resending this patch. Is it okay now? Sorry for the delay, I've added to my trees now. thanks, greg k-h - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message

[RESEND PATCH 2.6.11.2 1/1] PCI Allow OutOfRange PIRQ table address

2005-03-28 Thread jayalk
Hi Greg, PCI folk, Resending this patch. Is it okay now? --- I updated this to remove unnecessary variable initialization, make check_routing be inline only and not __init, switch to strtoul, and formatting fixes as per Randy Dunlap's recommendations. I updated this to change pirq_table_addr

[PATCH 2.6.11.2 1/1] PCI Allow OutOfRange PIRQ table address

2005-03-21 Thread jayalk
Hi Greg, PCI folk, I updated this to remove unnecessary variable initialization, make check_routing be inline only and not __init, switch to strtoul, and formatting fixes as per Randy Dunlap's recommendations. I updated this to change pirq_table_addr to a long, and to add a warning msg if the P

[PATCH 2.6.11.2 1/1] PCI Allow OutOfRange PIRQ table address

2005-03-16 Thread jayalk
Hi Greg, PCI folk, Sorry, just also did the simple_strtol to strtoul. Let me know if it's okay. Thanks. --- I updated this to remove unnecessary variable initialization, make check_routing be inline only and not __init, and formatting fixes as per Randy Dunlap's recommendations. I updated th

[PATCH 2.6.11.2 1/1] PCI Allow OutOfRange PIRQ table address

2005-03-16 Thread jayalk
Hi Greg, PCI folk, I updated this to remove unnecessary variable initialization, make check_routing be inline only and not __init, and formatting fixes as per Randy Dunlap's recommendations. Let me know if it's okay. Thanks. --- I updated this to change pirq_table_addr to a long, and to add a

Re: [PATCH 2.6.11.2 1/1] PCI Allow OutOfRange PIRQ table address

2005-03-16 Thread Randy.Dunlap
[EMAIL PROTECTED] wrote: Hi Greg, PCI folk, I updated this to change pirq_table_addr to a long, and to add a warning msg if the PIRQ table wasn't found at the specified address, as per thread with Matthew Wilcox. Let me know if it's okay. Thanks. In our hardware situation, the BIOS is unable to sto

[PATCH 2.6.11.2 1/1] PCI Allow OutOfRange PIRQ table address

2005-03-16 Thread jayalk
Hi Greg, PCI folk, I updated this to change pirq_table_addr to a long, and to add a warning msg if the PIRQ table wasn't found at the specified address, as per thread with Matthew Wilcox. Let me know if it's okay. Thanks. In our hardware situation, the BIOS is unable to store or generate it's PIR

[PATCH 2.6.11.2 1/1] PCI Allow OutOfRange PIRQ table address

2005-03-16 Thread jayalk
Hi Greg, PCI folk, In our hardware situation, the BIOS is unable to store or generate it's PIRQ table in the Fh-10h standard range. This patch adds a pci kernel parameter, pirqaddr to allow the bootloader (or BIOS based loader) to inform the kernel where the PIRQ table got stored. A benefi

Re: [PATCH 2.6.11.2 1/1] PCI Allow OutOfRange PIRQ table address

2005-03-11 Thread jayalk
On Thu, 10 Mar 2005, Matthew Wilcox wrote: +extern unsigned int pirq_table_addr; Completely nitpicking, but I think this should be an unsigned long rather than an int -- physical addresses are normally expressed in terms of unsigned long. Yup, good point, I'll fix that. Should we fall back to searc

Re: [PATCH 2.6.11.2 1/1] PCI Allow OutOfRange PIRQ table address

2005-03-10 Thread Matthew Wilcox
On Thu, Mar 10, 2005 at 05:29:35AM -0800, [EMAIL PROTECTED] wrote: Nice work, I like it. You could make it even prettier: > diff -uprN -X dontdiff linux-2.6.11.2-vanilla/arch/i386/pci/irq.c > linux-2.6.11.2/arch/i386/pci/irq.c > --- linux-2.6.11.2-vanilla/arch/i386/pci/irq.c2005-03-10

[PATCH 2.6.11.2 1/1] PCI Allow OutOfRange PIRQ table address

2005-03-10 Thread jayalk
Hi Greg, PCI folk, In our hardware situation, the BIOS is unable to store or generate it's PIRQ table in the Fh-10h standard range. This patch adds a pci kernel parameter, pirqaddr to allow the bootloader (or BIOS based loader) to inform the kernel where the PIRQ table got stored. A benefi