From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arun Sharma Subject: Re: [PATCH] pci-ioapic-0502.patch Date: Wed, 04 May 2005 18:31:56 -0700 Message-ID: <4279778C.5020207@intel.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: "Puthiyaparambil, Aravindh" Cc: xen-devel@lists.xensource.com, "Vessey, Bruce A" , "Subrahmanian, Raj" List-Id: xen-devel@lists.xenproject.org Puthiyaparambil, Aravindh wrote: > IOAPIC[0]: Invalid reference to IRQ 0 > > I am not even sure if this is an error. I have attached the complete > boot sequence. > I think this is because io_apic_irqs is not getting initialized properly. My next patch will contain something like: void __init setup_IO_APIC(void) { if (acpi_ioapic) io_apic_irqs = ~0; /* all IRQs go through IOAPIC */ else io_apic_irqs = ~PIC_IRQS; } which should hopefully take care of this apparently harmless message. -Arun