2004-01-03 05:04:59

by Srihari Vijayaraghavan

[permalink] [raw]
Subject: [PATCH] Export idle_warning (x86-64)

Without this patch the ACPI processor module does not load (and hence thermal
module too):
--- 2.6.1-rc1-bk3/arch/x86_64/kernel/process.c.orig 2004-01-03
04:52:32.000000000 +1100
+++ 2.6.1-rc1-bk3/arch/x86_64/kernel/process.c 2004-01-03 04:56:49.000000000
+1100
@@ -166,6 +166,8 @@
printk(KERN_ERR "******* Disabling USB legacy in the BIOS may also
help.\n");
}

+EXPORT_SYMBOL(idle_warning);
+
/* Prints also some state that isn't saved in the pt_regs */
void __show_regs(struct pt_regs * regs)
{

With that patch (against 2.6.1-rc1-bk3) those modules load and work fine.

Thanks
Hari
[email protected]


2004-01-03 05:49:09

by Andi Kleen

[permalink] [raw]
Subject: Re: [PATCH] Export idle_warning (x86-64)

Srihari Vijayaraghavan <[email protected]> writes:

> Without this patch the ACPI processor module does not load (and hence thermal
> module too):

Thanks. I applied the patch.

-Andi