On Sat, Sep 09, 2000 at 05:17:12PM -0700, David Mosberger wrote: > >>>>> On Sat, 9 Sep 2000 14:49:52 -0700, "H . J . Lu" said: > > HJ> Yes, I did "make dep". What should include/asm-ia64/offsets.h > HJ> look like? That may explain many things. > > Well, it depends on your kernel configuration. If you did a "make > dep", you should have the right values in there. > > I'm not sure why the new kernel isn't working for you. Nothing has > changed in the kernel that would explain an infinite stream of irq 0. > I am going through my build log. I found at least 2 problems: 1. In inclide/asm-ia64/processor.h, there is # define loops_per_sec() loops_per_sec It is bad if the versioned symbol is enabled. 2. ACPI_RSDT_SIG is defined both as a string and an integer in 2 different header files. In include/linux/acpi.h #define ACPI_RSDT_SIG 0x54445352 /* 'RSDT' */ In include/asm-ia64/acpi-ext.h #define ACPI_RSDT_SIG "RSDT" It is very confusing. I am enclosing 2 patches. Please take a look. Thanks. H.J.