* Problems with SMP & ACPI powering off @ 2007-09-27 21:29 Mark Lord 2007-09-27 21:30 ` Mark Lord 2007-09-27 22:00 ` Rafael J. Wysocki 0 siblings, 2 replies; 26+ messages in thread From: Mark Lord @ 2007-09-27 21:29 UTC (permalink / raw) To: Linux Kernel, simon.derr, len.brown Question: do we disable all CPUs except 0 when doing ACPI power off? Background: I have a machine here dedicated to running MythTV. It powers up to record, and then sets the RTC alarm for next time and powers down again in between recordings. It has an Intel Core2duo E6300 CPU, currently on an ICH8 motherboard. Previously it was on a completely different (vendor,bios,...) ICH7 motherboard. In both cases, "halt -p" sometimes fails to actually turn off the power, which means that it later then fails to "turn on" to record again. Annoying. This is a 32-bit kernel/runtime, with full ACPI (not APM) kernel support enabled. So I'm wondering if it may be due to the old SMP-poweroff bogeyman ? For now, I've hardcoded a cpu_down(1) into the poweroff code, and we'll see if that helps or is merely redundant. But I do wonder where else to look for a cause? Two different boards, vendors, BIOSs, same CPU chip. Same problem. ???? ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Problems with SMP & ACPI powering off 2007-09-27 21:29 Problems with SMP & ACPI powering off Mark Lord @ 2007-09-27 21:30 ` Mark Lord 2007-09-27 22:00 ` Rafael J. Wysocki 1 sibling, 0 replies; 26+ messages in thread From: Mark Lord @ 2007-09-27 21:30 UTC (permalink / raw) To: Linux Kernel, simon.derr, len.brown Mark Lord wrote: > Question: do we disable all CPUs except 0 when doing ACPI power off? > > Background: > I have a machine here dedicated to running MythTV. > It powers up to record, and then sets the RTC alarm for next time > and powers down again in between recordings. > > It has an Intel Core2duo E6300 CPU, currently on an ICH8 motherboard. > Previously it was on a completely different (vendor,bios,...) ICH7 > motherboard. > > In both cases, "halt -p" sometimes fails to actually turn off the power, > which means that it later then fails to "turn on" to record again. > > Annoying. > > This is a 32-bit kernel/runtime, with full ACPI (not APM) kernel support > enabled. > > So I'm wondering if it may be due to the old SMP-poweroff bogeyman ? > > For now, I've hardcoded a cpu_down(1) into the poweroff code, > and we'll see if that helps or is merely redundant. > > But I do wonder where else to look for a cause? > > Two different boards, vendors, BIOSs, same CPU chip. Same problem. Oh, and two different power-supplies, too. -ml ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Problems with SMP & ACPI powering off 2007-09-27 21:29 Problems with SMP & ACPI powering off Mark Lord 2007-09-27 21:30 ` Mark Lord @ 2007-09-27 22:00 ` Rafael J. Wysocki 2007-09-27 23:07 ` Mark Lord 2007-09-28 4:57 ` Len Brown 1 sibling, 2 replies; 26+ messages in thread From: Rafael J. Wysocki @ 2007-09-27 22:00 UTC (permalink / raw) To: Mark Lord; +Cc: Linux Kernel, simon.derr, Len Brown On Thursday, 27 September 2007 23:29, Mark Lord wrote: > Question: do we disable all CPUs except 0 when doing ACPI power off? No, but we should. > Background: > I have a machine here dedicated to running MythTV. > It powers up to record, and then sets the RTC alarm for next time > and powers down again in between recordings. > > It has an Intel Core2duo E6300 CPU, currently on an ICH8 motherboard. > Previously it was on a completely different (vendor,bios,...) ICH7 motherboard. > > In both cases, "halt -p" sometimes fails to actually turn off the power, > which means that it later then fails to "turn on" to record again. > > Annoying. > > This is a 32-bit kernel/runtime, with full ACPI (not APM) kernel support enabled. > > So I'm wondering if it may be due to the old SMP-poweroff bogeyman ? May be. Which kernel? > For now, I've hardcoded a cpu_down(1) into the poweroff code, > and we'll see if that helps or is merely redundant. > > But I do wonder where else to look for a cause? > > Two different boards, vendors, BIOSs, same CPU chip. Same problem. Same chipset, perchance? Greetings, Rafael ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Problems with SMP & ACPI powering off 2007-09-27 22:00 ` Rafael J. Wysocki @ 2007-09-27 23:07 ` Mark Lord 2007-09-28 4:57 ` Len Brown 1 sibling, 0 replies; 26+ messages in thread From: Mark Lord @ 2007-09-27 23:07 UTC (permalink / raw) To: Rafael J. Wysocki; +Cc: Linux Kernel, simon.derr, Len Brown Rafael J. Wysocki wrote: > On Thursday, 27 September 2007 23:29, Mark Lord wrote: >> Question: do we disable all CPUs except 0 when doing ACPI power off? > > No, but we should. > >> Background: >> I have a machine here dedicated to running MythTV. >> It powers up to record, and then sets the RTC alarm for next time >> and powers down again in between recordings. >> >> It has an Intel Core2duo E6300 CPU, currently on an ICH8 motherboard. >> Previously it was on a completely different (vendor,bios,...) ICH7 motherboard. >> >> In both cases, "halt -p" sometimes fails to actually turn off the power, >> which means that it later then fails to "turn on" to record again. >> >> Annoying. >> >> This is a 32-bit kernel/runtime, with full ACPI (not APM) kernel support enabled. >> >> So I'm wondering if it may be due to the old SMP-poweroff bogeyman ? > > May be. > > Which kernel? Latest 2.6.23-rc-git. Same problem from time to time on 2.6.17, as well. Dunno about in between those Revs., but it's much more common on the latest than it was on the old kernel. > >> For now, I've hardcoded a cpu_down(1) into the poweroff code, >> and we'll see if that helps or is merely redundant. >> >> But I do wonder where else to look for a cause? >> >> Two different boards, vendors, BIOSs, same CPU chip. Same problem. > > Same chipset, perchance? Mmmm I originally didn't think so. But actually one board is ICH8, the other ICH8R, so yes, they use the same chipset. Cheers ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Problems with SMP & ACPI powering off 2007-09-27 22:00 ` Rafael J. Wysocki 2007-09-27 23:07 ` Mark Lord @ 2007-09-28 4:57 ` Len Brown 2007-09-28 12:55 ` Rafael J. Wysocki 1 sibling, 1 reply; 26+ messages in thread From: Len Brown @ 2007-09-28 4:57 UTC (permalink / raw) To: Rafael J. Wysocki; +Cc: Mark Lord, Linux Kernel, simon.derr On Thursday 27 September 2007 18:00, Rafael J. Wysocki wrote: > On Thursday, 27 September 2007 23:29, Mark Lord wrote: > > Question: do we disable all CPUs except 0 when doing ACPI power off? > > No, but we should. We used to. It is absolutely mandatory -- else it confuses the BIOS on some boards b/c it isn't expecting SMM to get entered from other than cpu0. -Len ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Problems with SMP & ACPI powering off 2007-09-28 4:57 ` Len Brown @ 2007-09-28 12:55 ` Rafael J. Wysocki 2007-09-28 13:22 ` Mark Lord 0 siblings, 1 reply; 26+ messages in thread From: Rafael J. Wysocki @ 2007-09-28 12:55 UTC (permalink / raw) To: Len Brown; +Cc: Mark Lord, Linux Kernel, simon.derr On Friday, 28 September 2007 06:57, Len Brown wrote: > On Thursday 27 September 2007 18:00, Rafael J. Wysocki wrote: > > On Thursday, 27 September 2007 23:29, Mark Lord wrote: > > > Question: do we disable all CPUs except 0 when doing ACPI power off? > > > > No, but we should. > > We used to. > It is absolutely mandatory -- else it confuses the BIOS on some boards > b/c it isn't expecting SMM to get entered from other than cpu0. Can we use the CPU hotplug for that, like in the suspend/hibernation case? Rafael ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Problems with SMP & ACPI powering off 2007-09-28 12:55 ` Rafael J. Wysocki @ 2007-09-28 13:22 ` Mark Lord 2007-09-28 13:44 ` Rafael J. Wysocki 0 siblings, 1 reply; 26+ messages in thread From: Mark Lord @ 2007-09-28 13:22 UTC (permalink / raw) To: Rafael J. Wysocki; +Cc: Len Brown, Linux Kernel, simon.derr Rafael J. Wysocki wrote: > On Friday, 28 September 2007 06:57, Len Brown wrote: >> On Thursday 27 September 2007 18:00, Rafael J. Wysocki wrote: >>> On Thursday, 27 September 2007 23:29, Mark Lord wrote: >>>> Question: do we disable all CPUs except 0 when doing ACPI power off? >>> No, but we should. >> We used to. >> It is absolutely mandatory -- else it confuses the BIOS on some boards >> b/c it isn't expecting SMM to get entered from other than cpu0. > > Can we use the CPU hotplug for that, like in the suspend/hibernation case? Well, so far it's working: about ten poweroffs since I patched it, and no issues with any of them. Prior to that, it seemed like about one in five poweroffs wouldn't (power off). It'll take a lot more testing to confirm, though. What can I call to determine if more than one CPU is enabled, anyway? Here's the hack I'm using here, very situation (2 cores) specific, and it still has some printk's leftover with a sleep so I have time to read them before the lights go out. :) --- old/arch/i386/kernel/reboot.c 2007-09-27 17:17:00.000000000 -0400 +++ linux/arch/i386/kernel/reboot.c 2007-09-27 17:15:35.000000000 -0400 @@ -393,8 +393,22 @@ .halt = native_machine_halt, }; +static void kill_cpu1(void) +{ + extern int cpu_down(unsigned int cpu); + + printk(KERN_EMERG "kill_cpu1: was running on CPU%d\n", smp_processor_id()); + /* Some bioses don't like being called from CPU != 0 */ + set_cpus_allowed(current, cpumask_of_cpu(0)); + printk(KERN_EMERG "kill_cpu1: now running on CPU%d\n", smp_processor_id()); + cpu_down(1); + printk(KERN_EMERG "kill_cpu1: done\n"); + msleep(1000); +} + void machine_power_off(void) { + (void)kill_cpu1(); machine_ops.power_off(); } ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Problems with SMP & ACPI powering off 2007-09-28 13:22 ` Mark Lord @ 2007-09-28 13:44 ` Rafael J. Wysocki 2007-09-28 13:46 ` Mark Lord 0 siblings, 1 reply; 26+ messages in thread From: Rafael J. Wysocki @ 2007-09-28 13:44 UTC (permalink / raw) To: Mark Lord; +Cc: Len Brown, Linux Kernel, simon.derr On Friday, 28 September 2007 15:22, Mark Lord wrote: > Rafael J. Wysocki wrote: > > On Friday, 28 September 2007 06:57, Len Brown wrote: > >> On Thursday 27 September 2007 18:00, Rafael J. Wysocki wrote: > >>> On Thursday, 27 September 2007 23:29, Mark Lord wrote: > >>>> Question: do we disable all CPUs except 0 when doing ACPI power off? > >>> No, but we should. > >> We used to. > >> It is absolutely mandatory -- else it confuses the BIOS on some boards > >> b/c it isn't expecting SMM to get entered from other than cpu0. > > > > Can we use the CPU hotplug for that, like in the suspend/hibernation case? > > Well, so far it's working: about ten poweroffs since I patched it, > and no issues with any of them. Prior to that, it seemed like about > one in five poweroffs wouldn't (power off). > > It'll take a lot more testing to confirm, though. > > What can I call to determine if more than one CPU is enabled, anyway? > > Here's the hack I'm using here, very situation (2 cores) specific, > and it still has some printk's leftover with a sleep so I have time > to read them before the lights go out. :) Well, we have disable_nonboot_cpus() that we use for suspend and that is supposed to be general. The question is when to call it. Greetings, Rafael ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Problems with SMP & ACPI powering off 2007-09-28 13:44 ` Rafael J. Wysocki @ 2007-09-28 13:46 ` Mark Lord 2007-09-28 13:52 ` [PATCH] disable non-boot CPUs before poweroff Mark Lord 0 siblings, 1 reply; 26+ messages in thread From: Mark Lord @ 2007-09-28 13:46 UTC (permalink / raw) To: Rafael J. Wysocki; +Cc: Len Brown, Linux Kernel, simon.derr Rafael J. Wysocki wrote: > On Friday, 28 September 2007 15:22, Mark Lord wrote: >> Rafael J. Wysocki wrote: >>> On Friday, 28 September 2007 06:57, Len Brown wrote: >>>> On Thursday 27 September 2007 18:00, Rafael J. Wysocki wrote: >>>>> On Thursday, 27 September 2007 23:29, Mark Lord wrote: >>>>>> Question: do we disable all CPUs except 0 when doing ACPI power off? >>>>> No, but we should. >>>> We used to. >>>> It is absolutely mandatory -- else it confuses the BIOS on some boards >>>> b/c it isn't expecting SMM to get entered from other than cpu0. >>> Can we use the CPU hotplug for that, like in the suspend/hibernation case? >> Well, so far it's working: about ten poweroffs since I patched it, >> and no issues with any of them. Prior to that, it seemed like about >> one in five poweroffs wouldn't (power off). >> >> It'll take a lot more testing to confirm, though. >> >> What can I call to determine if more than one CPU is enabled, anyway? >> >> Here's the hack I'm using here, very situation (2 cores) specific, >> and it still has some printk's leftover with a sleep so I have time >> to read them before the lights go out. :) > > Well, we have disable_nonboot_cpus() that we use for suspend and that is > supposed to be general. > > The question is when to call it. How about from the obvious candidate: kernel/sys.c::kernel_power_off() ? I'll rework my hack into a proper patch there, repost it here, and test with it for another day or two. -ml ^ permalink raw reply [flat|nested] 26+ messages in thread
* [PATCH] disable non-boot CPUs before poweroff 2007-09-28 13:46 ` Mark Lord @ 2007-09-28 13:52 ` Mark Lord 2007-09-28 14:11 ` Mark Lord ` (2 more replies) 0 siblings, 3 replies; 26+ messages in thread From: Mark Lord @ 2007-09-28 13:52 UTC (permalink / raw) To: Rafael J. Wysocki; +Cc: Len Brown, Linux Kernel, simon.derr We need to disable all CPUs other than the boot CPU (usually 0) before attempting to power-off modern SMP machines. This seems to fix the hang-on-poweroff issue that one of my SMP boxes exhibits. More testing required. Signed-off-by: Mark Lord <mlord@pobox.com> --- --- linux/kernel/sys.c.orig 2007-09-13 09:49:11.000000000 -0400 +++ linux/kernel/sys.c 2007-09-28 09:48:54.000000000 -0400 @@ -32,6 +32,7 @@ #include <linux/getcpu.h> #include <linux/task_io_accounting_ops.h> #include <linux/seccomp.h> +#include <linux/cpu.h> #include <linux/compat.h> #include <linux/syscalls.h> @@ -879,6 +880,7 @@ if (pm_power_off_prepare) pm_power_off_prepare(); sysdev_shutdown(); + disable_nonboot_cpus(); printk(KERN_EMERG "Power down.\n"); machine_power_off(); } ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH] disable non-boot CPUs before poweroff 2007-09-28 13:52 ` [PATCH] disable non-boot CPUs before poweroff Mark Lord @ 2007-09-28 14:11 ` Mark Lord 2007-09-28 14:55 ` Thomas Gleixner 2007-09-28 15:05 ` [PATCH] disable non-boot CPUs before poweroff Rafael J. Wysocki 2 siblings, 0 replies; 26+ messages in thread From: Mark Lord @ 2007-09-28 14:11 UTC (permalink / raw) To: Rafael J. Wysocki; +Cc: Len Brown, Linux Kernel, simon.derr Mark Lord wrote: > > We need to disable all CPUs other than the boot CPU (usually 0) > before attempting to power-off modern SMP machines. > This seems to fix the hang-on-poweroff issue > that one of my SMP boxes exhibits. More testing required. > > Signed-off-by: Mark Lord <mlord@pobox.com> > --- > > --- linux/kernel/sys.c.orig 2007-09-13 09:49:11.000000000 -0400 > +++ linux/kernel/sys.c 2007-09-28 09:48:54.000000000 -0400 > @@ -32,6 +32,7 @@ > #include <linux/getcpu.h> > #include <linux/task_io_accounting_ops.h> > #include <linux/seccomp.h> > +#include <linux/cpu.h> > > #include <linux/compat.h> > #include <linux/syscalls.h> > @@ -879,6 +880,7 @@ > if (pm_power_off_prepare) > pm_power_off_prepare(); > sysdev_shutdown(); > + disable_nonboot_cpus(); > printk(KERN_EMERG "Power down.\n"); > machine_power_off(); > } Okay, verified now. Prior to this patch, *both* CPUs were still up and running when machine_power_off() got called, and there was no guarantee that CPU0 was the one calling machine_power_off(). BUG. The above patch guarantees that only the single boot CPU is running and calling machine_power_off(). Hopefully this buries the SMP-power-off bogeyman for good! Cheers ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH] disable non-boot CPUs before poweroff 2007-09-28 13:52 ` [PATCH] disable non-boot CPUs before poweroff Mark Lord 2007-09-28 14:11 ` Mark Lord @ 2007-09-28 14:55 ` Thomas Gleixner 2007-09-28 19:53 ` [PATCH] (repost) Fix SMP poweroff hangs Mark Lord 2007-09-28 15:05 ` [PATCH] disable non-boot CPUs before poweroff Rafael J. Wysocki 2 siblings, 1 reply; 26+ messages in thread From: Thomas Gleixner @ 2007-09-28 14:55 UTC (permalink / raw) To: Mark Lord Cc: Rafael J. Wysocki, Len Brown, Linux Kernel, simon.derr, Andrew Morton On Fri, 2007-09-28 at 09:52 -0400, Mark Lord wrote: > We need to disable all CPUs other than the boot CPU (usually 0) > before attempting to power-off modern SMP machines. > This seems to fix the hang-on-poweroff issue > that one of my SMP boxes exhibits. More testing required. > > Signed-off-by: Mark Lord <mlord@pobox.com> Fixes my new toybox as well. Thanks for tracking it down before I had to dig in. Acked-by: Thomas Gleixner <tglx@linutronix.de> > --- > > --- linux/kernel/sys.c.orig 2007-09-13 09:49:11.000000000 -0400 > +++ linux/kernel/sys.c 2007-09-28 09:48:54.000000000 -0400 > @@ -32,6 +32,7 @@ > #include <linux/getcpu.h> > #include <linux/task_io_accounting_ops.h> > #include <linux/seccomp.h> > +#include <linux/cpu.h> > > #include <linux/compat.h> > #include <linux/syscalls.h> > @@ -879,6 +880,7 @@ > if (pm_power_off_prepare) > pm_power_off_prepare(); > sysdev_shutdown(); > + disable_nonboot_cpus(); > printk(KERN_EMERG "Power down.\n"); > machine_power_off(); > } > - > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 26+ messages in thread
* [PATCH] (repost) Fix SMP poweroff hangs 2007-09-28 14:55 ` Thomas Gleixner @ 2007-09-28 19:53 ` Mark Lord 2007-09-30 9:00 ` Santiago Garcia Mantinan 0 siblings, 1 reply; 26+ messages in thread From: Mark Lord @ 2007-09-28 19:53 UTC (permalink / raw) To: Thomas Gleixner Cc: Rafael J. Wysocki, Len Brown, Linux Kernel, simon.derr, Andrew Morton Rafael J. Wysocki wrote: > .. >> @@ -879,6 +880,7 @@ >> if (pm_power_off_prepare) >> pm_power_off_prepare(); >> sysdev_shutdown(); >> + disable_nonboot_cpus(); > > Before sysdev_shutdown(), please. > > sysdev_shutdown() may touch things that belong to CPU0. Thanks. Here is the revised patch. * * * We need to disable all CPUs other than the boot CPU (usually 0) before attempting to power-off modern SMP machines. This fixes the hang-on-poweroff issue on my MythTV SMP box, and also on Thomas Gleixner's new toybox. Signed-off-by: Mark Lord <mlord@pobox.com> Acked-by: Thomas Gleixner <tglx@linutronix.de> --- --- linux/kernel/sys.c.orig 2007-09-13 09:49:11.000000000 -0400 +++ linux/kernel/sys.c 2007-09-28 15:48:54.000000000 -0400 @@ -32,6 +32,7 @@ #include <linux/getcpu.h> #include <linux/task_io_accounting_ops.h> #include <linux/seccomp.h> +#include <linux/cpu.h> #include <linux/compat.h> #include <linux/syscalls.h> @@ -878,6 +879,7 @@ kernel_shutdown_prepare(SYSTEM_POWER_OFF); if (pm_power_off_prepare) pm_power_off_prepare(); + disable_nonboot_cpus(); sysdev_shutdown(); printk(KERN_EMERG "Power down.\n"); machine_power_off(); ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH] (repost) Fix SMP poweroff hangs 2007-09-28 19:53 ` [PATCH] (repost) Fix SMP poweroff hangs Mark Lord @ 2007-09-30 9:00 ` Santiago Garcia Mantinan 2007-09-30 17:21 ` Mark Lord 0 siblings, 1 reply; 26+ messages in thread From: Santiago Garcia Mantinan @ 2007-09-30 9:00 UTC (permalink / raw) To: Mark Lord; +Cc: linux-kernel [-- Attachment #1: Type: text/plain, Size: 730 bytes --] Doesn't fix for me! I have an Athlon x2 running on a Asus A8N-E mobo which has an NForce 4 chipset, I thought this patch would fix poweroff for me too, but it doesn't. I'm seing this on 2.6.23-rc8 with and without your patch, here is what I get on the console: Shutdown: hdd Shutdown: hda System halted. Nothing else pops up. When I hadn't put your patch if I tried Ctrl+Alt+Del after the System halted message I could then see these messages: md: stopping all md devices. md: md1 sill in use. But no reboot would take place. I have not tested this Ctrl+Alt+Del thing with your patch, but I think it still behaves like that (not rebooting). I'm attaching my .config. Regards... -- Manty/BestiaTester -> http://manty.net [-- Attachment #2: config-2.6.23-rc8 --] [-- Type: text/plain, Size: 47997 bytes --] # # Automatically generated make config: don't edit # Linux kernel version: 2.6.23-rc8 # Sun Sep 30 10:35:30 2007 # CONFIG_X86_32=y CONFIG_GENERIC_TIME=y CONFIG_GENERIC_CMOS_UPDATE=y CONFIG_CLOCKSOURCE_WATCHDOG=y CONFIG_GENERIC_CLOCKEVENTS=y CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y CONFIG_LOCKDEP_SUPPORT=y CONFIG_STACKTRACE_SUPPORT=y CONFIG_SEMAPHORE_SLEEPERS=y CONFIG_X86=y CONFIG_MMU=y CONFIG_ZONE_DMA=y CONFIG_QUICKLIST=y CONFIG_GENERIC_ISA_DMA=y CONFIG_GENERIC_IOMAP=y CONFIG_GENERIC_BUG=y CONFIG_GENERIC_HWEIGHT=y CONFIG_ARCH_MAY_HAVE_PC_FDC=y CONFIG_DMI=y CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" # # General setup # CONFIG_EXPERIMENTAL=y CONFIG_LOCK_KERNEL=y CONFIG_INIT_ENV_ARG_LIMIT=32 CONFIG_LOCALVERSION="" CONFIG_LOCALVERSION_AUTO=y CONFIG_SWAP=y CONFIG_SYSVIPC=y CONFIG_SYSVIPC_SYSCTL=y # CONFIG_POSIX_MQUEUE is not set # CONFIG_BSD_PROCESS_ACCT is not set # CONFIG_TASKSTATS is not set # CONFIG_USER_NS is not set # CONFIG_AUDIT is not set # CONFIG_IKCONFIG is not set CONFIG_LOG_BUF_SHIFT=15 # CONFIG_CPUSETS is not set # CONFIG_SYSFS_DEPRECATED is not set # CONFIG_RELAY is not set # CONFIG_BLK_DEV_INITRD is not set CONFIG_CC_OPTIMIZE_FOR_SIZE=y CONFIG_SYSCTL=y # CONFIG_EMBEDDED is not set CONFIG_UID16=y CONFIG_SYSCTL_SYSCALL=y CONFIG_KALLSYMS=y # CONFIG_KALLSYMS_EXTRA_PASS is not set CONFIG_HOTPLUG=y CONFIG_PRINTK=y CONFIG_BUG=y CONFIG_ELF_CORE=y CONFIG_BASE_FULL=y CONFIG_FUTEX=y CONFIG_ANON_INODES=y CONFIG_EPOLL=y CONFIG_SIGNALFD=y CONFIG_EVENTFD=y CONFIG_SHMEM=y CONFIG_VM_EVENT_COUNTERS=y CONFIG_SLAB=y # CONFIG_SLUB is not set # CONFIG_SLOB is not set CONFIG_RT_MUTEXES=y # CONFIG_TINY_SHMEM is not set CONFIG_BASE_SMALL=0 CONFIG_MODULES=y CONFIG_MODULE_UNLOAD=y # CONFIG_MODULE_FORCE_UNLOAD is not set # CONFIG_MODVERSIONS is not set # CONFIG_MODULE_SRCVERSION_ALL is not set # CONFIG_KMOD is not set CONFIG_STOP_MACHINE=y CONFIG_BLOCK=y # CONFIG_LBD is not set # CONFIG_BLK_DEV_IO_TRACE is not set # CONFIG_LSF is not set # CONFIG_BLK_DEV_BSG is not set # # IO Schedulers # CONFIG_IOSCHED_NOOP=y CONFIG_IOSCHED_AS=y CONFIG_IOSCHED_DEADLINE=y CONFIG_IOSCHED_CFQ=y # CONFIG_DEFAULT_AS is not set # CONFIG_DEFAULT_DEADLINE is not set CONFIG_DEFAULT_CFQ=y # CONFIG_DEFAULT_NOOP is not set CONFIG_DEFAULT_IOSCHED="cfq" # # Processor type and features # # CONFIG_TICK_ONESHOT is not set # CONFIG_NO_HZ is not set # CONFIG_HIGH_RES_TIMERS is not set CONFIG_SMP=y CONFIG_X86_PC=y # CONFIG_X86_ELAN is not set # CONFIG_X86_VOYAGER is not set # CONFIG_X86_NUMAQ is not set # CONFIG_X86_SUMMIT is not set # CONFIG_X86_BIGSMP is not set # CONFIG_X86_VISWS is not set # CONFIG_X86_GENERICARCH is not set # CONFIG_X86_ES7000 is not set # CONFIG_PARAVIRT is not set # CONFIG_M386 is not set # CONFIG_M486 is not set # CONFIG_M586 is not set # CONFIG_M586TSC is not set # CONFIG_M586MMX is not set # CONFIG_M686 is not set # CONFIG_MPENTIUMII is not set # CONFIG_MPENTIUMIII is not set # CONFIG_MPENTIUMM is not set # CONFIG_MCORE2 is not set # CONFIG_MPENTIUM4 is not set # CONFIG_MK6 is not set # CONFIG_MK7 is not set CONFIG_MK8=y # CONFIG_MCRUSOE is not set # CONFIG_MEFFICEON is not set # CONFIG_MWINCHIPC6 is not set # CONFIG_MWINCHIP2 is not set # CONFIG_MWINCHIP3D is not set # CONFIG_MGEODEGX1 is not set # CONFIG_MGEODE_LX is not set # CONFIG_MCYRIXIII is not set # CONFIG_MVIAC3_2 is not set # CONFIG_MVIAC7 is not set # CONFIG_X86_GENERIC is not set CONFIG_X86_CMPXCHG=y CONFIG_X86_L1_CACHE_SHIFT=6 CONFIG_X86_XADD=y CONFIG_RWSEM_XCHGADD_ALGORITHM=y # CONFIG_ARCH_HAS_ILOG2_U32 is not set # CONFIG_ARCH_HAS_ILOG2_U64 is not set CONFIG_GENERIC_CALIBRATE_DELAY=y CONFIG_X86_WP_WORKS_OK=y CONFIG_X86_INVLPG=y CONFIG_X86_BSWAP=y CONFIG_X86_POPAD_OK=y CONFIG_X86_GOOD_APIC=y CONFIG_X86_INTEL_USERCOPY=y CONFIG_X86_USE_PPRO_CHECKSUM=y CONFIG_X86_TSC=y CONFIG_X86_MINIMUM_CPU_FAMILY=4 # CONFIG_HPET_TIMER is not set CONFIG_NR_CPUS=8 # CONFIG_SCHED_SMT is not set CONFIG_SCHED_MC=y CONFIG_PREEMPT_NONE=y # CONFIG_PREEMPT_VOLUNTARY is not set # CONFIG_PREEMPT is not set CONFIG_PREEMPT_BKL=y CONFIG_X86_LOCAL_APIC=y CONFIG_X86_IO_APIC=y # CONFIG_X86_MCE is not set CONFIG_VM86=y # CONFIG_TOSHIBA is not set # CONFIG_I8K is not set # CONFIG_X86_REBOOTFIXUPS is not set # CONFIG_MICROCODE is not set # CONFIG_X86_MSR is not set # CONFIG_X86_CPUID is not set # # Firmware Drivers # # CONFIG_EDD is not set # CONFIG_DELL_RBU is not set # CONFIG_DCDBAS is not set # CONFIG_DMIID is not set CONFIG_NOHIGHMEM=y # CONFIG_HIGHMEM4G is not set # CONFIG_HIGHMEM64G is not set CONFIG_PAGE_OFFSET=0xC0000000 # CONFIG_X86_PAE is not set CONFIG_ARCH_FLATMEM_ENABLE=y CONFIG_ARCH_SPARSEMEM_ENABLE=y CONFIG_ARCH_SELECT_MEMORY_MODEL=y CONFIG_ARCH_POPULATES_NODE_MAP=y CONFIG_SELECT_MEMORY_MODEL=y CONFIG_FLATMEM_MANUAL=y # CONFIG_DISCONTIGMEM_MANUAL is not set # CONFIG_SPARSEMEM_MANUAL is not set CONFIG_FLATMEM=y CONFIG_FLAT_NODE_MEM_MAP=y CONFIG_SPARSEMEM_STATIC=y CONFIG_SPLIT_PTLOCK_CPUS=4 # CONFIG_RESOURCES_64BIT is not set CONFIG_ZONE_DMA_FLAG=1 CONFIG_BOUNCE=y CONFIG_NR_QUICK=1 CONFIG_VIRT_TO_BUS=y # CONFIG_MATH_EMULATION is not set CONFIG_MTRR=y # CONFIG_EFI is not set CONFIG_IRQBALANCE=y CONFIG_SECCOMP=y # CONFIG_HZ_100 is not set CONFIG_HZ_250=y # CONFIG_HZ_300 is not set # CONFIG_HZ_1000 is not set CONFIG_HZ=250 # CONFIG_KEXEC is not set CONFIG_PHYSICAL_START=0x100000 # CONFIG_RELOCATABLE is not set CONFIG_PHYSICAL_ALIGN=0x100000 CONFIG_HOTPLUG_CPU=y # CONFIG_COMPAT_VDSO is not set # # Power management options (ACPI, APM) # CONFIG_PM=y # CONFIG_PM_LEGACY is not set # CONFIG_PM_DEBUG is not set CONFIG_SUSPEND_SMP_POSSIBLE=y # CONFIG_SUSPEND is not set CONFIG_HIBERNATION_SMP_POSSIBLE=y # CONFIG_HIBERNATION is not set CONFIG_ACPI=y # CONFIG_ACPI_PROCFS is not set CONFIG_ACPI_PROC_EVENT=y CONFIG_ACPI_AC=y # CONFIG_ACPI_BATTERY is not set CONFIG_ACPI_BUTTON=y # CONFIG_ACPI_FAN is not set # CONFIG_ACPI_DOCK is not set CONFIG_ACPI_PROCESSOR=y CONFIG_ACPI_HOTPLUG_CPU=y CONFIG_ACPI_THERMAL=y # CONFIG_ACPI_ASUS is not set # CONFIG_ACPI_TOSHIBA is not set CONFIG_ACPI_BLACKLIST_YEAR=0 # CONFIG_ACPI_DEBUG is not set CONFIG_ACPI_EC=y CONFIG_ACPI_POWER=y CONFIG_ACPI_SYSTEM=y CONFIG_X86_PM_TIMER=y CONFIG_ACPI_CONTAINER=y # CONFIG_ACPI_SBS is not set # # CPU Frequency scaling # # CONFIG_CPU_FREQ is not set # # Bus options (PCI, PCMCIA, EISA, MCA, ISA) # CONFIG_PCI=y # CONFIG_PCI_GOBIOS is not set # CONFIG_PCI_GOMMCONFIG is not set # CONFIG_PCI_GODIRECT is not set CONFIG_PCI_GOANY=y CONFIG_PCI_BIOS=y CONFIG_PCI_DIRECT=y CONFIG_PCI_MMCONFIG=y CONFIG_PCIEPORTBUS=y CONFIG_PCIEAER=y CONFIG_ARCH_SUPPORTS_MSI=y # CONFIG_PCI_MSI is not set CONFIG_HT_IRQ=y CONFIG_ISA_DMA_API=y # CONFIG_ISA is not set # CONFIG_MCA is not set # CONFIG_SCx200 is not set # # PCCARD (PCMCIA/CardBus) support # CONFIG_PCCARD=m # CONFIG_PCMCIA_DEBUG is not set CONFIG_PCMCIA=m # CONFIG_PCMCIA_LOAD_CIS is not set # CONFIG_PCMCIA_IOCTL is not set CONFIG_CARDBUS=y # # PC-card bridges # CONFIG_YENTA=m CONFIG_YENTA_O2=y CONFIG_YENTA_RICOH=y CONFIG_YENTA_TI=y CONFIG_YENTA_ENE_TUNE=y CONFIG_YENTA_TOSHIBA=y # CONFIG_PD6729 is not set # CONFIG_I82092 is not set CONFIG_PCCARD_NONSTATIC=m # CONFIG_HOTPLUG_PCI is not set # # Executable file formats # CONFIG_BINFMT_ELF=y # CONFIG_BINFMT_AOUT is not set # CONFIG_BINFMT_MISC is not set # # Networking # CONFIG_NET=y # # Networking options # CONFIG_PACKET=y # CONFIG_PACKET_MMAP is not set CONFIG_UNIX=y # CONFIG_NET_KEY is not set CONFIG_INET=y # CONFIG_IP_MULTICAST is not set # CONFIG_IP_ADVANCED_ROUTER is not set CONFIG_IP_FIB_HASH=y # CONFIG_IP_PNP is not set # CONFIG_NET_IPIP is not set # CONFIG_NET_IPGRE is not set # CONFIG_ARPD is not set # CONFIG_SYN_COOKIES is not set # CONFIG_INET_AH is not set # CONFIG_INET_ESP is not set # CONFIG_INET_IPCOMP is not set # CONFIG_INET_XFRM_TUNNEL is not set # CONFIG_INET_TUNNEL is not set # CONFIG_INET_XFRM_MODE_TRANSPORT is not set # CONFIG_INET_XFRM_MODE_TUNNEL is not set # CONFIG_INET_XFRM_MODE_BEET is not set # CONFIG_INET_DIAG is not set # CONFIG_TCP_CONG_ADVANCED is not set CONFIG_TCP_CONG_CUBIC=y CONFIG_DEFAULT_TCP_CONG="cubic" # CONFIG_TCP_MD5SIG is not set # CONFIG_IP_VS is not set # CONFIG_IPV6 is not set # CONFIG_INET6_XFRM_TUNNEL is not set # CONFIG_INET6_TUNNEL is not set # CONFIG_NETWORK_SECMARK is not set CONFIG_NETFILTER=y # CONFIG_NETFILTER_DEBUG is not set CONFIG_BRIDGE_NETFILTER=y # # Core Netfilter Configuration # # CONFIG_NETFILTER_NETLINK is not set # CONFIG_NF_CONNTRACK_ENABLED is not set # CONFIG_NF_CONNTRACK is not set CONFIG_NETFILTER_XTABLES=m CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m # CONFIG_NETFILTER_XT_TARGET_DSCP is not set CONFIG_NETFILTER_XT_TARGET_MARK=m CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set # CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set CONFIG_NETFILTER_XT_MATCH_COMMENT=m CONFIG_NETFILTER_XT_MATCH_DCCP=m # CONFIG_NETFILTER_XT_MATCH_DSCP is not set # CONFIG_NETFILTER_XT_MATCH_ESP is not set CONFIG_NETFILTER_XT_MATCH_LENGTH=m CONFIG_NETFILTER_XT_MATCH_LIMIT=m CONFIG_NETFILTER_XT_MATCH_MAC=m CONFIG_NETFILTER_XT_MATCH_MARK=m CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m # CONFIG_NETFILTER_XT_MATCH_QUOTA is not set CONFIG_NETFILTER_XT_MATCH_REALM=m CONFIG_NETFILTER_XT_MATCH_SCTP=m # CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set CONFIG_NETFILTER_XT_MATCH_STRING=m CONFIG_NETFILTER_XT_MATCH_TCPMSS=m # CONFIG_NETFILTER_XT_MATCH_U32 is not set # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set # # IP: Netfilter Configuration # # CONFIG_IP_NF_QUEUE is not set CONFIG_IP_NF_IPTABLES=m CONFIG_IP_NF_MATCH_IPRANGE=m # CONFIG_IP_NF_MATCH_TOS is not set # CONFIG_IP_NF_MATCH_RECENT is not set # CONFIG_IP_NF_MATCH_ECN is not set # CONFIG_IP_NF_MATCH_AH is not set # CONFIG_IP_NF_MATCH_TTL is not set CONFIG_IP_NF_MATCH_OWNER=m CONFIG_IP_NF_MATCH_ADDRTYPE=m CONFIG_IP_NF_FILTER=m CONFIG_IP_NF_TARGET_REJECT=m CONFIG_IP_NF_TARGET_LOG=m # CONFIG_IP_NF_TARGET_ULOG is not set CONFIG_IP_NF_MANGLE=m # CONFIG_IP_NF_TARGET_TOS is not set # CONFIG_IP_NF_TARGET_ECN is not set # CONFIG_IP_NF_TARGET_TTL is not set # CONFIG_IP_NF_RAW is not set # CONFIG_IP_NF_ARPTABLES is not set # # Bridge: Netfilter Configuration # CONFIG_BRIDGE_NF_EBTABLES=m # CONFIG_BRIDGE_EBT_BROUTE is not set CONFIG_BRIDGE_EBT_T_FILTER=m # CONFIG_BRIDGE_EBT_T_NAT is not set # CONFIG_BRIDGE_EBT_802_3 is not set # CONFIG_BRIDGE_EBT_AMONG is not set CONFIG_BRIDGE_EBT_ARP=m CONFIG_BRIDGE_EBT_IP=m CONFIG_BRIDGE_EBT_LIMIT=m # CONFIG_BRIDGE_EBT_MARK is not set # CONFIG_BRIDGE_EBT_PKTTYPE is not set # CONFIG_BRIDGE_EBT_STP is not set # CONFIG_BRIDGE_EBT_VLAN is not set # CONFIG_BRIDGE_EBT_ARPREPLY is not set # CONFIG_BRIDGE_EBT_DNAT is not set # CONFIG_BRIDGE_EBT_MARK_T is not set # CONFIG_BRIDGE_EBT_REDIRECT is not set # CONFIG_BRIDGE_EBT_SNAT is not set CONFIG_BRIDGE_EBT_LOG=m # CONFIG_BRIDGE_EBT_ULOG is not set # CONFIG_IP_DCCP is not set # CONFIG_IP_SCTP is not set # CONFIG_TIPC is not set # CONFIG_ATM is not set CONFIG_BRIDGE=m CONFIG_VLAN_8021Q=m # CONFIG_DECNET is not set CONFIG_LLC=m # CONFIG_LLC2 is not set # CONFIG_IPX is not set # CONFIG_ATALK is not set # CONFIG_X25 is not set # CONFIG_LAPB is not set # CONFIG_ECONET is not set # CONFIG_WAN_ROUTER is not set # # QoS and/or fair queueing # # CONFIG_NET_SCHED is not set CONFIG_NET_CLS_ROUTE=y # # Network testing # # CONFIG_NET_PKTGEN is not set # CONFIG_HAMRADIO is not set # CONFIG_IRDA is not set # CONFIG_BT is not set # CONFIG_AF_RXRPC is not set # # Wireless # # CONFIG_CFG80211 is not set CONFIG_WIRELESS_EXT=y # CONFIG_MAC80211 is not set CONFIG_IEEE80211=m # CONFIG_IEEE80211_DEBUG is not set CONFIG_IEEE80211_CRYPT_WEP=m # CONFIG_IEEE80211_CRYPT_CCMP is not set # CONFIG_IEEE80211_CRYPT_TKIP is not set # CONFIG_IEEE80211_SOFTMAC is not set # CONFIG_RFKILL is not set # CONFIG_NET_9P is not set # # Device Drivers # # # Generic Driver Options # CONFIG_STANDALONE=y CONFIG_PREVENT_FIRMWARE_BUILD=y CONFIG_FW_LOADER=m # CONFIG_SYS_HYPERVISOR is not set # CONFIG_CONNECTOR is not set # CONFIG_MTD is not set CONFIG_PARPORT=m CONFIG_PARPORT_PC=m # CONFIG_PARPORT_SERIAL is not set # CONFIG_PARPORT_PC_FIFO is not set # CONFIG_PARPORT_PC_SUPERIO is not set # CONFIG_PARPORT_PC_PCMCIA is not set # CONFIG_PARPORT_GSC is not set # CONFIG_PARPORT_AX88796 is not set # CONFIG_PARPORT_1284 is not set CONFIG_PNP=y # CONFIG_PNP_DEBUG is not set # # Protocols # CONFIG_PNPACPI=y CONFIG_BLK_DEV=y CONFIG_BLK_DEV_FD=y # CONFIG_PARIDE is not set # CONFIG_BLK_CPQ_DA is not set # CONFIG_BLK_CPQ_CISS_DA is not set # CONFIG_BLK_DEV_DAC960 is not set # CONFIG_BLK_DEV_UMEM is not set # CONFIG_BLK_DEV_COW_COMMON is not set CONFIG_BLK_DEV_LOOP=m # CONFIG_BLK_DEV_CRYPTOLOOP is not set # CONFIG_BLK_DEV_NBD is not set # CONFIG_BLK_DEV_SX8 is not set # CONFIG_BLK_DEV_UB is not set # CONFIG_BLK_DEV_RAM is not set # CONFIG_CDROM_PKTCDVD is not set # CONFIG_ATA_OVER_ETH is not set CONFIG_MISC_DEVICES=y # CONFIG_IBM_ASM is not set # CONFIG_PHANTOM is not set # CONFIG_EEPROM_93CX6 is not set # CONFIG_SGI_IOC4 is not set # CONFIG_TIFM_CORE is not set # CONFIG_SONY_LAPTOP is not set # CONFIG_THINKPAD_ACPI is not set CONFIG_IDE=y CONFIG_BLK_DEV_IDE=y # # Please see Documentation/ide.txt for help/info on IDE drives # # CONFIG_BLK_DEV_IDE_SATA is not set # CONFIG_BLK_DEV_HD_IDE is not set CONFIG_BLK_DEV_IDEDISK=y CONFIG_IDEDISK_MULTI_MODE=y CONFIG_BLK_DEV_IDECS=m # CONFIG_BLK_DEV_DELKIN is not set CONFIG_BLK_DEV_IDECD=y # CONFIG_BLK_DEV_IDETAPE is not set # CONFIG_BLK_DEV_IDEFLOPPY is not set # CONFIG_BLK_DEV_IDESCSI is not set # CONFIG_BLK_DEV_IDEACPI is not set # CONFIG_IDE_TASK_IOCTL is not set # CONFIG_IDE_PROC_FS is not set # # IDE chipset support/bugfixes # # CONFIG_IDE_GENERIC is not set # CONFIG_BLK_DEV_CMD640 is not set # CONFIG_BLK_DEV_IDEPNP is not set CONFIG_BLK_DEV_IDEPCI=y CONFIG_IDEPCI_SHARE_IRQ=y CONFIG_IDEPCI_PCIBUS_ORDER=y # CONFIG_BLK_DEV_OFFBOARD is not set # CONFIG_BLK_DEV_GENERIC is not set # CONFIG_BLK_DEV_OPTI621 is not set # CONFIG_BLK_DEV_RZ1000 is not set CONFIG_BLK_DEV_IDEDMA_PCI=y # CONFIG_BLK_DEV_IDEDMA_FORCED is not set # CONFIG_IDEDMA_ONLYDISK is not set # CONFIG_BLK_DEV_AEC62XX is not set # CONFIG_BLK_DEV_ALI15X3 is not set CONFIG_BLK_DEV_AMD74XX=y # CONFIG_BLK_DEV_ATIIXP is not set # CONFIG_BLK_DEV_CMD64X is not set # CONFIG_BLK_DEV_TRIFLEX is not set # CONFIG_BLK_DEV_CY82C693 is not set # CONFIG_BLK_DEV_CS5520 is not set # CONFIG_BLK_DEV_CS5530 is not set # CONFIG_BLK_DEV_CS5535 is not set # CONFIG_BLK_DEV_HPT34X is not set # CONFIG_BLK_DEV_HPT366 is not set # CONFIG_BLK_DEV_JMICRON is not set # CONFIG_BLK_DEV_SC1200 is not set # CONFIG_BLK_DEV_PIIX is not set # CONFIG_BLK_DEV_IT8213 is not set # CONFIG_BLK_DEV_IT821X is not set # CONFIG_BLK_DEV_NS87415 is not set # CONFIG_BLK_DEV_PDC202XX_OLD is not set # CONFIG_BLK_DEV_PDC202XX_NEW is not set # CONFIG_BLK_DEV_SVWKS is not set # CONFIG_BLK_DEV_SIIMAGE is not set # CONFIG_BLK_DEV_SIS5513 is not set # CONFIG_BLK_DEV_SLC90E66 is not set # CONFIG_BLK_DEV_TRM290 is not set # CONFIG_BLK_DEV_VIA82CXXX is not set # CONFIG_BLK_DEV_TC86C001 is not set # CONFIG_IDE_ARM is not set CONFIG_BLK_DEV_IDEDMA=y # CONFIG_IDEDMA_IVB is not set # CONFIG_BLK_DEV_HD is not set # # SCSI device support # # CONFIG_RAID_ATTRS is not set CONFIG_SCSI=m CONFIG_SCSI_DMA=y # CONFIG_SCSI_TGT is not set # CONFIG_SCSI_NETLINK is not set # CONFIG_SCSI_PROC_FS is not set # # SCSI support type (disk, tape, CD-ROM) # CONFIG_BLK_DEV_SD=m # CONFIG_CHR_DEV_ST is not set # CONFIG_CHR_DEV_OSST is not set CONFIG_BLK_DEV_SR=m # CONFIG_BLK_DEV_SR_VENDOR is not set CONFIG_CHR_DEV_SG=m # CONFIG_CHR_DEV_SCH is not set # # Some SCSI devices (e.g. CD jukebox) support multiple LUNs # CONFIG_SCSI_MULTI_LUN=y # CONFIG_SCSI_CONSTANTS is not set # CONFIG_SCSI_LOGGING is not set # CONFIG_SCSI_SCAN_ASYNC is not set CONFIG_SCSI_WAIT_SCAN=m # # SCSI Transports # # CONFIG_SCSI_SPI_ATTRS is not set # CONFIG_SCSI_FC_ATTRS is not set # CONFIG_SCSI_ISCSI_ATTRS is not set # CONFIG_SCSI_SAS_LIBSAS is not set # CONFIG_SCSI_LOWLEVEL is not set # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set CONFIG_ATA=m # CONFIG_ATA_NONSTANDARD is not set CONFIG_ATA_ACPI=y # CONFIG_SATA_AHCI is not set # CONFIG_SATA_SVW is not set # CONFIG_ATA_PIIX is not set # CONFIG_SATA_MV is not set CONFIG_SATA_NV=m # CONFIG_PDC_ADMA is not set # CONFIG_SATA_QSTOR is not set # CONFIG_SATA_PROMISE is not set # CONFIG_SATA_SX4 is not set # CONFIG_SATA_SIL is not set # CONFIG_SATA_SIL24 is not set # CONFIG_SATA_SIS is not set # CONFIG_SATA_ULI is not set # CONFIG_SATA_VIA is not set # CONFIG_SATA_VITESSE is not set # CONFIG_SATA_INIC162X is not set # CONFIG_PATA_ALI is not set # CONFIG_PATA_AMD is not set # CONFIG_PATA_ARTOP is not set # CONFIG_PATA_ATIIXP is not set # CONFIG_PATA_CMD640_PCI is not set # CONFIG_PATA_CMD64X is not set # CONFIG_PATA_CS5520 is not set # CONFIG_PATA_CS5530 is not set # CONFIG_PATA_CS5535 is not set # CONFIG_PATA_CYPRESS is not set # CONFIG_PATA_EFAR is not set # CONFIG_ATA_GENERIC is not set # CONFIG_PATA_HPT366 is not set # CONFIG_PATA_HPT37X is not set # CONFIG_PATA_HPT3X2N is not set # CONFIG_PATA_HPT3X3 is not set # CONFIG_PATA_IT821X is not set # CONFIG_PATA_IT8213 is not set # CONFIG_PATA_JMICRON is not set # CONFIG_PATA_TRIFLEX is not set # CONFIG_PATA_MARVELL is not set # CONFIG_PATA_MPIIX is not set # CONFIG_PATA_OLDPIIX is not set # CONFIG_PATA_NETCELL is not set # CONFIG_PATA_NS87410 is not set # CONFIG_PATA_OPTI is not set # CONFIG_PATA_OPTIDMA is not set # CONFIG_PATA_PCMCIA is not set # CONFIG_PATA_PDC_OLD is not set # CONFIG_PATA_RADISYS is not set # CONFIG_PATA_RZ1000 is not set # CONFIG_PATA_SC1200 is not set # CONFIG_PATA_SERVERWORKS is not set # CONFIG_PATA_PDC2027X is not set # CONFIG_PATA_SIL680 is not set # CONFIG_PATA_SIS is not set # CONFIG_PATA_VIA is not set # CONFIG_PATA_WINBOND is not set CONFIG_MD=y CONFIG_BLK_DEV_MD=y # CONFIG_MD_LINEAR is not set CONFIG_MD_RAID0=y CONFIG_MD_RAID1=y # CONFIG_MD_RAID10 is not set # CONFIG_MD_RAID456 is not set # CONFIG_MD_MULTIPATH is not set # CONFIG_MD_FAULTY is not set # CONFIG_BLK_DEV_DM is not set # # Fusion MPT device support # # CONFIG_FUSION is not set # CONFIG_FUSION_SPI is not set # CONFIG_FUSION_FC is not set # CONFIG_FUSION_SAS is not set # # IEEE 1394 (FireWire) support # # CONFIG_FIREWIRE is not set CONFIG_IEEE1394=m # # Subsystem Options # # CONFIG_IEEE1394_VERBOSEDEBUG is not set # # Controllers # CONFIG_IEEE1394_PCILYNX=m CONFIG_IEEE1394_OHCI1394=m # # Protocols # CONFIG_IEEE1394_VIDEO1394=m CONFIG_IEEE1394_SBP2=m # CONFIG_IEEE1394_SBP2_PHYS_DMA is not set CONFIG_IEEE1394_ETH1394_ROM_ENTRY=y CONFIG_IEEE1394_ETH1394=m CONFIG_IEEE1394_DV1394=m CONFIG_IEEE1394_RAWIO=m # CONFIG_I2O is not set # CONFIG_MACINTOSH_DRIVERS is not set CONFIG_NETDEVICES=y # CONFIG_NETDEVICES_MULTIQUEUE is not set # CONFIG_DUMMY is not set # CONFIG_BONDING is not set # CONFIG_MACVLAN is not set # CONFIG_EQUALIZER is not set # CONFIG_TUN is not set # CONFIG_NET_SB1000 is not set # CONFIG_ARCNET is not set # CONFIG_PHYLIB is not set CONFIG_NET_ETHERNET=y CONFIG_MII=m # CONFIG_HAPPYMEAL is not set # CONFIG_SUNGEM is not set # CONFIG_CASSINI is not set CONFIG_NET_VENDOR_3COM=y CONFIG_VORTEX=m # CONFIG_TYPHOON is not set # CONFIG_NET_TULIP is not set # CONFIG_HP100 is not set CONFIG_NET_PCI=y # CONFIG_PCNET32 is not set # CONFIG_AMD8111_ETH is not set # CONFIG_ADAPTEC_STARFIRE is not set # CONFIG_B44 is not set CONFIG_FORCEDETH=m CONFIG_FORCEDETH_NAPI=y # CONFIG_DGRS is not set # CONFIG_EEPRO100 is not set # CONFIG_E100 is not set # CONFIG_FEALNX is not set # CONFIG_NATSEMI is not set CONFIG_NE2K_PCI=m # CONFIG_8139CP is not set CONFIG_8139TOO=m # CONFIG_8139TOO_PIO is not set # CONFIG_8139TOO_TUNE_TWISTER is not set # CONFIG_8139TOO_8129 is not set # CONFIG_8139_OLD_RX_RESET is not set # CONFIG_SIS900 is not set # CONFIG_EPIC100 is not set # CONFIG_SUNDANCE is not set # CONFIG_TLAN is not set # CONFIG_VIA_RHINE is not set # CONFIG_SC92031 is not set # CONFIG_NET_POCKET is not set CONFIG_NETDEV_1000=y # CONFIG_ACENIC is not set CONFIG_DL2K=m CONFIG_E1000=m CONFIG_E1000_NAPI=y # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set # CONFIG_NS83820 is not set # CONFIG_HAMACHI is not set # CONFIG_YELLOWFIN is not set CONFIG_R8169=m CONFIG_R8169_NAPI=y CONFIG_R8169_VLAN=y # CONFIG_SIS190 is not set # CONFIG_SKGE is not set # CONFIG_SKY2 is not set # CONFIG_SK98LIN is not set # CONFIG_VIA_VELOCITY is not set # CONFIG_TIGON3 is not set # CONFIG_BNX2 is not set # CONFIG_QLA3XXX is not set # CONFIG_ATL1 is not set CONFIG_NETDEV_10000=y # CONFIG_CHELSIO_T1 is not set # CONFIG_CHELSIO_T3 is not set # CONFIG_IXGB is not set # CONFIG_S2IO is not set # CONFIG_MYRI10GE is not set # CONFIG_NETXEN_NIC is not set # CONFIG_MLX4_CORE is not set # CONFIG_TR is not set # # Wireless LAN # # CONFIG_WLAN_PRE80211 is not set CONFIG_WLAN_80211=y # CONFIG_PCMCIA_RAYCS is not set # CONFIG_IPW2100 is not set # CONFIG_IPW2200 is not set # CONFIG_LIBERTAS is not set # CONFIG_AIRO is not set CONFIG_HERMES=m CONFIG_PLX_HERMES=m # CONFIG_TMD_HERMES is not set # CONFIG_NORTEL_HERMES is not set # CONFIG_PCI_HERMES is not set # CONFIG_ATMEL is not set CONFIG_PCMCIA_HERMES=m # CONFIG_PCMCIA_SPECTRUM is not set # CONFIG_AIRO_CS is not set # CONFIG_PCMCIA_WL3501 is not set CONFIG_PRISM54=m CONFIG_USB_ZD1201=m CONFIG_HOSTAP=m CONFIG_HOSTAP_FIRMWARE=y CONFIG_HOSTAP_FIRMWARE_NVRAM=y CONFIG_HOSTAP_PLX=m # CONFIG_HOSTAP_PCI is not set CONFIG_HOSTAP_CS=m # # USB Network Adapters # # CONFIG_USB_CATC is not set # CONFIG_USB_KAWETH is not set # CONFIG_USB_PEGASUS is not set # CONFIG_USB_RTL8150 is not set # CONFIG_USB_USBNET_MII is not set # CONFIG_USB_USBNET is not set CONFIG_NET_PCMCIA=y # CONFIG_PCMCIA_3C589 is not set # CONFIG_PCMCIA_3C574 is not set # CONFIG_PCMCIA_FMVJ18X is not set CONFIG_PCMCIA_PCNET=m # CONFIG_PCMCIA_NMCLAN is not set # CONFIG_PCMCIA_SMC91C92 is not set # CONFIG_PCMCIA_XIRC2PS is not set CONFIG_PCMCIA_AXNET=m # CONFIG_WAN is not set # CONFIG_FDDI is not set # CONFIG_HIPPI is not set CONFIG_PLIP=m CONFIG_PPP=m # CONFIG_PPP_MULTILINK is not set # CONFIG_PPP_FILTER is not set CONFIG_PPP_ASYNC=m # CONFIG_PPP_SYNC_TTY is not set # CONFIG_PPP_DEFLATE is not set # CONFIG_PPP_BSDCOMP is not set # CONFIG_PPP_MPPE is not set # CONFIG_PPPOE is not set # CONFIG_PPPOL2TP is not set # CONFIG_SLIP is not set CONFIG_SLHC=m # CONFIG_NET_FC is not set # CONFIG_SHAPER is not set # CONFIG_NETCONSOLE is not set # CONFIG_NETPOLL is not set # CONFIG_NET_POLL_CONTROLLER is not set # CONFIG_ISDN is not set # CONFIG_PHONE is not set # # Input device support # CONFIG_INPUT=y # CONFIG_INPUT_FF_MEMLESS is not set # CONFIG_INPUT_POLLDEV is not set # # Userland interfaces # CONFIG_INPUT_MOUSEDEV=y CONFIG_INPUT_MOUSEDEV_PSAUX=y CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 # CONFIG_INPUT_JOYDEV is not set # CONFIG_INPUT_TSDEV is not set # CONFIG_INPUT_EVDEV is not set # CONFIG_INPUT_EVBUG is not set # # Input Device Drivers # CONFIG_INPUT_KEYBOARD=y CONFIG_KEYBOARD_ATKBD=y # CONFIG_KEYBOARD_SUNKBD is not set # CONFIG_KEYBOARD_LKKBD is not set # CONFIG_KEYBOARD_XTKBD is not set # CONFIG_KEYBOARD_NEWTON is not set # CONFIG_KEYBOARD_STOWAWAY is not set CONFIG_INPUT_MOUSE=y CONFIG_MOUSE_PS2=y CONFIG_MOUSE_PS2_ALPS=y CONFIG_MOUSE_PS2_LOGIPS2PP=y CONFIG_MOUSE_PS2_SYNAPTICS=y CONFIG_MOUSE_PS2_LIFEBOOK=y CONFIG_MOUSE_PS2_TRACKPOINT=y # CONFIG_MOUSE_PS2_TOUCHKIT is not set # CONFIG_MOUSE_SERIAL is not set # CONFIG_MOUSE_APPLETOUCH is not set # CONFIG_MOUSE_VSXXXAA is not set # CONFIG_INPUT_JOYSTICK is not set # CONFIG_INPUT_TABLET is not set # CONFIG_INPUT_TOUCHSCREEN is not set CONFIG_INPUT_MISC=y CONFIG_INPUT_PCSPKR=y # CONFIG_INPUT_WISTRON_BTNS is not set # CONFIG_INPUT_ATLAS_BTNS is not set # CONFIG_INPUT_ATI_REMOTE is not set # CONFIG_INPUT_ATI_REMOTE2 is not set # CONFIG_INPUT_KEYSPAN_REMOTE is not set # CONFIG_INPUT_POWERMATE is not set # CONFIG_INPUT_YEALINK is not set # CONFIG_INPUT_UINPUT is not set # # Hardware I/O ports # CONFIG_SERIO=y CONFIG_SERIO_I8042=y CONFIG_SERIO_SERPORT=y # CONFIG_SERIO_CT82C710 is not set # CONFIG_SERIO_PARKBD is not set # CONFIG_SERIO_PCIPS2 is not set CONFIG_SERIO_LIBPS2=y # CONFIG_SERIO_RAW is not set # CONFIG_GAMEPORT is not set # # Character devices # CONFIG_VT=y CONFIG_VT_CONSOLE=y CONFIG_HW_CONSOLE=y # CONFIG_VT_HW_CONSOLE_BINDING is not set # CONFIG_SERIAL_NONSTANDARD is not set # # Serial drivers # CONFIG_SERIAL_8250=y CONFIG_SERIAL_8250_CONSOLE=y CONFIG_FIX_EARLYCON_MEM=y CONFIG_SERIAL_8250_PCI=y CONFIG_SERIAL_8250_PNP=y # CONFIG_SERIAL_8250_CS is not set CONFIG_SERIAL_8250_NR_UARTS=4 CONFIG_SERIAL_8250_RUNTIME_UARTS=4 # CONFIG_SERIAL_8250_EXTENDED is not set # # Non-8250 serial port support # CONFIG_SERIAL_CORE=y CONFIG_SERIAL_CORE_CONSOLE=y # CONFIG_SERIAL_JSM is not set CONFIG_UNIX98_PTYS=y CONFIG_LEGACY_PTYS=y CONFIG_LEGACY_PTY_COUNT=256 CONFIG_PRINTER=m # CONFIG_LP_CONSOLE is not set # CONFIG_PPDEV is not set # CONFIG_TIPAR is not set # CONFIG_IPMI_HANDLER is not set # CONFIG_WATCHDOG is not set # CONFIG_HW_RANDOM is not set # CONFIG_NVRAM is not set CONFIG_RTC=y # CONFIG_R3964 is not set # CONFIG_APPLICOM is not set # CONFIG_SONYPI is not set # CONFIG_AGP is not set CONFIG_DRM=m # CONFIG_DRM_TDFX is not set # CONFIG_DRM_R128 is not set CONFIG_DRM_RADEON=m # CONFIG_DRM_MGA is not set # CONFIG_DRM_VIA is not set # CONFIG_DRM_SAVAGE is not set # # PCMCIA character devices # # CONFIG_SYNCLINK_CS is not set # CONFIG_CARDMAN_4000 is not set # CONFIG_CARDMAN_4040 is not set # CONFIG_MWAVE is not set # CONFIG_PC8736x_GPIO is not set # CONFIG_NSC_GPIO is not set # CONFIG_CS5535_GPIO is not set # CONFIG_RAW_DRIVER is not set # CONFIG_HPET is not set # CONFIG_HANGCHECK_TIMER is not set # CONFIG_TCG_TPM is not set # CONFIG_TELCLOCK is not set CONFIG_DEVPORT=y CONFIG_I2C=m CONFIG_I2C_BOARDINFO=y # CONFIG_I2C_CHARDEV is not set # # I2C Algorithms # CONFIG_I2C_ALGOBIT=m # CONFIG_I2C_ALGOPCF is not set # CONFIG_I2C_ALGOPCA is not set # # I2C Hardware Bus support # # CONFIG_I2C_ALI1535 is not set # CONFIG_I2C_ALI1563 is not set # CONFIG_I2C_ALI15X3 is not set # CONFIG_I2C_AMD756 is not set # CONFIG_I2C_AMD8111 is not set # CONFIG_I2C_I801 is not set # CONFIG_I2C_I810 is not set # CONFIG_I2C_PIIX4 is not set CONFIG_I2C_NFORCE2=m # CONFIG_I2C_OCORES is not set # CONFIG_I2C_PARPORT is not set # CONFIG_I2C_PARPORT_LIGHT is not set # CONFIG_I2C_PROSAVAGE is not set # CONFIG_I2C_SAVAGE4 is not set # CONFIG_I2C_SIMTEC is not set # CONFIG_SCx200_ACB is not set # CONFIG_I2C_SIS5595 is not set # CONFIG_I2C_SIS630 is not set # CONFIG_I2C_SIS96X is not set # CONFIG_I2C_TAOS_EVM is not set # CONFIG_I2C_STUB is not set # CONFIG_I2C_TINY_USB is not set # CONFIG_I2C_VIA is not set # CONFIG_I2C_VIAPRO is not set # CONFIG_I2C_VOODOO3 is not set # # Miscellaneous I2C Chip support # # CONFIG_SENSORS_DS1337 is not set # CONFIG_SENSORS_DS1374 is not set # CONFIG_DS1682 is not set # CONFIG_SENSORS_EEPROM is not set # CONFIG_SENSORS_PCF8574 is not set # CONFIG_SENSORS_PCA9539 is not set # CONFIG_SENSORS_PCF8591 is not set # CONFIG_SENSORS_MAX6875 is not set # CONFIG_SENSORS_TSL2550 is not set # CONFIG_I2C_DEBUG_CORE is not set # CONFIG_I2C_DEBUG_ALGO is not set # CONFIG_I2C_DEBUG_BUS is not set # CONFIG_I2C_DEBUG_CHIP is not set # # SPI support # # CONFIG_SPI is not set # CONFIG_SPI_MASTER is not set # CONFIG_W1 is not set # CONFIG_POWER_SUPPLY is not set CONFIG_HWMON=m # CONFIG_HWMON_VID is not set # CONFIG_SENSORS_ABITUGURU is not set # CONFIG_SENSORS_ABITUGURU3 is not set # CONFIG_SENSORS_AD7418 is not set # CONFIG_SENSORS_ADM1021 is not set # CONFIG_SENSORS_ADM1025 is not set # CONFIG_SENSORS_ADM1026 is not set # CONFIG_SENSORS_ADM1029 is not set # CONFIG_SENSORS_ADM1031 is not set # CONFIG_SENSORS_ADM9240 is not set CONFIG_SENSORS_K8TEMP=m # CONFIG_SENSORS_ASB100 is not set # CONFIG_SENSORS_ATXP1 is not set # CONFIG_SENSORS_DS1621 is not set # CONFIG_SENSORS_F71805F is not set # CONFIG_SENSORS_FSCHER is not set # CONFIG_SENSORS_FSCPOS is not set # CONFIG_SENSORS_GL518SM is not set # CONFIG_SENSORS_GL520SM is not set # CONFIG_SENSORS_CORETEMP is not set # CONFIG_SENSORS_IT87 is not set # CONFIG_SENSORS_LM63 is not set # CONFIG_SENSORS_LM75 is not set # CONFIG_SENSORS_LM77 is not set # CONFIG_SENSORS_LM78 is not set # CONFIG_SENSORS_LM80 is not set # CONFIG_SENSORS_LM83 is not set # CONFIG_SENSORS_LM85 is not set # CONFIG_SENSORS_LM87 is not set # CONFIG_SENSORS_LM90 is not set # CONFIG_SENSORS_LM92 is not set # CONFIG_SENSORS_LM93 is not set # CONFIG_SENSORS_MAX1619 is not set # CONFIG_SENSORS_MAX6650 is not set # CONFIG_SENSORS_PC87360 is not set # CONFIG_SENSORS_PC87427 is not set # CONFIG_SENSORS_SIS5595 is not set # CONFIG_SENSORS_DME1737 is not set # CONFIG_SENSORS_SMSC47M1 is not set # CONFIG_SENSORS_SMSC47M192 is not set # CONFIG_SENSORS_SMSC47B397 is not set # CONFIG_SENSORS_THMC50 is not set # CONFIG_SENSORS_VIA686A is not set # CONFIG_SENSORS_VT1211 is not set # CONFIG_SENSORS_VT8231 is not set # CONFIG_SENSORS_W83781D is not set # CONFIG_SENSORS_W83791D is not set # CONFIG_SENSORS_W83792D is not set # CONFIG_SENSORS_W83793 is not set # CONFIG_SENSORS_W83L785TS is not set # CONFIG_SENSORS_W83627HF is not set # CONFIG_SENSORS_W83627EHF is not set # CONFIG_SENSORS_HDAPS is not set # CONFIG_SENSORS_APPLESMC is not set # CONFIG_HWMON_DEBUG_CHIP is not set # # Multifunction device drivers # # CONFIG_MFD_SM501 is not set # # Multimedia devices # CONFIG_VIDEO_DEV=m CONFIG_VIDEO_V4L1=y CONFIG_VIDEO_V4L1_COMPAT=y CONFIG_VIDEO_V4L2=y CONFIG_VIDEO_CAPTURE_DRIVERS=y # CONFIG_VIDEO_ADV_DEBUG is not set CONFIG_VIDEO_HELPER_CHIPS_AUTO=y CONFIG_VIDEO_TVAUDIO=m CONFIG_VIDEO_TDA7432=m CONFIG_VIDEO_TDA9875=m CONFIG_VIDEO_MSP3400=m # CONFIG_VIDEO_VIVI is not set CONFIG_VIDEO_BT848=m # CONFIG_VIDEO_BT848_DVB is not set # CONFIG_VIDEO_SAA6588 is not set # CONFIG_VIDEO_BWQCAM is not set # CONFIG_VIDEO_CQCAM is not set # CONFIG_VIDEO_CPIA is not set # CONFIG_VIDEO_CPIA2 is not set # CONFIG_VIDEO_SAA5246A is not set # CONFIG_VIDEO_SAA5249 is not set # CONFIG_TUNER_3036 is not set # CONFIG_TUNER_TEA5761 is not set # CONFIG_VIDEO_STRADIS is not set # CONFIG_VIDEO_ZORAN is not set # CONFIG_VIDEO_SAA7134 is not set # CONFIG_VIDEO_MXB is not set # CONFIG_VIDEO_DPC is not set # CONFIG_VIDEO_HEXIUM_ORION is not set # CONFIG_VIDEO_HEXIUM_GEMINI is not set # CONFIG_VIDEO_CX88 is not set # CONFIG_VIDEO_IVTV is not set # CONFIG_VIDEO_CAFE_CCIC is not set CONFIG_V4L_USB_DRIVERS=y # CONFIG_VIDEO_PVRUSB2 is not set # CONFIG_VIDEO_EM28XX is not set # CONFIG_VIDEO_USBVISION is not set # CONFIG_USB_VICAM is not set # CONFIG_USB_IBMCAM is not set # CONFIG_USB_KONICAWC is not set # CONFIG_USB_QUICKCAM_MESSENGER is not set # CONFIG_USB_ET61X251 is not set # CONFIG_VIDEO_OVCAMCHIP is not set # CONFIG_USB_W9968CF is not set CONFIG_USB_OV511=m # CONFIG_USB_SE401 is not set # CONFIG_USB_SN9C102 is not set # CONFIG_USB_STV680 is not set # CONFIG_USB_ZC0301 is not set CONFIG_USB_PWC=m # CONFIG_USB_PWC_DEBUG is not set # CONFIG_USB_ZR364XX is not set CONFIG_RADIO_ADAPTERS=y # CONFIG_RADIO_GEMTEK_PCI is not set # CONFIG_RADIO_MAXIRADIO is not set # CONFIG_RADIO_MAESTRO is not set # CONFIG_USB_DSBR is not set CONFIG_DVB_CORE=m CONFIG_DVB_CORE_ATTACH=y CONFIG_DVB_CAPTURE_DRIVERS=y # # Supported SAA7146 based PCI Adapters # # CONFIG_DVB_AV7110 is not set # CONFIG_DVB_BUDGET is not set # CONFIG_DVB_BUDGET_CI is not set # CONFIG_DVB_BUDGET_AV is not set # # Supported USB Adapters # CONFIG_DVB_USB=m # CONFIG_DVB_USB_DEBUG is not set CONFIG_DVB_USB_A800=m # CONFIG_DVB_USB_DIBUSB_MB is not set # CONFIG_DVB_USB_DIBUSB_MC is not set # CONFIG_DVB_USB_DIB0700 is not set # CONFIG_DVB_USB_UMT_010 is not set # CONFIG_DVB_USB_CXUSB is not set # CONFIG_DVB_USB_M920X is not set # CONFIG_DVB_USB_GL861 is not set # CONFIG_DVB_USB_AU6610 is not set # CONFIG_DVB_USB_DIGITV is not set # CONFIG_DVB_USB_VP7045 is not set # CONFIG_DVB_USB_VP702X is not set # CONFIG_DVB_USB_GP8PSK is not set # CONFIG_DVB_USB_NOVA_T_USB2 is not set # CONFIG_DVB_USB_TTUSB2 is not set # CONFIG_DVB_USB_DTT200U is not set # CONFIG_DVB_USB_OPERA1 is not set # CONFIG_DVB_USB_AF9005 is not set # CONFIG_DVB_TTUSB_BUDGET is not set # CONFIG_DVB_TTUSB_DEC is not set # CONFIG_DVB_CINERGYT2 is not set # # Supported FlexCopII (B2C2) Adapters # # CONFIG_DVB_B2C2_FLEXCOP is not set # # Supported BT878 Adapters # # CONFIG_DVB_BT8XX is not set # # Supported Pluto2 Adapters # # CONFIG_DVB_PLUTO2 is not set # # Supported DVB Frontends # # # Customise DVB Frontends # # CONFIG_DVB_FE_CUSTOMISE is not set # # DVB-S (satellite) frontends # # CONFIG_DVB_STV0299 is not set # CONFIG_DVB_CX24110 is not set # CONFIG_DVB_CX24123 is not set # CONFIG_DVB_TDA8083 is not set # CONFIG_DVB_MT312 is not set # CONFIG_DVB_VES1X93 is not set # CONFIG_DVB_S5H1420 is not set # CONFIG_DVB_TDA10086 is not set # # DVB-T (terrestrial) frontends # # CONFIG_DVB_SP8870 is not set # CONFIG_DVB_SP887X is not set # CONFIG_DVB_CX22700 is not set # CONFIG_DVB_CX22702 is not set # CONFIG_DVB_L64781 is not set # CONFIG_DVB_TDA1004X is not set # CONFIG_DVB_NXT6000 is not set # CONFIG_DVB_MT352 is not set # CONFIG_DVB_ZL10353 is not set # CONFIG_DVB_DIB3000MB is not set CONFIG_DVB_DIB3000MC=m # CONFIG_DVB_DIB7000M is not set # CONFIG_DVB_DIB7000P is not set # # DVB-C (cable) frontends # # CONFIG_DVB_VES1820 is not set # CONFIG_DVB_TDA10021 is not set # CONFIG_DVB_TDA10023 is not set # CONFIG_DVB_STV0297 is not set # # ATSC (North American/Korean Terrestrial/Cable DTV) frontends # # CONFIG_DVB_NXT200X is not set # CONFIG_DVB_OR51211 is not set # CONFIG_DVB_OR51132 is not set # CONFIG_DVB_BCM3510 is not set # CONFIG_DVB_LGDT330X is not set # # Tuners/PLL support # CONFIG_DVB_PLL=m # CONFIG_DVB_TDA826X is not set # CONFIG_DVB_TDA827X is not set # CONFIG_DVB_TUNER_QT1010 is not set CONFIG_DVB_TUNER_MT2060=m # # Miscellaneous devices # # CONFIG_DVB_LNBP21 is not set # CONFIG_DVB_ISL6421 is not set # CONFIG_DVB_TUA6100 is not set CONFIG_VIDEO_TUNER=m CONFIG_VIDEO_BUF=m CONFIG_VIDEO_BTCX=m CONFIG_VIDEO_IR_I2C=m CONFIG_VIDEO_IR=m CONFIG_VIDEO_TVEEPROM=m CONFIG_DAB=y CONFIG_USB_DABUSB=m # # Graphics support # # CONFIG_BACKLIGHT_LCD_SUPPORT is not set # # Display device support # # CONFIG_DISPLAY_SUPPORT is not set # CONFIG_VGASTATE is not set # CONFIG_VIDEO_OUTPUT_CONTROL is not set # CONFIG_FB is not set # # Console display driver support # CONFIG_VGA_CONSOLE=y # CONFIG_VGACON_SOFT_SCROLLBACK is not set # CONFIG_VIDEO_SELECT is not set CONFIG_DUMMY_CONSOLE=y # # Sound # CONFIG_SOUND=y # # Advanced Linux Sound Architecture # CONFIG_SND=m CONFIG_SND_TIMER=m CONFIG_SND_PCM=m CONFIG_SND_HWDEP=m CONFIG_SND_RAWMIDI=m CONFIG_SND_SEQUENCER=m # CONFIG_SND_SEQ_DUMMY is not set CONFIG_SND_OSSEMUL=y CONFIG_SND_MIXER_OSS=m CONFIG_SND_PCM_OSS=m CONFIG_SND_PCM_OSS_PLUGINS=y CONFIG_SND_SEQUENCER_OSS=y # CONFIG_SND_RTCTIMER is not set # CONFIG_SND_DYNAMIC_MINORS is not set CONFIG_SND_SUPPORT_OLD_API=y CONFIG_SND_VERBOSE_PROCFS=y # CONFIG_SND_VERBOSE_PRINTK is not set # CONFIG_SND_DEBUG is not set # # Generic devices # CONFIG_SND_AC97_CODEC=m # CONFIG_SND_DUMMY is not set # CONFIG_SND_VIRMIDI is not set # CONFIG_SND_MTPAV is not set # CONFIG_SND_MTS64 is not set # CONFIG_SND_SERIAL_U16550 is not set # CONFIG_SND_MPU401 is not set # CONFIG_SND_PORTMAN2X4 is not set # # PCI devices # # CONFIG_SND_AD1889 is not set # CONFIG_SND_ALS300 is not set # CONFIG_SND_ALS4000 is not set # CONFIG_SND_ALI5451 is not set # CONFIG_SND_ATIIXP is not set # CONFIG_SND_ATIIXP_MODEM is not set # CONFIG_SND_AU8810 is not set # CONFIG_SND_AU8820 is not set # CONFIG_SND_AU8830 is not set # CONFIG_SND_AZT3328 is not set # CONFIG_SND_BT87X is not set # CONFIG_SND_CA0106 is not set # CONFIG_SND_CMIPCI is not set # CONFIG_SND_CS4281 is not set # CONFIG_SND_CS46XX is not set # CONFIG_SND_CS5530 is not set # CONFIG_SND_CS5535AUDIO is not set # CONFIG_SND_DARLA20 is not set # CONFIG_SND_GINA20 is not set # CONFIG_SND_LAYLA20 is not set # CONFIG_SND_DARLA24 is not set # CONFIG_SND_GINA24 is not set # CONFIG_SND_LAYLA24 is not set # CONFIG_SND_MONA is not set # CONFIG_SND_MIA is not set # CONFIG_SND_ECHO3G is not set # CONFIG_SND_INDIGO is not set # CONFIG_SND_INDIGOIO is not set # CONFIG_SND_INDIGODJ is not set CONFIG_SND_EMU10K1=m # CONFIG_SND_EMU10K1X is not set # CONFIG_SND_ENS1370 is not set # CONFIG_SND_ENS1371 is not set # CONFIG_SND_ES1938 is not set # CONFIG_SND_ES1968 is not set # CONFIG_SND_FM801 is not set # CONFIG_SND_HDA_INTEL is not set # CONFIG_SND_HDSP is not set # CONFIG_SND_HDSPM is not set # CONFIG_SND_ICE1712 is not set # CONFIG_SND_ICE1724 is not set CONFIG_SND_INTEL8X0=m # CONFIG_SND_INTEL8X0M is not set # CONFIG_SND_KORG1212 is not set # CONFIG_SND_MAESTRO3 is not set # CONFIG_SND_MIXART is not set # CONFIG_SND_NM256 is not set # CONFIG_SND_PCXHR is not set # CONFIG_SND_RIPTIDE is not set # CONFIG_SND_RME32 is not set # CONFIG_SND_RME96 is not set # CONFIG_SND_RME9652 is not set # CONFIG_SND_SONICVIBES is not set # CONFIG_SND_TRIDENT is not set # CONFIG_SND_VIA82XX is not set # CONFIG_SND_VIA82XX_MODEM is not set # CONFIG_SND_VX222 is not set # CONFIG_SND_YMFPCI is not set # CONFIG_SND_AC97_POWER_SAVE is not set # # USB devices # CONFIG_SND_USB_AUDIO=m # CONFIG_SND_USB_USX2Y is not set # CONFIG_SND_USB_CAIAQ is not set # # PCMCIA devices # # CONFIG_SND_VXPOCKET is not set # CONFIG_SND_PDAUDIOCF is not set # # System on Chip audio support # # CONFIG_SND_SOC is not set # # SoC Audio support for SuperH # # # Open Sound System # # CONFIG_SOUND_PRIME is not set CONFIG_AC97_BUS=m CONFIG_HID_SUPPORT=y CONFIG_HID=y # CONFIG_HID_DEBUG is not set # # USB Input Devices # CONFIG_USB_HID=m # CONFIG_USB_HIDINPUT_POWERBOOK is not set # CONFIG_HID_FF is not set # CONFIG_USB_HIDDEV is not set # # USB HID Boot Protocol drivers # # CONFIG_USB_KBD is not set # CONFIG_USB_MOUSE is not set CONFIG_USB_SUPPORT=y CONFIG_USB_ARCH_HAS_HCD=y CONFIG_USB_ARCH_HAS_OHCI=y CONFIG_USB_ARCH_HAS_EHCI=y CONFIG_USB=m # CONFIG_USB_DEBUG is not set # # Miscellaneous USB options # CONFIG_USB_DEVICEFS=y CONFIG_USB_DEVICE_CLASS=y # CONFIG_USB_DYNAMIC_MINORS is not set # CONFIG_USB_SUSPEND is not set # CONFIG_USB_PERSIST is not set # CONFIG_USB_OTG is not set # # USB Host Controller Drivers # CONFIG_USB_EHCI_HCD=m # CONFIG_USB_EHCI_SPLIT_ISO is not set # CONFIG_USB_EHCI_ROOT_HUB_TT is not set # CONFIG_USB_EHCI_TT_NEWSCHED is not set # CONFIG_USB_ISP116X_HCD is not set CONFIG_USB_OHCI_HCD=m # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set CONFIG_USB_OHCI_LITTLE_ENDIAN=y CONFIG_USB_UHCI_HCD=m # CONFIG_USB_SL811_HCD is not set # CONFIG_USB_R8A66597_HCD is not set # # USB Device Class drivers # # CONFIG_USB_ACM is not set CONFIG_USB_PRINTER=m # # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' # # # may also be needed; see USB_STORAGE Help for more information # CONFIG_USB_STORAGE=m # CONFIG_USB_STORAGE_DEBUG is not set # CONFIG_USB_STORAGE_DATAFAB is not set # CONFIG_USB_STORAGE_FREECOM is not set # CONFIG_USB_STORAGE_ISD200 is not set # CONFIG_USB_STORAGE_DPCM is not set # CONFIG_USB_STORAGE_USBAT is not set # CONFIG_USB_STORAGE_SDDR09 is not set # CONFIG_USB_STORAGE_SDDR55 is not set # CONFIG_USB_STORAGE_JUMPSHOT is not set # CONFIG_USB_STORAGE_ALAUDA is not set # CONFIG_USB_STORAGE_KARMA is not set # CONFIG_USB_LIBUSUAL is not set # # USB Imaging devices # # CONFIG_USB_MDC800 is not set # CONFIG_USB_MICROTEK is not set # CONFIG_USB_MON is not set # # USB port drivers # # CONFIG_USB_USS720 is not set # # USB Serial Converter support # CONFIG_USB_SERIAL=m CONFIG_USB_SERIAL_GENERIC=y # CONFIG_USB_SERIAL_AIRCABLE is not set # CONFIG_USB_SERIAL_AIRPRIME is not set CONFIG_USB_SERIAL_ARK3116=m # CONFIG_USB_SERIAL_BELKIN is not set # CONFIG_USB_SERIAL_WHITEHEAT is not set # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set # CONFIG_USB_SERIAL_CP2101 is not set # CONFIG_USB_SERIAL_CYPRESS_M8 is not set # CONFIG_USB_SERIAL_EMPEG is not set # CONFIG_USB_SERIAL_FTDI_SIO is not set # CONFIG_USB_SERIAL_FUNSOFT is not set # CONFIG_USB_SERIAL_VISOR is not set CONFIG_USB_SERIAL_IPAQ=m # CONFIG_USB_SERIAL_IR is not set # CONFIG_USB_SERIAL_EDGEPORT is not set # CONFIG_USB_SERIAL_EDGEPORT_TI is not set # CONFIG_USB_SERIAL_GARMIN is not set # CONFIG_USB_SERIAL_IPW is not set # CONFIG_USB_SERIAL_KEYSPAN_PDA is not set # CONFIG_USB_SERIAL_KEYSPAN is not set # CONFIG_USB_SERIAL_KLSI is not set # CONFIG_USB_SERIAL_KOBIL_SCT is not set # CONFIG_USB_SERIAL_MCT_U232 is not set # CONFIG_USB_SERIAL_MOS7720 is not set # CONFIG_USB_SERIAL_MOS7840 is not set # CONFIG_USB_SERIAL_NAVMAN is not set # CONFIG_USB_SERIAL_PL2303 is not set # CONFIG_USB_SERIAL_OTI6858 is not set # CONFIG_USB_SERIAL_HP4X is not set # CONFIG_USB_SERIAL_SAFE is not set # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set # CONFIG_USB_SERIAL_TI is not set # CONFIG_USB_SERIAL_CYBERJACK is not set # CONFIG_USB_SERIAL_XIRCOM is not set # CONFIG_USB_SERIAL_OPTION is not set # CONFIG_USB_SERIAL_OMNINET is not set # CONFIG_USB_SERIAL_DEBUG is not set # # USB Miscellaneous drivers # # CONFIG_USB_EMI62 is not set # CONFIG_USB_EMI26 is not set # CONFIG_USB_ADUTUX is not set # CONFIG_USB_AUERSWALD is not set # CONFIG_USB_RIO500 is not set # CONFIG_USB_LEGOTOWER is not set # CONFIG_USB_LCD is not set # CONFIG_USB_BERRY_CHARGE is not set # CONFIG_USB_LED is not set # CONFIG_USB_CYPRESS_CY7C63 is not set # CONFIG_USB_CYTHERM is not set # CONFIG_USB_PHIDGET is not set # CONFIG_USB_IDMOUSE is not set # CONFIG_USB_FTDI_ELAN is not set # CONFIG_USB_APPLEDISPLAY is not set # CONFIG_USB_SISUSBVGA is not set # CONFIG_USB_LD is not set # CONFIG_USB_TRANCEVIBRATOR is not set # CONFIG_USB_IOWARRIOR is not set # CONFIG_USB_TEST is not set # # USB DSL modem support # # # USB Gadget Support # # CONFIG_USB_GADGET is not set # CONFIG_MMC is not set # CONFIG_NEW_LEDS is not set # CONFIG_INFINIBAND is not set # CONFIG_EDAC is not set # CONFIG_RTC_CLASS is not set # # DMA Engine support # # CONFIG_DMA_ENGINE is not set # # DMA Clients # # # DMA Devices # # CONFIG_AUXDISPLAY is not set # CONFIG_VIRTUALIZATION is not set # # Userspace I/O # # CONFIG_UIO is not set # # File systems # CONFIG_EXT2_FS=y # CONFIG_EXT2_FS_XATTR is not set # CONFIG_EXT2_FS_XIP is not set CONFIG_EXT3_FS=y CONFIG_EXT3_FS_XATTR=y # CONFIG_EXT3_FS_POSIX_ACL is not set # CONFIG_EXT3_FS_SECURITY is not set # CONFIG_EXT4DEV_FS is not set CONFIG_JBD=y # CONFIG_JBD_DEBUG is not set CONFIG_FS_MBCACHE=y # CONFIG_REISERFS_FS is not set # CONFIG_JFS_FS is not set # CONFIG_FS_POSIX_ACL is not set # CONFIG_XFS_FS is not set # CONFIG_GFS2_FS is not set # CONFIG_OCFS2_FS is not set # CONFIG_MINIX_FS is not set # CONFIG_ROMFS_FS is not set # CONFIG_INOTIFY is not set # CONFIG_QUOTA is not set CONFIG_DNOTIFY=y # CONFIG_AUTOFS_FS is not set # CONFIG_AUTOFS4_FS is not set # CONFIG_FUSE_FS is not set # # CD-ROM/DVD Filesystems # CONFIG_ISO9660_FS=y CONFIG_JOLIET=y # CONFIG_ZISOFS is not set # CONFIG_UDF_FS is not set # # DOS/FAT/NT Filesystems # CONFIG_FAT_FS=y # CONFIG_MSDOS_FS is not set CONFIG_VFAT_FS=y CONFIG_FAT_DEFAULT_CODEPAGE=437 CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" # CONFIG_NTFS_FS is not set # # Pseudo filesystems # CONFIG_PROC_FS=y # CONFIG_PROC_KCORE is not set CONFIG_PROC_SYSCTL=y CONFIG_SYSFS=y # CONFIG_TMPFS is not set # CONFIG_HUGETLBFS is not set # CONFIG_HUGETLB_PAGE is not set CONFIG_RAMFS=y # CONFIG_CONFIGFS_FS is not set # # Miscellaneous filesystems # # CONFIG_ADFS_FS is not set # CONFIG_AFFS_FS is not set # CONFIG_HFS_FS is not set # CONFIG_HFSPLUS_FS is not set # CONFIG_BEFS_FS is not set # CONFIG_BFS_FS is not set # CONFIG_EFS_FS is not set CONFIG_CRAMFS=m # CONFIG_VXFS_FS is not set # CONFIG_HPFS_FS is not set # CONFIG_QNX4FS_FS is not set # CONFIG_SYSV_FS is not set # CONFIG_UFS_FS is not set # # Network File Systems # # CONFIG_NFS_FS is not set # CONFIG_NFSD is not set CONFIG_SMB_FS=m CONFIG_SMB_NLS_DEFAULT=y CONFIG_SMB_NLS_REMOTE="iso8859-1" CONFIG_CIFS=m # CONFIG_CIFS_STATS is not set # CONFIG_CIFS_WEAK_PW_HASH is not set # CONFIG_CIFS_XATTR is not set # CONFIG_CIFS_DEBUG2 is not set # CONFIG_CIFS_EXPERIMENTAL is not set # CONFIG_NCP_FS is not set # CONFIG_CODA_FS is not set # CONFIG_AFS_FS is not set # # Partition Types # # CONFIG_PARTITION_ADVANCED is not set CONFIG_MSDOS_PARTITION=y # # Native Language Support # CONFIG_NLS=y CONFIG_NLS_DEFAULT="iso8859-1" CONFIG_NLS_CODEPAGE_437=y # CONFIG_NLS_CODEPAGE_737 is not set # CONFIG_NLS_CODEPAGE_775 is not set CONFIG_NLS_CODEPAGE_850=y # CONFIG_NLS_CODEPAGE_852 is not set # CONFIG_NLS_CODEPAGE_855 is not set # CONFIG_NLS_CODEPAGE_857 is not set # CONFIG_NLS_CODEPAGE_860 is not set # CONFIG_NLS_CODEPAGE_861 is not set # CONFIG_NLS_CODEPAGE_862 is not set # CONFIG_NLS_CODEPAGE_863 is not set # CONFIG_NLS_CODEPAGE_864 is not set # CONFIG_NLS_CODEPAGE_865 is not set # CONFIG_NLS_CODEPAGE_866 is not set # CONFIG_NLS_CODEPAGE_869 is not set # CONFIG_NLS_CODEPAGE_936 is not set # CONFIG_NLS_CODEPAGE_950 is not set # CONFIG_NLS_CODEPAGE_932 is not set # CONFIG_NLS_CODEPAGE_949 is not set # CONFIG_NLS_CODEPAGE_874 is not set # CONFIG_NLS_ISO8859_8 is not set # CONFIG_NLS_CODEPAGE_1250 is not set # CONFIG_NLS_CODEPAGE_1251 is not set # CONFIG_NLS_ASCII is not set CONFIG_NLS_ISO8859_1=y # CONFIG_NLS_ISO8859_2 is not set # CONFIG_NLS_ISO8859_3 is not set # CONFIG_NLS_ISO8859_4 is not set # CONFIG_NLS_ISO8859_5 is not set # CONFIG_NLS_ISO8859_6 is not set # CONFIG_NLS_ISO8859_7 is not set # CONFIG_NLS_ISO8859_9 is not set # CONFIG_NLS_ISO8859_13 is not set # CONFIG_NLS_ISO8859_14 is not set CONFIG_NLS_ISO8859_15=y # CONFIG_NLS_KOI8_R is not set # CONFIG_NLS_KOI8_U is not set CONFIG_NLS_UTF8=y # # Distributed Lock Manager # # CONFIG_DLM is not set # CONFIG_INSTRUMENTATION is not set # # Kernel hacking # CONFIG_TRACE_IRQFLAGS_SUPPORT=y # CONFIG_PRINTK_TIME is not set # CONFIG_ENABLE_MUST_CHECK is not set # CONFIG_MAGIC_SYSRQ is not set # CONFIG_UNUSED_SYMBOLS is not set # CONFIG_DEBUG_FS is not set # CONFIG_HEADERS_CHECK is not set # CONFIG_DEBUG_KERNEL is not set CONFIG_DEBUG_BUGVERBOSE=y CONFIG_EARLY_PRINTK=y CONFIG_X86_FIND_SMP_CONFIG=y CONFIG_X86_MPPARSE=y CONFIG_DOUBLEFAULT=y # # Security options # # CONFIG_KEYS is not set # CONFIG_SECURITY is not set CONFIG_CRYPTO=y CONFIG_CRYPTO_ALGAPI=m CONFIG_CRYPTO_BLKCIPHER=m CONFIG_CRYPTO_MANAGER=m # CONFIG_CRYPTO_HMAC is not set # CONFIG_CRYPTO_XCBC is not set # CONFIG_CRYPTO_NULL is not set CONFIG_CRYPTO_MD4=m CONFIG_CRYPTO_MD5=m CONFIG_CRYPTO_SHA1=m CONFIG_CRYPTO_SHA256=m CONFIG_CRYPTO_SHA512=m # CONFIG_CRYPTO_WP512 is not set # CONFIG_CRYPTO_TGR192 is not set # CONFIG_CRYPTO_GF128MUL is not set CONFIG_CRYPTO_ECB=m CONFIG_CRYPTO_CBC=m # CONFIG_CRYPTO_PCBC is not set # CONFIG_CRYPTO_LRW is not set # CONFIG_CRYPTO_CRYPTD is not set CONFIG_CRYPTO_DES=m # CONFIG_CRYPTO_FCRYPT is not set # CONFIG_CRYPTO_BLOWFISH is not set # CONFIG_CRYPTO_TWOFISH is not set # CONFIG_CRYPTO_TWOFISH_586 is not set # CONFIG_CRYPTO_SERPENT is not set # CONFIG_CRYPTO_AES is not set CONFIG_CRYPTO_AES_586=m # CONFIG_CRYPTO_CAST5 is not set # CONFIG_CRYPTO_CAST6 is not set # CONFIG_CRYPTO_TEA is not set CONFIG_CRYPTO_ARC4=m # CONFIG_CRYPTO_KHAZAD is not set # CONFIG_CRYPTO_ANUBIS is not set CONFIG_CRYPTO_DEFLATE=m CONFIG_CRYPTO_MICHAEL_MIC=m # CONFIG_CRYPTO_CRC32C is not set # CONFIG_CRYPTO_CAMELLIA is not set # CONFIG_CRYPTO_TEST is not set # CONFIG_CRYPTO_HW is not set # # Library routines # CONFIG_BITREVERSE=y CONFIG_CRC_CCITT=m # CONFIG_CRC16 is not set # CONFIG_CRC_ITU_T is not set CONFIG_CRC32=y # CONFIG_CRC7 is not set # CONFIG_LIBCRC32C is not set CONFIG_ZLIB_INFLATE=m CONFIG_ZLIB_DEFLATE=m CONFIG_TEXTSEARCH=y CONFIG_TEXTSEARCH_KMP=m CONFIG_TEXTSEARCH_BM=m CONFIG_TEXTSEARCH_FSM=m CONFIG_PLIST=y CONFIG_HAS_IOMEM=y CONFIG_HAS_IOPORT=y CONFIG_HAS_DMA=y CONFIG_GENERIC_HARDIRQS=y CONFIG_GENERIC_IRQ_PROBE=y CONFIG_GENERIC_PENDING_IRQ=y CONFIG_X86_SMP=y CONFIG_X86_HT=y CONFIG_X86_BIOS_REBOOT=y CONFIG_X86_TRAMPOLINE=y CONFIG_KTIME_SCALAR=y ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH] (repost) Fix SMP poweroff hangs 2007-09-30 9:00 ` Santiago Garcia Mantinan @ 2007-09-30 17:21 ` Mark Lord 2007-09-30 17:54 ` Santiago Garcia Mantinan 0 siblings, 1 reply; 26+ messages in thread From: Mark Lord @ 2007-09-30 17:21 UTC (permalink / raw) To: Santiago Garcia Mantinan; +Cc: linux-kernel Santiago Garcia Mantinan wrote: > Doesn't fix for me! > > I have an Athlon x2 running on a Asus A8N-E mobo which has an NForce 4 > chipset, I thought this patch would fix poweroff for me too, but it doesn't. > > I'm seing this on 2.6.23-rc8 with and without your patch, here is what I get > on the console: > > Shutdown: hdd > Shutdown: hda > System halted. > > Nothing else pops up. I'd say your problem is more of a distro issue, in that the method you are using to shutdown is not actually requesting "poweroff". That last mess above ("System halted.") comes from kernel_halt(), rather than the expected message ("Power down.") from kernel_power_off(). So, try using the "poweroff" command instead of "halt", or try using "halt -p". If neither of those work, then edit /etc/init.d/halt and hardcode the "-p" parameter inside there onto the "halt" command line(s). I had to do that frequently back in the Redhat/Fedora days. I'm sure they have a nice GUI for it somewhere, but at the time it was simpler to just edit the script. Cheers ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH] (repost) Fix SMP poweroff hangs 2007-09-30 17:21 ` Mark Lord @ 2007-09-30 17:54 ` Santiago Garcia Mantinan 2007-09-30 18:47 ` Mark Lord 2007-10-01 20:05 ` [PATCH] (repost) Fix SMP poweroff hangs Rafael J. Wysocki 0 siblings, 2 replies; 26+ messages in thread From: Santiago Garcia Mantinan @ 2007-09-30 17:54 UTC (permalink / raw) To: Mark Lord; +Cc: linux-kernel > I'd say your problem is more of a distro issue, > in that the method you are using to shutdown > is not actually requesting "poweroff". > That last mess above ("System halted.") comes from kernel_halt(), > rather than the expected message ("Power down.") from kernel_power_off(). > So, try using the "poweroff" command instead of "halt", > or try using "halt -p". If neither of those work, Well it works ok with 2.6.22 powering off and saying so right before powering off, with some references to ACPI. On 2.6.23-rc8 however it doesn't seem to get that far. I have followed the poweroff of my distro (Debian unstable) and on getting to the end of rc 0 it calls halt with options -d -f -i -p. So it does call it with the -p you asked for. BTW, this halt comes fom Debian's sysvinit version 2.86.ds1-38.1 in case that matters, but as I said it is working ok for .22. > then edit /etc/init.d/halt and hardcode the "-p" parameter > inside there onto the "halt" command line(s). That init.d/halt is the one that is calling halt with -d -f -i -p already. Regards... -- Manty/BestiaTester -> http://manty.net ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH] (repost) Fix SMP poweroff hangs 2007-09-30 17:54 ` Santiago Garcia Mantinan @ 2007-09-30 18:47 ` Mark Lord 2007-09-30 20:03 ` Santiago Garcia Mantinan 2007-10-01 20:05 ` [PATCH] (repost) Fix SMP poweroff hangs Rafael J. Wysocki 1 sibling, 1 reply; 26+ messages in thread From: Mark Lord @ 2007-09-30 18:47 UTC (permalink / raw) To: Santiago Garcia Mantinan; +Cc: linux-kernel Santiago Garcia Mantinan wrote: >> I'd say your problem is more of a distro issue, >> in that the method you are using to shutdown >> is not actually requesting "poweroff". > >> That last mess above ("System halted.") comes from kernel_halt(), >> rather than the expected message ("Power down.") from kernel_power_off(). > >> So, try using the "poweroff" command instead of "halt", >> or try using "halt -p". If neither of those work, > > Well it works ok with 2.6.22 powering off and saying so right before > powering off, with some references to ACPI. On 2.6.23-rc8 however it doesn't > seem to get that far. > > I have followed the poweroff of my distro (Debian unstable) and on getting > to the end of rc 0 it calls halt with options -d -f -i -p. So it does call > it with the -p you asked for. BTW, this halt comes fom Debian's sysvinit > version 2.86.ds1-38.1 in case that matters, but as I said it is working ok > for .22. > > >> then edit /etc/init.d/halt and hardcode the "-p" parameter >> inside there onto the "halt" command line(s). > > That init.d/halt is the one that is calling halt with -d -f -i -p already. Mmm.. then I wonder why it is not actually getting into the kernel's poweroff function? Can you boot into single user mode ( kernel command line parameter of S ), and then remount your filesystems all r/o (ALT-SysRQ-u + ALT-SysRQ-s, or do it all manually if you prefer). Then manually try this command from the primary console (Ctrl-ALT-F1): /sbin/halt -f -p The machine *should* poweroff. If not, then do the whole thing again with this command: strace /bin/halt -f -p And see what the final syscall + parameters is. Post them here if you can. Cheers ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH] (repost) Fix SMP poweroff hangs 2007-09-30 18:47 ` Mark Lord @ 2007-09-30 20:03 ` Santiago Garcia Mantinan 2007-09-30 22:52 ` 32-bit Athlon X2 won't poweroff (was: Fix SMP poweroff hangs) Mark Lord 0 siblings, 1 reply; 26+ messages in thread From: Santiago Garcia Mantinan @ 2007-09-30 20:03 UTC (permalink / raw) To: Mark Lord; +Cc: linux-kernel I booted into single mode, then umounted all unneeded stuff and put / to ro, stopped all unused raids, ... then did... > /sbin/halt -f -p > > The machine *should* poweroff. Nope, it didn't and what was curious was that I was left at the bash prompt :-? > If not, then do the whole thing again with this command: > > strace /bin/halt -f -p I tried this and I did the strace with a -o to get the output on a remote cifs fs, here is the full trace: execve("/sbin/halt", ["/sbin/halt", "-f", "-p"], [/* 16 vars */]) = 0 brk(0) = 0x804b000 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f29000 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) open("/etc/ld.so.cache", O_RDONLY) = 3 fstat64(3, {st_mode=S_IFREG|0644, st_size=52448, ...}) = 0 mmap2(NULL, 52448, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7f1c000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/libc.so.6", O_RDONLY) = 3 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\260a\1"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0755, st_size=1335536, ...}) = 0 mmap2(NULL, 1340944, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7dd4000 mmap2(0xb7f16000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x142) = 0xb7f16000 mmap2(0xb7f19000, 9744, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7f19000 close(3) = 0 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7dd3000 set_thread_area({entry_number:-1 -> 6, base_addr:0xb7dd36b0, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0 mprotect(0xb7f16000, 4096, PROT_READ) = 0 munmap(0xb7f1c000, 52448) = 0 geteuid32() = 0 chdir("/") = 0 open("/var/log/wtmp", O_WRONLY|O_APPEND) = -1 EROFS (Read-only file system) sync() = 0 rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0 rt_sigaction(SIGCHLD, NULL, {SIG_DFL}, 8) = 0 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 nanosleep({2, 0}, {2, 0}) = 0 reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART|0x88888888) = 0 kill(1, SIGTSTP) = 0 reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_POWER_OFF <unfinished ... exit status 0> Same output on the screen as I commented before, again I got to the shell and this time I even typed some commands like ps and amazingly they still worked, even though this was supposed to be halted. Hope that helps. -- Manty/BestiaTester -> http://manty.net ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: 32-bit Athlon X2 won't poweroff (was: Fix SMP poweroff hangs) 2007-09-30 20:03 ` Santiago Garcia Mantinan @ 2007-09-30 22:52 ` Mark Lord 2007-09-30 22:56 ` 32-bit Athlon X2 won't poweroff Mark Lord 2007-10-01 16:19 ` 32-bit Athlon X2 won't poweroff (was: Fix SMP poweroff hangs) Santiago Garcia Mantinan 0 siblings, 2 replies; 26+ messages in thread From: Mark Lord @ 2007-09-30 22:52 UTC (permalink / raw) To: Santiago Garcia Mantinan; +Cc: linux-kernel Santiago Garcia Mantinan wrote: > I booted into single mode, then umounted all unneeded stuff and put / to ro, > stopped all unused raids, ... then did... .. >> strace /bin/halt -f -p .. > rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0 > rt_sigaction(SIGCHLD, NULL, {SIG_DFL}, 8) = 0 > rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 > nanosleep({2, 0}, {2, 0}) = 0 > reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART|0x88888888) = 0 > kill(1, SIGTSTP) = 0 > reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_POWER_OFF <unfinished ... exit status 0> > > Same output on the screen as I commented before, again I got to the shell > and this time I even typed some commands like ps and amazingly they still > worked, even though this was supposed to be halted. Mmm.. okay, user space is doing the right things. So next is inside the kernel itself, at linux/kernel/sys.c :: sys_reboot(), where we see this code: /* Instead of trying to make the power_off code look like * halt when pm_power_off is not set do it the easy way. */ if ((cmd == LINUX_REBOOT_CMD_POWER_OFF) && !pm_power_off) cmd = LINUX_REBOOT_CMD_HALT; This converts a "poweroff" into a "reboot" if no machine dependent power off function has been bound in (pm_power_off() is a function pointer). So for this to work, I believe that either ACPI or APM has to have been configured into the kernel (and the modules loaded). Your kernel .config from earlier shows ACPI built-in to the kernel core, so it should be present. Unless you booted with noacpi or some such parameter.. So let's have a look at the kernel boot logs, and you could also try CONGIG_ACPI_DEBUG=y Bizarre (and nothing to do with my patch). ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: 32-bit Athlon X2 won't poweroff 2007-09-30 22:52 ` 32-bit Athlon X2 won't poweroff (was: Fix SMP poweroff hangs) Mark Lord @ 2007-09-30 22:56 ` Mark Lord 2007-10-01 16:19 ` 32-bit Athlon X2 won't poweroff (was: Fix SMP poweroff hangs) Santiago Garcia Mantinan 1 sibling, 0 replies; 26+ messages in thread From: Mark Lord @ 2007-09-30 22:56 UTC (permalink / raw) To: Santiago Garcia Mantinan; +Cc: linux-kernel Mark Lord wrote: >.. > So next is inside the kernel itself, at linux/kernel/sys.c :: sys_reboot(), > where we see this code: > > /* Instead of trying to make the power_off code look like > * halt when pm_power_off is not set do it the easy way. > */ > if ((cmd == LINUX_REBOOT_CMD_POWER_OFF) && !pm_power_off) > cmd = LINUX_REBOOT_CMD_HALT; > > This converts a "poweroff" into a "reboot" if no machine dependent > power off function has been bound in (pm_power_off() is a function > pointer). Duh.. fingers failed to follow brain: that converts a "poweroff" into a "halt", which is what you are seeing. > So for this to work, I believe that either ACPI or APM has to have been > configured into the kernel (and the modules loaded). Your kernel .config > from earlier shows ACPI built-in to the kernel core, so it should be > present. > > Unless you booted with noacpi or some such parameter.. > So let's have a look at the kernel boot logs, > and you could also try CONGIG_ACPI_DEBUG=y > > Bizarre (and nothing to do with my patch). ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: 32-bit Athlon X2 won't poweroff (was: Fix SMP poweroff hangs) 2007-09-30 22:52 ` 32-bit Athlon X2 won't poweroff (was: Fix SMP poweroff hangs) Mark Lord 2007-09-30 22:56 ` 32-bit Athlon X2 won't poweroff Mark Lord @ 2007-10-01 16:19 ` Santiago Garcia Mantinan 2007-10-01 16:37 ` 32-bit Athlon X2 won't poweroff Mark Lord 1 sibling, 1 reply; 26+ messages in thread From: Santiago Garcia Mantinan @ 2007-10-01 16:19 UTC (permalink / raw) To: Mark Lord; +Cc: linux-kernel > So for this to work, I believe that either ACPI or APM has to have been > configured into the kernel (and the modules loaded). Your kernel .config > from earlier shows ACPI built-in to the kernel core, so it should be > present. Yes, and it is indeed, the acpid is running and it detects my power button and starts the poweroff when I hit it. > Unless you booted with noacpi or some such parameter.. > So let's have a look at the kernel boot logs, I believe this is normal, I have done a grep -i acpi on the dmesg, here is the result, if you want the full dmesg tell me: BIOS-e820: 000000003fff0000 - 000000003fff3000 (ACPI NVS) BIOS-e820: 000000003fff3000 - 0000000040000000 (ACPI data) ACPI: RSDP 000F7560, 0014 (r0 Nvidia) ACPI: RSDT 3FFF3040, 0030 (r1 Nvidia AWRDACPI 42302E31 AWRD 0) ACPI: FACP 3FFF30C0, 0074 (r1 Nvidia AWRDACPI 42302E31 AWRD 0) ACPI: DSDT 3FFF3180, 65F2 (r1 NVIDIA AWRDACPI 1000 MSFT 100000E) ACPI: FACS 3FFF0000, 0040 ACPI: MCFG 3FFF9880, 003C (r1 Nvidia AWRDACPI 42302E31 AWRD 0) ACPI: APIC 3FFF97C0, 007C (r1 Nvidia AWRDACPI 42302E31 AWRD 0) Nvidia board detected. Ignoring ACPI timer override. If you got timer trouble try acpi_use_timer_override ACPI: PM-Timer IO Port: 0x4008 ACPI: Local APIC address 0xfee00000 ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) ACPI: BIOS IRQ0 pin2 override ignored. ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge) ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge) ACPI: IRQ9 used by override. ACPI: IRQ14 used by override. ACPI: IRQ15 used by override. Using ACPI (MADT) for SMP configuration information ACPI: Core revision 20070126 tbxface-0598 [00] tb_load_namespace : ACPI Tables successfully acquired evxfevnt-0091 [00] enable : Transition to ACPI mode successful ACPI: bus type pci registered ACPI: EC: Look up EC in DSDT ACPI: Interpreter enabled ACPI: Using IOAPIC for interrupt routing ACPI: PCI Root Bridge [PCI0] (0000:00) ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. ACPI: PCI Interrupt Link [LNK2] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. ACPI: PCI Interrupt Link [LNK3] (IRQs *3 4 5 7 9 10 11 12 14 15) ACPI: PCI Interrupt Link [LNK4] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. ACPI: PCI Interrupt Link [LNK5] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. ACPI: PCI Interrupt Link [LUBA] (IRQs *3 4 5 7 9 10 11 12 14 15) ACPI: PCI Interrupt Link [LUBB] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. ACPI: PCI Interrupt Link [LMAC] (IRQs 3 4 *5 7 9 10 11 12 14 15) ACPI: PCI Interrupt Link [LACI] (IRQs 3 4 5 7 9 10 *11 12 14 15) ACPI: PCI Interrupt Link [LMCI] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. ACPI: PCI Interrupt Link [LSMB] (IRQs 3 4 *5 7 9 10 11 12 14 15) ACPI: PCI Interrupt Link [LUB2] (IRQs 3 4 5 7 9 10 *11 12 14 15) ACPI: PCI Interrupt Link [LIDE] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. ACPI: PCI Interrupt Link [LSID] (IRQs 3 4 5 7 9 10 *11 12 14 15) ACPI: PCI Interrupt Link [LFID] (IRQs 3 4 *5 7 9 10 11 12 14 15) ACPI: PCI Interrupt Link [LPCA] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled. ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled. ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0 ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled. ACPI: PCI Interrupt Link [APC5] (IRQs *16), disabled. ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0 ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22 23) *0, disabled. ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0 ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22 23) *0 ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22 23) *0, disabled. ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0 ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0 ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled. ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0 ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0 ACPI: PCI Interrupt Link [APCP] (IRQs 20 21 22 23) *0, disabled. pnp: PnP ACPI init ACPI: bus type pnp registered pnp: PnP ACPI: found 16 devices ACPI: ACPI bus type pnp unregistered PCI: Using ACPI for IRQ routing Time: acpi_pm clocksource has been installed. ACPI: Power Button (FF) [PWRF] ACPI: Power Button (CM) [PWRB] ACPI: Thermal Zone [THRM] (40 C) ACPI: PCI Interrupt Link [APC3] enabled at IRQ 18 ACPI: PCI Interrupt 0000:05:08.0[A] -> Link [APC3] -> GSI 18 (level, low) -> IRQ 16 ACPI: PCI Interrupt Link [APCJ] enabled at IRQ 23 ACPI: PCI Interrupt 0000:00:04.0[A] -> Link [APCJ] -> GSI 23 (level, low) -> IRQ 17 ACPI: PCI Interrupt Link [APCH] enabled at IRQ 22 ACPI: PCI Interrupt 0000:00:0a.0[A] -> Link [APCH] -> GSI 22 (level, low) -> IRQ 18 ACPI: PCI Interrupt Link [APCF] enabled at IRQ 21 ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 21 (level, low) -> IRQ 19 ACPI: PCI Interrupt Link [APCL] enabled at IRQ 20 ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20 parport_pc 00:09: reported by Plug and Play ACPI > and you could also try CONGIG_ACPI_DEBUG=y I did so (in fact the above grep is with that activated) but the only things that came out as new stuff were these two lines: tbxface-0598 [00] tb_load_namespace : ACPI Tables successfully acquired evxfevnt-0091 [00] enable : Transition to ACPI mode successful Nothing new came out on the halt -f -p test :-( If you guys have any other tests on mind just let me know. Regards... -- Manty/BestiaTester -> http://manty.net ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: 32-bit Athlon X2 won't poweroff 2007-10-01 16:19 ` 32-bit Athlon X2 won't poweroff (was: Fix SMP poweroff hangs) Santiago Garcia Mantinan @ 2007-10-01 16:37 ` Mark Lord 0 siblings, 0 replies; 26+ messages in thread From: Mark Lord @ 2007-10-01 16:37 UTC (permalink / raw) To: Santiago Garcia Mantinan; +Cc: linux-kernel Santiago Garcia Mantinan wrote: >> So for this to work, I believe that either ACPI or APM has to have been >> configured into the kernel (and the modules loaded). Your kernel .config >> from earlier shows ACPI built-in to the kernel core, so it should be >> present. > > Yes, and it is indeed, the acpid is running and it detects my power button > and starts the poweroff when I hit it. > >> Unless you booted with noacpi or some such parameter.. >> So let's have a look at the kernel boot logs, > > I believe this is normal, I have done a grep -i acpi on the dmesg, here is > the result, if you want the full dmesg tell me: .. > ACPI: Interpreter enabled > ACPI: Using IOAPIC for interrupt routing .. The output is missing a line like this, which should have been between the two above: ACPI: (supports S0 S3 S4 S5) The ACPI power-off function only gets bound into pm_power_off() when that line shows S5 on it. The only way that line can be missing, is if something disabled ACPI after boot. This patch (below) should find the culprit for you: --- --- old/include/asm-i386/acpi.h 2007-09-28 18:09:14.000000000 -0400 +++ linux/include/asm-i386/acpi.h 2007-10-01 12:35:23.000000000 -0400 @@ -97,6 +97,7 @@ extern int acpi_pci_disabled; static inline void disable_acpi(void) { + WARN_ON(1); acpi_disabled = 1; acpi_ht = 0; acpi_pci_disabled = 1; ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH] (repost) Fix SMP poweroff hangs 2007-09-30 17:54 ` Santiago Garcia Mantinan 2007-09-30 18:47 ` Mark Lord @ 2007-10-01 20:05 ` Rafael J. Wysocki 2007-10-01 22:38 ` Santiago Garcia Mantinan 1 sibling, 1 reply; 26+ messages in thread From: Rafael J. Wysocki @ 2007-10-01 20:05 UTC (permalink / raw) To: Santiago Garcia Mantinan; +Cc: Mark Lord, linux-kernel On Sunday, 30 September 2007 19:54, Santiago Garcia Mantinan wrote: > > I'd say your problem is more of a distro issue, > > in that the method you are using to shutdown > > is not actually requesting "poweroff". > > > That last mess above ("System halted.") comes from kernel_halt(), > > rather than the expected message ("Power down.") from kernel_power_off(). > > > So, try using the "poweroff" command instead of "halt", > > or try using "halt -p". If neither of those work, > > Well it works ok with 2.6.22 powering off and saying so right before > powering off, with some references to ACPI. On 2.6.23-rc8 however it doesn't > seem to get that far. There was a bug in 2.6.23-rc8 that caused this to happen. It's been fixed in the later -git kernels (commits 2f3f22269bdf702311342c5d106dfdd7347d1c3e, 853298bc03ef65e3eb392f5d61265605214ee8fb). Greetings, Rafael ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH] (repost) Fix SMP poweroff hangs 2007-10-01 20:05 ` [PATCH] (repost) Fix SMP poweroff hangs Rafael J. Wysocki @ 2007-10-01 22:38 ` Santiago Garcia Mantinan 0 siblings, 0 replies; 26+ messages in thread From: Santiago Garcia Mantinan @ 2007-10-01 22:38 UTC (permalink / raw) To: Rafael J. Wysocki; +Cc: Mark Lord, linux-kernel > There was a bug in 2.6.23-rc8 that caused this to happen. > > It's been fixed in the later -git kernels > (commits 2f3f22269bdf702311342c5d106dfdd7347d1c3e, > 853298bc03ef65e3eb392f5d61265605214ee8fb). You are right, I have downloaded current head of git and seems to work ok. Sorry for the lost time :-( Regards... -- Manty/BestiaTester -> http://manty.net ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH] disable non-boot CPUs before poweroff 2007-09-28 13:52 ` [PATCH] disable non-boot CPUs before poweroff Mark Lord 2007-09-28 14:11 ` Mark Lord 2007-09-28 14:55 ` Thomas Gleixner @ 2007-09-28 15:05 ` Rafael J. Wysocki 2007-09-28 15:02 ` Thomas Gleixner 2 siblings, 1 reply; 26+ messages in thread From: Rafael J. Wysocki @ 2007-09-28 15:05 UTC (permalink / raw) To: Mark Lord; +Cc: Len Brown, Linux Kernel, simon.derr On Friday, 28 September 2007 15:52, Mark Lord wrote: > > We need to disable all CPUs other than the boot CPU (usually 0) > before attempting to power-off modern SMP machines. > This seems to fix the hang-on-poweroff issue > that one of my SMP boxes exhibits. More testing required. > > Signed-off-by: Mark Lord <mlord@pobox.com> > --- > > --- linux/kernel/sys.c.orig 2007-09-13 09:49:11.000000000 -0400 > +++ linux/kernel/sys.c 2007-09-28 09:48:54.000000000 -0400 > @@ -32,6 +32,7 @@ > #include <linux/getcpu.h> > #include <linux/task_io_accounting_ops.h> > #include <linux/seccomp.h> > +#include <linux/cpu.h> > > #include <linux/compat.h> > #include <linux/syscalls.h> > @@ -879,6 +880,7 @@ > if (pm_power_off_prepare) > pm_power_off_prepare(); > sysdev_shutdown(); > + disable_nonboot_cpus(); Before sysdev_shutdown(), please. sysdev_shutdown() may touch things that belong to CPU0. > printk(KERN_EMERG "Power down.\n"); > machine_power_off(); > } Greetings, Rafael ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH] disable non-boot CPUs before poweroff 2007-09-28 15:05 ` [PATCH] disable non-boot CPUs before poweroff Rafael J. Wysocki @ 2007-09-28 15:02 ` Thomas Gleixner 0 siblings, 0 replies; 26+ messages in thread From: Thomas Gleixner @ 2007-09-28 15:02 UTC (permalink / raw) To: Rafael J. Wysocki; +Cc: Mark Lord, Len Brown, Linux Kernel, simon.derr On Fri, 2007-09-28 at 17:05 +0200, Rafael J. Wysocki wrote: > > if (pm_power_off_prepare) > > pm_power_off_prepare(); > > sysdev_shutdown(); > > + disable_nonboot_cpus(); > > Before sysdev_shutdown(), please. > > sysdev_shutdown() may touch things that belong to CPU0. Damn, you're right. Missed that. tglx ^ permalink raw reply [flat|nested] 26+ messages in thread
end of thread, other threads:[~2007-10-01 22:38 UTC | newest] Thread overview: 26+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2007-09-27 21:29 Problems with SMP & ACPI powering off Mark Lord 2007-09-27 21:30 ` Mark Lord 2007-09-27 22:00 ` Rafael J. Wysocki 2007-09-27 23:07 ` Mark Lord 2007-09-28 4:57 ` Len Brown 2007-09-28 12:55 ` Rafael J. Wysocki 2007-09-28 13:22 ` Mark Lord 2007-09-28 13:44 ` Rafael J. Wysocki 2007-09-28 13:46 ` Mark Lord 2007-09-28 13:52 ` [PATCH] disable non-boot CPUs before poweroff Mark Lord 2007-09-28 14:11 ` Mark Lord 2007-09-28 14:55 ` Thomas Gleixner 2007-09-28 19:53 ` [PATCH] (repost) Fix SMP poweroff hangs Mark Lord 2007-09-30 9:00 ` Santiago Garcia Mantinan 2007-09-30 17:21 ` Mark Lord 2007-09-30 17:54 ` Santiago Garcia Mantinan 2007-09-30 18:47 ` Mark Lord 2007-09-30 20:03 ` Santiago Garcia Mantinan 2007-09-30 22:52 ` 32-bit Athlon X2 won't poweroff (was: Fix SMP poweroff hangs) Mark Lord 2007-09-30 22:56 ` 32-bit Athlon X2 won't poweroff Mark Lord 2007-10-01 16:19 ` 32-bit Athlon X2 won't poweroff (was: Fix SMP poweroff hangs) Santiago Garcia Mantinan 2007-10-01 16:37 ` 32-bit Athlon X2 won't poweroff Mark Lord 2007-10-01 20:05 ` [PATCH] (repost) Fix SMP poweroff hangs Rafael J. Wysocki 2007-10-01 22:38 ` Santiago Garcia Mantinan 2007-09-28 15:05 ` [PATCH] disable non-boot CPUs before poweroff Rafael J. Wysocki 2007-09-28 15:02 ` Thomas Gleixner
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox