* Re: early exception error [not found] ` <alpine.DEB.1.10.0901031118450.23262@asgard.lang.hm> @ 2009-01-03 19:03 ` Cyrill Gorcunov 2009-01-03 21:24 ` Cyrill Gorcunov 0 siblings, 1 reply; 63+ messages in thread From: Cyrill Gorcunov @ 2009-01-03 19:03 UTC (permalink / raw) To: david; +Cc: Andi Kleen, LKML (list restored) [david@lang.hm - Sat, Jan 03, 2009 at 11:19:00AM -0800] ... >>> >>> two new screenshots at http://linux.lang.hm/linux >>> >>> 36 is a boot with just earlyprintk=vga >>> 37 is a boot with numa=noacpi >>> I also put the vmlinux file there, I'll put the System.map and config >>> there later (I did enable kernel_debug on this build as well) >>> >>> David Lang >>> >> >> David, I can't find vmlinux neither .config? >> Maybe they have hidden attribute? > > oops, they are there now. > > David Lang > ok, according to failing address we've a BUG_ON triggered --- (gdb) l *0xffffffff8096452a 0xffffffff8096452a is in alloc_bootmem_core (mm/bootmem.c:442). 437 unsigned long fallback = 0; 438 unsigned long min, max, start, sidx, midx, step; 439 440 BUG_ON(!size); 441 BUG_ON(align & (align - 1)); 442 BUG_ON(limit && goal + size > limit); 443 444 if (!bdata->node_bootmem_map) 445 return NULL; 446 (gdb) --- so we're in attempt to overrun 'limit'. Hmm... - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-03 19:03 ` early exception error Cyrill Gorcunov @ 2009-01-03 21:24 ` Cyrill Gorcunov 2009-01-04 0:24 ` Jiri Slaby 0 siblings, 1 reply; 63+ messages in thread From: Cyrill Gorcunov @ 2009-01-03 21:24 UTC (permalink / raw) To: david, Andi Kleen, LKML [Cyrill Gorcunov - Sat, Jan 03, 2009 at 10:03:16PM +0300] | (list restored) | | [david@lang.hm - Sat, Jan 03, 2009 at 11:19:00AM -0800] | ... | >>> | >>> two new screenshots at http://linux.lang.hm/linux | >>> | >>> 36 is a boot with just earlyprintk=vga | >>> 37 is a boot with numa=noacpi | >>> I also put the vmlinux file there, I'll put the System.map and config | >>> there later (I did enable kernel_debug on this build as well) | >>> | >>> David Lang | >>> | >> | >> David, I can't find vmlinux neither .config? | >> Maybe they have hidden attribute? | > | > oops, they are there now. | > | > David Lang | > | | ok, according to failing address we've a BUG_ON | triggered | | --- | (gdb) l *0xffffffff8096452a | 0xffffffff8096452a is in alloc_bootmem_core (mm/bootmem.c:442). | 437 unsigned long fallback = 0; | 438 unsigned long min, max, start, sidx, midx, step; | 439 | 440 BUG_ON(!size); | 441 BUG_ON(align & (align - 1)); | 442 BUG_ON(limit && goal + size > limit); | 443 | 444 if (!bdata->node_bootmem_map) | 445 return NULL; | 446 | (gdb) | --- | | so we're in attempt to overrun 'limit'. | Hmm... | | - Cyrill - Hardly possible that we trigger BUG here since I don't see BUG: on the photo. Investigating. - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-03 21:24 ` Cyrill Gorcunov @ 2009-01-04 0:24 ` Jiri Slaby 2009-01-04 0:59 ` Andi Kleen ` (2 more replies) 0 siblings, 3 replies; 63+ messages in thread From: Jiri Slaby @ 2009-01-04 0:24 UTC (permalink / raw) To: Cyrill Gorcunov; +Cc: david, Andi Kleen, LKML, yhlu.kernel On 01/03/2009 10:24 PM, Cyrill Gorcunov wrote: > [Cyrill Gorcunov - Sat, Jan 03, 2009 at 10:03:16PM +0300] > | (list restored) > | > | [david@lang.hm - Sat, Jan 03, 2009 at 11:19:00AM -0800] > | ... > | >>> > | >>> two new screenshots at http://linux.lang.hm/linux > | >>> > | >>> 36 is a boot with just earlyprintk=vga > | >>> 37 is a boot with numa=noacpi > | >>> I also put the vmlinux file there, I'll put the System.map and config > | >>> there later (I did enable kernel_debug on this build as well) > | >>> > | >>> David Lang > | >>> > | >> > | >> David, I can't find vmlinux neither .config? > | >> Maybe they have hidden attribute? > | > | ok, according to failing address we've a BUG_ON > | triggered > | > | --- > | (gdb) l *0xffffffff8096452a > | 0xffffffff8096452a is in alloc_bootmem_core (mm/bootmem.c:442). > | 437 unsigned long fallback = 0; > | 438 unsigned long min, max, start, sidx, midx, step; > | 439 > | 440 BUG_ON(!size); > | 441 BUG_ON(align & (align - 1)); > | 442 BUG_ON(limit && goal + size > limit); > | 443 > | 444 if (!bdata->node_bootmem_map) > | 445 return NULL; > | 446 > | (gdb) > | --- > | > | so we're in attempt to overrun 'limit'. > | Hmm... > | > | - Cyrill - > > Hardly possible that we trigger BUG here since I don't > see BUG: on the photo. Investigating. Hint: line 442 in 2.6.28 is if (!bdata->node_bootmem_map) ;) It's: 0xffffffff8096452a <alloc_bootmem_core+69>: cmpq $0x0,0x10(%rbp) and hence cr2 is 10. node_data[nid] is NULL... But both of them are set up. Maybe too high nid (and pnum in sparse_init)? ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-04 0:24 ` Jiri Slaby @ 2009-01-04 0:59 ` Andi Kleen 2009-01-04 10:32 ` Cyrill Gorcunov 2009-01-04 11:11 ` Cyrill Gorcunov 2009-01-04 11:29 ` Cyrill Gorcunov 2 siblings, 1 reply; 63+ messages in thread From: Andi Kleen @ 2009-01-04 0:59 UTC (permalink / raw) To: Jiri Slaby; +Cc: Cyrill Gorcunov, david, Andi Kleen, LKML, yhlu.kernel > Hint: line 442 in 2.6.28 is > if (!bdata->node_bootmem_map) > ;) > > It's: > 0xffffffff8096452a <alloc_bootmem_core+69>: cmpq $0x0,0x10(%rbp) > and hence cr2 is 10. > > node_data[nid] is NULL... But both of them are set up. Maybe too high nid (and > pnum in sparse_init)? I think it's because SRAT parsing failed and the fallback forget to clean some state. Or at least I thought that until numa=noacpi failed too (if it fails the same way that theory is not correct) -Andi > -- ak@linux.intel.com ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-04 0:59 ` Andi Kleen @ 2009-01-04 10:32 ` Cyrill Gorcunov 0 siblings, 0 replies; 63+ messages in thread From: Cyrill Gorcunov @ 2009-01-04 10:32 UTC (permalink / raw) To: Andi Kleen; +Cc: Jiri Slaby, david, LKML, yhlu.kernel [Andi Kleen - Sun, Jan 04, 2009 at 01:59:04AM +0100] | > Hint: line 442 in 2.6.28 is | > if (!bdata->node_bootmem_map) | > ;) | > | > It's: | > 0xffffffff8096452a <alloc_bootmem_core+69>: cmpq $0x0,0x10(%rbp) | > and hence cr2 is 10. | > | > node_data[nid] is NULL... But both of them are set up. Maybe too high nid (and | > pnum in sparse_init)? | | I think it's because SRAT parsing failed and the fallback forget | to clean some state. Or at least I thought that until numa=noacpi | failed too (if it fails the same way that theory is not correct) | | -Andi | > | | -- | ak@linux.intel.com | according to image David's machine fails the same way for numa=noacpi (unfortunately). Actually I found one bug in memory_present -- in case of SLAB code being activated (which should be later stage of booting so it's not our case now) sparse_index_init could fail with -ENOMEM and we'll try to deref NULL in further. I'm fixing it now but again -- it's not the issue we have now. To Jiri: good catch! :-) - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-04 0:24 ` Jiri Slaby 2009-01-04 0:59 ` Andi Kleen @ 2009-01-04 11:11 ` Cyrill Gorcunov 2009-01-04 11:29 ` Cyrill Gorcunov 2 siblings, 0 replies; 63+ messages in thread From: Cyrill Gorcunov @ 2009-01-04 11:11 UTC (permalink / raw) To: Jiri Slaby; +Cc: david, Andi Kleen, LKML, yhlu.kernel [Jiri Slaby - Sun, Jan 04, 2009 at 01:24:03AM +0100] | On 01/03/2009 10:24 PM, Cyrill Gorcunov wrote: | > [Cyrill Gorcunov - Sat, Jan 03, 2009 at 10:03:16PM +0300] | > | (list restored) | > | | > | [david@lang.hm - Sat, Jan 03, 2009 at 11:19:00AM -0800] | > | ... | > | >>> | > | >>> two new screenshots at http://linux.lang.hm/linux | > | >>> | > | >>> 36 is a boot with just earlyprintk=vga | > | >>> 37 is a boot with numa=noacpi | > | >>> I also put the vmlinux file there, I'll put the System.map and config | > | >>> there later (I did enable kernel_debug on this build as well) | > | >>> | > | >>> David Lang | > | >>> | > | >> | > | >> David, I can't find vmlinux neither .config? | > | >> Maybe they have hidden attribute? | > | | > | ok, according to failing address we've a BUG_ON | > | triggered | > | | > | --- | > | (gdb) l *0xffffffff8096452a | > | 0xffffffff8096452a is in alloc_bootmem_core (mm/bootmem.c:442). | > | 437 unsigned long fallback = 0; | > | 438 unsigned long min, max, start, sidx, midx, step; | > | 439 | > | 440 BUG_ON(!size); | > | 441 BUG_ON(align & (align - 1)); | > | 442 BUG_ON(limit && goal + size > limit); | > | 443 | > | 444 if (!bdata->node_bootmem_map) | > | 445 return NULL; | > | 446 | > | (gdb) | > | --- | > | | > | so we're in attempt to overrun 'limit'. | > | Hmm... | > | | > | - Cyrill - | > | > Hardly possible that we trigger BUG here since I don't | > see BUG: on the photo. Investigating. | | Hint: line 442 in 2.6.28 is | if (!bdata->node_bootmem_map) | ;) | | It's: | 0xffffffff8096452a <alloc_bootmem_core+69>: cmpq $0x0,0x10(%rbp) | and hence cr2 is 10. | | node_data[nid] is NULL... But both of them are set up. Maybe too high nid (and | pnum in sparse_init)? | It seems to be true! What is worse we have a number of __nr_to_section users which don't check for NULL returned and secondly static inline struct mem_section *__nr_to_section(unsigned long nr) { if (!mem_section[SECTION_NR_TO_ROOT(nr)]) return NULL; return &mem_section[SECTION_NR_TO_ROOT(nr)][nr & SECTION_ROOT_MASK]; } SECTION_NR_TO_ROOT is not modulo operation so we could run out of mem_section[NR_SECTION_ROOTS]. David I'll cook some testing patch shortly. Many thanks to Jiri! - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-04 0:24 ` Jiri Slaby 2009-01-04 0:59 ` Andi Kleen 2009-01-04 11:11 ` Cyrill Gorcunov @ 2009-01-04 11:29 ` Cyrill Gorcunov 2009-01-04 12:23 ` Jiri Slaby 2009-01-05 22:20 ` david 2 siblings, 2 replies; 63+ messages in thread From: Cyrill Gorcunov @ 2009-01-04 11:29 UTC (permalink / raw) To: Jiri Slaby; +Cc: david, Andi Kleen, LKML, yhlu.kernel [Jiri Slaby - Sun, Jan 04, 2009 at 01:24:03AM +0100] | On 01/03/2009 10:24 PM, Cyrill Gorcunov wrote: | > [Cyrill Gorcunov - Sat, Jan 03, 2009 at 10:03:16PM +0300] | > | (list restored) | > | | > | [david@lang.hm - Sat, Jan 03, 2009 at 11:19:00AM -0800] | > | ... | > | >>> | > | >>> two new screenshots at http://linux.lang.hm/linux | > | >>> | > | >>> 36 is a boot with just earlyprintk=vga | > | >>> 37 is a boot with numa=noacpi | > | >>> I also put the vmlinux file there, I'll put the System.map and config | > | >>> there later (I did enable kernel_debug on this build as well) | > | >>> | > | >>> David Lang | > | >>> | > | >> | > | >> David, I can't find vmlinux neither .config? | > | >> Maybe they have hidden attribute? | > | | > | ok, according to failing address we've a BUG_ON | > | triggered | > | | > | --- | > | (gdb) l *0xffffffff8096452a | > | 0xffffffff8096452a is in alloc_bootmem_core (mm/bootmem.c:442). | > | 437 unsigned long fallback = 0; | > | 438 unsigned long min, max, start, sidx, midx, step; | > | 439 | > | 440 BUG_ON(!size); | > | 441 BUG_ON(align & (align - 1)); | > | 442 BUG_ON(limit && goal + size > limit); | > | 443 | > | 444 if (!bdata->node_bootmem_map) | > | 445 return NULL; | > | 446 | > | (gdb) | > | --- | > | | > | so we're in attempt to overrun 'limit'. | > | Hmm... | > | | > | - Cyrill - | > | > Hardly possible that we trigger BUG here since I don't | > see BUG: on the photo. Investigating. | | Hint: line 442 in 2.6.28 is | if (!bdata->node_bootmem_map) | ;) | | It's: | 0xffffffff8096452a <alloc_bootmem_core+69>: cmpq $0x0,0x10(%rbp) | and hence cr2 is 10. | | node_data[nid] is NULL... But both of them are set up. Maybe too high nid (and | pnum in sparse_init)? | David, could you give it a try? - Cyrill - --- include/linux/mmzone.h | 1 + 1 file changed, 1 insertion(+) Index: linux-2.6.git/include/linux/mmzone.h =================================================================== --- linux-2.6.git.orig/include/linux/mmzone.h +++ linux-2.6.git/include/linux/mmzone.h @@ -980,6 +980,7 @@ extern struct mem_section mem_section[NR static inline struct mem_section *__nr_to_section(unsigned long nr) { + BUG_ON(SECTION_NR_TO_ROOT(nr) >= NR_SECTION_ROOTS); if (!mem_section[SECTION_NR_TO_ROOT(nr)]) return NULL; return &mem_section[SECTION_NR_TO_ROOT(nr)][nr & SECTION_ROOT_MASK]; ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-04 11:29 ` Cyrill Gorcunov @ 2009-01-04 12:23 ` Jiri Slaby 2009-01-05 22:20 ` david 1 sibling, 0 replies; 63+ messages in thread From: Jiri Slaby @ 2009-01-04 12:23 UTC (permalink / raw) To: Cyrill Gorcunov; +Cc: david, Andi Kleen, LKML, yhlu.kernel Cyrill Gorcunov write: > static inline struct mem_section *__nr_to_section(unsigned long nr) > { > + BUG_ON(SECTION_NR_TO_ROOT(nr) >= NR_SECTION_ROOTS); sidenote: David, you should get early exception 6. ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-04 11:29 ` Cyrill Gorcunov 2009-01-04 12:23 ` Jiri Slaby @ 2009-01-05 22:20 ` david 2009-01-05 21:25 ` Cyrill Gorcunov 2009-01-05 21:55 ` Yinghai Lu 1 sibling, 2 replies; 63+ messages in thread From: david @ 2009-01-05 22:20 UTC (permalink / raw) To: Cyrill Gorcunov; +Cc: Jiri Slaby, Andi Kleen, LKML, yhlu.kernel On Sun, 4 Jan 2009, Cyrill Gorcunov wrote: I assume you want this instead of the prior patches. I will test this shortly. David Lang > --- > include/linux/mmzone.h | 1 + > 1 file changed, 1 insertion(+) > > Index: linux-2.6.git/include/linux/mmzone.h > =================================================================== > --- linux-2.6.git.orig/include/linux/mmzone.h > +++ linux-2.6.git/include/linux/mmzone.h > @@ -980,6 +980,7 @@ extern struct mem_section mem_section[NR > > static inline struct mem_section *__nr_to_section(unsigned long nr) > { > + BUG_ON(SECTION_NR_TO_ROOT(nr) >= NR_SECTION_ROOTS); > if (!mem_section[SECTION_NR_TO_ROOT(nr)]) > return NULL; > return &mem_section[SECTION_NR_TO_ROOT(nr)][nr & SECTION_ROOT_MASK]; > ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-05 22:20 ` david @ 2009-01-05 21:25 ` Cyrill Gorcunov 2009-01-05 23:20 ` david 2009-01-05 21:55 ` Yinghai Lu 1 sibling, 1 reply; 63+ messages in thread From: Cyrill Gorcunov @ 2009-01-05 21:25 UTC (permalink / raw) To: david; +Cc: Jiri Slaby, Andi Kleen, LKML, yhlu.kernel [david@lang.hm - Mon, Jan 05, 2009 at 02:20:42PM -0800] > On Sun, 4 Jan 2009, Cyrill Gorcunov wrote: > > I assume you want this instead of the prior patches. I will test this > shortly. > > David Lang > >> --- >> include/linux/mmzone.h | 1 + >> 1 file changed, 1 insertion(+) >> >> Index: linux-2.6.git/include/linux/mmzone.h >> =================================================================== >> --- linux-2.6.git.orig/include/linux/mmzone.h >> +++ linux-2.6.git/include/linux/mmzone.h >> @@ -980,6 +980,7 @@ extern struct mem_section mem_section[NR >> >> static inline struct mem_section *__nr_to_section(unsigned long nr) >> { >> + BUG_ON(SECTION_NR_TO_ROOT(nr) >= NR_SECTION_ROOTS); >> if (!mem_section[SECTION_NR_TO_ROOT(nr)]) >> return NULL; >> return &mem_section[SECTION_NR_TO_ROOT(nr)][nr & SECTION_ROOT_MASK]; >> > Yes, you even may combine it with the patch Johannes proposed. They should not interfere. - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-05 21:25 ` Cyrill Gorcunov @ 2009-01-05 23:20 ` david 2009-01-06 8:01 ` Cyrill Gorcunov 0 siblings, 1 reply; 63+ messages in thread From: david @ 2009-01-05 23:20 UTC (permalink / raw) To: Cyrill Gorcunov; +Cc: Jiri Slaby, Andi Kleen, LKML, yhlu.kernel On Tue, 6 Jan 2009, Cyrill Gorcunov wrote: > > Yes, you even may combine it with the patch Johannes proposed. > They should not interfere. I'm not spotting that patch. David Lang ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-05 23:20 ` david @ 2009-01-06 8:01 ` Cyrill Gorcunov 0 siblings, 0 replies; 63+ messages in thread From: Cyrill Gorcunov @ 2009-01-06 8:01 UTC (permalink / raw) To: david; +Cc: Jiri Slaby, Andi Kleen, LKML, yhlu.kernel [david@lang.hm - Mon, Jan 05, 2009 at 03:20:13PM -0800] > On Tue, 6 Jan 2009, Cyrill Gorcunov wrote: > >> >> Yes, you even may combine it with the patch Johannes proposed. >> They should not interfere. > > I'm not spotting that patch. > > David Lang > It's here http://lkml.org/lkml/2009/1/5/51 - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-05 22:20 ` david 2009-01-05 21:25 ` Cyrill Gorcunov @ 2009-01-05 21:55 ` Yinghai Lu 2009-01-05 22:07 ` Yinghai Lu 2009-01-05 23:18 ` david 1 sibling, 2 replies; 63+ messages in thread From: Yinghai Lu @ 2009-01-05 21:55 UTC (permalink / raw) To: david, Ingo Molnar; +Cc: Cyrill Gorcunov, Jiri Slaby, Andi Kleen, LKML Can you send out boot log with working kernel before 2.6.28? need to look at the e820 table. YH ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-05 21:55 ` Yinghai Lu @ 2009-01-05 22:07 ` Yinghai Lu 2009-01-05 23:20 ` david 2009-01-05 23:18 ` david 1 sibling, 1 reply; 63+ messages in thread From: Yinghai Lu @ 2009-01-05 22:07 UTC (permalink / raw) To: david, Ingo Molnar; +Cc: Cyrill Gorcunov, Jiri Slaby, Andi Kleen, LKML can you make sure X86_64_APCI_NUMA is set? # CONFIG_X86_64_ACPI_NUMA is not set YH ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-05 22:07 ` Yinghai Lu @ 2009-01-05 23:20 ` david 2009-01-06 0:50 ` david 0 siblings, 1 reply; 63+ messages in thread From: david @ 2009-01-05 23:20 UTC (permalink / raw) To: Yinghai Lu; +Cc: Ingo Molnar, Cyrill Gorcunov, Jiri Slaby, Andi Kleen, LKML On Mon, 5 Jan 2009, Yinghai Lu wrote: > can you make sure X86_64_APCI_NUMA is set? > > # CONFIG_X86_64_ACPI_NUMA is not set will do, recompiling... David Lang ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-05 23:20 ` david @ 2009-01-06 0:50 ` david 2009-01-06 0:54 ` david 0 siblings, 1 reply; 63+ messages in thread From: david @ 2009-01-06 0:50 UTC (permalink / raw) To: Yinghai Lu; +Cc: Ingo Molnar, Cyrill Gorcunov, Jiri Slaby, Andi Kleen, LKML On Mon, 5 Jan 2009, david@lang.hm wrote: > On Mon, 5 Jan 2009, Yinghai Lu wrote: > >> can you make sure X86_64_APCI_NUMA is set? >> >> # CONFIG_X86_64_ACPI_NUMA is not set > > will do, recompiling... new version up at http://linux.lang.hm/linux the -6 builds are the latest ones, pictures are still arriving 38 earlyprintk=vga 38 earlyprintk=vga numa=noacpi 38 earlyprintk=vga numa=off 38 earlyprintk=vga numa-noacpi bootmem_debug I forgot to try and move the memory hole, I'll reboot and try that. David Lang ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-06 0:50 ` david @ 2009-01-06 0:54 ` david 2009-01-06 0:02 ` Yinghai Lu 0 siblings, 1 reply; 63+ messages in thread From: david @ 2009-01-06 0:54 UTC (permalink / raw) To: Yinghai Lu; +Cc: Ingo Molnar, Cyrill Gorcunov, Jiri Slaby, Andi Kleen, LKML On Mon, 5 Jan 2009, david@lang.hm wrote: > On Mon, 5 Jan 2009, david@lang.hm wrote: > >> On Mon, 5 Jan 2009, Yinghai Lu wrote: >> >>> can you make sure X86_64_APCI_NUMA is set? >>> >>> # CONFIG_X86_64_ACPI_NUMA is not set >> >> will do, recompiling... > > new version up at http://linux.lang.hm/linux > > > the -6 builds are the latest ones, pictures are still arriving > > 38 earlyprintk=vga > 38 earlyprintk=vga numa=noacpi > 38 earlyprintk=vga numa=off > 38 earlyprintk=vga numa-noacpi bootmem_debug > > I forgot to try and move the memory hole, I'll reboot and try that. oops, cut-and-paste got me, those were 38-41 David Lang ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-06 0:54 ` david @ 2009-01-06 0:02 ` Yinghai Lu 2009-01-06 1:22 ` david 0 siblings, 1 reply; 63+ messages in thread From: Yinghai Lu @ 2009-01-06 0:02 UTC (permalink / raw) To: david; +Cc: Ingo Molnar, Cyrill Gorcunov, Jiri Slaby, Andi Kleen, LKML david@lang.hm wrote: > On Mon, 5 Jan 2009, david@lang.hm wrote: > >> On Mon, 5 Jan 2009, david@lang.hm wrote: >> >>> On Mon, 5 Jan 2009, Yinghai Lu wrote: >>> >>>> can you make sure X86_64_APCI_NUMA is set? >>>> >>>> # CONFIG_X86_64_ACPI_NUMA is not set >>> >>> will do, recompiling... >> >> new version up at http://linux.lang.hm/linux >> >> >> the -6 builds are the latest ones, pictures are still arriving >> >> 38 earlyprintk=vga >> 38 earlyprintk=vga numa=noacpi >> 38 earlyprintk=vga numa=off >> 38 earlyprintk=vga numa-noacpi bootmem_debug >> >> I forgot to try and move the memory hole, I'll reboot and try that. > any 64bit kernel before 2.6.28 works on that system? YH ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-06 0:02 ` Yinghai Lu @ 2009-01-06 1:22 ` david 2009-01-06 0:25 ` Yinghai Lu 0 siblings, 1 reply; 63+ messages in thread From: david @ 2009-01-06 1:22 UTC (permalink / raw) To: Yinghai Lu; +Cc: Ingo Molnar, Cyrill Gorcunov, Jiri Slaby, Andi Kleen, LKML On Mon, 5 Jan 2009, Yinghai Lu wrote: > david@lang.hm wrote: >> On Mon, 5 Jan 2009, david@lang.hm wrote: >> >>> On Mon, 5 Jan 2009, david@lang.hm wrote: >>> >>>> On Mon, 5 Jan 2009, Yinghai Lu wrote: >>>> >>>>> can you make sure X86_64_APCI_NUMA is set? >>>>> >>>>> # CONFIG_X86_64_ACPI_NUMA is not set >>>> >>>> will do, recompiling... >>> >>> new version up at http://linux.lang.hm/linux >>> >>> >>> the -6 builds are the latest ones, pictures are still arriving >>> >>> 38 earlyprintk=vga >>> 38 earlyprintk=vga numa=noacpi >>> 38 earlyprintk=vga numa=off >>> 38 earlyprintk=vga numa-noacpi bootmem_debug >>> >>> I forgot to try and move the memory hole, I'll reboot and try that. >> > > any 64bit kernel before 2.6.28 works on that system? I'm pretty sure that I've done it on other systems from this buy, but on this system, no I don't have any working 64 bit system. I tried ubuntu 8.10 and 8.04 before trying to use the config for my working 32 bit system as the basis for a make oldconfig to try and get a working 64 bit kernel to start using. this motherboard is a Tyan Thunder K8S Pro S2882 I just uploaded some snapshots of the bios screens David Lang ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-06 1:22 ` david @ 2009-01-06 0:25 ` Yinghai Lu 2009-01-06 2:03 ` david 0 siblings, 1 reply; 63+ messages in thread From: Yinghai Lu @ 2009-01-06 0:25 UTC (permalink / raw) To: david; +Cc: Ingo Molnar, Cyrill Gorcunov, Jiri Slaby, Andi Kleen, LKML david@lang.hm wrote: > On Mon, 5 Jan 2009, Yinghai Lu wrote: > >> david@lang.hm wrote: >>> On Mon, 5 Jan 2009, david@lang.hm wrote: >>> >>>> On Mon, 5 Jan 2009, david@lang.hm wrote: >>>> >>>>> On Mon, 5 Jan 2009, Yinghai Lu wrote: >>>>> >>>>>> can you make sure X86_64_APCI_NUMA is set? >>>>>> >>>>>> # CONFIG_X86_64_ACPI_NUMA is not set >>>>> >>>>> will do, recompiling... >>>> >>>> new version up at http://linux.lang.hm/linux >>>> >>>> >>>> the -6 builds are the latest ones, pictures are still arriving >>>> >>>> 38 earlyprintk=vga >>>> 38 earlyprintk=vga numa=noacpi >>>> 38 earlyprintk=vga numa=off >>>> 38 earlyprintk=vga numa-noacpi bootmem_debug >>>> >>>> I forgot to try and move the memory hole, I'll reboot and try that. >>> >> >> any 64bit kernel before 2.6.28 works on that system? > > I'm pretty sure that I've done it on other systems from this buy, but on > this system, no I don't have any working 64 bit system. I tried ubuntu > 8.10 and 8.04 before trying to use the config for my working 32 bit > system as the basis for a make oldconfig to try and get a working 64 bit > kernel to start using. > > this motherboard is a Tyan Thunder K8S Pro S2882 > > I just uploaded some snapshots of the bios screens please try to update the BIOS. the installed BIOS seems has problem... http://tyan.com/support_download_bios.aspx?model=S.S2882 YH ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-06 0:25 ` Yinghai Lu @ 2009-01-06 2:03 ` david 2009-01-06 1:06 ` Yinghai Lu 0 siblings, 1 reply; 63+ messages in thread From: david @ 2009-01-06 2:03 UTC (permalink / raw) To: Yinghai Lu; +Cc: Ingo Molnar, Cyrill Gorcunov, Jiri Slaby, Andi Kleen, LKML On Mon, 5 Jan 2009, Yinghai Lu wrote: > david@lang.hm wrote: >> On Mon, 5 Jan 2009, Yinghai Lu wrote: >> >> >> this motherboard is a Tyan Thunder K8S Pro S2882 >> >> I just uploaded some snapshots of the bios screens > > please try to update the BIOS. the installed BIOS seems has problem... > > http://tyan.com/support_download_bios.aspx?model=S.S2882 what problems are you seeing (i.e. what did I miss seeing that would have pointed me in this direction without eating everyone's time) David Lang ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-06 2:03 ` david @ 2009-01-06 1:06 ` Yinghai Lu 2009-01-06 5:29 ` david 0 siblings, 1 reply; 63+ messages in thread From: Yinghai Lu @ 2009-01-06 1:06 UTC (permalink / raw) To: david; +Cc: Ingo Molnar, Cyrill Gorcunov, Jiri Slaby, Andi Kleen, LKML david@lang.hm wrote: > On Mon, 5 Jan 2009, Yinghai Lu wrote: > >> david@lang.hm wrote: >>> On Mon, 5 Jan 2009, Yinghai Lu wrote: >>> >>> >>> this motherboard is a Tyan Thunder K8S Pro S2882 >>> >>> I just uploaded some snapshots of the bios screens >> >> please try to update the BIOS. the installed BIOS seems has problem... >> >> http://tyan.com/support_download_bios.aspx?model=S.S2882 > > what problems are you seeing (i.e. what did I miss seeing that would > have pointed me in this direction without eating everyone's time) > you should get 4g ram instead of 3g according to e820. BIOS should set ram routing correctly according to iommu (gart) and memhole etc. YH ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-06 1:06 ` Yinghai Lu @ 2009-01-06 5:29 ` david 2009-01-06 6:09 ` Yinghai Lu 0 siblings, 1 reply; 63+ messages in thread From: david @ 2009-01-06 5:29 UTC (permalink / raw) To: Yinghai Lu; +Cc: Ingo Molnar, Cyrill Gorcunov, Jiri Slaby, Andi Kleen, LKML On Mon, 5 Jan 2009, Yinghai Lu wrote: > david@lang.hm wrote: >> On Mon, 5 Jan 2009, Yinghai Lu wrote: >> >>> david@lang.hm wrote: >>>> On Mon, 5 Jan 2009, Yinghai Lu wrote: >>>> >>>> >>>> this motherboard is a Tyan Thunder K8S Pro S2882 >>>> >>>> I just uploaded some snapshots of the bios screens >>> >>> please try to update the BIOS. the installed BIOS seems has problem... >>> >>> http://tyan.com/support_download_bios.aspx?model=S.S2882 >> >> what problems are you seeing (i.e. what did I miss seeing that would >> have pointed me in this direction without eating everyone's time) >> > > you should get 4g ram instead of 3g according to e820. > > BIOS should set ram routing correctly according to iommu (gart) and memhole etc. this seems to have solved the problem I do have another of these systems if there is any desire to do any more troubleshooting (it would be really nice if things died with a better error message for example) if not, thanks for the assistance David Lang ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-06 5:29 ` david @ 2009-01-06 6:09 ` Yinghai Lu 2009-01-07 7:49 ` david 0 siblings, 1 reply; 63+ messages in thread From: Yinghai Lu @ 2009-01-06 6:09 UTC (permalink / raw) To: david; +Cc: Ingo Molnar, Cyrill Gorcunov, Jiri Slaby, Andi Kleen, LKML [-- Attachment #1: Type: text/plain, Size: 1374 bytes --] On Mon, Jan 5, 2009 at 9:29 PM, <david@lang.hm> wrote: > On Mon, 5 Jan 2009, Yinghai Lu wrote: > >> david@lang.hm wrote: >>> >>> On Mon, 5 Jan 2009, Yinghai Lu wrote: >>> >>>> david@lang.hm wrote: >>>>> >>>>> On Mon, 5 Jan 2009, Yinghai Lu wrote: >>>>> >>>>> >>>>> this motherboard is a Tyan Thunder K8S Pro S2882 >>>>> >>>>> I just uploaded some snapshots of the bios screens >>>> >>>> please try to update the BIOS. the installed BIOS seems has problem... >>>> >>>> http://tyan.com/support_download_bios.aspx?model=S.S2882 >>> >>> what problems are you seeing (i.e. what did I miss seeing that would >>> have pointed me in this direction without eating everyone's time) >>> >> >> you should get 4g ram instead of 3g according to e820. >> >> BIOS should set ram routing correctly according to iommu (gart) and >> memhole etc. > > this seems to have solved the problem can you post boot log and lspci -vvxxx ? > > I do have another of these systems if there is any desire to do any more > troubleshooting (it would be really nice if things died with a better error > message for example) good, 0. setup serial cable between your two system. use minicom in your first system to capture serial message from second system 1. apply attached patch 2. we need full boot log of your second system. please boot with " debug console=uart8250,io,0x3f8,115200n8 pci=earlydump" YH [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #2: mminit_loglevel_2.patch --] [-- Type: text/x-patch; name=mminit_loglevel_2.patch, Size: 1060 bytes --] From: Yinghai Lu <yhlu.kernel@gmail.com> Subject: [PATCH] mm: print out info about adding/removing active region Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com> --- mm/page_alloc.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) Index: linux-2.6/mm/page_alloc.c =================================================================== --- linux-2.6.orig/mm/page_alloc.c +++ linux-2.6/mm/page_alloc.c @@ -3626,8 +3626,7 @@ void __init add_active_range(unsigned in { int i; - mminit_dprintk(MMINIT_TRACE, "memory_register", - "Entering add_active_range(%d, %#lx, %#lx) " + printk(KERN_DEBUG "Adding active range (%d, %#lx, %#lx) " "%d entries of %d used\n", nid, start_pfn, end_pfn, nr_nodemap_entries, MAX_ACTIVE_REGIONS); @@ -3689,7 +3688,7 @@ void __init remove_active_range(unsigned int i, j; int removed = 0; - printk(KERN_DEBUG "remove_active_range (%d, %lu, %lu)\n", + printk(KERN_DEBUG "Removing active range (%d, %#lx, %#lx)\n", nid, start_pfn, end_pfn); /* Find the old active region end and shrink */ ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-06 6:09 ` Yinghai Lu @ 2009-01-07 7:49 ` david 0 siblings, 0 replies; 63+ messages in thread From: david @ 2009-01-07 7:49 UTC (permalink / raw) To: Yinghai Lu; +Cc: Ingo Molnar, Cyrill Gorcunov, Jiri Slaby, Andi Kleen, LKML [-- Attachment #1: Type: TEXT/PLAIN, Size: 993 bytes --] On Mon, 5 Jan 2009, Yinghai Lu wrote: >> this seems to have solved the problem > > can you post boot log and lspci -vvxxx ? I will do this tomorrow >> >> I do have another of these systems if there is any desire to do any more >> troubleshooting (it would be really nice if things died with a better error >> message for example) > > good, > 0. setup serial cable between your two system. use minicom in your > first system to capture serial message from second system > 1. apply attached patch > 2. we need full boot log of your second system. please boot with " > debug console=uart8250,io,0x3f8,115200n8 pci=earlydump" it will take me a little bit of time to do this. the one I've been working with is now my desktop at work, now that the holidays are over I need to work with it instead of rebooting it, the other boxes are in a stack at home. getting at them is easy compared to figuring out where to set them up. I should have something setup within a couple of days. David Lang [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #2: Type: TEXT/X-PATCH; NAME=mminit_loglevel_2.patch, Size: 1060 bytes --] From: Yinghai Lu <yhlu.kernel@gmail.com> Subject: [PATCH] mm: print out info about adding/removing active region Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com> --- mm/page_alloc.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) Index: linux-2.6/mm/page_alloc.c =================================================================== --- linux-2.6.orig/mm/page_alloc.c +++ linux-2.6/mm/page_alloc.c @@ -3626,8 +3626,7 @@ void __init add_active_range(unsigned in { int i; - mminit_dprintk(MMINIT_TRACE, "memory_register", - "Entering add_active_range(%d, %#lx, %#lx) " + printk(KERN_DEBUG "Adding active range (%d, %#lx, %#lx) " "%d entries of %d used\n", nid, start_pfn, end_pfn, nr_nodemap_entries, MAX_ACTIVE_REGIONS); @@ -3689,7 +3688,7 @@ void __init remove_active_range(unsigned int i, j; int removed = 0; - printk(KERN_DEBUG "remove_active_range (%d, %lu, %lu)\n", + printk(KERN_DEBUG "Removing active range (%d, %#lx, %#lx)\n", nid, start_pfn, end_pfn); /* Find the old active region end and shrink */ ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-05 21:55 ` Yinghai Lu 2009-01-05 22:07 ` Yinghai Lu @ 2009-01-05 23:18 ` david 2009-01-05 22:29 ` Yinghai Lu 1 sibling, 1 reply; 63+ messages in thread From: david @ 2009-01-05 23:18 UTC (permalink / raw) To: Yinghai Lu; +Cc: Ingo Molnar, Cyrill Gorcunov, Jiri Slaby, Andi Kleen, LKML On Mon, 5 Jan 2009, Yinghai Lu wrote: > Can you send out boot log with working kernel before 2.6.28? > > need to look at the e820 table. here is the 32 bit kernel I'm running now (from dmesg ) Linux version 2.6.25.14 (root@dlang) (gcc version 3.3.6) #1 SMP PREEMPT Mon Aug 4 18:22:50 PDT 2008 BIOS-provided physical RAM map: BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) BIOS-e820: 0000000000100000 - 000000004cff0000 (usable) BIOS-e820: 000000004cff0000 - 000000004cfff000 (ACPI data) BIOS-e820: 000000004cfff000 - 000000004d000000 (ACPI NVS) BIOS-e820: 00000000ff780000 - 0000000100000000 (reserved) BIOS-e820: 0000000100000000 - 0000000180000000 (usable) Warning only 4GB will be used. Use a HIGHMEM64G enabled kernel. 3200MB HIGHMEM available. 896MB LOWMEM available. Scan SMP from c0000000 for 1024 bytes. Scan SMP from c009fc00 for 1024 bytes. Scan SMP from c00f0000 for 65536 bytes. found SMP MP-table at [c00ff780] 000ff780 Entering add_active_range(0, 0, 1048576) 0 entries of 256 used Zone PFN ranges: DMA 0 -> 4096 Normal 4096 -> 229376 HighMem 229376 -> 1048576 Movable zone start PFN for each node early_node_map[1] active PFN ranges 0: 0 -> 1048576 On node 0 totalpages: 1048576 DMA zone: 32 pages used for memmap DMA zone: 0 pages reserved DMA zone: 4064 pages, LIFO batch:0 Normal zone: 1760 pages used for memmap Normal zone: 223520 pages, LIFO batch:31 HighMem zone: 6400 pages used for memmap HighMem zone: 812800 pages, LIFO batch:31 Movable zone: 0 pages used for memmap DMI 2.3 present. ACPI: RSDP 000F68E0, 0024 (r2 ACPIAM) ACPI: XSDT 4CFF0100, 0054 (r1 A M I OEMXSDT 6000428 MSFT 97) ACPI: FACP 4CFF0281, 00F4 (r1 A M I OEMFACP 6000428 MSFT 97) ACPI: DSDT 4CFF0400, 30A7 (r1 0AAAA 0AAAA000 0 INTL 2002026) ACPI: FACS 4CFFF000, 0040 ACPI: APIC 4CFF0380, 0074 (r1 A M I OEMAPIC 6000428 MSFT 97) ACPI: OEMB 4CFFF040, 0041 (r1 A M I OEMBIOS 6000428 MSFT 97) ACPI: SRAT 4CFF34B0, 00F0 (r1 A M I OEMSRAT 6000428 MSFT 97) ACPI: HPET 4CFF35A0, 0038 (r1 A M I OEMHPET 6000428 MSFT 97) ACPI: ASF! 4CFF35E0, 0086 (r1 AMIASF AMDSTRET 1 INTL 2002026) ACPI: PM-Timer IO Port: 0x5008 ACPI: Local APIC address 0xfee00000 ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) Processor #0 15:5 APIC version 16 ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) Processor #1 15:5 APIC version 16 ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 ACPI: IOAPIC (id[0x03] address[0xff6ff000] gsi_base[24]) IOAPIC[1]: apic_id 3, version 17, address 0xff6ff000, GSI 24-27 ACPI: IOAPIC (id[0x04] address[0xff6fe000] gsi_base[28]) IOAPIC[2]: apic_id 4, version 17, address 0xff6fe000, GSI 28-31 ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) ACPI: IRQ0 used by override. ACPI: IRQ2 used by override. ACPI: IRQ9 used by override. Enabling APIC mode: Flat. Using 3 I/O APICs ACPI: HPET id: 0x102282a0 base: 0xfec01000 Using ACPI (MADT) for SMP configuration information Allocating PCI resources starting at 50000000 (gap: 4d000000:b2780000) Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1040384 Kernel command line: BOOT_IMAGE=2.6.25.14 ro root=802 mapped APIC to ffffb000 (fee00000) mapped IOAPIC to ffffa000 (fec00000) mapped IOAPIC to ffff9000 (ff6ff000) mapped IOAPIC to ffff8000 (ff6fe000) Enabling fast FPU save and restore... done. Enabling unmasked SIMD FPU exception support... done. Initializing CPU#0 Preemptible RCU implementation. CPU 0 irqstacks, hard=c07e3000 soft=c07e1000 PID hash table entries: 4096 (order: 12, 16384 bytes) Detected 1394.218 MHz processor. Console: colour VGA+ 80x25 console [tty0] enabled Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) Memory: 1216196k/4194304k available (4621k kernel code, 44152k reserved, 2074k data, 304k init, 344000k highmem) virtual kernel memory layout: fixmap : 0xfff9b000 - 0xfffff000 ( 400 kB) pkmap : 0xff800000 - 0xffc00000 (4096 kB) vmalloc : 0xf8800000 - 0xff7fe000 ( 111 MB) lowmem : 0xc0000000 - 0xf8000000 ( 896 MB) .init : 0xc0792000 - 0xc07de000 ( 304 kB) .data : 0xc0583639 - 0xc078a1fc (2074 kB) .text : 0xc0100000 - 0xc0583639 (4621 kB) Checking if this processor honours the WP bit even in supervisor mode...Ok. CPA: page pool initialized 1 of 1 pages preallocated hpet clockevent registered Calibrating delay using timer specific routine.. 2791.98 BogoMIPS (lpj=4651182) Mount-cache hash table entries: 512 CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) CPU: L2 Cache: 1024K (64 bytes/line) Intel machine check architecture supported. Intel machine check reporting enabled on CPU#0. Compat vDSO mapped to ffffe000. Checking 'hlt' instruction... OK. ACPI: Core revision 20070126 CPU0: AMD Opteron(tm) Processor 240 stepping 0a Booting processor 1/1 ip 2000 CPU 1 irqstacks, hard=c07e4000 soft=c07e2000 Initializing CPU#1 Calibrating delay using timer specific routine.. 2789.41 BogoMIPS (lpj=4647056) CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) CPU: L2 Cache: 1024K (64 bytes/line) Intel machine check architecture supported. Intel machine check reporting enabled on CPU#1. CPU1: AMD Opteron(tm) Processor 240 stepping 0a Total of 2 processors activated (5581.39 BogoMIPS). ENABLING IO-APIC IRQs ..TIMER: vector=0x31 apic1=0 pin1=2 apic2=0 pin2=0 Brought up 2 CPUs CPU0 attaching sched-domain: domain 0: span 3 groups: 1 2 CPU1 attaching sched-domain: domain 0: span 3 groups: 2 1 net_namespace: 448 bytes xor: automatically using best checksumming function: pIII_sse pIII_sse : 4393.200 MB/sec xor: using function: pIII_sse (4393.200 MB/sec) NET: Registered protocol family 16 ACPI: bus type pci registered PCI: PCI BIOS revision 2.10 entry at 0xf0031, last bus=5 PCI: Using configuration type 1 Setting up standard PCI resources ACPI: EC: Look up EC in DSDT ACPI: Interpreter enabled ACPI: (supports S0 S5) 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.PCI1._PRT] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.GOLA._PRT] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.GOLB._PRT] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 12 14 15) ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 12 14 15) ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 9 10 11 12 14 15) ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 *10 11 12 14 15) Linux Plug and Play Support v0.97 (c) Adam Belay pnp: PnP ACPI init ACPI: bus type pnp registered pnp: PnP ACPI: found 16 devices ACPI: ACPI bus type pnp unregistered SCSI subsystem initialized usbcore: registered new interface driver usbfs usbcore: registered new interface driver hub usbcore: registered new device driver usb PCI: Using ACPI for IRQ routing PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report Bluetooth: Core ver 2.11 NET: Registered protocol family 31 Bluetooth: HCI device and connection manager initialized Bluetooth: HCI socket layer initialized hpet0: at MMIO 0xfec01000, IRQs 2, 8, 0 hpet0: 3 32-bit timers, 14318180 Hz ACPI: RTC can wake from S4 Switched to high resolution mode on CPU 0 Switched to high resolution mode on CPU 1 system 00:0b: ioport range 0x680-0x6ff has been reserved system 00:0b: ioport range 0x295-0x296 has been reserved system 00:0b: ioport range 0x778-0x77f has been reserved system 00:0b: ioport range 0xb78-0xb7f has been reserved system 00:0b: ioport range 0xf78-0xf7f has been reserved system 00:0c: ioport range 0x4d0-0x4d1 has been reserved system 00:0c: ioport range 0x5000-0x50bf has been reserved system 00:0c: ioport range 0x50e0-0x50ff has been reserved system 00:0c: ioport range 0x50c0-0x50df has been reserved system 00:0c: ioport range 0xde00-0xde7f has been reserved system 00:0c: ioport range 0xde80-0xdeff has been reserved system 00:0e: iomem range 0xfec00000-0xfec00fff has been reserved system 00:0e: iomem range 0xfee00000-0xfee00fff has been reserved system 00:0e: iomem range 0xfff80000-0xffffffff could not be reserved system 00:0e: iomem range 0xff780000-0xff7fffff could not be reserved system 00:0f: iomem range 0x0-0x9ffff could not be reserved system 00:0f: iomem range 0xc0000-0xdffff could not be reserved system 00:0f: iomem range 0xe0000-0xfffff could not be reserved system 00:0f: iomem range 0x100000-0x4cffffff could not be reserved system 00:0f: iomem range 0x0-0x0 could not be reserved PCI: Bridge: 0000:00:06.0 IO window: b000-bfff MEM window: 0xff500000-0xff5fffff PREFETCH window: disabled. PCI: Bridge: 0000:00:0a.0 IO window: disabled. MEM window: 0xff400000-0xff4fffff PREFETCH window: 0x00000000fea00000-0x00000000feafffff PCI: Bridge: 0000:01:01.0 IO window: a000-afff MEM window: 0xff200000-0xff2fffff PREFETCH window: 0x00000000ce900000-0x00000000ee9fffff PCI: Bridge: 0000:01:03.0 IO window: disabled. MEM window: disabled. PREFETCH window: disabled. PCI: Bridge: 0000:00:0b.0 IO window: a000-afff MEM window: 0xff200000-0xff3fffff PREFETCH window: 0x00000000ce900000-0x00000000fe9fffff ACPI: PCI Interrupt 0000:01:01.0[A] -> GSI 29 (level, low) -> IRQ 29 NET: Registered protocol family 2 IP route cache hash table entries: 32768 (order: 5, 131072 bytes) TCP established hash table entries: 131072 (order: 8, 1048576 bytes) TCP bind hash table entries: 65536 (order: 7, 524288 bytes) TCP: Hash tables configured (established 131072 bind 65536) TCP reno registered Machine check exception polling timer started. highmem bounce pool size: 64 pages Installing knfsd (copyright (C) 1996 okir@monad.swb.de). NTFS driver 2.1.29 [Flags: R/W]. fuse init (API version 7.9) SGI XFS with no debug enabled async_tx: api initialized (sync-only) Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) io scheduler noop registered io scheduler anticipatory registered io scheduler deadline registered io scheduler cfq registered (default) pci 0000:00:0b.0: AMD8131 rev 12 detected; disabling PCI-X MMRBC pci 0000:00:0a.0: AMD8131 rev 12 detected; disabling PCI-X MMRBC pci 0000:05:08.0: Firmware left e100 interrupts enabled; disabling pci 0000:03:00.0: Boot video device vga16fb: initializing vga16fb: mapped to 0xc00a0000 Console: switching to colour frame buffer device 80x30 fb0: VGA16 VGA frame buffer device lp: driver loaded but no devices found Real Time Clock Driver v1.12ac hpet_resources: 0xfec01000 is busy Non-volatile memory driver v1.2 AMD768 RNG detected ppdev: user-space parallel port driver Linux agpgart interface v0.103 [drm] Initialized drm 1.1.0 20060810 ACPI: PCI Interrupt 0000:03:00.0[A] -> GSI 29 (level, low) -> IRQ 29 PCI: Setting latency timer of device 0000:03:00.0 to 64 [drm] Initialized radeon 1.28.0 20060524 on minor 0 ipmi message handler version 39.1 ipmi device interface IPMI System Interface driver. ipmi_si: Unable to find any System Interface(s) Copyright (C) 2004 MontaVista Software - IPMI Powerdown via sys_reboot. Hangcheck: starting hangcheck timer 0.9.0 (tick is 180 seconds, margin is 60 seconds). Hangcheck: Using get_cycles(). Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A 00:07: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A 00:08: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A parport_pc 00:0a: reported by Plug and Play ACPI parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE] lp0: using parport0 (interrupt-driven). Floppy drive(s): fd0 is 1.44M FDC 0 is a post-1991 82077 loop: module loaded nbd: registered device at major 43 usbcore: registered new interface driver ub Intel(R) PRO/1000 Network Driver - version 7.3.20-k2-NAPI Copyright (c) 1999-2006 Intel Corporation. e1000e: Intel(R) PRO/1000 Network Driver - 0.2.0 e1000e: Copyright (c) 1999-2007 Intel Corporation. Ethernet Channel Bonding Driver: v3.2.5 (March 21, 2008) bonding: Warning: either miimon or arp_interval and arp_ip_target module parameters must be specified, otherwise bonding will not detect link failures! see bonding.txt for details. e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI e100: Copyright(c) 1999-2006 Intel Corporation ACPI: PCI Interrupt 0000:05:08.0[A] -> GSI 18 (level, low) -> IRQ 18 e100: eth0: e100_probe: addr 0xff5fc000, irq 18, MAC addr 00:e0:81:2a:cc:b2 tun: Universal TUN/TAP device driver, 1.6 tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com> Uniform Multi-Platform E-IDE driver ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx AMD8111: 0000:00:07.1 (rev 03) UDMA133 controller AMD8111: IDE controller (0x1022:0x7469 rev 0x03) at PCI slot 0000:00:07.1 AMD8111: not 100% native mode: will probe irqs later ide0: BM-DMA at 0xffa0-0xffa7, BIOS settings: hda:PIO, hdb:PIO ide1: BM-DMA at 0xffa8-0xffaf, BIOS settings: hdc:DMA, hdd:PIO Probing IDE interface ide0... Probing IDE interface ide1... hdc: VOM-12E48X, ATAPI CD/DVD-ROM drive hdc: host max PIO5 wanted PIO255(auto-tune) selected PIO4 hdc: UDMA/33 mode selected ide1 at 0x170-0x177,0x376 on irq 15 hdc: ATAPI 1X DVD-ROM DVD-R CD-R/RW drive, 2048kB Cache Uniform CD-ROM driver Revision: 3.20 Loading iSCSI transport class v2.0-869. Loading Adaptec I2O RAID: Version 2.4 Build 5go Detecting Adaptec I2O RAID controllers... ACPI: PCI Interrupt 0000:01:03.1[A] -> GSI 28 (level, low) -> IRQ 28 Adaptec I2O RAID controller 0 at f8880000 size=100000 irq=28 dpti: If you have a lot of devices this could take a few minutes. dpti0: Reading the hardware resource table. TID 008 Vendor: ADAPTEC Device: AIC-7899 Rev: 00000001 TID 009 Vendor: ADAPTEC Device: AIC-7899 Rev: 00000001 TID 523 Vendor: ADAPTEC Device: RAID-1 Rev: 370F TID 524 Vendor: ADAPTEC Device: RAID-1 Rev: 370F scsi0 : Vendor: Adaptec Model: 3210S FW:370F scsi 0:0:1:0: Direct-Access ADAPTEC RAID-1 370F PQ: 0 ANSI: 2 scsi 0:1:0:0: Direct-Access ADAPTEC RAID-1 370F PQ: 0 ANSI: 2 Adaptec aacraid driver 1.1-5[2455]-ms Driver 'sd' needs updating - please use bus_type methods sd 0:0:1:0: [sda] 71686144 512-byte hardware sectors (36703 MB) sd 0:0:1:0: [sda] Write Protect is off sd 0:0:1:0: [sda] Mode Sense: cf 00 10 08 sd 0:0:1:0: [sda] Write cache: disabled, read cache: enabled, supports DPO and FUA sd 0:0:1:0: [sda] 71686144 512-byte hardware sectors (36703 MB) sd 0:0:1:0: [sda] Write Protect is off sd 0:0:1:0: [sda] Mode Sense: cf 00 10 08 sd 0:0:1:0: [sda] Write cache: disabled, read cache: enabled, supports DPO and FUA sda: sda1 sda2 sda3 sd 0:0:1:0: [sda] Attached SCSI disk sd 0:1:0:0: [sdb] 71686144 512-byte hardware sectors (36703 MB) sd 0:1:0:0: [sdb] Write Protect is off sd 0:1:0:0: [sdb] Mode Sense: ab 00 10 08 sd 0:1:0:0: [sdb] Write cache: enabled, read cache: enabled, supports DPO and FUA sd 0:1:0:0: [sdb] 71686144 512-byte hardware sectors (36703 MB) sd 0:1:0:0: [sdb] Write Protect is off sd 0:1:0:0: [sdb] Mode Sense: ab 00 10 08 sd 0:1:0:0: [sdb] Write cache: enabled, read cache: enabled, supports DPO and FUA sdb: sdb1 sdb2 sd 0:1:0:0: [sdb] Attached SCSI disk Driver 'sr' needs updating - please use bus_type methods sd 0:0:1:0: Attached scsi generic sg0 type 0 sd 0:1:0:0: Attached scsi generic sg1 type 0 SCSI Media Changer driver v0.25 Driver 'ch' needs updating - please use bus_type methods I2O subsystem v1.325 i2o: max drivers = 8 i2o: Checking for PCI I2O controllers... iop0: controller found (0000:01:03.1) PCI: Unable to reserve mem region #1:8000000@f0000000 for device 0000:01:03.1 iop0: device already claimed iop0: DMA / IO allocation for I2O controller failed I2O Configuration OSM v1.323 I2O Bus Adapter OSM v1.317 I2O Block Device OSM v1.325 I2O SCSI Peripheral OSM v1.316 I2O ProcFS OSM v1.316 Fusion MPT base driver 3.04.06 Copyright (c) 1999-2007 LSI Corporation Fusion MPT SPI Host driver 3.04.06 Fusion MPT misc device (ioctl) driver 3.04.06 mptctl: Registered with Fusion MPT base driver mptctl: /dev/mptctl @ (major,minor=10,220) ohci_hcd: 2006 August 04 USB 1.1 'Open' Host Controller (OHCI) Driver ACPI: PCI Interrupt 0000:05:00.0[D] -> GSI 19 (level, low) -> IRQ 19 ohci_hcd 0000:05:00.0: OHCI Host Controller ohci_hcd 0000:05:00.0: new USB bus registered, assigned bus number 1 ohci_hcd 0000:05:00.0: irq 19, io mem 0xff5fd000 usb usb1: configuration #1 chosen from 1 choice hub 1-0:1.0: USB hub found hub 1-0:1.0: 3 ports detected usb usb1: New USB device found, idVendor=1d6b, idProduct=0001 usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 usb usb1: Product: OHCI Host Controller usb usb1: Manufacturer: Linux 2.6.25.14 ohci_hcd usb usb1: SerialNumber: 0000:05:00.0 ACPI: PCI Interrupt 0000:05:00.1[D] -> GSI 19 (level, low) -> IRQ 19 ohci_hcd 0000:05:00.1: OHCI Host Controller ohci_hcd 0000:05:00.1: new USB bus registered, assigned bus number 2 ohci_hcd 0000:05:00.1: irq 19, io mem 0xff5fe000 usb usb2: configuration #1 chosen from 1 choice hub 2-0:1.0: USB hub found hub 2-0:1.0: 3 ports detected usb usb2: New USB device found, idVendor=1d6b, idProduct=0001 usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 usb usb2: Product: OHCI Host Controller usb usb2: Manufacturer: Linux 2.6.25.14 ohci_hcd usb usb2: SerialNumber: 0000:05:00.1 USB Universal Host Controller Interface driver v3.0 Initializing USB Mass Storage driver... usbcore: registered new interface driver usb-storage USB Mass Storage support registered. usbcore: registered new interface driver libusual usbcore: registered new interface driver berry_charge PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12 serio: i8042 KBD port at 0x60,0x64 irq 1 serio: i8042 AUX port at 0x60,0x64 irq 12 mice: PS/2 mouse device common for all mice input: AT Translated Set 2 keyboard as /class/input/input0 input: PC Speaker as /class/input/input1 input: ImPS/2 Logitech Wheel Mouse as /class/input/input2 rtc_cmos: probe of 00:02 failed with error -16 i2c /dev entries driver w83627hf: Found W83627HF chip at 0x290 i2c-adapter i2c-0: detect fail: address match, 0x2e hdaps: supported laptop not found! hdaps: driver init failed (ret=-19)! pc87360: PC8736x not detected, module not inserted. md: linear personality registered for level -1 md: raid0 personality registered for level 0 md: raid1 personality registered for level 1 md: raid10 personality registered for level 10 raid6: int32x1 582 MB/s raid6: int32x2 834 MB/s raid6: int32x4 498 MB/s raid6: int32x8 312 MB/s raid6: mmxx1 1176 MB/s raid6: mmxx2 2177 MB/s raid6: sse1x1 739 MB/s raid6: sse1x2 1393 MB/s raid6: sse2x1 1469 MB/s raid6: sse2x2 2169 MB/s raid6: using algorithm sse2x2 (2169 MB/s) md: raid6 personality registered for level 6 md: raid5 personality registered for level 5 md: raid4 personality registered for level 4 device-mapper: ioctl: 4.13.0-ioctl (2007-10-18) initialised: dm-devel@redhat.com Bluetooth: HCI USB driver ver 2.9 usbcore: registered new interface driver hci_usb Bluetooth: Virtual HCI driver ver 1.2 Bluetooth: HCI UART driver ver 2.2 Bluetooth: HCI H4 protocol initialized Bluetooth: HCI BCSP protocol initialized Bluetooth: HCILL protocol initialized Bluetooth: Broadcom Blutonium firmware driver ver 1.1 usbcore: registered new interface driver bcm203x Bluetooth: Digianswer Bluetooth USB driver ver 0.9 usbcore: registered new interface driver bpa10x Bluetooth: BlueFRITZ! USB driver ver 1.1 usbcore: registered new interface driver bfusb EDAC MC: Ver: 2.1.0 Aug 4 2008 cpuidle: using governor ladder cpuidle: using governor menu Bluetooth: HCI BCSP protocol initialized Bluetooth: HCILL protocol initialized Bluetooth: Broadcom Blutonium firmware driver ver 1.1 usbcore: registered new interface driver bcm203x Bluetooth: Digianswer Bluetooth USB driver ver 0.9 usbcore: registered new interface driver bpa10x Bluetooth: BlueFRITZ! USB driver ver 1.1 usbcore: registered new interface driver bfusb EDAC MC: Ver: 2.1.0 Aug 4 2008 cpuidle: using governor ladder cpuidle: using governor menu oprofile: using NMI interrupt. pktgen v2.69: Packet Generator for packet performance testing. nf_conntrack version 0.5.0 (16384 buckets, 65536 max) IPv4 over IPv4 tunneling driver GRE over IPv4 tunneling driver ip_tables: (C) 2000-2006 Netfilter Core Team TCP cubic registered NET: Registered protocol family 1 NET: Registered protocol family 17 Bridge firewalling registered Bluetooth: L2CAP ver 2.9 Bluetooth: L2CAP socket layer initialized Bluetooth: SCO (Voice Link) ver 0.5 Bluetooth: SCO socket layer initialized Bluetooth: RFCOMM socket layer initialized Bluetooth: RFCOMM TTY layer initialized Bluetooth: RFCOMM ver 1.8 Bluetooth: BNEP (Ethernet Emulation) ver 1.2 Bluetooth: BNEP filters: protocol multicast Bluetooth: HIDP (Human Interface Emulation) ver 1.2 RPC: Registered udp transport module. RPC: Registered tcp transport module. 802.1Q VLAN Support v1.8 Ben Greear <greearb@candelatech.com> All bugs added by David S. Miller <davem@redhat.com> Using IPI No-Shortcut mode drivers/rtc/hctosys.c: unable to open rtc device (rtc0) md: Autodetecting RAID arrays. md: Scanned 0 and added 0 devices. md: autorun ... md: ... autorun DONE. VFS: Mounted root (ext2 filesystem) readonly. Freeing unused kernel memory: 304k freed ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-05 23:18 ` david @ 2009-01-05 22:29 ` Yinghai Lu 2009-01-05 22:31 ` Yinghai Lu 0 siblings, 1 reply; 63+ messages in thread From: Yinghai Lu @ 2009-01-05 22:29 UTC (permalink / raw) To: david; +Cc: Ingo Molnar, Cyrill Gorcunov, Jiri Slaby, Andi Kleen, LKML david@lang.hm wrote: > On Mon, 5 Jan 2009, Yinghai Lu wrote: > >> Can you send out boot log with working kernel before 2.6.28? >> >> need to look at the e820 table. > > > here is the 32 bit kernel I'm running now (from dmesg ) > > Linux version 2.6.25.14 (root@dlang) (gcc version 3.3.6) #1 SMP PREEMPT > Mon Aug 4 18:22:50 PDT 2008 > BIOS-provided physical RAM map: > BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) > BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) > BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) > BIOS-e820: 0000000000100000 - 000000004cff0000 (usable) > BIOS-e820: 000000004cff0000 - 000000004cfff000 (ACPI data) > BIOS-e820: 000000004cfff000 - 000000004d000000 (ACPI NVS) > BIOS-e820: 00000000ff780000 - 0000000100000000 (reserved) > BIOS-e820: 0000000100000000 - 0000000180000000 (usable) > Warning only 4GB will be used. > Use a HIGHMEM64G enabled kernel. > 3200MB HIGHMEM available. > 896MB LOWMEM available. > Scan SMP from c0000000 for 1024 bytes. > Scan SMP from c009fc00 for 1024 bytes. > Scan SMP from c00f0000 for 65536 bytes. > found SMP MP-table at [c00ff780] 000ff780 > Entering add_active_range(0, 0, 1048576) 0 entries of 256 used > Zone PFN ranges: > DMA 0 -> 4096 > Normal 4096 -> 229376 > HighMem 229376 -> 1048576 > Movable zone start PFN for each node > early_node_map[1] active PFN ranges > 0: 0 -> 1048576 > On node 0 totalpages: 1048576 > DMA zone: 32 pages used for memmap > DMA zone: 0 pages reserved > DMA zone: 4064 pages, LIFO batch:0 > Normal zone: 1760 pages used for memmap > Normal zone: 223520 pages, LIFO batch:31 > HighMem zone: 6400 pages used for memmap > HighMem zone: 812800 pages, LIFO batch:31 > Movable zone: 0 pages used for memmap BIOS-provided physical RAM map: BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) BIOS-e820: 0000000000100000 - 000000004cff0000 (usable) BIOS-e820: 000000004cff0000 - 000000004cfff000 (ACPI data) BIOS-e820: 000000004cfff000 - 000000004d000000 (ACPI NVS) BIOS-e820: 00000000ff780000 - 0000000100000000 (reserved) BIOS-e820: 0000000100000000 - 0000000180000000 (usable) and for pci mem route: node0 [0, 2g), node1 is [4g, 6g) and e820 said only 3g can be used... [0, 1g), and [4g, 6g) please check if you can change HW memhole setup to 3g instead 2g. YH ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-05 22:29 ` Yinghai Lu @ 2009-01-05 22:31 ` Yinghai Lu 0 siblings, 0 replies; 63+ messages in thread From: Yinghai Lu @ 2009-01-05 22:31 UTC (permalink / raw) To: david; +Cc: Ingo Molnar, Cyrill Gorcunov, Jiri Slaby, Andi Kleen, LKML Yinghai Lu wrote: > david@lang.hm wrote: >> On Mon, 5 Jan 2009, Yinghai Lu wrote: >> >>> Can you send out boot log with working kernel before 2.6.28? >>> >>> need to look at the e820 table. >> >> here is the 32 bit kernel I'm running now (from dmesg ) >> >> Linux version 2.6.25.14 (root@dlang) (gcc version 3.3.6) #1 SMP PREEMPT >> Mon Aug 4 18:22:50 PDT 2008 >> BIOS-provided physical RAM map: >> BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) >> BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) >> BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) >> BIOS-e820: 0000000000100000 - 000000004cff0000 (usable) >> BIOS-e820: 000000004cff0000 - 000000004cfff000 (ACPI data) >> BIOS-e820: 000000004cfff000 - 000000004d000000 (ACPI NVS) >> BIOS-e820: 00000000ff780000 - 0000000100000000 (reserved) >> BIOS-e820: 0000000100000000 - 0000000180000000 (usable) >> Warning only 4GB will be used. >> Use a HIGHMEM64G enabled kernel. >> 3200MB HIGHMEM available. >> 896MB LOWMEM available. >> Scan SMP from c0000000 for 1024 bytes. >> Scan SMP from c009fc00 for 1024 bytes. >> Scan SMP from c00f0000 for 65536 bytes. >> found SMP MP-table at [c00ff780] 000ff780 >> Entering add_active_range(0, 0, 1048576) 0 entries of 256 used >> Zone PFN ranges: >> DMA 0 -> 4096 >> Normal 4096 -> 229376 >> HighMem 229376 -> 1048576 >> Movable zone start PFN for each node >> early_node_map[1] active PFN ranges >> 0: 0 -> 1048576 >> On node 0 totalpages: 1048576 >> DMA zone: 32 pages used for memmap >> DMA zone: 0 pages reserved >> DMA zone: 4064 pages, LIFO batch:0 >> Normal zone: 1760 pages used for memmap >> Normal zone: 223520 pages, LIFO batch:31 >> HighMem zone: 6400 pages used for memmap >> HighMem zone: 812800 pages, LIFO batch:31 >> Movable zone: 0 pages used for memmap > > > BIOS-provided physical RAM map: > BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) > BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) > BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) > BIOS-e820: 0000000000100000 - 000000004cff0000 (usable) > BIOS-e820: 000000004cff0000 - 000000004cfff000 (ACPI data) > BIOS-e820: 000000004cfff000 - 000000004d000000 (ACPI NVS) > BIOS-e820: 00000000ff780000 - 0000000100000000 (reserved) > BIOS-e820: 0000000100000000 - 0000000180000000 (usable) > > and for pci mem route: node0 [0, 2g), node1 is [4g, 6g) > > and e820 said only 3g can be used... [0, 1g), and [4g, 6g) > > please check if you can change HW memhole setup to 3g instead 2g. in BIOS, to get 1g back. YH ^ permalink raw reply [flat|nested] 63+ messages in thread
* early exception error @ 2008-12-30 22:21 david 2008-12-30 21:26 ` Cyrill Gorcunov 2008-12-31 0:25 ` Andi Kleen 0 siblings, 2 replies; 63+ messages in thread From: david @ 2008-12-30 22:21 UTC (permalink / raw) To: linux-kernel [-- Attachment #1: Type: TEXT/PLAIN, Size: 842 bytes --] I'm trying to upgrade a older dual opteron box to a current 64 bit system, but I'm getting early exception errors from several different kernels I tried the ubuntu 8.04 and 8.10 disks, and then I decided to try hunting it down myself, so I took my 2.6.25 32 bit config copied it to a 64 bit system and did a make oldconfig with 2.6.28 and am getting the same type of error (the address changes from kernel to kernel and config to config on the same kernel) doing a grep through System.map for the address that appears in the error returns nothing attached are snapshots of the screen when the error happens and two different configs with the same error (I tried disabling high-res timers, tickless operation, and PAT, but got the same error), the 28 image is the -2 config. where do I go from here to track this down? David Lang [-- Attachment #2: Type: APPLICATION/OCTET-STREAM, Size: 164444 bytes --] [-- Attachment #3: Type: APPLICATION/OCTET-STREAM, Size: 168731 bytes --] [-- Attachment #4: Type: TEXT/PLAIN, Size: 51312 bytes --] # # Automatically generated make config: don't edit # Linux kernel version: 2.6.28 # Tue Dec 30 11:45:54 2008 # CONFIG_64BIT=y # CONFIG_X86_32 is not set CONFIG_X86_64=y CONFIG_X86=y CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" 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_HAVE_LATENCYTOP_SUPPORT=y CONFIG_FAST_CMPXCHG_LOCAL=y CONFIG_MMU=y CONFIG_ZONE_DMA=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_RWSEM_GENERIC_SPINLOCK=y # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y CONFIG_GENERIC_CALIBRATE_DELAY=y CONFIG_GENERIC_TIME_VSYSCALL=y CONFIG_ARCH_HAS_CPU_RELAX=y CONFIG_ARCH_HAS_DEFAULT_IDLE=y CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_HAVE_SETUP_PER_CPU_AREA=y CONFIG_HAVE_CPUMASK_OF_CPU_MAP=y CONFIG_ARCH_HIBERNATION_POSSIBLE=y CONFIG_ARCH_SUSPEND_POSSIBLE=y CONFIG_ZONE_DMA32=y CONFIG_ARCH_POPULATES_NODE_MAP=y CONFIG_AUDIT_ARCH=y CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y CONFIG_GENERIC_HARDIRQS=y CONFIG_GENERIC_IRQ_PROBE=y CONFIG_GENERIC_PENDING_IRQ=y CONFIG_X86_SMP=y CONFIG_USE_GENERIC_SMP_HELPERS=y CONFIG_X86_64_SMP=y CONFIG_X86_HT=y CONFIG_X86_BIOS_REBOOT=y CONFIG_X86_TRAMPOLINE=y # CONFIG_KTIME_SCALAR is not set 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_AUDIT is not set CONFIG_IKCONFIG=y CONFIG_IKCONFIG_PROC=y CONFIG_LOG_BUF_SHIFT=21 # CONFIG_CGROUPS is not set CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y # CONFIG_GROUP_SCHED is not set CONFIG_SYSFS_DEPRECATED=y CONFIG_SYSFS_DEPRECATED_V2=y CONFIG_RELAY=y CONFIG_NAMESPACES=y # CONFIG_UTS_NS is not set # CONFIG_IPC_NS is not set # CONFIG_USER_NS is not set # CONFIG_PID_NS 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_ALL is not set # CONFIG_KALLSYMS_EXTRA_PASS is not set CONFIG_HOTPLUG=y CONFIG_PRINTK=y CONFIG_BUG=y CONFIG_ELF_CORE=y CONFIG_PCSPKR_PLATFORM=y # CONFIG_COMPAT_BRK is not set CONFIG_BASE_FULL=y CONFIG_FUTEX=y CONFIG_ANON_INODES=y CONFIG_EPOLL=y CONFIG_SIGNALFD=y CONFIG_TIMERFD=y CONFIG_EVENTFD=y CONFIG_SHMEM=y CONFIG_AIO=y CONFIG_VM_EVENT_COUNTERS=y CONFIG_PCI_QUIRKS=y CONFIG_SLAB=y # CONFIG_SLUB is not set # CONFIG_SLOB is not set CONFIG_PROFILING=y # CONFIG_MARKERS is not set CONFIG_OPROFILE=y # CONFIG_OPROFILE_IBS is not set CONFIG_HAVE_OPROFILE=y CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y CONFIG_HAVE_IOREMAP_PROT=y CONFIG_HAVE_KPROBES=y CONFIG_HAVE_KRETPROBES=y CONFIG_HAVE_ARCH_TRACEHOOK=y # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set CONFIG_SLABINFO=y CONFIG_RT_MUTEXES=y # CONFIG_TINY_SHMEM is not set CONFIG_BASE_SMALL=0 # CONFIG_MODULES is not set CONFIG_STOP_MACHINE=y CONFIG_BLOCK=y CONFIG_BLK_DEV_IO_TRACE=y CONFIG_BLK_DEV_BSG=y # CONFIG_BLK_DEV_INTEGRITY is not set CONFIG_BLOCK_COMPAT=y # # 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" # CONFIG_CLASSIC_RCU is not set # CONFIG_FREEZER is not set # # Processor type and features # CONFIG_TICK_ONESHOT=y CONFIG_NO_HZ=y CONFIG_HIGH_RES_TIMERS=y CONFIG_GENERIC_CLOCKEVENTS_BUILD=y CONFIG_SMP=y CONFIG_X86_FIND_SMP_CONFIG=y CONFIG_X86_MPPARSE=y CONFIG_X86_PC=y # CONFIG_X86_ELAN is not set # CONFIG_X86_VOYAGER is not set # CONFIG_X86_GENERICARCH is not set # CONFIG_X86_VSMP is not set # CONFIG_PARAVIRT_GUEST is not set # CONFIG_MEMTEST 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_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_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_MPSC is not set # CONFIG_MCORE2 is not set # CONFIG_GENERIC_CPU is not set CONFIG_X86_CPU=y CONFIG_X86_L1_CACHE_BYTES=64 CONFIG_X86_INTERNODE_CACHE_BYTES=64 CONFIG_X86_CMPXCHG=y CONFIG_X86_L1_CACHE_SHIFT=6 CONFIG_X86_WP_WORKS_OK=y CONFIG_X86_INTEL_USERCOPY=y CONFIG_X86_USE_PPRO_CHECKSUM=y CONFIG_X86_TSC=y CONFIG_X86_CMPXCHG64=y CONFIG_X86_CMOV=y CONFIG_X86_MINIMUM_CPU_FAMILY=64 CONFIG_X86_DEBUGCTLMSR=y CONFIG_CPU_SUP_INTEL=y CONFIG_CPU_SUP_AMD=y CONFIG_CPU_SUP_CENTAUR_64=y # CONFIG_X86_DS is not set CONFIG_HPET_TIMER=y CONFIG_HPET_EMULATE_RTC=y CONFIG_DMI=y CONFIG_GART_IOMMU=y # CONFIG_CALGARY_IOMMU is not set CONFIG_AMD_IOMMU=y CONFIG_SWIOTLB=y CONFIG_IOMMU_HELPER=y CONFIG_NR_CPUS=2 # CONFIG_SCHED_SMT is not set # CONFIG_SCHED_MC is not set # CONFIG_PREEMPT_NONE is not set # CONFIG_PREEMPT_VOLUNTARY is not set CONFIG_PREEMPT=y CONFIG_PREEMPT_RCU=y CONFIG_RCU_TRACE=y CONFIG_X86_LOCAL_APIC=y CONFIG_X86_IO_APIC=y CONFIG_X86_MCE=y # CONFIG_X86_MCE_INTEL is not set CONFIG_X86_MCE_AMD=y # CONFIG_I8K is not set # CONFIG_MICROCODE is not set CONFIG_X86_MSR=y # CONFIG_X86_CPUID is not set CONFIG_ARCH_PHYS_ADDR_T_64BIT=y CONFIG_NUMA=y CONFIG_K8_NUMA=y # CONFIG_X86_64_ACPI_NUMA is not set # CONFIG_NUMA_EMU is not set CONFIG_NODES_SHIFT=2 CONFIG_ARCH_SPARSEMEM_DEFAULT=y CONFIG_ARCH_SPARSEMEM_ENABLE=y CONFIG_ARCH_SELECT_MEMORY_MODEL=y CONFIG_SELECT_MEMORY_MODEL=y # CONFIG_FLATMEM_MANUAL is not set # CONFIG_DISCONTIGMEM_MANUAL is not set CONFIG_SPARSEMEM_MANUAL=y CONFIG_SPARSEMEM=y CONFIG_NEED_MULTIPLE_NODES=y CONFIG_HAVE_MEMORY_PRESENT=y CONFIG_SPARSEMEM_EXTREME=y CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y CONFIG_SPARSEMEM_VMEMMAP=y # CONFIG_MEMORY_HOTPLUG is not set CONFIG_PAGEFLAGS_EXTENDED=y CONFIG_SPLIT_PTLOCK_CPUS=4 CONFIG_MIGRATION=y CONFIG_RESOURCES_64BIT=y CONFIG_PHYS_ADDR_T_64BIT=y CONFIG_ZONE_DMA_FLAG=1 CONFIG_BOUNCE=y CONFIG_VIRT_TO_BUS=y CONFIG_UNEVICTABLE_LRU=y # CONFIG_X86_CHECK_BIOS_CORRUPTION is not set CONFIG_X86_RESERVE_LOW_64K=y CONFIG_MTRR=y CONFIG_MTRR_SANITIZER=y CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 CONFIG_X86_PAT=y # CONFIG_EFI is not set # CONFIG_SECCOMP is not set # CONFIG_HZ_100 is not set # CONFIG_HZ_250 is not set CONFIG_HZ_300=y # CONFIG_HZ_1000 is not set CONFIG_HZ=300 CONFIG_SCHED_HRTICK=y CONFIG_KEXEC=y # CONFIG_CRASH_DUMP is not set CONFIG_PHYSICAL_START=0x200000 # CONFIG_RELOCATABLE is not set CONFIG_PHYSICAL_ALIGN=0x200000 CONFIG_HOTPLUG_CPU=y CONFIG_COMPAT_VDSO=y # CONFIG_CMDLINE_BOOL is not set CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID=y # # Power management and ACPI options # CONFIG_PM=y # CONFIG_PM_DEBUG is not set # CONFIG_SUSPEND is not set # CONFIG_HIBERNATION is not set CONFIG_ACPI=y CONFIG_ACPI_PROCFS=y CONFIG_ACPI_PROCFS_POWER=y CONFIG_ACPI_SYSFS_POWER=y CONFIG_ACPI_PROC_EVENT=y # CONFIG_ACPI_AC is not set # CONFIG_ACPI_BATTERY is not set # CONFIG_ACPI_BUTTON is not set # CONFIG_ACPI_VIDEO is not set # CONFIG_ACPI_FAN is not set # CONFIG_ACPI_DOCK is not set # CONFIG_ACPI_PROCESSOR is not set CONFIG_ACPI_NUMA=y # CONFIG_ACPI_WMI is not set # CONFIG_ACPI_ASUS is not set # CONFIG_ACPI_TOSHIBA is not set # CONFIG_ACPI_CUSTOM_DSDT is not set CONFIG_ACPI_BLACKLIST_YEAR=0 # CONFIG_ACPI_DEBUG is not set # CONFIG_ACPI_PCI_SLOT is not set CONFIG_ACPI_SYSTEM=y CONFIG_X86_PM_TIMER=y # CONFIG_ACPI_CONTAINER is not set # CONFIG_ACPI_SBS is not set # # CPU Frequency scaling # # CONFIG_CPU_FREQ is not set CONFIG_CPU_IDLE=y CONFIG_CPU_IDLE_GOV_LADDER=y CONFIG_CPU_IDLE_GOV_MENU=y # # Memory power savings # # CONFIG_I7300_IDLE is not set # # Bus options (PCI etc.) # CONFIG_PCI=y CONFIG_PCI_DIRECT=y CONFIG_PCI_MMCONFIG=y CONFIG_PCI_DOMAINS=y # CONFIG_DMAR is not set # CONFIG_INTR_REMAP is not set # CONFIG_PCIEPORTBUS is not set CONFIG_ARCH_SUPPORTS_MSI=y CONFIG_PCI_MSI=y # CONFIG_PCI_LEGACY is not set # CONFIG_PCI_DEBUG is not set CONFIG_HT_IRQ=y CONFIG_ISA_DMA_API=y CONFIG_K8_NB=y # CONFIG_PCCARD is not set # CONFIG_HOTPLUG_PCI is not set # # Executable file formats / Emulations # CONFIG_BINFMT_ELF=y CONFIG_COMPAT_BINFMT_ELF=y # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set # CONFIG_HAVE_AOUT is not set CONFIG_BINFMT_MISC=y CONFIG_IA32_EMULATION=y CONFIG_IA32_AOUT=y CONFIG_COMPAT=y CONFIG_COMPAT_FOR_U64_ALIGNMENT=y CONFIG_SYSVIPC_COMPAT=y CONFIG_NET=y # # Networking options # CONFIG_PACKET=y CONFIG_PACKET_MMAP=y CONFIG_UNIX=y CONFIG_XFRM=y # CONFIG_XFRM_USER is not set # CONFIG_XFRM_SUB_POLICY is not set # CONFIG_XFRM_MIGRATE is not set # CONFIG_XFRM_STATISTICS is not set CONFIG_XFRM_IPCOMP=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=y CONFIG_NET_IPGRE=y # CONFIG_ARPD is not set # CONFIG_SYN_COOKIES is not set CONFIG_INET_AH=y CONFIG_INET_ESP=y CONFIG_INET_IPCOMP=y CONFIG_INET_XFRM_TUNNEL=y CONFIG_INET_TUNNEL=y CONFIG_INET_XFRM_MODE_TRANSPORT=y CONFIG_INET_XFRM_MODE_TUNNEL=y CONFIG_INET_XFRM_MODE_BEET=y # CONFIG_INET_LRO is not set CONFIG_INET_DIAG=y CONFIG_INET_TCP_DIAG=y # CONFIG_TCP_CONG_ADVANCED is not set CONFIG_TCP_CONG_CUBIC=y CONFIG_DEFAULT_TCP_CONG="cubic" # CONFIG_TCP_MD5SIG is not set # CONFIG_IPV6 is not set CONFIG_NETWORK_SECMARK=y CONFIG_NETFILTER=y # CONFIG_NETFILTER_DEBUG is not set CONFIG_NETFILTER_ADVANCED=y CONFIG_BRIDGE_NETFILTER=y # # Core Netfilter Configuration # # CONFIG_NETFILTER_NETLINK_QUEUE is not set # CONFIG_NETFILTER_NETLINK_LOG is not set CONFIG_NF_CONNTRACK=y # CONFIG_NF_CT_ACCT is not set CONFIG_NF_CONNTRACK_MARK=y CONFIG_NF_CONNTRACK_SECMARK=y CONFIG_NF_CONNTRACK_EVENTS=y # CONFIG_NF_CT_PROTO_DCCP is not set # CONFIG_NF_CT_PROTO_SCTP is not set # CONFIG_NF_CT_PROTO_UDPLITE is not set # CONFIG_NF_CONNTRACK_AMANDA is not set CONFIG_NF_CONNTRACK_FTP=y # CONFIG_NF_CONNTRACK_H323 is not set # CONFIG_NF_CONNTRACK_IRC is not set # CONFIG_NF_CONNTRACK_NETBIOS_NS is not set # CONFIG_NF_CONNTRACK_PPTP is not set # CONFIG_NF_CONNTRACK_SANE is not set # CONFIG_NF_CONNTRACK_SIP is not set # CONFIG_NF_CONNTRACK_TFTP is not set # CONFIG_NF_CT_NETLINK is not set CONFIG_NETFILTER_XTABLES=y # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set # CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=y # CONFIG_NETFILTER_XT_TARGET_MARK is not set # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set # CONFIG_NETFILTER_XT_TARGET_RATEEST is not set CONFIG_NETFILTER_XT_TARGET_SECMARK=y # CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set # CONFIG_NETFILTER_XT_MATCH_COMMENT is not set # CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set # CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set CONFIG_NETFILTER_XT_MATCH_CONNMARK=y # CONFIG_NETFILTER_XT_MATCH_CONNTRACK is not set # CONFIG_NETFILTER_XT_MATCH_DCCP is not set # CONFIG_NETFILTER_XT_MATCH_DSCP is not set # CONFIG_NETFILTER_XT_MATCH_ESP is not set # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set # CONFIG_NETFILTER_XT_MATCH_HELPER is not set # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set CONFIG_NETFILTER_XT_MATCH_LIMIT=y CONFIG_NETFILTER_XT_MATCH_MAC=y # CONFIG_NETFILTER_XT_MATCH_MARK is not set # CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set # CONFIG_NETFILTER_XT_MATCH_OWNER is not set # CONFIG_NETFILTER_XT_MATCH_POLICY is not set # CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set # CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set # CONFIG_NETFILTER_XT_MATCH_QUOTA is not set # CONFIG_NETFILTER_XT_MATCH_RATEEST is not set # CONFIG_NETFILTER_XT_MATCH_REALM is not set # CONFIG_NETFILTER_XT_MATCH_RECENT is not set # CONFIG_NETFILTER_XT_MATCH_SCTP is not set CONFIG_NETFILTER_XT_MATCH_STATE=y # CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set # CONFIG_NETFILTER_XT_MATCH_STRING is not set # CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set # CONFIG_NETFILTER_XT_MATCH_TIME is not set # CONFIG_NETFILTER_XT_MATCH_U32 is not set # CONFIG_IP_VS is not set # # IP: Netfilter Configuration # CONFIG_NF_DEFRAG_IPV4=y CONFIG_NF_CONNTRACK_IPV4=y CONFIG_NF_CONNTRACK_PROC_COMPAT=y # CONFIG_IP_NF_QUEUE is not set CONFIG_IP_NF_IPTABLES=y # CONFIG_IP_NF_MATCH_ADDRTYPE is not set # CONFIG_IP_NF_MATCH_AH is not set # CONFIG_IP_NF_MATCH_ECN is not set # CONFIG_IP_NF_MATCH_TTL is not set CONFIG_IP_NF_FILTER=y # CONFIG_IP_NF_TARGET_REJECT is not set CONFIG_IP_NF_TARGET_LOG=y # CONFIG_IP_NF_TARGET_ULOG is not set # CONFIG_NF_NAT is not set # CONFIG_IP_NF_MANGLE is not set # CONFIG_IP_NF_RAW is not set # CONFIG_IP_NF_ARPTABLES is not set # CONFIG_BRIDGE_NF_EBTABLES 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_STP=y CONFIG_BRIDGE=y # CONFIG_NET_DSA is not set CONFIG_VLAN_8021Q=y # CONFIG_VLAN_8021Q_GVRP is not set # CONFIG_DECNET is not set CONFIG_LLC=y # 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 # CONFIG_NET_SCHED is not set # # Network testing # CONFIG_NET_PKTGEN=y # CONFIG_HAMRADIO is not set # CONFIG_CAN is not set # CONFIG_IRDA is not set CONFIG_BT=y CONFIG_BT_L2CAP=y CONFIG_BT_SCO=y CONFIG_BT_RFCOMM=y CONFIG_BT_RFCOMM_TTY=y CONFIG_BT_BNEP=y CONFIG_BT_BNEP_MC_FILTER=y CONFIG_BT_BNEP_PROTO_FILTER=y CONFIG_BT_HIDP=y # # Bluetooth device drivers # CONFIG_BT_HCIBTUSB=y CONFIG_BT_HCIUART=y CONFIG_BT_HCIUART_H4=y CONFIG_BT_HCIUART_BCSP=y CONFIG_BT_HCIUART_LL=y CONFIG_BT_HCIBCM203X=y CONFIG_BT_HCIBPA10X=y CONFIG_BT_HCIBFUSB=y CONFIG_BT_HCIVHCI=y # CONFIG_AF_RXRPC is not set # CONFIG_PHONET is not set # CONFIG_WIRELESS is not set # CONFIG_RFKILL is not set # CONFIG_NET_9P is not set # # Device Drivers # # # Generic Driver Options # CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" CONFIG_STANDALONE=y CONFIG_PREVENT_FIRMWARE_BUILD=y CONFIG_FW_LOADER=y CONFIG_FIRMWARE_IN_KERNEL=y CONFIG_EXTRA_FIRMWARE="" # CONFIG_DEBUG_DRIVER is not set # CONFIG_DEBUG_DEVRES is not set # CONFIG_SYS_HYPERVISOR is not set CONFIG_CONNECTOR=y CONFIG_PROC_EVENTS=y # CONFIG_MTD is not set CONFIG_PARPORT=y CONFIG_PARPORT_PC=y CONFIG_PARPORT_SERIAL=y CONFIG_PARPORT_PC_FIFO=y CONFIG_PARPORT_PC_SUPERIO=y # CONFIG_PARPORT_GSC is not set # CONFIG_PARPORT_AX88796 is not set CONFIG_PARPORT_1284=y CONFIG_PNP=y # CONFIG_PNP_DEBUG_MESSAGES 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=y CONFIG_BLK_DEV_CRYPTOLOOP=y CONFIG_BLK_DEV_NBD=y # CONFIG_BLK_DEV_SX8 is not set CONFIG_BLK_DEV_UB=y # CONFIG_BLK_DEV_RAM is not set CONFIG_CDROM_PKTCDVD=y CONFIG_CDROM_PKTCDVD_BUFFERS=8 # CONFIG_CDROM_PKTCDVD_WCACHE is not set # CONFIG_ATA_OVER_ETH is not set # CONFIG_BLK_DEV_HD 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_FUJITSU_LAPTOP is not set # CONFIG_ICS932S401 is not set # CONFIG_MSI_LAPTOP is not set # CONFIG_PANASONIC_LAPTOP is not set # CONFIG_COMPAL_LAPTOP is not set # CONFIG_SONY_LAPTOP is not set # CONFIG_THINKPAD_ACPI is not set # CONFIG_ENCLOSURE_SERVICES is not set # CONFIG_SGI_XP is not set # CONFIG_HP_ILO is not set # CONFIG_SGI_GRU is not set # CONFIG_C2PORT is not set CONFIG_HAVE_IDE=y CONFIG_IDE=y # # Please see Documentation/ide/ide.txt for help/info on IDE drives # CONFIG_IDE_TIMINGS=y # CONFIG_BLK_DEV_IDE_SATA is not set CONFIG_IDE_GD=y CONFIG_IDE_GD_ATA=y # CONFIG_IDE_GD_ATAPI is not set CONFIG_BLK_DEV_IDECD=y CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y # CONFIG_BLK_DEV_IDETAPE 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=y # # IDE chipset support/bugfixes # # CONFIG_IDE_GENERIC is not set # CONFIG_BLK_DEV_PLATFORM is not set # CONFIG_BLK_DEV_CMD640 is not set # CONFIG_BLK_DEV_IDEPNP is not set CONFIG_BLK_DEV_IDEDMA_SFF=y # # PCI IDE chipsets support # CONFIG_BLK_DEV_IDEPCI=y CONFIG_IDEPCI_PCIBUS_ORDER=y # CONFIG_BLK_DEV_OFFBOARD is not set CONFIG_BLK_DEV_GENERIC=y # CONFIG_BLK_DEV_OPTI621 is not set # CONFIG_BLK_DEV_RZ1000 is not set CONFIG_BLK_DEV_IDEDMA_PCI=y # 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_CS5520 is not set # CONFIG_BLK_DEV_CS5530 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_BLK_DEV_IDEDMA=y # # SCSI device support # CONFIG_RAID_ATTRS=y CONFIG_SCSI=y CONFIG_SCSI_DMA=y # CONFIG_SCSI_TGT is not set # CONFIG_SCSI_NETLINK is not set CONFIG_SCSI_PROC_FS=y # # SCSI support type (disk, tape, CD-ROM) # CONFIG_BLK_DEV_SD=y # CONFIG_CHR_DEV_ST is not set # CONFIG_CHR_DEV_OSST is not set CONFIG_BLK_DEV_SR=y CONFIG_BLK_DEV_SR_VENDOR=y CONFIG_CHR_DEV_SG=y CONFIG_CHR_DEV_SCH=y # # Some SCSI devices (e.g. CD jukebox) support multiple LUNs # CONFIG_SCSI_MULTI_LUN=y CONFIG_SCSI_CONSTANTS=y CONFIG_SCSI_LOGGING=y # CONFIG_SCSI_SCAN_ASYNC is not set # # SCSI Transports # CONFIG_SCSI_SPI_ATTRS=y # CONFIG_SCSI_FC_ATTRS is not set CONFIG_SCSI_ISCSI_ATTRS=y # CONFIG_SCSI_SAS_ATTRS is not set # CONFIG_SCSI_SAS_LIBSAS is not set # CONFIG_SCSI_SRP_ATTRS is not set CONFIG_SCSI_LOWLEVEL=y # CONFIG_ISCSI_TCP is not set # CONFIG_BLK_DEV_3W_XXXX_RAID is not set # CONFIG_SCSI_3W_9XXX is not set # CONFIG_SCSI_ACARD is not set CONFIG_SCSI_AACRAID=y CONFIG_SCSI_AIC7XXX=y CONFIG_AIC7XXX_CMDS_PER_DEVICE=32 CONFIG_AIC7XXX_RESET_DELAY_MS=5000 CONFIG_AIC7XXX_DEBUG_ENABLE=y CONFIG_AIC7XXX_DEBUG_MASK=0 CONFIG_AIC7XXX_REG_PRETTY_PRINT=y # CONFIG_SCSI_AIC7XXX_OLD is not set CONFIG_SCSI_AIC79XX=y CONFIG_AIC79XX_CMDS_PER_DEVICE=32 CONFIG_AIC79XX_RESET_DELAY_MS=5000 CONFIG_AIC79XX_DEBUG_ENABLE=y CONFIG_AIC79XX_DEBUG_MASK=0 CONFIG_AIC79XX_REG_PRETTY_PRINT=y # CONFIG_SCSI_AIC94XX is not set CONFIG_SCSI_DPT_I2O=y # CONFIG_SCSI_ADVANSYS is not set # CONFIG_SCSI_ARCMSR is not set # CONFIG_MEGARAID_NEWGEN is not set # CONFIG_MEGARAID_LEGACY is not set # CONFIG_MEGARAID_SAS is not set # CONFIG_SCSI_HPTIOP is not set # CONFIG_SCSI_BUSLOGIC is not set # CONFIG_SCSI_DMX3191D is not set # CONFIG_SCSI_EATA is not set # CONFIG_SCSI_FUTURE_DOMAIN is not set # CONFIG_SCSI_GDTH is not set # CONFIG_SCSI_IPS is not set # CONFIG_SCSI_INITIO is not set # CONFIG_SCSI_INIA100 is not set # CONFIG_SCSI_PPA is not set # CONFIG_SCSI_IMM is not set # CONFIG_SCSI_MVSAS is not set # CONFIG_SCSI_STEX is not set # CONFIG_SCSI_SYM53C8XX_2 is not set # CONFIG_SCSI_QLOGIC_1280 is not set # CONFIG_SCSI_QLA_FC is not set # CONFIG_SCSI_QLA_ISCSI is not set # CONFIG_SCSI_LPFC is not set # CONFIG_SCSI_DC395x is not set # CONFIG_SCSI_DC390T is not set # CONFIG_SCSI_DEBUG is not set # CONFIG_SCSI_SRP is not set # CONFIG_SCSI_DH is not set # CONFIG_ATA is not set CONFIG_MD=y CONFIG_BLK_DEV_MD=y CONFIG_MD_AUTODETECT=y CONFIG_MD_LINEAR=y CONFIG_MD_RAID0=y CONFIG_MD_RAID1=y CONFIG_MD_RAID10=y CONFIG_MD_RAID456=y CONFIG_MD_RAID5_RESHAPE=y # CONFIG_MD_MULTIPATH is not set # CONFIG_MD_FAULTY is not set CONFIG_BLK_DEV_DM=y # CONFIG_DM_DEBUG is not set CONFIG_DM_CRYPT=y CONFIG_DM_SNAPSHOT=y CONFIG_DM_MIRROR=y # CONFIG_DM_ZERO is not set # CONFIG_DM_MULTIPATH is not set # CONFIG_DM_DELAY is not set # CONFIG_DM_UEVENT is not set CONFIG_FUSION=y CONFIG_FUSION_SPI=y # CONFIG_FUSION_FC is not set # CONFIG_FUSION_SAS is not set CONFIG_FUSION_MAX_SGE=128 CONFIG_FUSION_CTL=y CONFIG_FUSION_LOGGING=y # # IEEE 1394 (FireWire) support # # # Enable only one of the two stacks, unless you know what you are doing # # CONFIG_FIREWIRE is not set # CONFIG_IEEE1394 is not set CONFIG_I2O=y CONFIG_I2O_LCT_NOTIFY_ON_CHANGES=y CONFIG_I2O_EXT_ADAPTEC=y CONFIG_I2O_EXT_ADAPTEC_DMA64=y CONFIG_I2O_CONFIG=y # CONFIG_I2O_CONFIG_OLD_IOCTL is not set CONFIG_I2O_BUS=y CONFIG_I2O_BLOCK=y CONFIG_I2O_SCSI=y CONFIG_I2O_PROC=y # CONFIG_MACINTOSH_DRIVERS is not set CONFIG_NETDEVICES=y CONFIG_DUMMY=y CONFIG_BONDING=y # CONFIG_MACVLAN is not set # CONFIG_EQUALIZER is not set CONFIG_TUN=y CONFIG_VETH=y # CONFIG_NET_SB1000 is not set # CONFIG_ARCNET is not set # CONFIG_PHYLIB is not set CONFIG_NET_ETHERNET=y CONFIG_MII=y # CONFIG_HAPPYMEAL is not set # CONFIG_SUNGEM is not set # CONFIG_CASSINI is not set CONFIG_NET_VENDOR_3COM=y CONFIG_VORTEX=y CONFIG_TYPHOON=y CONFIG_NET_TULIP=y # CONFIG_DE2104X is not set # CONFIG_TULIP is not set CONFIG_DE4X5=y # CONFIG_WINBOND_840 is not set # CONFIG_DM9102 is not set # CONFIG_ULI526X is not set # CONFIG_HP100 is not set # CONFIG_IBM_NEW_EMAC_ZMII is not set # CONFIG_IBM_NEW_EMAC_RGMII is not set # CONFIG_IBM_NEW_EMAC_TAH is not set # CONFIG_IBM_NEW_EMAC_EMAC4 is not set # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set CONFIG_NET_PCI=y # CONFIG_PCNET32 is not set # CONFIG_AMD8111_ETH is not set CONFIG_ADAPTEC_STARFIRE=y # CONFIG_B44 is not set # CONFIG_FORCEDETH is not set # CONFIG_EEPRO100 is not set CONFIG_E100=y # CONFIG_FEALNX is not set # CONFIG_NATSEMI is not set CONFIG_NE2K_PCI=y # CONFIG_8139CP is not set # CONFIG_8139TOO is not set # CONFIG_R6040 is not set CONFIG_SIS900=y # 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_ATL2 is not set CONFIG_NETDEV_1000=y # CONFIG_ACENIC is not set # CONFIG_DL2K is not set CONFIG_E1000=y CONFIG_E1000E=y # CONFIG_IP1000 is not set # CONFIG_IGB is not set # CONFIG_NS83820 is not set # CONFIG_HAMACHI is not set # CONFIG_YELLOWFIN is not set CONFIG_R8169=y CONFIG_R8169_VLAN=y # CONFIG_SIS190 is not set # CONFIG_SKGE is not set # CONFIG_SKY2 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_ATL1E is not set # CONFIG_JME is not set # CONFIG_NETDEV_10000 is not set # CONFIG_TR is not set # # Wireless LAN # # CONFIG_WLAN_PRE80211 is not set # CONFIG_WLAN_80211 is not set # CONFIG_IWLWIFI_LEDS is not set # # 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 is not set # CONFIG_WAN is not set # CONFIG_FDDI is not set # CONFIG_HIPPI is not set # CONFIG_PLIP is not set # CONFIG_PPP is not set # CONFIG_SLIP is not set # CONFIG_NET_FC 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=y # # Userland interfaces # CONFIG_INPUT_MOUSEDEV=y CONFIG_INPUT_MOUSEDEV_PSAUX=y CONFIG_INPUT_MOUSEDEV_SCREEN_X=1280 CONFIG_INPUT_MOUSEDEV_SCREEN_Y=1024 # CONFIG_INPUT_JOYDEV is not set CONFIG_INPUT_EVDEV=y # 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_ELANTECH is not set # CONFIG_MOUSE_PS2_TOUCHKIT is not set # CONFIG_MOUSE_SERIAL is not set # CONFIG_MOUSE_APPLETOUCH is not set # CONFIG_MOUSE_BCM5974 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_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_CM109 is not set CONFIG_INPUT_UINPUT=y # # 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_CONSOLE_TRANSLATIONS=y CONFIG_VT_CONSOLE=y CONFIG_HW_CONSOLE=y CONFIG_VT_HW_CONSOLE_BINDING=y # CONFIG_DEVKMEM is not set # CONFIG_SERIAL_NONSTANDARD is not set # CONFIG_NOZOMI 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_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=y # CONFIG_LP_CONSOLE is not set CONFIG_PPDEV=y CONFIG_IPMI_HANDLER=y CONFIG_IPMI_PANIC_EVENT=y CONFIG_IPMI_PANIC_STRING=y CONFIG_IPMI_DEVICE_INTERFACE=y CONFIG_IPMI_SI=y # CONFIG_IPMI_WATCHDOG is not set CONFIG_IPMI_POWEROFF=y CONFIG_HW_RANDOM=y CONFIG_HW_RANDOM_INTEL=y CONFIG_HW_RANDOM_AMD=y CONFIG_NVRAM=y # CONFIG_R3964 is not set # CONFIG_APPLICOM is not set # CONFIG_MWAVE is not set # CONFIG_PC8736x_GPIO is not set # CONFIG_RAW_DRIVER is not set CONFIG_HPET=y CONFIG_HPET_MMAP=y CONFIG_HANGCHECK_TIMER=y # CONFIG_TCG_TPM is not set # CONFIG_TELCLOCK is not set CONFIG_DEVPORT=y CONFIG_I2C=y CONFIG_I2C_BOARDINFO=y CONFIG_I2C_CHARDEV=y CONFIG_I2C_HELPER_AUTO=y CONFIG_I2C_ALGOBIT=y # # I2C Hardware Bus support # # # PC SMBus host controller drivers # # CONFIG_I2C_ALI1535 is not set # CONFIG_I2C_ALI1563 is not set # CONFIG_I2C_ALI15X3 is not set CONFIG_I2C_AMD756=y # CONFIG_I2C_AMD756_S4882 is not set # CONFIG_I2C_AMD8111 is not set # CONFIG_I2C_I801 is not set # CONFIG_I2C_ISCH is not set # CONFIG_I2C_PIIX4 is not set # CONFIG_I2C_NFORCE2 is not set # CONFIG_I2C_SIS5595 is not set # CONFIG_I2C_SIS630 is not set # CONFIG_I2C_SIS96X is not set # CONFIG_I2C_VIA is not set # CONFIG_I2C_VIAPRO is not set # # I2C system bus drivers (mostly embedded / system-on-chip) # # CONFIG_I2C_OCORES is not set # CONFIG_I2C_SIMTEC is not set # # External I2C/SMBus adapter drivers # # CONFIG_I2C_PARPORT is not set # CONFIG_I2C_PARPORT_LIGHT is not set # CONFIG_I2C_TAOS_EVM is not set # CONFIG_I2C_TINY_USB is not set # # Graphics adapter I2C/DDC channel drivers # # CONFIG_I2C_VOODOO3 is not set # # Other I2C/SMBus bus drivers # # CONFIG_I2C_PCA_PLATFORM is not set # # Miscellaneous I2C Chip support # # CONFIG_DS1682 is not set # CONFIG_AT24 is not set # CONFIG_SENSORS_EEPROM is not set # CONFIG_SENSORS_PCF8574 is not set # CONFIG_PCF8575 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 # CONFIG_SPI is not set CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y # CONFIG_GPIOLIB is not set # CONFIG_W1 is not set CONFIG_POWER_SUPPLY=y # CONFIG_POWER_SUPPLY_DEBUG is not set # CONFIG_PDA_POWER is not set # CONFIG_BATTERY_DS2760 is not set # CONFIG_BATTERY_BQ27x00 is not set CONFIG_HWMON=y CONFIG_HWMON_VID=y # CONFIG_SENSORS_ABITUGURU is not set # CONFIG_SENSORS_ABITUGURU3 is not set # CONFIG_SENSORS_AD7414 is not set # CONFIG_SENSORS_AD7418 is not set CONFIG_SENSORS_ADM1021=y CONFIG_SENSORS_ADM1025=y CONFIG_SENSORS_ADM1026=y # CONFIG_SENSORS_ADM1029 is not set CONFIG_SENSORS_ADM1031=y CONFIG_SENSORS_ADM9240=y # CONFIG_SENSORS_ADT7462 is not set # CONFIG_SENSORS_ADT7470 is not set # CONFIG_SENSORS_ADT7473 is not set # CONFIG_SENSORS_K8TEMP is not set CONFIG_SENSORS_ASB100=y CONFIG_SENSORS_ATXP1=y CONFIG_SENSORS_DS1621=y # CONFIG_SENSORS_I5K_AMB is not set CONFIG_SENSORS_F71805F=y # CONFIG_SENSORS_F71882FG is not set # CONFIG_SENSORS_F75375S is not set CONFIG_SENSORS_FSCHER=y CONFIG_SENSORS_FSCPOS=y # CONFIG_SENSORS_FSCHMD is not set CONFIG_SENSORS_GL518SM=y CONFIG_SENSORS_GL520SM=y # CONFIG_SENSORS_CORETEMP is not set # CONFIG_SENSORS_IBMAEM is not set # CONFIG_SENSORS_IBMPEX is not set CONFIG_SENSORS_IT87=y CONFIG_SENSORS_LM63=y CONFIG_SENSORS_LM75=y CONFIG_SENSORS_LM77=y CONFIG_SENSORS_LM78=y CONFIG_SENSORS_LM80=y CONFIG_SENSORS_LM83=y CONFIG_SENSORS_LM85=y CONFIG_SENSORS_LM87=y CONFIG_SENSORS_LM90=y CONFIG_SENSORS_LM92=y # CONFIG_SENSORS_LM93 is not set CONFIG_SENSORS_MAX1619=y # CONFIG_SENSORS_MAX6650 is not set CONFIG_SENSORS_PC87360=y # CONFIG_SENSORS_PC87427 is not set CONFIG_SENSORS_SIS5595=y # CONFIG_SENSORS_DME1737 is not set CONFIG_SENSORS_SMSC47M1=y # CONFIG_SENSORS_SMSC47M192 is not set CONFIG_SENSORS_SMSC47B397=y # CONFIG_SENSORS_ADS7828 is not set # CONFIG_SENSORS_THMC50 is not set CONFIG_SENSORS_VIA686A=y # CONFIG_SENSORS_VT1211 is not set CONFIG_SENSORS_VT8231=y CONFIG_SENSORS_W83781D=y # CONFIG_SENSORS_W83791D is not set CONFIG_SENSORS_W83792D=y # CONFIG_SENSORS_W83793 is not set CONFIG_SENSORS_W83L785TS=y # CONFIG_SENSORS_W83L786NG is not set CONFIG_SENSORS_W83627HF=y CONFIG_SENSORS_W83627EHF=y CONFIG_SENSORS_HDAPS=y # CONFIG_SENSORS_LIS3LV02D is not set # CONFIG_SENSORS_APPLESMC is not set # CONFIG_HWMON_DEBUG_CHIP is not set # CONFIG_THERMAL is not set CONFIG_THERMAL_HWMON=y # CONFIG_WATCHDOG is not set CONFIG_SSB_POSSIBLE=y # # Sonics Silicon Backplane # # CONFIG_SSB is not set # # Multifunction device drivers # # CONFIG_MFD_CORE is not set # CONFIG_MFD_SM501 is not set # CONFIG_HTC_PASIC3 is not set # CONFIG_MFD_TMIO is not set # CONFIG_PMIC_DA903X is not set # CONFIG_MFD_WM8400 is not set # CONFIG_MFD_WM8350_I2C is not set CONFIG_REGULATOR=y # CONFIG_REGULATOR_DEBUG is not set # CONFIG_REGULATOR_FIXED_VOLTAGE is not set # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set # CONFIG_REGULATOR_BQ24022 is not set # # Multimedia devices # # # Multimedia core support # # CONFIG_VIDEO_DEV is not set # CONFIG_DVB_CORE is not set # CONFIG_VIDEO_MEDIA is not set # # Multimedia drivers # # CONFIG_DAB is not set # # Graphics support # CONFIG_AGP=y CONFIG_AGP_AMD64=y # CONFIG_AGP_INTEL is not set # CONFIG_AGP_SIS is not set # CONFIG_AGP_VIA is not set CONFIG_DRM=y # CONFIG_DRM_TDFX is not set CONFIG_DRM_R128=y CONFIG_DRM_RADEON=y # CONFIG_DRM_MGA is not set # CONFIG_DRM_SIS is not set # CONFIG_DRM_VIA is not set # CONFIG_DRM_SAVAGE is not set CONFIG_VGASTATE=y CONFIG_VIDEO_OUTPUT_CONTROL=y CONFIG_FB=y CONFIG_FIRMWARE_EDID=y CONFIG_FB_DDC=y CONFIG_FB_BOOT_VESA_SUPPORT=y CONFIG_FB_CFB_FILLRECT=y CONFIG_FB_CFB_COPYAREA=y CONFIG_FB_CFB_IMAGEBLIT=y # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set # CONFIG_FB_SYS_FILLRECT is not set # CONFIG_FB_SYS_COPYAREA is not set # CONFIG_FB_SYS_IMAGEBLIT is not set # CONFIG_FB_FOREIGN_ENDIAN is not set # CONFIG_FB_SYS_FOPS is not set # CONFIG_FB_SVGALIB is not set # CONFIG_FB_MACMODES is not set CONFIG_FB_BACKLIGHT=y CONFIG_FB_MODE_HELPERS=y CONFIG_FB_TILEBLITTING=y # # Frame buffer hardware drivers # # CONFIG_FB_CIRRUS is not set # CONFIG_FB_PM2 is not set # CONFIG_FB_CYBER2000 is not set # CONFIG_FB_ARC is not set # CONFIG_FB_ASILIANT is not set # CONFIG_FB_IMSTT is not set CONFIG_FB_VGA16=y # CONFIG_FB_UVESA is not set CONFIG_FB_VESA=y # CONFIG_FB_N411 is not set # CONFIG_FB_HGA is not set # CONFIG_FB_S1D13XXX is not set # CONFIG_FB_NVIDIA is not set # CONFIG_FB_RIVA is not set # CONFIG_FB_LE80578 is not set # CONFIG_FB_INTEL is not set # CONFIG_FB_MATROX is not set CONFIG_FB_RADEON=y CONFIG_FB_RADEON_I2C=y CONFIG_FB_RADEON_BACKLIGHT=y # CONFIG_FB_RADEON_DEBUG is not set CONFIG_FB_ATY128=y CONFIG_FB_ATY128_BACKLIGHT=y # CONFIG_FB_ATY is not set # CONFIG_FB_S3 is not set # CONFIG_FB_SAVAGE is not set # CONFIG_FB_SIS is not set # CONFIG_FB_VIA is not set # CONFIG_FB_NEOMAGIC is not set # CONFIG_FB_KYRO is not set # CONFIG_FB_3DFX is not set # CONFIG_FB_VOODOO1 is not set # CONFIG_FB_VT8623 is not set # CONFIG_FB_TRIDENT is not set # CONFIG_FB_ARK is not set # CONFIG_FB_PM3 is not set # CONFIG_FB_CARMINE is not set # CONFIG_FB_GEODE is not set # CONFIG_FB_VIRTUAL is not set # CONFIG_FB_METRONOME is not set # CONFIG_FB_MB862XX is not set CONFIG_BACKLIGHT_LCD_SUPPORT=y CONFIG_LCD_CLASS_DEVICE=y # CONFIG_LCD_ILI9320 is not set # CONFIG_LCD_PLATFORM is not set CONFIG_BACKLIGHT_CLASS_DEVICE=y # CONFIG_BACKLIGHT_CORGI is not set # CONFIG_BACKLIGHT_PROGEAR is not set # CONFIG_BACKLIGHT_MBP_NVIDIA is not set # CONFIG_BACKLIGHT_SAHARA is not set # # Display device support # CONFIG_DISPLAY_SUPPORT=y # # Display hardware drivers # # # Console display driver support # CONFIG_VGA_CONSOLE=y CONFIG_VGACON_SOFT_SCROLLBACK=y CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=1024 CONFIG_DUMMY_CONSOLE=y CONFIG_FRAMEBUFFER_CONSOLE=y # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y CONFIG_FONTS=y CONFIG_FONT_8x8=y CONFIG_FONT_8x16=y # CONFIG_FONT_6x11 is not set CONFIG_FONT_7x14=y # CONFIG_FONT_PEARL_8x8 is not set # CONFIG_FONT_ACORN_8x8 is not set # CONFIG_FONT_MINI_4x6 is not set # CONFIG_FONT_SUN8x16 is not set # CONFIG_FONT_SUN12x22 is not set CONFIG_FONT_10x18=y CONFIG_LOGO=y CONFIG_LOGO_LINUX_MONO=y CONFIG_LOGO_LINUX_VGA16=y CONFIG_LOGO_LINUX_CLUT224=y # CONFIG_SOUND is not set CONFIG_HID_SUPPORT=y CONFIG_HID=y # CONFIG_HID_DEBUG is not set # CONFIG_HIDRAW is not set # # USB Input Devices # # CONFIG_USB_HID is not set # CONFIG_HID_PID is not set # # USB HID Boot Protocol drivers # # CONFIG_USB_KBD is not set # CONFIG_USB_MOUSE is not set # # Special HID drivers # CONFIG_HID_COMPAT=y CONFIG_HID_APPLE=y CONFIG_USB_SUPPORT=y CONFIG_USB_ARCH_HAS_HCD=y CONFIG_USB_ARCH_HAS_OHCI=y CONFIG_USB_ARCH_HAS_EHCI=y CONFIG_USB=y # CONFIG_USB_DEBUG is not set CONFIG_USB_ANNOUNCE_NEW_DEVICES=y # # Miscellaneous USB options # CONFIG_USB_DEVICEFS=y # CONFIG_USB_DEVICE_CLASS is not set # CONFIG_USB_DYNAMIC_MINORS is not set # CONFIG_USB_SUSPEND is not set # CONFIG_USB_OTG is not set # CONFIG_USB_MON is not set # CONFIG_USB_WUSB is not set # CONFIG_USB_WUSB_CBAF is not set # # USB Host Controller Drivers # # CONFIG_USB_C67X00_HCD is not set CONFIG_USB_EHCI_HCD=y # 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_ISP1760_HCD is not set CONFIG_USB_OHCI_HCD=y # 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=y # CONFIG_USB_SL811_HCD is not set # CONFIG_USB_R8A66597_HCD is not set # CONFIG_USB_WHCI_HCD is not set # CONFIG_USB_HWA_HCD is not set # # USB Device Class drivers # # CONFIG_USB_ACM is not set # CONFIG_USB_PRINTER is not set # CONFIG_USB_WDM is not set # CONFIG_USB_TMC is not set # # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; # # # see USB_STORAGE Help for more information # CONFIG_USB_STORAGE=y # CONFIG_USB_STORAGE_DEBUG is not set CONFIG_USB_STORAGE_DATAFAB=y CONFIG_USB_STORAGE_FREECOM=y CONFIG_USB_STORAGE_ISD200=y CONFIG_USB_STORAGE_DPCM=y CONFIG_USB_STORAGE_USBAT=y CONFIG_USB_STORAGE_SDDR09=y CONFIG_USB_STORAGE_SDDR55=y CONFIG_USB_STORAGE_JUMPSHOT=y CONFIG_USB_STORAGE_ALAUDA=y # CONFIG_USB_STORAGE_ONETOUCH is not set CONFIG_USB_STORAGE_KARMA=y # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set CONFIG_USB_LIBUSUAL=y # # USB Imaging devices # # CONFIG_USB_MDC800 is not set # CONFIG_USB_MICROTEK is not set # # USB port drivers # # CONFIG_USB_USS720 is not set # CONFIG_USB_SERIAL 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_SEVSEG 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=y # 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 # CONFIG_USB_ISIGHTFW is not set # CONFIG_USB_VST is not set # CONFIG_USB_GADGET is not set # CONFIG_UWB is not set # CONFIG_MMC is not set # CONFIG_MEMSTICK is not set # CONFIG_NEW_LEDS is not set # CONFIG_ACCESSIBILITY is not set # CONFIG_INFINIBAND is not set CONFIG_EDAC=y # # Reporting subsystems # # CONFIG_EDAC_DEBUG is not set CONFIG_EDAC_MM_EDAC=y # CONFIG_EDAC_E752X is not set # CONFIG_EDAC_I82975X is not set # CONFIG_EDAC_I3000 is not set # CONFIG_EDAC_X38 is not set # CONFIG_EDAC_I5000 is not set # CONFIG_EDAC_I5100 is not set CONFIG_RTC_LIB=y CONFIG_RTC_CLASS=y CONFIG_RTC_HCTOSYS=y CONFIG_RTC_HCTOSYS_DEVICE="rtc0" # CONFIG_RTC_DEBUG is not set # # RTC interfaces # CONFIG_RTC_INTF_SYSFS=y CONFIG_RTC_INTF_PROC=y CONFIG_RTC_INTF_DEV=y # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set # CONFIG_RTC_DRV_TEST is not set # # I2C RTC drivers # # CONFIG_RTC_DRV_DS1307 is not set # CONFIG_RTC_DRV_DS1374 is not set CONFIG_RTC_DRV_DS1672=y # CONFIG_RTC_DRV_MAX6900 is not set CONFIG_RTC_DRV_RS5C372=y # CONFIG_RTC_DRV_ISL1208 is not set CONFIG_RTC_DRV_X1205=y CONFIG_RTC_DRV_PCF8563=y # CONFIG_RTC_DRV_PCF8583 is not set # CONFIG_RTC_DRV_M41T80 is not set # CONFIG_RTC_DRV_S35390A is not set # CONFIG_RTC_DRV_FM3130 is not set # CONFIG_RTC_DRV_RX8581 is not set # # SPI RTC drivers # # # Platform RTC drivers # CONFIG_RTC_DRV_CMOS=y # CONFIG_RTC_DRV_DS1286 is not set # CONFIG_RTC_DRV_DS1511 is not set # CONFIG_RTC_DRV_DS1553 is not set # CONFIG_RTC_DRV_DS1742 is not set # CONFIG_RTC_DRV_STK17TA8 is not set CONFIG_RTC_DRV_M48T86=y # CONFIG_RTC_DRV_M48T35 is not set # CONFIG_RTC_DRV_M48T59 is not set # CONFIG_RTC_DRV_BQ4802 is not set # CONFIG_RTC_DRV_V3020 is not set # # on-CPU RTC drivers # # CONFIG_DMADEVICES is not set # CONFIG_AUXDISPLAY is not set # CONFIG_UIO is not set # CONFIG_STAGING is not set # # Firmware Drivers # # CONFIG_EDD is not set CONFIG_FIRMWARE_MEMMAP=y # CONFIG_DELL_RBU is not set # CONFIG_DCDBAS is not set CONFIG_DMIID=y # CONFIG_ISCSI_IBFT_FIND 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_EXT4_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=y CONFIG_FILE_LOCKING=y CONFIG_XFS_FS=y # CONFIG_XFS_QUOTA is not set # CONFIG_XFS_POSIX_ACL is not set # CONFIG_XFS_RT is not set # CONFIG_XFS_DEBUG is not set # CONFIG_GFS2_FS is not set # CONFIG_OCFS2_FS is not set CONFIG_DNOTIFY=y # CONFIG_INOTIFY is not set # CONFIG_QUOTA is not set # CONFIG_AUTOFS_FS is not set # CONFIG_AUTOFS4_FS is not set CONFIG_FUSE_FS=y # # CD-ROM/DVD Filesystems # CONFIG_ISO9660_FS=y CONFIG_JOLIET=y CONFIG_ZISOFS=y CONFIG_UDF_FS=y CONFIG_UDF_NLS=y # # DOS/FAT/NT Filesystems # CONFIG_FAT_FS=y CONFIG_MSDOS_FS=y CONFIG_VFAT_FS=y CONFIG_FAT_DEFAULT_CODEPAGE=437 CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" CONFIG_NTFS_FS=y # CONFIG_NTFS_DEBUG is not set CONFIG_NTFS_RW=y # # Pseudo filesystems # CONFIG_PROC_FS=y CONFIG_PROC_KCORE=y CONFIG_PROC_SYSCTL=y CONFIG_PROC_PAGE_MONITOR=y CONFIG_SYSFS=y CONFIG_TMPFS=y # CONFIG_TMPFS_POSIX_ACL is not set # CONFIG_HUGETLBFS is not set # CONFIG_HUGETLB_PAGE is not set CONFIG_CONFIGFS_FS=y # # 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 is not set # CONFIG_VXFS_FS is not set CONFIG_MINIX_FS=y # CONFIG_OMFS_FS is not set # CONFIG_HPFS_FS is not set # CONFIG_QNX4FS_FS is not set # CONFIG_ROMFS_FS is not set # CONFIG_SYSV_FS is not set # CONFIG_UFS_FS is not set CONFIG_NETWORK_FILESYSTEMS=y CONFIG_NFS_FS=y CONFIG_NFS_V3=y # CONFIG_NFS_V3_ACL is not set CONFIG_NFS_V4=y CONFIG_NFSD=y CONFIG_NFSD_V3=y # CONFIG_NFSD_V3_ACL is not set CONFIG_NFSD_V4=y CONFIG_LOCKD=y CONFIG_LOCKD_V4=y CONFIG_EXPORTFS=y CONFIG_NFS_COMMON=y CONFIG_SUNRPC=y CONFIG_SUNRPC_GSS=y # CONFIG_SUNRPC_REGISTER_V4 is not set CONFIG_RPCSEC_GSS_KRB5=y # CONFIG_RPCSEC_GSS_SPKM3 is not set CONFIG_SMB_FS=y # CONFIG_SMB_NLS_DEFAULT is not set CONFIG_CIFS=y CONFIG_CIFS_STATS=y CONFIG_CIFS_STATS2=y CONFIG_CIFS_WEAK_PW_HASH=y CONFIG_CIFS_XATTR=y CONFIG_CIFS_POSIX=y # CONFIG_CIFS_DEBUG2 is not set CONFIG_CIFS_EXPERIMENTAL=y # 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 CONFIG_NLS=y CONFIG_NLS_DEFAULT="iso8859-15" CONFIG_NLS_CODEPAGE_437=y # CONFIG_NLS_CODEPAGE_737 is not set # CONFIG_NLS_CODEPAGE_775 is not set # CONFIG_NLS_CODEPAGE_850 is not set # 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=y 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 # CONFIG_DLM is not set # # Kernel hacking # CONFIG_TRACE_IRQFLAGS_SUPPORT=y # CONFIG_PRINTK_TIME is not set # CONFIG_ENABLE_WARN_DEPRECATED is not set # CONFIG_ENABLE_MUST_CHECK is not set CONFIG_FRAME_WARN=2048 CONFIG_MAGIC_SYSRQ=y # CONFIG_UNUSED_SYMBOLS is not set CONFIG_DEBUG_FS=y # CONFIG_HEADERS_CHECK is not set CONFIG_DEBUG_KERNEL=y # CONFIG_DEBUG_SHIRQ is not set CONFIG_DETECT_SOFTLOCKUP=y # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 CONFIG_SCHED_DEBUG=y CONFIG_SCHEDSTATS=y # CONFIG_TIMER_STATS is not set # CONFIG_DEBUG_OBJECTS is not set # CONFIG_DEBUG_SLAB is not set CONFIG_DEBUG_PREEMPT=y # CONFIG_DEBUG_RT_MUTEXES is not set # CONFIG_RT_MUTEX_TESTER is not set # CONFIG_DEBUG_SPINLOCK is not set CONFIG_DEBUG_MUTEXES=y # CONFIG_DEBUG_LOCK_ALLOC is not set # CONFIG_PROVE_LOCKING is not set # CONFIG_LOCK_STAT is not set # CONFIG_DEBUG_SPINLOCK_SLEEP is not set # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set # CONFIG_DEBUG_KOBJECT is not set CONFIG_DEBUG_BUGVERBOSE=y # CONFIG_DEBUG_INFO is not set # CONFIG_DEBUG_VM is not set # CONFIG_DEBUG_VIRTUAL is not set # CONFIG_DEBUG_WRITECOUNT is not set CONFIG_DEBUG_MEMORY_INIT=y # CONFIG_DEBUG_LIST is not set # CONFIG_DEBUG_SG is not set # CONFIG_FRAME_POINTER is not set # CONFIG_BOOT_PRINTK_DELAY is not set # CONFIG_RCU_TORTURE_TEST is not set # CONFIG_BACKTRACE_SELF_TEST is not set # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set # CONFIG_FAULT_INJECTION is not set # CONFIG_LATENCYTOP is not set # CONFIG_SYSCTL_SYSCALL_CHECK is not set CONFIG_HAVE_FUNCTION_TRACER=y CONFIG_HAVE_DYNAMIC_FTRACE=y CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y # # Tracers # # CONFIG_FUNCTION_TRACER is not set # CONFIG_IRQSOFF_TRACER is not set # CONFIG_PREEMPT_TRACER is not set # CONFIG_SYSPROF_TRACER is not set # CONFIG_SCHED_TRACER is not set # CONFIG_CONTEXT_SWITCH_TRACER is not set # CONFIG_BOOT_TRACER is not set # CONFIG_STACK_TRACER is not set # CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set # CONFIG_DYNAMIC_PRINTK_DEBUG is not set # CONFIG_SAMPLES is not set CONFIG_HAVE_ARCH_KGDB=y # CONFIG_KGDB is not set # CONFIG_STRICT_DEVMEM is not set CONFIG_X86_VERBOSE_BOOTUP=y CONFIG_EARLY_PRINTK=y # CONFIG_EARLY_PRINTK_DBGP is not set # CONFIG_DEBUG_STACKOVERFLOW is not set # CONFIG_DEBUG_STACK_USAGE is not set # CONFIG_DEBUG_PAGEALLOC is not set # CONFIG_DEBUG_PER_CPU_MAPS is not set # CONFIG_X86_PTDUMP is not set # CONFIG_DEBUG_RODATA is not set # CONFIG_DIRECT_GBPAGES is not set # CONFIG_IOMMU_DEBUG is not set # CONFIG_MMIOTRACE is not set CONFIG_IO_DELAY_TYPE_0X80=0 CONFIG_IO_DELAY_TYPE_0XED=1 CONFIG_IO_DELAY_TYPE_UDELAY=2 CONFIG_IO_DELAY_TYPE_NONE=3 CONFIG_IO_DELAY_0X80=y # CONFIG_IO_DELAY_0XED is not set # CONFIG_IO_DELAY_UDELAY is not set # CONFIG_IO_DELAY_NONE is not set CONFIG_DEFAULT_IO_DELAY_TYPE=0 # CONFIG_DEBUG_BOOT_PARAMS is not set # CONFIG_CPA_DEBUG is not set # CONFIG_OPTIMIZE_INLINING is not set # # Security options # # CONFIG_KEYS is not set # CONFIG_SECURITY is not set # CONFIG_SECURITYFS is not set # CONFIG_SECURITY_FILE_CAPABILITIES is not set CONFIG_XOR_BLOCKS=y CONFIG_ASYNC_CORE=y CONFIG_ASYNC_MEMCPY=y CONFIG_ASYNC_XOR=y CONFIG_CRYPTO=y # # Crypto core or helper # # CONFIG_CRYPTO_FIPS is not set CONFIG_CRYPTO_ALGAPI=y CONFIG_CRYPTO_ALGAPI2=y CONFIG_CRYPTO_AEAD=y CONFIG_CRYPTO_AEAD2=y CONFIG_CRYPTO_BLKCIPHER=y CONFIG_CRYPTO_BLKCIPHER2=y CONFIG_CRYPTO_HASH=y CONFIG_CRYPTO_HASH2=y CONFIG_CRYPTO_RNG2=y CONFIG_CRYPTO_MANAGER=y CONFIG_CRYPTO_MANAGER2=y # CONFIG_CRYPTO_GF128MUL is not set CONFIG_CRYPTO_NULL=y # CONFIG_CRYPTO_CRYPTD is not set CONFIG_CRYPTO_AUTHENC=y # # Authenticated Encryption with Associated Data # # CONFIG_CRYPTO_CCM is not set # CONFIG_CRYPTO_GCM is not set # CONFIG_CRYPTO_SEQIV is not set # # Block modes # CONFIG_CRYPTO_CBC=y # CONFIG_CRYPTO_CTR is not set # CONFIG_CRYPTO_CTS is not set CONFIG_CRYPTO_ECB=y # CONFIG_CRYPTO_LRW is not set CONFIG_CRYPTO_PCBC=y # CONFIG_CRYPTO_XTS is not set # # Hash modes # CONFIG_CRYPTO_HMAC=y # CONFIG_CRYPTO_XCBC is not set # # Digest # CONFIG_CRYPTO_CRC32C=y # CONFIG_CRYPTO_CRC32C_INTEL is not set CONFIG_CRYPTO_MD4=y CONFIG_CRYPTO_MD5=y CONFIG_CRYPTO_MICHAEL_MIC=y # CONFIG_CRYPTO_RMD128 is not set # CONFIG_CRYPTO_RMD160 is not set # CONFIG_CRYPTO_RMD256 is not set # CONFIG_CRYPTO_RMD320 is not set CONFIG_CRYPTO_SHA1=y CONFIG_CRYPTO_SHA256=y CONFIG_CRYPTO_SHA512=y CONFIG_CRYPTO_TGR192=y CONFIG_CRYPTO_WP512=y # # Ciphers # CONFIG_CRYPTO_AES=y # CONFIG_CRYPTO_AES_X86_64 is not set CONFIG_CRYPTO_ANUBIS=y CONFIG_CRYPTO_ARC4=y CONFIG_CRYPTO_BLOWFISH=y # CONFIG_CRYPTO_CAMELLIA is not set CONFIG_CRYPTO_CAST5=y CONFIG_CRYPTO_CAST6=y CONFIG_CRYPTO_DES=y # CONFIG_CRYPTO_FCRYPT is not set CONFIG_CRYPTO_KHAZAD=y # CONFIG_CRYPTO_SALSA20 is not set # CONFIG_CRYPTO_SALSA20_X86_64 is not set # CONFIG_CRYPTO_SEED is not set CONFIG_CRYPTO_SERPENT=y CONFIG_CRYPTO_TEA=y CONFIG_CRYPTO_TWOFISH=y CONFIG_CRYPTO_TWOFISH_COMMON=y # CONFIG_CRYPTO_TWOFISH_X86_64 is not set # # Compression # CONFIG_CRYPTO_DEFLATE=y # CONFIG_CRYPTO_LZO is not set # # Random Number Generation # # CONFIG_CRYPTO_ANSI_CPRNG is not set CONFIG_CRYPTO_HW=y # CONFIG_CRYPTO_DEV_HIFN_795X is not set CONFIG_HAVE_KVM=y # CONFIG_VIRTUALIZATION is not set # # Library routines # CONFIG_BITREVERSE=y CONFIG_GENERIC_FIND_FIRST_BIT=y CONFIG_GENERIC_FIND_NEXT_BIT=y # CONFIG_CRC_CCITT is not set # CONFIG_CRC16 is not set # CONFIG_CRC_T10DIF is not set CONFIG_CRC_ITU_T=y CONFIG_CRC32=y # CONFIG_CRC7 is not set CONFIG_LIBCRC32C=y CONFIG_ZLIB_INFLATE=y CONFIG_ZLIB_DEFLATE=y CONFIG_PLIST=y CONFIG_HAS_IOMEM=y CONFIG_HAS_IOPORT=y CONFIG_HAS_DMA=y [-- Attachment #5: Type: TEXT/PLAIN, Size: 51304 bytes --] # # Automatically generated make config: don't edit # Linux kernel version: 2.6.28 # Tue Dec 30 12:31:35 2008 # CONFIG_64BIT=y # CONFIG_X86_32 is not set CONFIG_X86_64=y CONFIG_X86=y CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" 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_HAVE_LATENCYTOP_SUPPORT=y CONFIG_FAST_CMPXCHG_LOCAL=y CONFIG_MMU=y CONFIG_ZONE_DMA=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_RWSEM_GENERIC_SPINLOCK=y # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y CONFIG_GENERIC_CALIBRATE_DELAY=y CONFIG_GENERIC_TIME_VSYSCALL=y CONFIG_ARCH_HAS_CPU_RELAX=y CONFIG_ARCH_HAS_DEFAULT_IDLE=y CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y CONFIG_HAVE_SETUP_PER_CPU_AREA=y CONFIG_HAVE_CPUMASK_OF_CPU_MAP=y CONFIG_ARCH_HIBERNATION_POSSIBLE=y CONFIG_ARCH_SUSPEND_POSSIBLE=y CONFIG_ZONE_DMA32=y CONFIG_ARCH_POPULATES_NODE_MAP=y CONFIG_AUDIT_ARCH=y CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y CONFIG_GENERIC_HARDIRQS=y CONFIG_GENERIC_IRQ_PROBE=y CONFIG_GENERIC_PENDING_IRQ=y CONFIG_X86_SMP=y CONFIG_USE_GENERIC_SMP_HELPERS=y CONFIG_X86_64_SMP=y CONFIG_X86_HT=y CONFIG_X86_BIOS_REBOOT=y CONFIG_X86_TRAMPOLINE=y # CONFIG_KTIME_SCALAR is not set 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_AUDIT is not set CONFIG_IKCONFIG=y CONFIG_IKCONFIG_PROC=y CONFIG_LOG_BUF_SHIFT=21 # CONFIG_CGROUPS is not set CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y # CONFIG_GROUP_SCHED is not set CONFIG_SYSFS_DEPRECATED=y CONFIG_SYSFS_DEPRECATED_V2=y CONFIG_RELAY=y CONFIG_NAMESPACES=y # CONFIG_UTS_NS is not set # CONFIG_IPC_NS is not set # CONFIG_USER_NS is not set # CONFIG_PID_NS 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_ALL is not set # CONFIG_KALLSYMS_EXTRA_PASS is not set CONFIG_HOTPLUG=y CONFIG_PRINTK=y CONFIG_BUG=y CONFIG_ELF_CORE=y CONFIG_PCSPKR_PLATFORM=y # CONFIG_COMPAT_BRK is not set CONFIG_BASE_FULL=y CONFIG_FUTEX=y CONFIG_ANON_INODES=y CONFIG_EPOLL=y CONFIG_SIGNALFD=y CONFIG_TIMERFD=y CONFIG_EVENTFD=y CONFIG_SHMEM=y CONFIG_AIO=y CONFIG_VM_EVENT_COUNTERS=y CONFIG_PCI_QUIRKS=y CONFIG_SLAB=y # CONFIG_SLUB is not set # CONFIG_SLOB is not set CONFIG_PROFILING=y # CONFIG_MARKERS is not set CONFIG_OPROFILE=y # CONFIG_OPROFILE_IBS is not set CONFIG_HAVE_OPROFILE=y CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y CONFIG_HAVE_IOREMAP_PROT=y CONFIG_HAVE_KPROBES=y CONFIG_HAVE_KRETPROBES=y CONFIG_HAVE_ARCH_TRACEHOOK=y # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set CONFIG_SLABINFO=y CONFIG_RT_MUTEXES=y # CONFIG_TINY_SHMEM is not set CONFIG_BASE_SMALL=0 # CONFIG_MODULES is not set CONFIG_BLOCK=y CONFIG_BLK_DEV_IO_TRACE=y CONFIG_BLK_DEV_BSG=y # CONFIG_BLK_DEV_INTEGRITY is not set CONFIG_BLOCK_COMPAT=y # # 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" # CONFIG_CLASSIC_RCU is not set # CONFIG_FREEZER is not set # # Processor type and features # # CONFIG_NO_HZ is not set # CONFIG_HIGH_RES_TIMERS is not set CONFIG_GENERIC_CLOCKEVENTS_BUILD=y CONFIG_SMP=y CONFIG_X86_FIND_SMP_CONFIG=y CONFIG_X86_MPPARSE=y CONFIG_X86_PC=y # CONFIG_X86_ELAN is not set # CONFIG_X86_VOYAGER is not set # CONFIG_X86_GENERICARCH is not set # CONFIG_X86_VSMP is not set # CONFIG_PARAVIRT_GUEST is not set # CONFIG_MEMTEST 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_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_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_MPSC is not set # CONFIG_MCORE2 is not set # CONFIG_GENERIC_CPU is not set CONFIG_X86_CPU=y CONFIG_X86_L1_CACHE_BYTES=64 CONFIG_X86_INTERNODE_CACHE_BYTES=64 CONFIG_X86_CMPXCHG=y CONFIG_X86_L1_CACHE_SHIFT=6 CONFIG_X86_WP_WORKS_OK=y CONFIG_X86_INTEL_USERCOPY=y CONFIG_X86_USE_PPRO_CHECKSUM=y CONFIG_X86_TSC=y CONFIG_X86_CMPXCHG64=y CONFIG_X86_CMOV=y CONFIG_X86_MINIMUM_CPU_FAMILY=64 CONFIG_X86_DEBUGCTLMSR=y CONFIG_CPU_SUP_INTEL=y CONFIG_CPU_SUP_AMD=y CONFIG_CPU_SUP_CENTAUR_64=y # CONFIG_X86_DS is not set CONFIG_HPET_TIMER=y CONFIG_HPET_EMULATE_RTC=y CONFIG_DMI=y CONFIG_GART_IOMMU=y # CONFIG_CALGARY_IOMMU is not set CONFIG_AMD_IOMMU=y CONFIG_SWIOTLB=y CONFIG_IOMMU_HELPER=y CONFIG_NR_CPUS=2 # CONFIG_SCHED_SMT is not set # CONFIG_SCHED_MC is not set # CONFIG_PREEMPT_NONE is not set # CONFIG_PREEMPT_VOLUNTARY is not set CONFIG_PREEMPT=y CONFIG_PREEMPT_RCU=y CONFIG_RCU_TRACE=y CONFIG_X86_LOCAL_APIC=y CONFIG_X86_IO_APIC=y CONFIG_X86_MCE=y # CONFIG_X86_MCE_INTEL is not set CONFIG_X86_MCE_AMD=y # CONFIG_I8K is not set # CONFIG_MICROCODE is not set CONFIG_X86_MSR=y # CONFIG_X86_CPUID is not set CONFIG_ARCH_PHYS_ADDR_T_64BIT=y CONFIG_NUMA=y CONFIG_K8_NUMA=y # CONFIG_X86_64_ACPI_NUMA is not set # CONFIG_NUMA_EMU is not set CONFIG_NODES_SHIFT=2 CONFIG_ARCH_SPARSEMEM_DEFAULT=y CONFIG_ARCH_SPARSEMEM_ENABLE=y CONFIG_ARCH_SELECT_MEMORY_MODEL=y CONFIG_SELECT_MEMORY_MODEL=y # CONFIG_FLATMEM_MANUAL is not set # CONFIG_DISCONTIGMEM_MANUAL is not set CONFIG_SPARSEMEM_MANUAL=y CONFIG_SPARSEMEM=y CONFIG_NEED_MULTIPLE_NODES=y CONFIG_HAVE_MEMORY_PRESENT=y CONFIG_SPARSEMEM_EXTREME=y CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y CONFIG_SPARSEMEM_VMEMMAP=y # CONFIG_MEMORY_HOTPLUG is not set CONFIG_PAGEFLAGS_EXTENDED=y CONFIG_SPLIT_PTLOCK_CPUS=4 CONFIG_MIGRATION=y CONFIG_RESOURCES_64BIT=y CONFIG_PHYS_ADDR_T_64BIT=y CONFIG_ZONE_DMA_FLAG=1 CONFIG_BOUNCE=y CONFIG_VIRT_TO_BUS=y CONFIG_UNEVICTABLE_LRU=y # CONFIG_X86_CHECK_BIOS_CORRUPTION is not set CONFIG_X86_RESERVE_LOW_64K=y CONFIG_MTRR=y CONFIG_MTRR_SANITIZER=y CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 # CONFIG_X86_PAT is not set # CONFIG_EFI is not set # CONFIG_SECCOMP is not set # CONFIG_HZ_100 is not set # CONFIG_HZ_250 is not set CONFIG_HZ_300=y # CONFIG_HZ_1000 is not set CONFIG_HZ=300 # CONFIG_SCHED_HRTICK is not set # CONFIG_KEXEC is not set # CONFIG_CRASH_DUMP is not set CONFIG_PHYSICAL_START=0x200000 # CONFIG_RELOCATABLE is not set CONFIG_PHYSICAL_ALIGN=0x200000 # CONFIG_HOTPLUG_CPU is not set CONFIG_COMPAT_VDSO=y # CONFIG_CMDLINE_BOOL is not set CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID=y # # Power management and ACPI options # CONFIG_PM=y # CONFIG_PM_DEBUG is not set # CONFIG_SUSPEND is not set # CONFIG_HIBERNATION is not set CONFIG_ACPI=y CONFIG_ACPI_PROCFS=y CONFIG_ACPI_PROCFS_POWER=y CONFIG_ACPI_SYSFS_POWER=y CONFIG_ACPI_PROC_EVENT=y # CONFIG_ACPI_AC is not set # CONFIG_ACPI_BATTERY is not set # CONFIG_ACPI_BUTTON is not set # CONFIG_ACPI_VIDEO is not set # CONFIG_ACPI_FAN is not set # CONFIG_ACPI_DOCK is not set # CONFIG_ACPI_PROCESSOR is not set CONFIG_ACPI_NUMA=y # CONFIG_ACPI_WMI is not set # CONFIG_ACPI_ASUS is not set # CONFIG_ACPI_TOSHIBA is not set # CONFIG_ACPI_CUSTOM_DSDT is not set CONFIG_ACPI_BLACKLIST_YEAR=0 # CONFIG_ACPI_DEBUG is not set # CONFIG_ACPI_PCI_SLOT is not set CONFIG_ACPI_SYSTEM=y CONFIG_X86_PM_TIMER=y # CONFIG_ACPI_CONTAINER is not set # CONFIG_ACPI_SBS is not set # # CPU Frequency scaling # # CONFIG_CPU_FREQ is not set CONFIG_CPU_IDLE=y CONFIG_CPU_IDLE_GOV_LADDER=y # # Memory power savings # # CONFIG_I7300_IDLE is not set # # Bus options (PCI etc.) # CONFIG_PCI=y CONFIG_PCI_DIRECT=y CONFIG_PCI_MMCONFIG=y CONFIG_PCI_DOMAINS=y # CONFIG_DMAR is not set # CONFIG_INTR_REMAP is not set # CONFIG_PCIEPORTBUS is not set CONFIG_ARCH_SUPPORTS_MSI=y CONFIG_PCI_MSI=y # CONFIG_PCI_LEGACY is not set # CONFIG_PCI_DEBUG is not set CONFIG_HT_IRQ=y CONFIG_ISA_DMA_API=y CONFIG_K8_NB=y # CONFIG_PCCARD is not set # CONFIG_HOTPLUG_PCI is not set # # Executable file formats / Emulations # CONFIG_BINFMT_ELF=y CONFIG_COMPAT_BINFMT_ELF=y # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set # CONFIG_HAVE_AOUT is not set CONFIG_BINFMT_MISC=y CONFIG_IA32_EMULATION=y CONFIG_IA32_AOUT=y CONFIG_COMPAT=y CONFIG_COMPAT_FOR_U64_ALIGNMENT=y CONFIG_SYSVIPC_COMPAT=y CONFIG_NET=y # # Networking options # CONFIG_PACKET=y CONFIG_PACKET_MMAP=y CONFIG_UNIX=y CONFIG_XFRM=y # CONFIG_XFRM_USER is not set # CONFIG_XFRM_SUB_POLICY is not set # CONFIG_XFRM_MIGRATE is not set # CONFIG_XFRM_STATISTICS is not set CONFIG_XFRM_IPCOMP=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=y CONFIG_NET_IPGRE=y # CONFIG_ARPD is not set # CONFIG_SYN_COOKIES is not set CONFIG_INET_AH=y CONFIG_INET_ESP=y CONFIG_INET_IPCOMP=y CONFIG_INET_XFRM_TUNNEL=y CONFIG_INET_TUNNEL=y CONFIG_INET_XFRM_MODE_TRANSPORT=y CONFIG_INET_XFRM_MODE_TUNNEL=y CONFIG_INET_XFRM_MODE_BEET=y # CONFIG_INET_LRO is not set CONFIG_INET_DIAG=y CONFIG_INET_TCP_DIAG=y # CONFIG_TCP_CONG_ADVANCED is not set CONFIG_TCP_CONG_CUBIC=y CONFIG_DEFAULT_TCP_CONG="cubic" # CONFIG_TCP_MD5SIG is not set # CONFIG_IPV6 is not set CONFIG_NETWORK_SECMARK=y CONFIG_NETFILTER=y # CONFIG_NETFILTER_DEBUG is not set CONFIG_NETFILTER_ADVANCED=y CONFIG_BRIDGE_NETFILTER=y # # Core Netfilter Configuration # # CONFIG_NETFILTER_NETLINK_QUEUE is not set # CONFIG_NETFILTER_NETLINK_LOG is not set CONFIG_NF_CONNTRACK=y # CONFIG_NF_CT_ACCT is not set CONFIG_NF_CONNTRACK_MARK=y CONFIG_NF_CONNTRACK_SECMARK=y CONFIG_NF_CONNTRACK_EVENTS=y # CONFIG_NF_CT_PROTO_DCCP is not set # CONFIG_NF_CT_PROTO_SCTP is not set # CONFIG_NF_CT_PROTO_UDPLITE is not set # CONFIG_NF_CONNTRACK_AMANDA is not set CONFIG_NF_CONNTRACK_FTP=y # CONFIG_NF_CONNTRACK_H323 is not set # CONFIG_NF_CONNTRACK_IRC is not set # CONFIG_NF_CONNTRACK_NETBIOS_NS is not set # CONFIG_NF_CONNTRACK_PPTP is not set # CONFIG_NF_CONNTRACK_SANE is not set # CONFIG_NF_CONNTRACK_SIP is not set # CONFIG_NF_CONNTRACK_TFTP is not set # CONFIG_NF_CT_NETLINK is not set CONFIG_NETFILTER_XTABLES=y # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set # CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=y # CONFIG_NETFILTER_XT_TARGET_MARK is not set # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set # CONFIG_NETFILTER_XT_TARGET_RATEEST is not set CONFIG_NETFILTER_XT_TARGET_SECMARK=y # CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set # CONFIG_NETFILTER_XT_MATCH_COMMENT is not set # CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set # CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set CONFIG_NETFILTER_XT_MATCH_CONNMARK=y # CONFIG_NETFILTER_XT_MATCH_CONNTRACK is not set # CONFIG_NETFILTER_XT_MATCH_DCCP is not set # CONFIG_NETFILTER_XT_MATCH_DSCP is not set # CONFIG_NETFILTER_XT_MATCH_ESP is not set # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set # CONFIG_NETFILTER_XT_MATCH_HELPER is not set # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set CONFIG_NETFILTER_XT_MATCH_LIMIT=y CONFIG_NETFILTER_XT_MATCH_MAC=y # CONFIG_NETFILTER_XT_MATCH_MARK is not set # CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set # CONFIG_NETFILTER_XT_MATCH_OWNER is not set # CONFIG_NETFILTER_XT_MATCH_POLICY is not set # CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set # CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set # CONFIG_NETFILTER_XT_MATCH_QUOTA is not set # CONFIG_NETFILTER_XT_MATCH_RATEEST is not set # CONFIG_NETFILTER_XT_MATCH_REALM is not set # CONFIG_NETFILTER_XT_MATCH_RECENT is not set # CONFIG_NETFILTER_XT_MATCH_SCTP is not set CONFIG_NETFILTER_XT_MATCH_STATE=y # CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set # CONFIG_NETFILTER_XT_MATCH_STRING is not set # CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set # CONFIG_NETFILTER_XT_MATCH_TIME is not set # CONFIG_NETFILTER_XT_MATCH_U32 is not set # CONFIG_IP_VS is not set # # IP: Netfilter Configuration # CONFIG_NF_DEFRAG_IPV4=y CONFIG_NF_CONNTRACK_IPV4=y CONFIG_NF_CONNTRACK_PROC_COMPAT=y # CONFIG_IP_NF_QUEUE is not set CONFIG_IP_NF_IPTABLES=y # CONFIG_IP_NF_MATCH_ADDRTYPE is not set # CONFIG_IP_NF_MATCH_AH is not set # CONFIG_IP_NF_MATCH_ECN is not set # CONFIG_IP_NF_MATCH_TTL is not set CONFIG_IP_NF_FILTER=y # CONFIG_IP_NF_TARGET_REJECT is not set CONFIG_IP_NF_TARGET_LOG=y # CONFIG_IP_NF_TARGET_ULOG is not set # CONFIG_NF_NAT is not set # CONFIG_IP_NF_MANGLE is not set # CONFIG_IP_NF_RAW is not set # CONFIG_IP_NF_ARPTABLES is not set # CONFIG_BRIDGE_NF_EBTABLES 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_STP=y CONFIG_BRIDGE=y # CONFIG_NET_DSA is not set CONFIG_VLAN_8021Q=y # CONFIG_VLAN_8021Q_GVRP is not set # CONFIG_DECNET is not set CONFIG_LLC=y # 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 # CONFIG_NET_SCHED is not set # # Network testing # CONFIG_NET_PKTGEN=y # CONFIG_HAMRADIO is not set # CONFIG_CAN is not set # CONFIG_IRDA is not set CONFIG_BT=y CONFIG_BT_L2CAP=y CONFIG_BT_SCO=y CONFIG_BT_RFCOMM=y CONFIG_BT_RFCOMM_TTY=y CONFIG_BT_BNEP=y CONFIG_BT_BNEP_MC_FILTER=y CONFIG_BT_BNEP_PROTO_FILTER=y CONFIG_BT_HIDP=y # # Bluetooth device drivers # CONFIG_BT_HCIBTUSB=y CONFIG_BT_HCIUART=y CONFIG_BT_HCIUART_H4=y CONFIG_BT_HCIUART_BCSP=y CONFIG_BT_HCIUART_LL=y CONFIG_BT_HCIBCM203X=y CONFIG_BT_HCIBPA10X=y CONFIG_BT_HCIBFUSB=y CONFIG_BT_HCIVHCI=y # CONFIG_AF_RXRPC is not set # CONFIG_PHONET is not set # CONFIG_WIRELESS is not set # CONFIG_RFKILL is not set # CONFIG_NET_9P is not set # # Device Drivers # # # Generic Driver Options # CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" CONFIG_STANDALONE=y CONFIG_PREVENT_FIRMWARE_BUILD=y CONFIG_FW_LOADER=y CONFIG_FIRMWARE_IN_KERNEL=y CONFIG_EXTRA_FIRMWARE="" # CONFIG_DEBUG_DRIVER is not set # CONFIG_DEBUG_DEVRES is not set # CONFIG_SYS_HYPERVISOR is not set CONFIG_CONNECTOR=y CONFIG_PROC_EVENTS=y # CONFIG_MTD is not set CONFIG_PARPORT=y CONFIG_PARPORT_PC=y CONFIG_PARPORT_SERIAL=y CONFIG_PARPORT_PC_FIFO=y CONFIG_PARPORT_PC_SUPERIO=y # CONFIG_PARPORT_GSC is not set # CONFIG_PARPORT_AX88796 is not set CONFIG_PARPORT_1284=y CONFIG_PNP=y # CONFIG_PNP_DEBUG_MESSAGES 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=y CONFIG_BLK_DEV_CRYPTOLOOP=y CONFIG_BLK_DEV_NBD=y # CONFIG_BLK_DEV_SX8 is not set CONFIG_BLK_DEV_UB=y # CONFIG_BLK_DEV_RAM is not set CONFIG_CDROM_PKTCDVD=y CONFIG_CDROM_PKTCDVD_BUFFERS=8 # CONFIG_CDROM_PKTCDVD_WCACHE is not set # CONFIG_ATA_OVER_ETH is not set # CONFIG_BLK_DEV_HD 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_FUJITSU_LAPTOP is not set # CONFIG_ICS932S401 is not set # CONFIG_MSI_LAPTOP is not set # CONFIG_PANASONIC_LAPTOP is not set # CONFIG_COMPAL_LAPTOP is not set # CONFIG_SONY_LAPTOP is not set # CONFIG_THINKPAD_ACPI is not set # CONFIG_ENCLOSURE_SERVICES is not set # CONFIG_SGI_XP is not set # CONFIG_HP_ILO is not set # CONFIG_SGI_GRU is not set # CONFIG_C2PORT is not set CONFIG_HAVE_IDE=y CONFIG_IDE=y # # Please see Documentation/ide/ide.txt for help/info on IDE drives # CONFIG_IDE_TIMINGS=y # CONFIG_BLK_DEV_IDE_SATA is not set CONFIG_IDE_GD=y CONFIG_IDE_GD_ATA=y # CONFIG_IDE_GD_ATAPI is not set CONFIG_BLK_DEV_IDECD=y CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y # CONFIG_BLK_DEV_IDETAPE 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=y # # IDE chipset support/bugfixes # # CONFIG_IDE_GENERIC is not set # CONFIG_BLK_DEV_PLATFORM is not set # CONFIG_BLK_DEV_CMD640 is not set # CONFIG_BLK_DEV_IDEPNP is not set CONFIG_BLK_DEV_IDEDMA_SFF=y # # PCI IDE chipsets support # CONFIG_BLK_DEV_IDEPCI=y CONFIG_IDEPCI_PCIBUS_ORDER=y # CONFIG_BLK_DEV_OFFBOARD is not set CONFIG_BLK_DEV_GENERIC=y # CONFIG_BLK_DEV_OPTI621 is not set # CONFIG_BLK_DEV_RZ1000 is not set CONFIG_BLK_DEV_IDEDMA_PCI=y # 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_CS5520 is not set # CONFIG_BLK_DEV_CS5530 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_BLK_DEV_IDEDMA=y # # SCSI device support # CONFIG_RAID_ATTRS=y CONFIG_SCSI=y CONFIG_SCSI_DMA=y # CONFIG_SCSI_TGT is not set # CONFIG_SCSI_NETLINK is not set CONFIG_SCSI_PROC_FS=y # # SCSI support type (disk, tape, CD-ROM) # CONFIG_BLK_DEV_SD=y # CONFIG_CHR_DEV_ST is not set # CONFIG_CHR_DEV_OSST is not set CONFIG_BLK_DEV_SR=y CONFIG_BLK_DEV_SR_VENDOR=y CONFIG_CHR_DEV_SG=y CONFIG_CHR_DEV_SCH=y # # Some SCSI devices (e.g. CD jukebox) support multiple LUNs # CONFIG_SCSI_MULTI_LUN=y CONFIG_SCSI_CONSTANTS=y CONFIG_SCSI_LOGGING=y # CONFIG_SCSI_SCAN_ASYNC is not set # # SCSI Transports # CONFIG_SCSI_SPI_ATTRS=y # CONFIG_SCSI_FC_ATTRS is not set CONFIG_SCSI_ISCSI_ATTRS=y # CONFIG_SCSI_SAS_ATTRS is not set # CONFIG_SCSI_SAS_LIBSAS is not set # CONFIG_SCSI_SRP_ATTRS is not set CONFIG_SCSI_LOWLEVEL=y # CONFIG_ISCSI_TCP is not set # CONFIG_BLK_DEV_3W_XXXX_RAID is not set # CONFIG_SCSI_3W_9XXX is not set # CONFIG_SCSI_ACARD is not set CONFIG_SCSI_AACRAID=y CONFIG_SCSI_AIC7XXX=y CONFIG_AIC7XXX_CMDS_PER_DEVICE=32 CONFIG_AIC7XXX_RESET_DELAY_MS=5000 CONFIG_AIC7XXX_DEBUG_ENABLE=y CONFIG_AIC7XXX_DEBUG_MASK=0 CONFIG_AIC7XXX_REG_PRETTY_PRINT=y # CONFIG_SCSI_AIC7XXX_OLD is not set CONFIG_SCSI_AIC79XX=y CONFIG_AIC79XX_CMDS_PER_DEVICE=32 CONFIG_AIC79XX_RESET_DELAY_MS=5000 CONFIG_AIC79XX_DEBUG_ENABLE=y CONFIG_AIC79XX_DEBUG_MASK=0 CONFIG_AIC79XX_REG_PRETTY_PRINT=y # CONFIG_SCSI_AIC94XX is not set CONFIG_SCSI_DPT_I2O=y # CONFIG_SCSI_ADVANSYS is not set # CONFIG_SCSI_ARCMSR is not set # CONFIG_MEGARAID_NEWGEN is not set # CONFIG_MEGARAID_LEGACY is not set # CONFIG_MEGARAID_SAS is not set # CONFIG_SCSI_HPTIOP is not set # CONFIG_SCSI_BUSLOGIC is not set # CONFIG_SCSI_DMX3191D is not set # CONFIG_SCSI_EATA is not set # CONFIG_SCSI_FUTURE_DOMAIN is not set # CONFIG_SCSI_GDTH is not set # CONFIG_SCSI_IPS is not set # CONFIG_SCSI_INITIO is not set # CONFIG_SCSI_INIA100 is not set # CONFIG_SCSI_PPA is not set # CONFIG_SCSI_IMM is not set # CONFIG_SCSI_MVSAS is not set # CONFIG_SCSI_STEX is not set # CONFIG_SCSI_SYM53C8XX_2 is not set # CONFIG_SCSI_QLOGIC_1280 is not set # CONFIG_SCSI_QLA_FC is not set # CONFIG_SCSI_QLA_ISCSI is not set # CONFIG_SCSI_LPFC is not set # CONFIG_SCSI_DC395x is not set # CONFIG_SCSI_DC390T is not set # CONFIG_SCSI_DEBUG is not set # CONFIG_SCSI_SRP is not set # CONFIG_SCSI_DH is not set # CONFIG_ATA is not set CONFIG_MD=y CONFIG_BLK_DEV_MD=y CONFIG_MD_AUTODETECT=y CONFIG_MD_LINEAR=y CONFIG_MD_RAID0=y CONFIG_MD_RAID1=y CONFIG_MD_RAID10=y CONFIG_MD_RAID456=y CONFIG_MD_RAID5_RESHAPE=y # CONFIG_MD_MULTIPATH is not set # CONFIG_MD_FAULTY is not set CONFIG_BLK_DEV_DM=y # CONFIG_DM_DEBUG is not set CONFIG_DM_CRYPT=y CONFIG_DM_SNAPSHOT=y CONFIG_DM_MIRROR=y # CONFIG_DM_ZERO is not set # CONFIG_DM_MULTIPATH is not set # CONFIG_DM_DELAY is not set # CONFIG_DM_UEVENT is not set CONFIG_FUSION=y CONFIG_FUSION_SPI=y # CONFIG_FUSION_FC is not set # CONFIG_FUSION_SAS is not set CONFIG_FUSION_MAX_SGE=128 CONFIG_FUSION_CTL=y CONFIG_FUSION_LOGGING=y # # IEEE 1394 (FireWire) support # # # Enable only one of the two stacks, unless you know what you are doing # # CONFIG_FIREWIRE is not set # CONFIG_IEEE1394 is not set CONFIG_I2O=y CONFIG_I2O_LCT_NOTIFY_ON_CHANGES=y CONFIG_I2O_EXT_ADAPTEC=y CONFIG_I2O_EXT_ADAPTEC_DMA64=y CONFIG_I2O_CONFIG=y # CONFIG_I2O_CONFIG_OLD_IOCTL is not set CONFIG_I2O_BUS=y CONFIG_I2O_BLOCK=y CONFIG_I2O_SCSI=y CONFIG_I2O_PROC=y # CONFIG_MACINTOSH_DRIVERS is not set CONFIG_NETDEVICES=y CONFIG_DUMMY=y CONFIG_BONDING=y # CONFIG_MACVLAN is not set # CONFIG_EQUALIZER is not set CONFIG_TUN=y CONFIG_VETH=y # CONFIG_NET_SB1000 is not set # CONFIG_ARCNET is not set # CONFIG_PHYLIB is not set CONFIG_NET_ETHERNET=y CONFIG_MII=y # CONFIG_HAPPYMEAL is not set # CONFIG_SUNGEM is not set # CONFIG_CASSINI is not set CONFIG_NET_VENDOR_3COM=y CONFIG_VORTEX=y CONFIG_TYPHOON=y CONFIG_NET_TULIP=y # CONFIG_DE2104X is not set # CONFIG_TULIP is not set CONFIG_DE4X5=y # CONFIG_WINBOND_840 is not set # CONFIG_DM9102 is not set # CONFIG_ULI526X is not set # CONFIG_HP100 is not set # CONFIG_IBM_NEW_EMAC_ZMII is not set # CONFIG_IBM_NEW_EMAC_RGMII is not set # CONFIG_IBM_NEW_EMAC_TAH is not set # CONFIG_IBM_NEW_EMAC_EMAC4 is not set # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set CONFIG_NET_PCI=y # CONFIG_PCNET32 is not set # CONFIG_AMD8111_ETH is not set CONFIG_ADAPTEC_STARFIRE=y # CONFIG_B44 is not set # CONFIG_FORCEDETH is not set # CONFIG_EEPRO100 is not set CONFIG_E100=y # CONFIG_FEALNX is not set # CONFIG_NATSEMI is not set CONFIG_NE2K_PCI=y # CONFIG_8139CP is not set # CONFIG_8139TOO is not set # CONFIG_R6040 is not set CONFIG_SIS900=y # 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_ATL2 is not set CONFIG_NETDEV_1000=y # CONFIG_ACENIC is not set # CONFIG_DL2K is not set CONFIG_E1000=y CONFIG_E1000E=y # CONFIG_IP1000 is not set # CONFIG_IGB is not set # CONFIG_NS83820 is not set # CONFIG_HAMACHI is not set # CONFIG_YELLOWFIN is not set CONFIG_R8169=y CONFIG_R8169_VLAN=y # CONFIG_SIS190 is not set # CONFIG_SKGE is not set # CONFIG_SKY2 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_ATL1E is not set # CONFIG_JME is not set # CONFIG_NETDEV_10000 is not set # CONFIG_TR is not set # # Wireless LAN # # CONFIG_WLAN_PRE80211 is not set # CONFIG_WLAN_80211 is not set # CONFIG_IWLWIFI_LEDS is not set # # 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 is not set # CONFIG_WAN is not set # CONFIG_FDDI is not set # CONFIG_HIPPI is not set # CONFIG_PLIP is not set # CONFIG_PPP is not set # CONFIG_SLIP is not set # CONFIG_NET_FC 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=y # # Userland interfaces # CONFIG_INPUT_MOUSEDEV=y CONFIG_INPUT_MOUSEDEV_PSAUX=y CONFIG_INPUT_MOUSEDEV_SCREEN_X=1280 CONFIG_INPUT_MOUSEDEV_SCREEN_Y=1024 # CONFIG_INPUT_JOYDEV is not set CONFIG_INPUT_EVDEV=y # 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_ELANTECH is not set # CONFIG_MOUSE_PS2_TOUCHKIT is not set # CONFIG_MOUSE_SERIAL is not set # CONFIG_MOUSE_APPLETOUCH is not set # CONFIG_MOUSE_BCM5974 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_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_CM109 is not set CONFIG_INPUT_UINPUT=y # # 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_CONSOLE_TRANSLATIONS=y CONFIG_VT_CONSOLE=y CONFIG_HW_CONSOLE=y CONFIG_VT_HW_CONSOLE_BINDING=y # CONFIG_DEVKMEM is not set # CONFIG_SERIAL_NONSTANDARD is not set # CONFIG_NOZOMI 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_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=y # CONFIG_LP_CONSOLE is not set CONFIG_PPDEV=y CONFIG_IPMI_HANDLER=y CONFIG_IPMI_PANIC_EVENT=y CONFIG_IPMI_PANIC_STRING=y CONFIG_IPMI_DEVICE_INTERFACE=y CONFIG_IPMI_SI=y # CONFIG_IPMI_WATCHDOG is not set CONFIG_IPMI_POWEROFF=y CONFIG_HW_RANDOM=y CONFIG_HW_RANDOM_INTEL=y CONFIG_HW_RANDOM_AMD=y CONFIG_NVRAM=y # CONFIG_R3964 is not set # CONFIG_APPLICOM is not set # CONFIG_MWAVE is not set # CONFIG_PC8736x_GPIO is not set # CONFIG_RAW_DRIVER is not set CONFIG_HPET=y CONFIG_HPET_MMAP=y CONFIG_HANGCHECK_TIMER=y # CONFIG_TCG_TPM is not set # CONFIG_TELCLOCK is not set CONFIG_DEVPORT=y CONFIG_I2C=y CONFIG_I2C_BOARDINFO=y CONFIG_I2C_CHARDEV=y CONFIG_I2C_HELPER_AUTO=y CONFIG_I2C_ALGOBIT=y # # I2C Hardware Bus support # # # PC SMBus host controller drivers # # CONFIG_I2C_ALI1535 is not set # CONFIG_I2C_ALI1563 is not set # CONFIG_I2C_ALI15X3 is not set CONFIG_I2C_AMD756=y # CONFIG_I2C_AMD756_S4882 is not set # CONFIG_I2C_AMD8111 is not set # CONFIG_I2C_I801 is not set # CONFIG_I2C_ISCH is not set # CONFIG_I2C_PIIX4 is not set # CONFIG_I2C_NFORCE2 is not set # CONFIG_I2C_SIS5595 is not set # CONFIG_I2C_SIS630 is not set # CONFIG_I2C_SIS96X is not set # CONFIG_I2C_VIA is not set # CONFIG_I2C_VIAPRO is not set # # I2C system bus drivers (mostly embedded / system-on-chip) # # CONFIG_I2C_OCORES is not set # CONFIG_I2C_SIMTEC is not set # # External I2C/SMBus adapter drivers # # CONFIG_I2C_PARPORT is not set # CONFIG_I2C_PARPORT_LIGHT is not set # CONFIG_I2C_TAOS_EVM is not set # CONFIG_I2C_TINY_USB is not set # # Graphics adapter I2C/DDC channel drivers # # CONFIG_I2C_VOODOO3 is not set # # Other I2C/SMBus bus drivers # # CONFIG_I2C_PCA_PLATFORM is not set # # Miscellaneous I2C Chip support # # CONFIG_DS1682 is not set # CONFIG_AT24 is not set # CONFIG_SENSORS_EEPROM is not set # CONFIG_SENSORS_PCF8574 is not set # CONFIG_PCF8575 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 # CONFIG_SPI is not set CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y # CONFIG_GPIOLIB is not set # CONFIG_W1 is not set CONFIG_POWER_SUPPLY=y # CONFIG_POWER_SUPPLY_DEBUG is not set # CONFIG_PDA_POWER is not set # CONFIG_BATTERY_DS2760 is not set # CONFIG_BATTERY_BQ27x00 is not set CONFIG_HWMON=y CONFIG_HWMON_VID=y # CONFIG_SENSORS_ABITUGURU is not set # CONFIG_SENSORS_ABITUGURU3 is not set # CONFIG_SENSORS_AD7414 is not set # CONFIG_SENSORS_AD7418 is not set CONFIG_SENSORS_ADM1021=y CONFIG_SENSORS_ADM1025=y CONFIG_SENSORS_ADM1026=y # CONFIG_SENSORS_ADM1029 is not set CONFIG_SENSORS_ADM1031=y CONFIG_SENSORS_ADM9240=y # CONFIG_SENSORS_ADT7462 is not set # CONFIG_SENSORS_ADT7470 is not set # CONFIG_SENSORS_ADT7473 is not set # CONFIG_SENSORS_K8TEMP is not set CONFIG_SENSORS_ASB100=y CONFIG_SENSORS_ATXP1=y CONFIG_SENSORS_DS1621=y # CONFIG_SENSORS_I5K_AMB is not set CONFIG_SENSORS_F71805F=y # CONFIG_SENSORS_F71882FG is not set # CONFIG_SENSORS_F75375S is not set CONFIG_SENSORS_FSCHER=y CONFIG_SENSORS_FSCPOS=y # CONFIG_SENSORS_FSCHMD is not set CONFIG_SENSORS_GL518SM=y CONFIG_SENSORS_GL520SM=y # CONFIG_SENSORS_CORETEMP is not set # CONFIG_SENSORS_IBMAEM is not set # CONFIG_SENSORS_IBMPEX is not set CONFIG_SENSORS_IT87=y CONFIG_SENSORS_LM63=y CONFIG_SENSORS_LM75=y CONFIG_SENSORS_LM77=y CONFIG_SENSORS_LM78=y CONFIG_SENSORS_LM80=y CONFIG_SENSORS_LM83=y CONFIG_SENSORS_LM85=y CONFIG_SENSORS_LM87=y CONFIG_SENSORS_LM90=y CONFIG_SENSORS_LM92=y # CONFIG_SENSORS_LM93 is not set CONFIG_SENSORS_MAX1619=y # CONFIG_SENSORS_MAX6650 is not set CONFIG_SENSORS_PC87360=y # CONFIG_SENSORS_PC87427 is not set CONFIG_SENSORS_SIS5595=y # CONFIG_SENSORS_DME1737 is not set CONFIG_SENSORS_SMSC47M1=y # CONFIG_SENSORS_SMSC47M192 is not set CONFIG_SENSORS_SMSC47B397=y # CONFIG_SENSORS_ADS7828 is not set # CONFIG_SENSORS_THMC50 is not set CONFIG_SENSORS_VIA686A=y # CONFIG_SENSORS_VT1211 is not set CONFIG_SENSORS_VT8231=y CONFIG_SENSORS_W83781D=y # CONFIG_SENSORS_W83791D is not set CONFIG_SENSORS_W83792D=y # CONFIG_SENSORS_W83793 is not set CONFIG_SENSORS_W83L785TS=y # CONFIG_SENSORS_W83L786NG is not set CONFIG_SENSORS_W83627HF=y CONFIG_SENSORS_W83627EHF=y CONFIG_SENSORS_HDAPS=y # CONFIG_SENSORS_LIS3LV02D is not set # CONFIG_SENSORS_APPLESMC is not set # CONFIG_HWMON_DEBUG_CHIP is not set # CONFIG_THERMAL is not set CONFIG_THERMAL_HWMON=y # CONFIG_WATCHDOG is not set CONFIG_SSB_POSSIBLE=y # # Sonics Silicon Backplane # # CONFIG_SSB is not set # # Multifunction device drivers # # CONFIG_MFD_CORE is not set # CONFIG_MFD_SM501 is not set # CONFIG_HTC_PASIC3 is not set # CONFIG_MFD_TMIO is not set # CONFIG_PMIC_DA903X is not set # CONFIG_MFD_WM8400 is not set # CONFIG_MFD_WM8350_I2C is not set CONFIG_REGULATOR=y # CONFIG_REGULATOR_DEBUG is not set # CONFIG_REGULATOR_FIXED_VOLTAGE is not set # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set # CONFIG_REGULATOR_BQ24022 is not set # # Multimedia devices # # # Multimedia core support # # CONFIG_VIDEO_DEV is not set # CONFIG_DVB_CORE is not set # CONFIG_VIDEO_MEDIA is not set # # Multimedia drivers # # CONFIG_DAB is not set # # Graphics support # CONFIG_AGP=y CONFIG_AGP_AMD64=y # CONFIG_AGP_INTEL is not set # CONFIG_AGP_SIS is not set # CONFIG_AGP_VIA is not set CONFIG_DRM=y # CONFIG_DRM_TDFX is not set CONFIG_DRM_R128=y CONFIG_DRM_RADEON=y # CONFIG_DRM_MGA is not set # CONFIG_DRM_SIS is not set # CONFIG_DRM_VIA is not set # CONFIG_DRM_SAVAGE is not set CONFIG_VGASTATE=y CONFIG_VIDEO_OUTPUT_CONTROL=y CONFIG_FB=y CONFIG_FIRMWARE_EDID=y CONFIG_FB_DDC=y CONFIG_FB_BOOT_VESA_SUPPORT=y CONFIG_FB_CFB_FILLRECT=y CONFIG_FB_CFB_COPYAREA=y CONFIG_FB_CFB_IMAGEBLIT=y # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set # CONFIG_FB_SYS_FILLRECT is not set # CONFIG_FB_SYS_COPYAREA is not set # CONFIG_FB_SYS_IMAGEBLIT is not set # CONFIG_FB_FOREIGN_ENDIAN is not set # CONFIG_FB_SYS_FOPS is not set # CONFIG_FB_SVGALIB is not set # CONFIG_FB_MACMODES is not set CONFIG_FB_BACKLIGHT=y CONFIG_FB_MODE_HELPERS=y CONFIG_FB_TILEBLITTING=y # # Frame buffer hardware drivers # # CONFIG_FB_CIRRUS is not set # CONFIG_FB_PM2 is not set # CONFIG_FB_CYBER2000 is not set # CONFIG_FB_ARC is not set # CONFIG_FB_ASILIANT is not set # CONFIG_FB_IMSTT is not set CONFIG_FB_VGA16=y # CONFIG_FB_UVESA is not set CONFIG_FB_VESA=y # CONFIG_FB_N411 is not set # CONFIG_FB_HGA is not set # CONFIG_FB_S1D13XXX is not set # CONFIG_FB_NVIDIA is not set # CONFIG_FB_RIVA is not set # CONFIG_FB_LE80578 is not set # CONFIG_FB_INTEL is not set # CONFIG_FB_MATROX is not set CONFIG_FB_RADEON=y CONFIG_FB_RADEON_I2C=y CONFIG_FB_RADEON_BACKLIGHT=y # CONFIG_FB_RADEON_DEBUG is not set CONFIG_FB_ATY128=y CONFIG_FB_ATY128_BACKLIGHT=y # CONFIG_FB_ATY is not set # CONFIG_FB_S3 is not set # CONFIG_FB_SAVAGE is not set # CONFIG_FB_SIS is not set # CONFIG_FB_VIA is not set # CONFIG_FB_NEOMAGIC is not set # CONFIG_FB_KYRO is not set # CONFIG_FB_3DFX is not set # CONFIG_FB_VOODOO1 is not set # CONFIG_FB_VT8623 is not set # CONFIG_FB_TRIDENT is not set # CONFIG_FB_ARK is not set # CONFIG_FB_PM3 is not set # CONFIG_FB_CARMINE is not set # CONFIG_FB_GEODE is not set # CONFIG_FB_VIRTUAL is not set # CONFIG_FB_METRONOME is not set # CONFIG_FB_MB862XX is not set CONFIG_BACKLIGHT_LCD_SUPPORT=y CONFIG_LCD_CLASS_DEVICE=y # CONFIG_LCD_ILI9320 is not set # CONFIG_LCD_PLATFORM is not set CONFIG_BACKLIGHT_CLASS_DEVICE=y # CONFIG_BACKLIGHT_CORGI is not set # CONFIG_BACKLIGHT_PROGEAR is not set # CONFIG_BACKLIGHT_MBP_NVIDIA is not set # CONFIG_BACKLIGHT_SAHARA is not set # # Display device support # CONFIG_DISPLAY_SUPPORT=y # # Display hardware drivers # # # Console display driver support # CONFIG_VGA_CONSOLE=y CONFIG_VGACON_SOFT_SCROLLBACK=y CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=1024 CONFIG_DUMMY_CONSOLE=y CONFIG_FRAMEBUFFER_CONSOLE=y # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y CONFIG_FONTS=y CONFIG_FONT_8x8=y CONFIG_FONT_8x16=y # CONFIG_FONT_6x11 is not set CONFIG_FONT_7x14=y # CONFIG_FONT_PEARL_8x8 is not set # CONFIG_FONT_ACORN_8x8 is not set # CONFIG_FONT_MINI_4x6 is not set # CONFIG_FONT_SUN8x16 is not set # CONFIG_FONT_SUN12x22 is not set CONFIG_FONT_10x18=y CONFIG_LOGO=y CONFIG_LOGO_LINUX_MONO=y CONFIG_LOGO_LINUX_VGA16=y CONFIG_LOGO_LINUX_CLUT224=y # CONFIG_SOUND is not set CONFIG_HID_SUPPORT=y CONFIG_HID=y # CONFIG_HID_DEBUG is not set # CONFIG_HIDRAW is not set # # USB Input Devices # # CONFIG_USB_HID is not set # CONFIG_HID_PID is not set # # USB HID Boot Protocol drivers # # CONFIG_USB_KBD is not set # CONFIG_USB_MOUSE is not set # # Special HID drivers # CONFIG_HID_COMPAT=y CONFIG_HID_APPLE=y CONFIG_USB_SUPPORT=y CONFIG_USB_ARCH_HAS_HCD=y CONFIG_USB_ARCH_HAS_OHCI=y CONFIG_USB_ARCH_HAS_EHCI=y CONFIG_USB=y # CONFIG_USB_DEBUG is not set CONFIG_USB_ANNOUNCE_NEW_DEVICES=y # # Miscellaneous USB options # CONFIG_USB_DEVICEFS=y # CONFIG_USB_DEVICE_CLASS is not set # CONFIG_USB_DYNAMIC_MINORS is not set # CONFIG_USB_SUSPEND is not set # CONFIG_USB_OTG is not set # CONFIG_USB_MON is not set # CONFIG_USB_WUSB is not set # CONFIG_USB_WUSB_CBAF is not set # # USB Host Controller Drivers # # CONFIG_USB_C67X00_HCD is not set CONFIG_USB_EHCI_HCD=y # 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_ISP1760_HCD is not set CONFIG_USB_OHCI_HCD=y # 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=y # CONFIG_USB_SL811_HCD is not set # CONFIG_USB_R8A66597_HCD is not set # CONFIG_USB_WHCI_HCD is not set # CONFIG_USB_HWA_HCD is not set # # USB Device Class drivers # # CONFIG_USB_ACM is not set # CONFIG_USB_PRINTER is not set # CONFIG_USB_WDM is not set # CONFIG_USB_TMC is not set # # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; # # # see USB_STORAGE Help for more information # CONFIG_USB_STORAGE=y # CONFIG_USB_STORAGE_DEBUG is not set CONFIG_USB_STORAGE_DATAFAB=y CONFIG_USB_STORAGE_FREECOM=y CONFIG_USB_STORAGE_ISD200=y CONFIG_USB_STORAGE_DPCM=y CONFIG_USB_STORAGE_USBAT=y CONFIG_USB_STORAGE_SDDR09=y CONFIG_USB_STORAGE_SDDR55=y CONFIG_USB_STORAGE_JUMPSHOT=y CONFIG_USB_STORAGE_ALAUDA=y # CONFIG_USB_STORAGE_ONETOUCH is not set CONFIG_USB_STORAGE_KARMA=y # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set CONFIG_USB_LIBUSUAL=y # # USB Imaging devices # # CONFIG_USB_MDC800 is not set # CONFIG_USB_MICROTEK is not set # # USB port drivers # # CONFIG_USB_USS720 is not set # CONFIG_USB_SERIAL 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_SEVSEG 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=y # 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 # CONFIG_USB_ISIGHTFW is not set # CONFIG_USB_VST is not set # CONFIG_USB_GADGET is not set # CONFIG_UWB is not set # CONFIG_MMC is not set # CONFIG_MEMSTICK is not set # CONFIG_NEW_LEDS is not set # CONFIG_ACCESSIBILITY is not set # CONFIG_INFINIBAND is not set CONFIG_EDAC=y # # Reporting subsystems # # CONFIG_EDAC_DEBUG is not set CONFIG_EDAC_MM_EDAC=y # CONFIG_EDAC_E752X is not set # CONFIG_EDAC_I82975X is not set # CONFIG_EDAC_I3000 is not set # CONFIG_EDAC_X38 is not set # CONFIG_EDAC_I5000 is not set # CONFIG_EDAC_I5100 is not set CONFIG_RTC_LIB=y CONFIG_RTC_CLASS=y CONFIG_RTC_HCTOSYS=y CONFIG_RTC_HCTOSYS_DEVICE="rtc0" # CONFIG_RTC_DEBUG is not set # # RTC interfaces # CONFIG_RTC_INTF_SYSFS=y CONFIG_RTC_INTF_PROC=y CONFIG_RTC_INTF_DEV=y # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set # CONFIG_RTC_DRV_TEST is not set # # I2C RTC drivers # # CONFIG_RTC_DRV_DS1307 is not set # CONFIG_RTC_DRV_DS1374 is not set CONFIG_RTC_DRV_DS1672=y # CONFIG_RTC_DRV_MAX6900 is not set CONFIG_RTC_DRV_RS5C372=y # CONFIG_RTC_DRV_ISL1208 is not set CONFIG_RTC_DRV_X1205=y CONFIG_RTC_DRV_PCF8563=y # CONFIG_RTC_DRV_PCF8583 is not set # CONFIG_RTC_DRV_M41T80 is not set # CONFIG_RTC_DRV_S35390A is not set # CONFIG_RTC_DRV_FM3130 is not set # CONFIG_RTC_DRV_RX8581 is not set # # SPI RTC drivers # # # Platform RTC drivers # CONFIG_RTC_DRV_CMOS=y # CONFIG_RTC_DRV_DS1286 is not set # CONFIG_RTC_DRV_DS1511 is not set # CONFIG_RTC_DRV_DS1553 is not set # CONFIG_RTC_DRV_DS1742 is not set # CONFIG_RTC_DRV_STK17TA8 is not set CONFIG_RTC_DRV_M48T86=y # CONFIG_RTC_DRV_M48T35 is not set # CONFIG_RTC_DRV_M48T59 is not set # CONFIG_RTC_DRV_BQ4802 is not set # CONFIG_RTC_DRV_V3020 is not set # # on-CPU RTC drivers # # CONFIG_DMADEVICES is not set # CONFIG_AUXDISPLAY is not set # CONFIG_UIO is not set # CONFIG_STAGING is not set # # Firmware Drivers # # CONFIG_EDD is not set CONFIG_FIRMWARE_MEMMAP=y # CONFIG_DELL_RBU is not set # CONFIG_DCDBAS is not set CONFIG_DMIID=y # CONFIG_ISCSI_IBFT_FIND 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_EXT4_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=y CONFIG_FILE_LOCKING=y CONFIG_XFS_FS=y # CONFIG_XFS_QUOTA is not set # CONFIG_XFS_POSIX_ACL is not set # CONFIG_XFS_RT is not set # CONFIG_XFS_DEBUG is not set # CONFIG_GFS2_FS is not set # CONFIG_OCFS2_FS is not set CONFIG_DNOTIFY=y # CONFIG_INOTIFY is not set # CONFIG_QUOTA is not set # CONFIG_AUTOFS_FS is not set # CONFIG_AUTOFS4_FS is not set CONFIG_FUSE_FS=y # # CD-ROM/DVD Filesystems # CONFIG_ISO9660_FS=y CONFIG_JOLIET=y CONFIG_ZISOFS=y CONFIG_UDF_FS=y CONFIG_UDF_NLS=y # # DOS/FAT/NT Filesystems # CONFIG_FAT_FS=y CONFIG_MSDOS_FS=y CONFIG_VFAT_FS=y CONFIG_FAT_DEFAULT_CODEPAGE=437 CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" CONFIG_NTFS_FS=y # CONFIG_NTFS_DEBUG is not set CONFIG_NTFS_RW=y # # Pseudo filesystems # CONFIG_PROC_FS=y CONFIG_PROC_KCORE=y CONFIG_PROC_SYSCTL=y CONFIG_PROC_PAGE_MONITOR=y CONFIG_SYSFS=y CONFIG_TMPFS=y # CONFIG_TMPFS_POSIX_ACL is not set # CONFIG_HUGETLBFS is not set # CONFIG_HUGETLB_PAGE is not set CONFIG_CONFIGFS_FS=y # # 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 is not set # CONFIG_VXFS_FS is not set CONFIG_MINIX_FS=y # CONFIG_OMFS_FS is not set # CONFIG_HPFS_FS is not set # CONFIG_QNX4FS_FS is not set # CONFIG_ROMFS_FS is not set # CONFIG_SYSV_FS is not set # CONFIG_UFS_FS is not set CONFIG_NETWORK_FILESYSTEMS=y CONFIG_NFS_FS=y CONFIG_NFS_V3=y # CONFIG_NFS_V3_ACL is not set CONFIG_NFS_V4=y CONFIG_NFSD=y CONFIG_NFSD_V3=y # CONFIG_NFSD_V3_ACL is not set CONFIG_NFSD_V4=y CONFIG_LOCKD=y CONFIG_LOCKD_V4=y CONFIG_EXPORTFS=y CONFIG_NFS_COMMON=y CONFIG_SUNRPC=y CONFIG_SUNRPC_GSS=y # CONFIG_SUNRPC_REGISTER_V4 is not set CONFIG_RPCSEC_GSS_KRB5=y # CONFIG_RPCSEC_GSS_SPKM3 is not set CONFIG_SMB_FS=y # CONFIG_SMB_NLS_DEFAULT is not set CONFIG_CIFS=y CONFIG_CIFS_STATS=y CONFIG_CIFS_STATS2=y CONFIG_CIFS_WEAK_PW_HASH=y CONFIG_CIFS_XATTR=y CONFIG_CIFS_POSIX=y # CONFIG_CIFS_DEBUG2 is not set CONFIG_CIFS_EXPERIMENTAL=y # 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 CONFIG_NLS=y CONFIG_NLS_DEFAULT="iso8859-15" CONFIG_NLS_CODEPAGE_437=y # CONFIG_NLS_CODEPAGE_737 is not set # CONFIG_NLS_CODEPAGE_775 is not set # CONFIG_NLS_CODEPAGE_850 is not set # 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=y 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 # CONFIG_DLM is not set # # Kernel hacking # CONFIG_TRACE_IRQFLAGS_SUPPORT=y # CONFIG_PRINTK_TIME is not set # CONFIG_ENABLE_WARN_DEPRECATED is not set # CONFIG_ENABLE_MUST_CHECK is not set CONFIG_FRAME_WARN=2048 CONFIG_MAGIC_SYSRQ=y # CONFIG_UNUSED_SYMBOLS is not set CONFIG_DEBUG_FS=y # CONFIG_HEADERS_CHECK is not set CONFIG_DEBUG_KERNEL=y # CONFIG_DEBUG_SHIRQ is not set CONFIG_DETECT_SOFTLOCKUP=y # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 CONFIG_SCHED_DEBUG=y CONFIG_SCHEDSTATS=y # CONFIG_TIMER_STATS is not set # CONFIG_DEBUG_OBJECTS is not set # CONFIG_DEBUG_SLAB is not set CONFIG_DEBUG_PREEMPT=y # CONFIG_DEBUG_RT_MUTEXES is not set # CONFIG_RT_MUTEX_TESTER is not set # CONFIG_DEBUG_SPINLOCK is not set CONFIG_DEBUG_MUTEXES=y # CONFIG_DEBUG_LOCK_ALLOC is not set # CONFIG_PROVE_LOCKING is not set # CONFIG_LOCK_STAT is not set # CONFIG_DEBUG_SPINLOCK_SLEEP is not set # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set # CONFIG_DEBUG_KOBJECT is not set CONFIG_DEBUG_BUGVERBOSE=y # CONFIG_DEBUG_INFO is not set # CONFIG_DEBUG_VM is not set # CONFIG_DEBUG_VIRTUAL is not set # CONFIG_DEBUG_WRITECOUNT is not set CONFIG_DEBUG_MEMORY_INIT=y # CONFIG_DEBUG_LIST is not set # CONFIG_DEBUG_SG is not set # CONFIG_FRAME_POINTER is not set # CONFIG_BOOT_PRINTK_DELAY is not set # CONFIG_RCU_TORTURE_TEST is not set # CONFIG_BACKTRACE_SELF_TEST is not set # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set # CONFIG_FAULT_INJECTION is not set # CONFIG_LATENCYTOP is not set # CONFIG_SYSCTL_SYSCALL_CHECK is not set CONFIG_HAVE_FUNCTION_TRACER=y CONFIG_HAVE_DYNAMIC_FTRACE=y CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y # # Tracers # # CONFIG_FUNCTION_TRACER is not set # CONFIG_IRQSOFF_TRACER is not set # CONFIG_PREEMPT_TRACER is not set # CONFIG_SYSPROF_TRACER is not set # CONFIG_SCHED_TRACER is not set # CONFIG_CONTEXT_SWITCH_TRACER is not set # CONFIG_BOOT_TRACER is not set # CONFIG_STACK_TRACER is not set # CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set # CONFIG_DYNAMIC_PRINTK_DEBUG is not set # CONFIG_SAMPLES is not set CONFIG_HAVE_ARCH_KGDB=y # CONFIG_KGDB is not set # CONFIG_STRICT_DEVMEM is not set CONFIG_X86_VERBOSE_BOOTUP=y CONFIG_EARLY_PRINTK=y # CONFIG_EARLY_PRINTK_DBGP is not set # CONFIG_DEBUG_STACKOVERFLOW is not set # CONFIG_DEBUG_STACK_USAGE is not set # CONFIG_DEBUG_PAGEALLOC is not set # CONFIG_DEBUG_PER_CPU_MAPS is not set # CONFIG_X86_PTDUMP is not set # CONFIG_DEBUG_RODATA is not set # CONFIG_DIRECT_GBPAGES is not set # CONFIG_IOMMU_DEBUG is not set # CONFIG_MMIOTRACE is not set CONFIG_IO_DELAY_TYPE_0X80=0 CONFIG_IO_DELAY_TYPE_0XED=1 CONFIG_IO_DELAY_TYPE_UDELAY=2 CONFIG_IO_DELAY_TYPE_NONE=3 CONFIG_IO_DELAY_0X80=y # CONFIG_IO_DELAY_0XED is not set # CONFIG_IO_DELAY_UDELAY is not set # CONFIG_IO_DELAY_NONE is not set CONFIG_DEFAULT_IO_DELAY_TYPE=0 # CONFIG_DEBUG_BOOT_PARAMS is not set # CONFIG_CPA_DEBUG is not set # CONFIG_OPTIMIZE_INLINING is not set # # Security options # # CONFIG_KEYS is not set # CONFIG_SECURITY is not set # CONFIG_SECURITYFS is not set # CONFIG_SECURITY_FILE_CAPABILITIES is not set CONFIG_XOR_BLOCKS=y CONFIG_ASYNC_CORE=y CONFIG_ASYNC_MEMCPY=y CONFIG_ASYNC_XOR=y CONFIG_CRYPTO=y # # Crypto core or helper # # CONFIG_CRYPTO_FIPS is not set CONFIG_CRYPTO_ALGAPI=y CONFIG_CRYPTO_ALGAPI2=y CONFIG_CRYPTO_AEAD=y CONFIG_CRYPTO_AEAD2=y CONFIG_CRYPTO_BLKCIPHER=y CONFIG_CRYPTO_BLKCIPHER2=y CONFIG_CRYPTO_HASH=y CONFIG_CRYPTO_HASH2=y CONFIG_CRYPTO_RNG2=y CONFIG_CRYPTO_MANAGER=y CONFIG_CRYPTO_MANAGER2=y # CONFIG_CRYPTO_GF128MUL is not set CONFIG_CRYPTO_NULL=y # CONFIG_CRYPTO_CRYPTD is not set CONFIG_CRYPTO_AUTHENC=y # # Authenticated Encryption with Associated Data # # CONFIG_CRYPTO_CCM is not set # CONFIG_CRYPTO_GCM is not set # CONFIG_CRYPTO_SEQIV is not set # # Block modes # CONFIG_CRYPTO_CBC=y # CONFIG_CRYPTO_CTR is not set # CONFIG_CRYPTO_CTS is not set CONFIG_CRYPTO_ECB=y # CONFIG_CRYPTO_LRW is not set CONFIG_CRYPTO_PCBC=y # CONFIG_CRYPTO_XTS is not set # # Hash modes # CONFIG_CRYPTO_HMAC=y # CONFIG_CRYPTO_XCBC is not set # # Digest # CONFIG_CRYPTO_CRC32C=y # CONFIG_CRYPTO_CRC32C_INTEL is not set CONFIG_CRYPTO_MD4=y CONFIG_CRYPTO_MD5=y CONFIG_CRYPTO_MICHAEL_MIC=y # CONFIG_CRYPTO_RMD128 is not set # CONFIG_CRYPTO_RMD160 is not set # CONFIG_CRYPTO_RMD256 is not set # CONFIG_CRYPTO_RMD320 is not set CONFIG_CRYPTO_SHA1=y CONFIG_CRYPTO_SHA256=y CONFIG_CRYPTO_SHA512=y CONFIG_CRYPTO_TGR192=y CONFIG_CRYPTO_WP512=y # # Ciphers # CONFIG_CRYPTO_AES=y # CONFIG_CRYPTO_AES_X86_64 is not set CONFIG_CRYPTO_ANUBIS=y CONFIG_CRYPTO_ARC4=y CONFIG_CRYPTO_BLOWFISH=y # CONFIG_CRYPTO_CAMELLIA is not set CONFIG_CRYPTO_CAST5=y CONFIG_CRYPTO_CAST6=y CONFIG_CRYPTO_DES=y # CONFIG_CRYPTO_FCRYPT is not set CONFIG_CRYPTO_KHAZAD=y # CONFIG_CRYPTO_SALSA20 is not set # CONFIG_CRYPTO_SALSA20_X86_64 is not set # CONFIG_CRYPTO_SEED is not set CONFIG_CRYPTO_SERPENT=y CONFIG_CRYPTO_TEA=y CONFIG_CRYPTO_TWOFISH=y CONFIG_CRYPTO_TWOFISH_COMMON=y # CONFIG_CRYPTO_TWOFISH_X86_64 is not set # # Compression # CONFIG_CRYPTO_DEFLATE=y # CONFIG_CRYPTO_LZO is not set # # Random Number Generation # # CONFIG_CRYPTO_ANSI_CPRNG is not set CONFIG_CRYPTO_HW=y # CONFIG_CRYPTO_DEV_HIFN_795X is not set CONFIG_HAVE_KVM=y # CONFIG_VIRTUALIZATION is not set # # Library routines # CONFIG_BITREVERSE=y CONFIG_GENERIC_FIND_FIRST_BIT=y CONFIG_GENERIC_FIND_NEXT_BIT=y # CONFIG_CRC_CCITT is not set # CONFIG_CRC16 is not set # CONFIG_CRC_T10DIF is not set CONFIG_CRC_ITU_T=y CONFIG_CRC32=y # CONFIG_CRC7 is not set CONFIG_LIBCRC32C=y CONFIG_ZLIB_INFLATE=y CONFIG_ZLIB_DEFLATE=y CONFIG_PLIST=y CONFIG_HAS_IOMEM=y CONFIG_HAS_IOPORT=y CONFIG_HAS_DMA=y ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-30 22:21 david @ 2008-12-30 21:26 ` Cyrill Gorcunov 2008-12-30 22:31 ` david 2008-12-31 0:25 ` Andi Kleen 1 sibling, 1 reply; 63+ messages in thread From: Cyrill Gorcunov @ 2008-12-30 21:26 UTC (permalink / raw) To: david; +Cc: linux-kernel [david@lang.hm - Tue, Dec 30, 2008 at 02:21:10PM -0800] > I'm trying to upgrade a older dual opteron box to a current 64 bit > system, but I'm getting early exception errors from several different > kernels > > I tried the ubuntu 8.04 and 8.10 disks, and then I decided to try hunting > it down myself, so I took my 2.6.25 32 bit config copied it to a 64 bit > system and did a make oldconfig with 2.6.28 and am getting the same type > of error (the address changes from kernel to kernel and config to config > on the same kernel) > > doing a grep through System.map for the address that appears in the error > returns nothing > > attached are snapshots of the screen when the error happens and two > different configs with the same error (I tried disabling high-res timers, > tickless operation, and PAT, but got the same error), the 28 image is the > -2 config. > > where do I go from here to track this down? > > David Lang ... Hi David, not sure if it's the same but I've got similar errors for early_params being not capable to handle null passed args. What is the cmdline? It seems to be framebuffer related. But otoh I could be just wrong. - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-30 21:26 ` Cyrill Gorcunov @ 2008-12-30 22:31 ` david 2008-12-30 21:41 ` Cyrill Gorcunov 0 siblings, 1 reply; 63+ messages in thread From: david @ 2008-12-30 22:31 UTC (permalink / raw) To: Cyrill Gorcunov; +Cc: linux-kernel On Wed, 31 Dec 2008, Cyrill Gorcunov wrote: > [david@lang.hm - Tue, Dec 30, 2008 at 02:21:10PM -0800] >> I'm trying to upgrade a older dual opteron box to a current 64 bit >> system, but I'm getting early exception errors from several different >> kernels >> >> I tried the ubuntu 8.04 and 8.10 disks, and then I decided to try hunting >> it down myself, so I took my 2.6.25 32 bit config copied it to a 64 bit >> system and did a make oldconfig with 2.6.28 and am getting the same type >> of error (the address changes from kernel to kernel and config to config >> on the same kernel) >> >> doing a grep through System.map for the address that appears in the error >> returns nothing >> >> attached are snapshots of the screen when the error happens and two >> different configs with the same error (I tried disabling high-res timers, >> tickless operation, and PAT, but got the same error), the 28 image is the >> -2 config. >> >> where do I go from here to track this down? >> >> David Lang > ... > > Hi David, > > not sure if it's the same but I've got similar errors for > early_params being not capable to handle null passed args. > What is the cmdline? It seems to be framebuffer related. > But otoh I could be just wrong. very trivial grep -v "^#" /etc/lilo.conf boot = /dev/sda message = /boot/boot_message.txt prompt compact timeout = 1200 change-rules reset vga = ask image = /boot/vmlinuz-2.6.28-64-2 root = /dev/sda2 label = 2.6.28-64 I trimmed the additional boot images from this. David Lang ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-30 22:31 ` david @ 2008-12-30 21:41 ` Cyrill Gorcunov 2008-12-30 22:48 ` david 0 siblings, 1 reply; 63+ messages in thread From: Cyrill Gorcunov @ 2008-12-30 21:41 UTC (permalink / raw) To: david; +Cc: linux-kernel [david@lang.hm - Tue, Dec 30, 2008 at 02:31:28PM -0800] > On Wed, 31 Dec 2008, Cyrill Gorcunov wrote: > >> [david@lang.hm - Tue, Dec 30, 2008 at 02:21:10PM -0800] >>> I'm trying to upgrade a older dual opteron box to a current 64 bit >>> system, but I'm getting early exception errors from several different >>> kernels >>> >>> I tried the ubuntu 8.04 and 8.10 disks, and then I decided to try hunting >>> it down myself, so I took my 2.6.25 32 bit config copied it to a 64 bit >>> system and did a make oldconfig with 2.6.28 and am getting the same type >>> of error (the address changes from kernel to kernel and config to config >>> on the same kernel) >>> >>> doing a grep through System.map for the address that appears in the error >>> returns nothing >>> >>> attached are snapshots of the screen when the error happens and two >>> different configs with the same error (I tried disabling high-res timers, >>> tickless operation, and PAT, but got the same error), the 28 image is the >>> -2 config. >>> >>> where do I go from here to track this down? >>> >>> David Lang >> ... >> >> Hi David, >> >> not sure if it's the same but I've got similar errors for >> early_params being not capable to handle null passed args. >> What is the cmdline? It seems to be framebuffer related. >> But otoh I could be just wrong. > > very trivial > > grep -v "^#" /etc/lilo.conf > boot = /dev/sda > message = /boot/boot_message.txt > prompt > compact > timeout = 1200 > change-rules > reset > vga = ask > image = /boot/vmlinuz-2.6.28-64-2 > root = /dev/sda2 > label = 2.6.28-64 > > I trimmed the additional boot images from this. > > David Lang > thanks David, will try to reproduce it - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-30 21:41 ` Cyrill Gorcunov @ 2008-12-30 22:48 ` david 0 siblings, 0 replies; 63+ messages in thread From: david @ 2008-12-30 22:48 UTC (permalink / raw) To: Cyrill Gorcunov; +Cc: linux-kernel On Wed, 31 Dec 2008, Cyrill Gorcunov wrote: > [david@lang.hm - Tue, Dec 30, 2008 at 02:31:28PM -0800] >> On Wed, 31 Dec 2008, Cyrill Gorcunov wrote: >> >>> [david@lang.hm - Tue, Dec 30, 2008 at 02:21:10PM -0800] >>>> I'm trying to upgrade a older dual opteron box to a current 64 bit >>>> system, but I'm getting early exception errors from several different >>>> kernels >>>> >>>> I tried the ubuntu 8.04 and 8.10 disks, and then I decided to try hunting >>>> it down myself, so I took my 2.6.25 32 bit config copied it to a 64 bit >>>> system and did a make oldconfig with 2.6.28 and am getting the same type >>>> of error (the address changes from kernel to kernel and config to config >>>> on the same kernel) >>>> >>>> doing a grep through System.map for the address that appears in the error >>>> returns nothing >>>> >>>> attached are snapshots of the screen when the error happens and two >>>> different configs with the same error (I tried disabling high-res timers, >>>> tickless operation, and PAT, but got the same error), the 28 image is the >>>> -2 config. >>>> >>>> where do I go from here to track this down? >>>> >>>> David Lang >>> ... >>> >>> Hi David, >>> >>> not sure if it's the same but I've got similar errors for >>> early_params being not capable to handle null passed args. >>> What is the cmdline? It seems to be framebuffer related. >>> But otoh I could be just wrong. >> >> very trivial >> >> grep -v "^#" /etc/lilo.conf >> boot = /dev/sda >> message = /boot/boot_message.txt >> prompt >> compact >> timeout = 1200 >> change-rules >> reset >> vga = ask >> image = /boot/vmlinuz-2.6.28-64-2 >> root = /dev/sda2 >> label = 2.6.28-64 >> >> I trimmed the additional boot images from this. >> >> David Lang >> > > thanks David, will try to reproduce it I disabled the framebuffer and still got the error the system is a dual opteron 240 with an adaptec 3210S i2o raid card and radon video card lspci returns 00:06.0 PCI bridge: Advanced Micro Devices [AMD] AMD-8111 PCI (rev 07) 00:07.0 ISA bridge: Advanced Micro Devices [AMD] AMD-8111 LPC (rev 05) 00:07.1 IDE interface: Advanced Micro Devices [AMD] AMD-8111 IDE (rev 03) 00:07.2 SMBus: Advanced Micro Devices [AMD] AMD-8111 SMBus 2.0 (rev 02) 00:07.3 Bridge: Advanced Micro Devices [AMD] AMD-8111 ACPI (rev 05) 00:0a.0 PCI bridge: Advanced Micro Devices [AMD] AMD-8131 PCI-X Bridge (rev 12) 00:0a.1 PIC: Advanced Micro Devices [AMD] AMD-8131 PCI-X IOAPIC (rev 01) 00:0b.0 PCI bridge: Advanced Micro Devices [AMD] AMD-8131 PCI-X Bridge (rev 12) 00:0b.1 PIC: Advanced Micro Devices [AMD] AMD-8131 PCI-X IOAPIC (rev 01) 00:18.0 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration 00:18.1 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Address Map 00:18.2 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM Controller 00:18.3 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control 00:19.0 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration 00:19.1 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Address Map 00:19.2 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM Controller 00:19.3 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control 01:01.0 PCI bridge: PLX Technology, Inc.: Unknown device 8111 (rev 21) 01:03.0 PCI bridge: Adaptec (formerly DPT) PCI Bridge (rev 01) 01:03.1 I2O: Adaptec (formerly DPT) SmartRAID V Controller (rev 01) 03:00.0 VGA compatible controller: ATI Technologies Inc: Unknown device 7183 03:00.1 Display controller: ATI Technologies Inc: Unknown device 71a3 04:09.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5704 Gigabit Ethernet (rev 03) 04:09.1 Ethernet controller: Broadcom Corporation NetXtreme BCM5704 Gigabit Ethernet (rev 03) 05:00.0 USB Controller: Advanced Micro Devices [AMD] AMD-8111 USB (rev 0b) 05:00.1 USB Controller: Advanced Micro Devices [AMD] AMD-8111 USB (rev 0b) 05:08.0 Ethernet controller: Intel Corporation 82557/8/9 [Ethernet Pro 100] (rev 10) ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-30 22:21 david 2008-12-30 21:26 ` Cyrill Gorcunov @ 2008-12-31 0:25 ` Andi Kleen 2008-12-31 1:39 ` david 1 sibling, 1 reply; 63+ messages in thread From: Andi Kleen @ 2008-12-31 0:25 UTC (permalink / raw) To: david; +Cc: linux-kernel david@lang.hm writes: > > doing a grep through System.map for the address that appears in the > error returns nothing This might be obvious, but you can't grep directly for these addresses because System.map contains the starting addresses of functions only and normally the reported address is somewhere in the middle of a function. So you instead have to look for the highest number lower or equal the address from the exception. -Andi -- ak@linux.intel.com ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-31 0:25 ` Andi Kleen @ 2008-12-31 1:39 ` david 2008-12-31 1:25 ` Andi Kleen 2008-12-31 9:38 ` Cyrill Gorcunov 0 siblings, 2 replies; 63+ messages in thread From: david @ 2008-12-31 1:39 UTC (permalink / raw) To: Andi Kleen; +Cc: linux-kernel On Wed, 31 Dec 2008, Andi Kleen wrote: > david@lang.hm writes: >> >> doing a grep through System.map for the address that appears in the >> error returns nothing > > This might be obvious, but you can't grep directly for these addresses > because System.map contains the starting addresses of functions only > and normally the reported address is somewhere in the middle of a > function. So you instead have to look for the highest number lower or equal > the address from the exception. thanks, this was not obvious to me the -2 error maps to ffffffff8099e4c1 T free_bootmem_node ffffffff8099e4e5 t alloc_bootmem_core ffffffff8099e774 t ___alloc_bootmem_nopanic the first error maps to ffffffff809c2de4 T free_bootmem_node ffffffff809c2e08 t alloc_bootmem_core ffffffff809c3097 t ___alloc_bootmem_nopanic so it looks like this is in alloc_bootmem_core in both cases. David Lang ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-31 1:39 ` david @ 2008-12-31 1:25 ` Andi Kleen 2008-12-31 9:38 ` Cyrill Gorcunov 1 sibling, 0 replies; 63+ messages in thread From: Andi Kleen @ 2008-12-31 1:25 UTC (permalink / raw) To: david; +Cc: Andi Kleen, linux-kernel On Tue, Dec 30, 2008 at 05:39:29PM -0800, david@lang.hm wrote: > On Wed, 31 Dec 2008, Andi Kleen wrote: > > >david@lang.hm writes: > >> > >>doing a grep through System.map for the address that appears in the > >>error returns nothing > > > >This might be obvious, but you can't grep directly for these addresses > >because System.map contains the starting addresses of functions only > >and normally the reported address is somewhere in the middle of a > >function. So you instead have to look for the highest number lower or equal > >the address from the exception. > > thanks, this was not obvious to me > > the -2 error maps to You should also boot with earlyprintk=vga to get more context. -Andi ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-31 1:39 ` david 2008-12-31 1:25 ` Andi Kleen @ 2008-12-31 9:38 ` Cyrill Gorcunov 2008-12-31 19:12 ` david 1 sibling, 1 reply; 63+ messages in thread From: Cyrill Gorcunov @ 2008-12-31 9:38 UTC (permalink / raw) To: david; +Cc: Andi Kleen, linux-kernel [david@lang.hm - Tue, Dec 30, 2008 at 05:39:29PM -0800] > On Wed, 31 Dec 2008, Andi Kleen wrote: > >> david@lang.hm writes: >>> >>> doing a grep through System.map for the address that appears in the >>> error returns nothing >> >> This might be obvious, but you can't grep directly for these addresses >> because System.map contains the starting addresses of functions only >> and normally the reported address is somewhere in the middle of a >> function. So you instead have to look for the highest number lower or equal >> the address from the exception. > > thanks, this was not obvious to me > > the -2 error maps to > > ffffffff8099e4c1 T free_bootmem_node > ffffffff8099e4e5 t alloc_bootmem_core > ffffffff8099e774 t ___alloc_bootmem_nopanic > > > the first error maps to > > ffffffff809c2de4 T free_bootmem_node > ffffffff809c2e08 t alloc_bootmem_core > ffffffff809c3097 t ___alloc_bootmem_nopanic > > > so it looks like this is in alloc_bootmem_core in both cases. > > David Lang > Along with Andi's proposed earlyprintk=vga I think bootmem_debug option could be usefull here too. - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-31 9:38 ` Cyrill Gorcunov @ 2008-12-31 19:12 ` david 2008-12-31 18:30 ` Cyrill Gorcunov 0 siblings, 1 reply; 63+ messages in thread From: david @ 2008-12-31 19:12 UTC (permalink / raw) To: Cyrill Gorcunov; +Cc: Andi Kleen, linux-kernel On Wed, 31 Dec 2008, Cyrill Gorcunov wrote: > [david@lang.hm - Tue, Dec 30, 2008 at 05:39:29PM -0800] >> On Wed, 31 Dec 2008, Andi Kleen wrote: >> >>> david@lang.hm writes: >>>> >>>> doing a grep through System.map for the address that appears in the >>>> error returns nothing >>> >>> This might be obvious, but you can't grep directly for these addresses >>> because System.map contains the starting addresses of functions only >>> and normally the reported address is somewhere in the middle of a >>> function. So you instead have to look for the highest number lower or equal >>> the address from the exception. >> >> thanks, this was not obvious to me >> >> the -2 error maps to >> >> ffffffff8099e4c1 T free_bootmem_node >> ffffffff8099e4e5 t alloc_bootmem_core >> ffffffff8099e774 t ___alloc_bootmem_nopanic >> >> >> the first error maps to >> >> ffffffff809c2de4 T free_bootmem_node >> ffffffff809c2e08 t alloc_bootmem_core >> ffffffff809c3097 t ___alloc_bootmem_nopanic >> >> >> so it looks like this is in alloc_bootmem_core in both cases. >> >> David Lang >> > > Along with Andi's proposed earlyprintk=vga I think > bootmem_debug option could be usefull here too. adding bootmem_debug creates so much additonal output that the oops scrolls off the screen (except the last 'paragraph' of it) it looks like it's individual items being allocated (trying to scan it as it scrolled by) if that output is needed I will need to setup a serial console to gather it (can this be done for the earlyprintk?) David Lang ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-31 19:12 ` david @ 2008-12-31 18:30 ` Cyrill Gorcunov 2008-12-31 19:50 ` Andi Kleen 2008-12-31 20:07 ` david 0 siblings, 2 replies; 63+ messages in thread From: Cyrill Gorcunov @ 2008-12-31 18:30 UTC (permalink / raw) To: david; +Cc: Andi Kleen, linux-kernel [david@lang.hm - Wed, Dec 31, 2008 at 11:12:12AM -0800] > On Wed, 31 Dec 2008, Cyrill Gorcunov wrote: > >> [david@lang.hm - Tue, Dec 30, 2008 at 05:39:29PM -0800] >>> On Wed, 31 Dec 2008, Andi Kleen wrote: >>> >>>> david@lang.hm writes: >>>>> >>>>> doing a grep through System.map for the address that appears in the >>>>> error returns nothing >>>> >>>> This might be obvious, but you can't grep directly for these addresses >>>> because System.map contains the starting addresses of functions only >>>> and normally the reported address is somewhere in the middle of a >>>> function. So you instead have to look for the highest number lower or equal >>>> the address from the exception. >>> >>> thanks, this was not obvious to me >>> >>> the -2 error maps to >>> >>> ffffffff8099e4c1 T free_bootmem_node >>> ffffffff8099e4e5 t alloc_bootmem_core >>> ffffffff8099e774 t ___alloc_bootmem_nopanic >>> >>> >>> the first error maps to >>> >>> ffffffff809c2de4 T free_bootmem_node >>> ffffffff809c2e08 t alloc_bootmem_core >>> ffffffff809c3097 t ___alloc_bootmem_nopanic >>> >>> >>> so it looks like this is in alloc_bootmem_core in both cases. >>> >>> David Lang >>> >> >> Along with Andi's proposed earlyprintk=vga I think >> bootmem_debug option could be usefull here too. > > adding bootmem_debug creates so much additonal output that the oops > scrolls off the screen (except the last 'paragraph' of it) > > it looks like it's individual items being allocated (trying to scan it as > it scrolled by) on the picture you sent me i noticed the message "Your memory is not aligned you need to rebuild your kernel with bigger NODEMAP SIZE shift=20" and then srat code complains about "No NUMA code hash function found" which looks a bit scary. Btw, could you post this picture on some public resource so NUMA people could check it? > > if that output is needed I will need to setup a serial console to gather > it (can this be done for the earlyprintk?) yep, earlyprintk=serial (at least code say it would support it :) > > David Lang > - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-31 18:30 ` Cyrill Gorcunov @ 2008-12-31 19:50 ` Andi Kleen 2008-12-31 20:20 ` Cyrill Gorcunov 2008-12-31 20:59 ` david 2008-12-31 20:07 ` david 1 sibling, 2 replies; 63+ messages in thread From: Andi Kleen @ 2008-12-31 19:50 UTC (permalink / raw) To: Cyrill Gorcunov; +Cc: david, Andi Kleen, linux-kernel > on the picture you sent me i noticed the message > "Your memory is not aligned you need to rebuild your > kernel with bigger NODEMAP SIZE shift=20" and then > srat code complains about "No NUMA code hash function found" > which looks a bit scary. Btw, could you post this picture > on some public resource so NUMA people could check it? This case used to be handled cleanly (NUMA disabled), but perhaps that has regressed. But still it sounds like something is going wrong, unless his machine really has a very weird memory map. -Andi -- ak@linux.intel.com ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-31 19:50 ` Andi Kleen @ 2008-12-31 20:20 ` Cyrill Gorcunov 2008-12-31 20:59 ` david 1 sibling, 0 replies; 63+ messages in thread From: Cyrill Gorcunov @ 2008-12-31 20:20 UTC (permalink / raw) To: Andi Kleen; +Cc: david, linux-kernel [Andi Kleen - Wed, Dec 31, 2008 at 08:50:05PM +0100] | > on the picture you sent me i noticed the message | > "Your memory is not aligned you need to rebuild your | > kernel with bigger NODEMAP SIZE shift=20" and then | > srat code complains about "No NUMA code hash function found" | > which looks a bit scary. Btw, could you post this picture | > on some public resource so NUMA people could check it? | | This case used to be handled cleanly (NUMA disabled), but perhaps | that has regressed. But still it sounds like something is going wrong, | unless his machine really has a very weird memory map. | | -Andi | -- | ak@linux.intel.com | Andi, it seems I missed where is on the photo NUMA disabled. At least on picture 2 nodes reported to have place (the nodes are with 10 and 20 bootmap pages on each node). - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-31 19:50 ` Andi Kleen 2008-12-31 20:20 ` Cyrill Gorcunov @ 2008-12-31 20:59 ` david 2009-01-01 4:17 ` Andi Kleen 1 sibling, 1 reply; 63+ messages in thread From: david @ 2008-12-31 20:59 UTC (permalink / raw) To: Andi Kleen; +Cc: Cyrill Gorcunov, linux-kernel On Wed, 31 Dec 2008, Andi Kleen wrote: >> on the picture you sent me i noticed the message >> "Your memory is not aligned you need to rebuild your >> kernel with bigger NODEMAP SIZE shift=20" and then >> srat code complains about "No NUMA code hash function found" >> which looks a bit scary. Btw, could you post this picture >> on some public resource so NUMA people could check it? > > This case used to be handled cleanly (NUMA disabled), but perhaps > that has regressed. But still it sounds like something is going wrong, > unless his machine really has a very weird memory map. it shouldn't, it was one of the high-volume servers 4-5 years ago and only has 4G of ram in it here's the start of the boot with 2.6.25 (32 bit) BIOS-provided physical RAM map: BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) BIOS-e820: 0000000000100000 - 000000004cff0000 (usable) BIOS-e820: 000000004cff0000 - 000000004cfff000 (ACPI data) BIOS-e820: 000000004cfff000 - 000000004d000000 (ACPI NVS) BIOS-e820: 00000000ff780000 - 0000000100000000 (reserved) BIOS-e820: 0000000100000000 - 0000000180000000 (usable) Warning only 4GB will be used. Use a HIGHMEM64G enabled kernel. 3200MB HIGHMEM available. 896MB LOWMEM available. Scan SMP from c0000000 for 1024 bytes. Scan SMP from c009fc00 for 1024 bytes. Scan SMP from c00f0000 for 65536 bytes. found SMP MP-table at [c00ff780] 000ff780 Entering add_active_range(0, 0, 1048576) 0 entries of 256 used Zone PFN ranges: DMA 0 -> 4096 Normal 4096 -> 229376 HighMem 229376 -> 1048576 Movable zone start PFN for each node early_node_map[1] active PFN ranges 0: 0 -> 1048576 On node 0 totalpages: 1048576 DMA zone: 32 pages used for memmap DMA zone: 0 pages reserved DMA zone: 4064 pages, LIFO batch:0 Normal zone: 1760 pages used for memmap Normal zone: 223520 pages, LIFO batch:31 HighMem zone: 6400 pages used for memmap HighMem zone: 812800 pages, LIFO batch:31 Movable zone: 0 pages used for memmap DMI 2.3 present. ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-31 20:59 ` david @ 2009-01-01 4:17 ` Andi Kleen 2009-01-01 6:17 ` david 0 siblings, 1 reply; 63+ messages in thread From: Andi Kleen @ 2009-01-01 4:17 UTC (permalink / raw) To: david; +Cc: Andi Kleen, Cyrill Gorcunov, linux-kernel On Wed, Dec 31, 2008 at 12:59:08PM -0800, david@lang.hm wrote: > On Wed, 31 Dec 2008, Andi Kleen wrote: > > >>on the picture you sent me i noticed the message > >>"Your memory is not aligned you need to rebuild your > >>kernel with bigger NODEMAP SIZE shift=20" and then > >>srat code complains about "No NUMA code hash function found" > >>which looks a bit scary. Btw, could you post this picture > >>on some public resource so NUMA people could check it? > > > >This case used to be handled cleanly (NUMA disabled), but perhaps > >that has regressed. But still it sounds like something is going wrong, > >unless his machine really has a very weird memory map. > > it shouldn't, it was one of the high-volume servers 4-5 years ago and only > has 4G of ram in it >From looking at the screenshot Cyrill sent you seem to have a funny SRAT with overlapping areas that is rejected in the end. I suspect the fallback code doesn't handle this properly. Does it work when you boot with numa=noacpi ? -Andi ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-01 4:17 ` Andi Kleen @ 2009-01-01 6:17 ` david 2009-01-01 14:02 ` Andi Kleen 2009-01-02 18:21 ` david 0 siblings, 2 replies; 63+ messages in thread From: david @ 2009-01-01 6:17 UTC (permalink / raw) To: Andi Kleen; +Cc: Cyrill Gorcunov, linux-kernel On Thu, 1 Jan 2009, Andi Kleen wrote: > On Wed, Dec 31, 2008 at 12:59:08PM -0800, david@lang.hm wrote: >> On Wed, 31 Dec 2008, Andi Kleen wrote: >> >>>> on the picture you sent me i noticed the message >>>> "Your memory is not aligned you need to rebuild your >>>> kernel with bigger NODEMAP SIZE shift=20" and then >>>> srat code complains about "No NUMA code hash function found" >>>> which looks a bit scary. Btw, could you post this picture >>>> on some public resource so NUMA people could check it? >>> >>> This case used to be handled cleanly (NUMA disabled), but perhaps >>> that has regressed. But still it sounds like something is going wrong, >>> unless his machine really has a very weird memory map. >> >> it shouldn't, it was one of the high-volume servers 4-5 years ago and only >> has 4G of ram in it > > From looking at the screenshot Cyrill sent you seem to have a funny > SRAT with overlapping areas that is rejected in the end. I suspect the > fallback code doesn't handle this properly. > > Does it work when you boot with numa=noacpi ? it gets past the point where the bootmemory_debug messages flow by, but I get another oops (snapshot of the screen is at http://linux.lang.hm/linux/IMG00031.jpg ) David Lang ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-01 6:17 ` david @ 2009-01-01 14:02 ` Andi Kleen 2009-01-02 18:21 ` david 1 sibling, 0 replies; 63+ messages in thread From: Andi Kleen @ 2009-01-01 14:02 UTC (permalink / raw) To: david; +Cc: Andi Kleen, Cyrill Gorcunov, linux-kernel On Wed, Dec 31, 2008 at 10:17:06PM -0800, david@lang.hm wrote: > On Thu, 1 Jan 2009, Andi Kleen wrote: > > >On Wed, Dec 31, 2008 at 12:59:08PM -0800, david@lang.hm wrote: > >>On Wed, 31 Dec 2008, Andi Kleen wrote: > >> > >>>>on the picture you sent me i noticed the message > >>>>"Your memory is not aligned you need to rebuild your > >>>>kernel with bigger NODEMAP SIZE shift=20" and then > >>>>srat code complains about "No NUMA code hash function found" > >>>>which looks a bit scary. Btw, could you post this picture > >>>>on some public resource so NUMA people could check it? > >>> > >>>This case used to be handled cleanly (NUMA disabled), but perhaps > >>>that has regressed. But still it sounds like something is going wrong, > >>>unless his machine really has a very weird memory map. > >> > >>it shouldn't, it was one of the high-volume servers 4-5 years ago and only > >>has 4G of ram in it > > > >From looking at the screenshot Cyrill sent you seem to have a funny > >SRAT with overlapping areas that is rejected in the end. I suspect the > >fallback code doesn't handle this properly. > > > >Does it work when you boot with numa=noacpi ? > > it gets past the point where the bootmemory_debug messages flow by, but I > get another oops (snapshot of the screen is at > http://linux.lang.hm/linux/IMG00031.jpg ) Node setup seems to be still broken. You'll likely need a full serial log with earlyprintk=serial (and no numa=...) -Andi -- ak@linux.intel.com ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-01 6:17 ` david 2009-01-01 14:02 ` Andi Kleen @ 2009-01-02 18:21 ` david 2009-01-02 17:24 ` Cyrill Gorcunov 1 sibling, 1 reply; 63+ messages in thread From: david @ 2009-01-02 18:21 UTC (permalink / raw) To: Andi Kleen; +Cc: Cyrill Gorcunov, linux-kernel On Wed, 31 Dec 2008, david@lang.hm wrote: > On Thu, 1 Jan 2009, Andi Kleen wrote: > >> On Wed, Dec 31, 2008 at 12:59:08PM -0800, david@lang.hm wrote: >>> On Wed, 31 Dec 2008, Andi Kleen wrote: >>> >>>>> on the picture you sent me i noticed the message >>>>> "Your memory is not aligned you need to rebuild your >>>>> kernel with bigger NODEMAP SIZE shift=20" and then >>>>> srat code complains about "No NUMA code hash function found" >>>>> which looks a bit scary. Btw, could you post this picture >>>>> on some public resource so NUMA people could check it? >>>> >>>> This case used to be handled cleanly (NUMA disabled), but perhaps >>>> that has regressed. But still it sounds like something is going wrong, >>>> unless his machine really has a very weird memory map. >>> >>> it shouldn't, it was one of the high-volume servers 4-5 years ago and only >>> has 4G of ram in it >> >> From looking at the screenshot Cyrill sent you seem to have a funny >> SRAT with overlapping areas that is rejected in the end. I suspect the >> fallback code doesn't handle this properly. >> >> Does it work when you boot with numa=noacpi ? > > it gets past the point where the bootmemory_debug messages flow by, but I get > another oops (snapshot of the screen is at > http://linux.lang.hm/linux/IMG00031.jpg ) oops, I misread your mail, IMG00031.jpg was with numa=off I just posted IMG00033.jpg which is with numa=noacpi and earlyprintk=vga but not bootmem_debug David Lang ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-02 18:21 ` david @ 2009-01-02 17:24 ` Cyrill Gorcunov 2009-01-02 20:57 ` Robert Hancock 0 siblings, 1 reply; 63+ messages in thread From: Cyrill Gorcunov @ 2009-01-02 17:24 UTC (permalink / raw) To: david; +Cc: Andi Kleen, linux-kernel [david@lang.hm - Fri, Jan 02, 2009 at 10:21:52AM -0800] > On Wed, 31 Dec 2008, david@lang.hm wrote: > >> On Thu, 1 Jan 2009, Andi Kleen wrote: >> >>> On Wed, Dec 31, 2008 at 12:59:08PM -0800, david@lang.hm wrote: >>>> On Wed, 31 Dec 2008, Andi Kleen wrote: >>>> >>>>>> on the picture you sent me i noticed the message >>>>>> "Your memory is not aligned you need to rebuild your >>>>>> kernel with bigger NODEMAP SIZE shift=20" and then >>>>>> srat code complains about "No NUMA code hash function found" >>>>>> which looks a bit scary. Btw, could you post this picture >>>>>> on some public resource so NUMA people could check it? >>>>> >>>>> This case used to be handled cleanly (NUMA disabled), but perhaps >>>>> that has regressed. But still it sounds like something is going wrong, >>>>> unless his machine really has a very weird memory map. >>>> >>>> it shouldn't, it was one of the high-volume servers 4-5 years ago and only >>>> has 4G of ram in it >>> >>> From looking at the screenshot Cyrill sent you seem to have a funny >>> SRAT with overlapping areas that is rejected in the end. I suspect the >>> fallback code doesn't handle this properly. >>> >>> Does it work when you boot with numa=noacpi ? >> >> it gets past the point where the bootmemory_debug messages flow by, but >> I get another oops (snapshot of the screen is at >> http://linux.lang.hm/linux/IMG00031.jpg ) > > oops, I misread your mail, IMG00031.jpg was with numa=off > > I just posted IMG00033.jpg which is with numa=noacpi and earlyprintk=vga > but not bootmem_debug > > David Lang > Thanks, David! Trying to understand what is going on :) Here is a new picture if someone would like to jump into the bug handling http://linux.lang.hm/linux/IMG00033.jpg - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-02 17:24 ` Cyrill Gorcunov @ 2009-01-02 20:57 ` Robert Hancock 2009-01-05 9:26 ` Johannes Weiner 0 siblings, 1 reply; 63+ messages in thread From: Robert Hancock @ 2009-01-02 20:57 UTC (permalink / raw) To: linux-kernel; +Cc: david, Andi Kleen Cyrill Gorcunov wrote: > [david@lang.hm - Fri, Jan 02, 2009 at 10:21:52AM -0800] >> On Wed, 31 Dec 2008, david@lang.hm wrote: >> >>> On Thu, 1 Jan 2009, Andi Kleen wrote: >>> >>>> On Wed, Dec 31, 2008 at 12:59:08PM -0800, david@lang.hm wrote: >>>>> On Wed, 31 Dec 2008, Andi Kleen wrote: >>>>> >>>>>>> on the picture you sent me i noticed the message >>>>>>> "Your memory is not aligned you need to rebuild your >>>>>>> kernel with bigger NODEMAP SIZE shift=20" and then >>>>>>> srat code complains about "No NUMA code hash function found" >>>>>>> which looks a bit scary. Btw, could you post this picture >>>>>>> on some public resource so NUMA people could check it? >>>>>> This case used to be handled cleanly (NUMA disabled), but perhaps >>>>>> that has regressed. But still it sounds like something is going wrong, >>>>>> unless his machine really has a very weird memory map. >>>>> it shouldn't, it was one of the high-volume servers 4-5 years ago and only >>>>> has 4G of ram in it >>>> From looking at the screenshot Cyrill sent you seem to have a funny >>>> SRAT with overlapping areas that is rejected in the end. I suspect the >>>> fallback code doesn't handle this properly. >>>> >>>> Does it work when you boot with numa=noacpi ? >>> it gets past the point where the bootmemory_debug messages flow by, but >>> I get another oops (snapshot of the screen is at >>> http://linux.lang.hm/linux/IMG00031.jpg ) >> oops, I misread your mail, IMG00031.jpg was with numa=off >> >> I just posted IMG00033.jpg which is with numa=noacpi and earlyprintk=vga >> but not bootmem_debug >> >> David Lang >> > > Thanks, David! Trying to understand what is going on :) > > Here is a new picture if someone would like to jump into > the bug handling > > http://linux.lang.hm/linux/IMG00033.jpg alloc_bootmem_core is a reasonably big function, it would be useful if we could track down what line it's blowing up on.. Can you try to find out what line that fault address (ffffffff8096452a in this crash) is on as described in Documentation/BUG-HUNTING, i.e. build with CONFIG_DEBUG_INFO enabled, run gdb on vmlinux and do: l *0xffffffff8096452a ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-02 20:57 ` Robert Hancock @ 2009-01-05 9:26 ` Johannes Weiner 2009-01-05 13:08 ` Andi Kleen 2009-01-05 14:51 ` Jiri Slaby 0 siblings, 2 replies; 63+ messages in thread From: Johannes Weiner @ 2009-01-05 9:26 UTC (permalink / raw) To: Robert Hancock; +Cc: linux-kernel, david, Andi Kleen, Andrew Morton On Fri, Jan 02, 2009 at 02:57:17PM -0600, Robert Hancock wrote: > Cyrill Gorcunov wrote: > > > >Here is a new picture if someone would like to jump into > >the bug handling > > > > http://linux.lang.hm/linux/IMG00033.jpg > > alloc_bootmem_core is a reasonably big function, it would be useful if > we could track down what line it's blowing up on.. Can you try to find > out what line that fault address (ffffffff8096452a in this crash) is on > as described in Documentation/BUG-HUNTING, i.e. build with > CONFIG_DEBUG_INFO enabled, run gdb on vmlinux and do: > > l *0xffffffff8096452a He has booted with bootmem debugging output. Given that the bdebug() describing the request wasn't hit yet, it must be one of the BUG_ON()s (or bdata is NULL). If you can find out the line with gdb, this would be great. Besides that it might be useful to move the bdebug() before the BUG_ON()s. With the line info available, the expressions that trigger a bug are pretty unambiguous, but since we would print the parameters anyway we can as well do so before a possible panic to quickly deduce what went wrong without decoding. Hannes --- Subject: bootmem: print request details before BUG_ON(them) Moving the request details print-out before the sanity checks that might panic() enables us to analyse invalid requests without having access to the line information of the stack dump. Signed-off-by: Johannes Weiner <hannes@cmpxchg.org> --- diff --git a/mm/bootmem.c b/mm/bootmem.c index ac5a891..51a0ccf 100644 --- a/mm/bootmem.c +++ b/mm/bootmem.c @@ -435,6 +435,10 @@ static void * __init alloc_bootmem_core(struct bootmem_data *bdata, unsigned long fallback = 0; unsigned long min, max, start, sidx, midx, step; + bdebug("nid=%td size=%lx [%lu pages] align=%lx goal=%lx limit=%lx\n", + bdata - bootmem_node_data, size, PAGE_ALIGN(size) >> PAGE_SHIFT, + align, goal, limit); + BUG_ON(!size); BUG_ON(align & (align - 1)); BUG_ON(limit && goal + size > limit); @@ -442,10 +446,6 @@ static void * __init alloc_bootmem_core(struct bootmem_data *bdata, if (!bdata->node_bootmem_map) return NULL; - bdebug("nid=%td size=%lx [%lu pages] align=%lx goal=%lx limit=%lx\n", - bdata - bootmem_node_data, size, PAGE_ALIGN(size) >> PAGE_SHIFT, - align, goal, limit); - min = bdata->node_min_pfn; max = bdata->node_low_pfn; ^ permalink raw reply related [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-05 9:26 ` Johannes Weiner @ 2009-01-05 13:08 ` Andi Kleen 2009-01-05 14:51 ` Jiri Slaby 2009-01-05 14:51 ` Jiri Slaby 1 sibling, 1 reply; 63+ messages in thread From: Andi Kleen @ 2009-01-05 13:08 UTC (permalink / raw) To: Johannes Weiner Cc: Robert Hancock, linux-kernel, david, Andi Kleen, Andrew Morton On Mon, Jan 05, 2009 at 10:26:19AM +0100, Johannes Weiner wrote: > On Fri, Jan 02, 2009 at 02:57:17PM -0600, Robert Hancock wrote: > > Cyrill Gorcunov wrote: > > > > > >Here is a new picture if someone would like to jump into > > >the bug handling > > > > > > http://linux.lang.hm/linux/IMG00033.jpg > > > > alloc_bootmem_core is a reasonably big function, it would be useful if > > we could track down what line it's blowing up on.. Can you try to find > > out what line that fault address (ffffffff8096452a in this crash) is on > > as described in Documentation/BUG-HUNTING, i.e. build with > > CONFIG_DEBUG_INFO enabled, run gdb on vmlinux and do: > > > > l *0xffffffff8096452a > > He has booted with bootmem debugging output. Given that the bdebug() > describing the request wasn't hit yet, it must be one of the BUG_ON()s > (or bdata is NULL). BUG_ONs with early exceptions are always a big annoyance. I did an EARLY_BUG_ON() infrastructure some time ago, but ended up not submitting it because the BUG_ONs I wanted it for originally disappeared before submission. It would probably be a good idea to convert the bootmem bugs over to that. -Andi --- Add EARLY_BUG_ON infrastructure EARLY_BUG_ON is larger than BUG_ON, but it works before traps_init and always outputs the line number without having to decode addresses from the early exception handler. It always panics. Shouldn't be used when multiple CPUs are active because it makes no attempt to stop the others. Signed-off-by: Andi Kleen <ak@linux.intel.com> --- arch/x86/include/asm/bug.h | 11 +++++++++++ arch/x86/kernel/early_printk.c | 7 +++++++ include/linux/bug.h | 5 +++++ 3 files changed, 23 insertions(+) Index: linux-2.6.28-test/arch/x86/include/asm/bug.h =================================================================== --- linux-2.6.28-test.orig/arch/x86/include/asm/bug.h 2008-10-24 13:34:40.000000000 +0200 +++ linux-2.6.28-test/arch/x86/include/asm/bug.h 2009-01-05 13:47:02.000000000 +0100 @@ -33,6 +33,17 @@ } while (0) #endif +extern void early_bug(char *file, int line) __attribute__((noreturn)); + +/* All BUG_ONs before console_init should be EARLY_BUG_ONs. */ +#define EARLY_BUG() early_bug(__FILE__, __LINE__) +#define EARLY_BUG_ON(x) do { if (unlikely(!(x))) EARLY_BUG(); } while (0) + +#else + +#define EARLY_BUG() do {} while(0) +#define EARLY_BUG_ON(x) do {} while(0) + #endif /* !CONFIG_BUG */ #include <asm-generic/bug.h> Index: linux-2.6.28-test/arch/x86/kernel/early_printk.c =================================================================== --- linux-2.6.28-test.orig/arch/x86/kernel/early_printk.c 2008-10-24 13:34:40.000000000 +0200 +++ linux-2.6.28-test/arch/x86/kernel/early_printk.c 2009-01-05 13:48:46.000000000 +0100 @@ -934,6 +934,13 @@ va_end(ap); } +void early_bug(char *file, int line) +{ + early_printk("PANIC: Early BUG at %s:%d\n", file, line); + printk("PANIC: Early BUG at %s:%d\n", file, line); + for (;;) + cpu_relax(); +} static int __init setup_early_printk(char *buf) { Index: linux-2.6.28-test/include/linux/bug.h =================================================================== --- linux-2.6.28-test.orig/include/linux/bug.h 2008-07-05 14:11:02.000000000 +0200 +++ linux-2.6.28-test/include/linux/bug.h 2009-01-05 13:49:32.000000000 +0100 @@ -47,4 +47,9 @@ static inline void module_bug_cleanup(struct module *mod) {} #endif /* CONFIG_GENERIC_BUG */ + +#ifndef EARLY_BUG_ON +#define EARLY_BUG_ON(x) BUG_ON(x) +#endif + #endif /* _LINUX_BUG_H */ ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-05 13:08 ` Andi Kleen @ 2009-01-05 14:51 ` Jiri Slaby 2009-01-05 15:01 ` Cyrill Gorcunov 0 siblings, 1 reply; 63+ messages in thread From: Jiri Slaby @ 2009-01-05 14:51 UTC (permalink / raw) To: Andi Kleen Cc: Johannes Weiner, Robert Hancock, linux-kernel, david, Andrew Morton On 01/05/2009 02:08 PM, Andi Kleen wrote: > +#define EARLY_BUG_ON(x) do { if (unlikely(!(x))) EARLY_BUG(); } while (0) I think unintentionally inverted logic. > +#define EARLY_BUG_ON(x) do {} while(0) Shouldn't be x referenced here? ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-05 14:51 ` Jiri Slaby @ 2009-01-05 15:01 ` Cyrill Gorcunov 2009-01-05 15:14 ` Jiri Slaby 0 siblings, 1 reply; 63+ messages in thread From: Cyrill Gorcunov @ 2009-01-05 15:01 UTC (permalink / raw) To: Jiri Slaby Cc: Andi Kleen, Johannes Weiner, Robert Hancock, linux-kernel, david, Andrew Morton [Jiri Slaby - Mon, Jan 05, 2009 at 03:51:26PM +0100] | On 01/05/2009 02:08 PM, Andi Kleen wrote: | > +#define EARLY_BUG_ON(x) do { if (unlikely(!(x))) EARLY_BUG(); } while (0) | | I think unintentionally inverted logic. just second ! is missed :) | | > +#define EARLY_BUG_ON(x) do {} while(0) | | Shouldn't be x referenced here? | but for what? - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-05 15:01 ` Cyrill Gorcunov @ 2009-01-05 15:14 ` Jiri Slaby 2009-01-05 15:30 ` Cyrill Gorcunov 0 siblings, 1 reply; 63+ messages in thread From: Jiri Slaby @ 2009-01-05 15:14 UTC (permalink / raw) To: Cyrill Gorcunov Cc: Andi Kleen, Johannes Weiner, Robert Hancock, linux-kernel, david, Andrew Morton On 01/05/2009 04:01 PM, Cyrill Gorcunov wrote: > [Jiri Slaby - Mon, Jan 05, 2009 at 03:51:26PM +0100] > | On 01/05/2009 02:08 PM, Andi Kleen wrote: > | > +#define EARLY_BUG_ON(x) do { if (unlikely(!(x))) EARLY_BUG(); } while (0) > | > | I think unintentionally inverted logic. > > just second ! is missed :) None is needed, two '!' are added in the macro itself while it passes the parameter to the builtin. > | > | > +#define EARLY_BUG_ON(x) do {} while(0) > | > | Shouldn't be x referenced here? > | > > but for what? I know, core devs are sane, but e.g. for reasons such as {'a' is used here already} EARLY_BUG_ON(!(a = readl(...))) {use 'a' again} to stay on the safe side. ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-05 15:14 ` Jiri Slaby @ 2009-01-05 15:30 ` Cyrill Gorcunov 2009-01-05 15:39 ` Jiri Slaby 0 siblings, 1 reply; 63+ messages in thread From: Cyrill Gorcunov @ 2009-01-05 15:30 UTC (permalink / raw) To: Jiri Slaby Cc: Andi Kleen, Johannes Weiner, Robert Hancock, linux-kernel, david, Andrew Morton [Jiri Slaby - Mon, Jan 05, 2009 at 04:14:12PM +0100] | On 01/05/2009 04:01 PM, Cyrill Gorcunov wrote: | > [Jiri Slaby - Mon, Jan 05, 2009 at 03:51:26PM +0100] | > | On 01/05/2009 02:08 PM, Andi Kleen wrote: | > | > +#define EARLY_BUG_ON(x) do { if (unlikely(!(x))) EARLY_BUG(); } while (0) | > | | > | I think unintentionally inverted logic. | > | > just second ! is missed :) | | None is needed, two '!' are added in the macro itself while it passes the | parameter to the builtin. ah, yep :) | | > | | > | > +#define EARLY_BUG_ON(x) do {} while(0) | > | | > | Shouldn't be x referenced here? | > | | > | > but for what? | | I know, core devs are sane, but e.g. for reasons such as | | {'a' is used here already} | EARLY_BUG_ON(!(a = readl(...))) | {use 'a' again} | | to stay on the safe side. | I wouldn't populate this style Jiri. It become more complicated as it should to be, agreed? - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-05 15:30 ` Cyrill Gorcunov @ 2009-01-05 15:39 ` Jiri Slaby 2009-01-05 15:42 ` Cyrill Gorcunov 0 siblings, 1 reply; 63+ messages in thread From: Jiri Slaby @ 2009-01-05 15:39 UTC (permalink / raw) To: Cyrill Gorcunov Cc: Andi Kleen, Johannes Weiner, Robert Hancock, linux-kernel, david, Andrew Morton On 01/05/2009 04:30 PM, Cyrill Gorcunov wrote: > [Jiri Slaby - Mon, Jan 05, 2009 at 04:14:12PM +0100] > | On 01/05/2009 04:01 PM, Cyrill Gorcunov wrote: > | > [Jiri Slaby - Mon, Jan 05, 2009 at 03:51:26PM +0100] > | > | On 01/05/2009 02:08 PM, Andi Kleen wrote: > | > | > +#define EARLY_BUG_ON(x) do {} while(0) > | > | > | > | Shouldn't be x referenced here? > | > | > | > > | > but for what? > | > | I know, core devs are sane, but e.g. for reasons such as > | > | {'a' is used here already} > | EARLY_BUG_ON(!(a = readl(...))) > | {use 'a' again} > | > | to stay on the safe side. > > I wouldn't populate this style Jiri. It become more complicated > as it should to be, agreed? No, I tend to disagree. Macros should evaluate argument(s) the same no matter what is in .config. ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-05 15:39 ` Jiri Slaby @ 2009-01-05 15:42 ` Cyrill Gorcunov 0 siblings, 0 replies; 63+ messages in thread From: Cyrill Gorcunov @ 2009-01-05 15:42 UTC (permalink / raw) To: Jiri Slaby Cc: Andi Kleen, Johannes Weiner, Robert Hancock, linux-kernel, david, Andrew Morton [Jiri Slaby - Mon, Jan 05, 2009 at 04:39:07PM +0100] ... | > | I know, core devs are sane, but e.g. for reasons such as | > | | > | {'a' is used here already} | > | EARLY_BUG_ON(!(a = readl(...))) | > | {use 'a' again} | > | | > | to stay on the safe side. | > | > I wouldn't populate this style Jiri. It become more complicated | > as it should to be, agreed? | | No, I tend to disagree. Macros should evaluate argument(s) the same no matter | what is in .config. | I see what you mean (now) -- and you're right! - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2009-01-05 9:26 ` Johannes Weiner 2009-01-05 13:08 ` Andi Kleen @ 2009-01-05 14:51 ` Jiri Slaby 1 sibling, 0 replies; 63+ messages in thread From: Jiri Slaby @ 2009-01-05 14:51 UTC (permalink / raw) To: Johannes Weiner Cc: Robert Hancock, linux-kernel, david, Andi Kleen, Andrew Morton On 01/05/2009 10:26 AM, Johannes Weiner wrote: > (or bdata is NULL). Confirmed, see http://lkml.org/lkml/2009/1/3/204 ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-31 18:30 ` Cyrill Gorcunov 2008-12-31 19:50 ` Andi Kleen @ 2008-12-31 20:07 ` david 2008-12-31 19:12 ` Cyrill Gorcunov 1 sibling, 1 reply; 63+ messages in thread From: david @ 2008-12-31 20:07 UTC (permalink / raw) To: Cyrill Gorcunov; +Cc: Andi Kleen, linux-kernel On Wed, 31 Dec 2008, Cyrill Gorcunov wrote: > [david@lang.hm - Wed, Dec 31, 2008 at 11:12:12AM -0800] >> On Wed, 31 Dec 2008, Cyrill Gorcunov wrote: >> >>> [david@lang.hm - Tue, Dec 30, 2008 at 05:39:29PM -0800] >>>> On Wed, 31 Dec 2008, Andi Kleen wrote: >>>> >>>>> david@lang.hm writes: >>>>>> >>>>>> doing a grep through System.map for the address that appears in the >>>>>> error returns nothing >>>>> >>>>> This might be obvious, but you can't grep directly for these addresses >>>>> because System.map contains the starting addresses of functions only >>>>> and normally the reported address is somewhere in the middle of a >>>>> function. So you instead have to look for the highest number lower or equal >>>>> the address from the exception. >>>> >>>> thanks, this was not obvious to me >>>> >>>> the -2 error maps to >>>> >>>> ffffffff8099e4c1 T free_bootmem_node >>>> ffffffff8099e4e5 t alloc_bootmem_core >>>> ffffffff8099e774 t ___alloc_bootmem_nopanic >>>> >>>> >>>> the first error maps to >>>> >>>> ffffffff809c2de4 T free_bootmem_node >>>> ffffffff809c2e08 t alloc_bootmem_core >>>> ffffffff809c3097 t ___alloc_bootmem_nopanic >>>> >>>> >>>> so it looks like this is in alloc_bootmem_core in both cases. >>>> >>>> David Lang >>>> >>> >>> Along with Andi's proposed earlyprintk=vga I think >>> bootmem_debug option could be usefull here too. >> >> adding bootmem_debug creates so much additonal output that the oops >> scrolls off the screen (except the last 'paragraph' of it) >> >> it looks like it's individual items being allocated (trying to scan it as >> it scrolled by) > > on the picture you sent me i noticed the message > "Your memory is not aligned you need to rebuild your > kernel with bigger NODEMAP SIZE shift=20" and then > srat code complains about "No NUMA code hash function found" > which looks a bit scary. Btw, could you post this picture > on some public resource so NUMA people could check it? http://linux.lang.hm/linux/IMG00030.jpg I'll try rebuilding with a bigger nodemap size and let you know David Lang ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-31 20:07 ` david @ 2008-12-31 19:12 ` Cyrill Gorcunov 2008-12-31 21:18 ` david 0 siblings, 1 reply; 63+ messages in thread From: Cyrill Gorcunov @ 2008-12-31 19:12 UTC (permalink / raw) To: david; +Cc: Andi Kleen, linux-kernel [david@lang.hm - Wed, Dec 31, 2008 at 12:07:33PM -0800] > On Wed, 31 Dec 2008, Cyrill Gorcunov wrote: > >> [david@lang.hm - Wed, Dec 31, 2008 at 11:12:12AM -0800] >>> On Wed, 31 Dec 2008, Cyrill Gorcunov wrote: >>> >>>> [david@lang.hm - Tue, Dec 30, 2008 at 05:39:29PM -0800] >>>>> On Wed, 31 Dec 2008, Andi Kleen wrote: >>>>> >>>>>> david@lang.hm writes: >>>>>>> >>>>>>> doing a grep through System.map for the address that appears in the >>>>>>> error returns nothing >>>>>> >>>>>> This might be obvious, but you can't grep directly for these addresses >>>>>> because System.map contains the starting addresses of functions only >>>>>> and normally the reported address is somewhere in the middle of a >>>>>> function. So you instead have to look for the highest number lower or equal >>>>>> the address from the exception. >>>>> >>>>> thanks, this was not obvious to me >>>>> >>>>> the -2 error maps to >>>>> >>>>> ffffffff8099e4c1 T free_bootmem_node >>>>> ffffffff8099e4e5 t alloc_bootmem_core >>>>> ffffffff8099e774 t ___alloc_bootmem_nopanic >>>>> >>>>> >>>>> the first error maps to >>>>> >>>>> ffffffff809c2de4 T free_bootmem_node >>>>> ffffffff809c2e08 t alloc_bootmem_core >>>>> ffffffff809c3097 t ___alloc_bootmem_nopanic >>>>> >>>>> >>>>> so it looks like this is in alloc_bootmem_core in both cases. >>>>> >>>>> David Lang >>>>> >>>> >>>> Along with Andi's proposed earlyprintk=vga I think >>>> bootmem_debug option could be usefull here too. >>> >>> adding bootmem_debug creates so much additonal output that the oops >>> scrolls off the screen (except the last 'paragraph' of it) >>> >>> it looks like it's individual items being allocated (trying to scan it as >>> it scrolled by) >> >> on the picture you sent me i noticed the message >> "Your memory is not aligned you need to rebuild your >> kernel with bigger NODEMAP SIZE shift=20" and then >> srat code complains about "No NUMA code hash function found" >> which looks a bit scary. Btw, could you post this picture >> on some public resource so NUMA people could check it? > > http://linux.lang.hm/linux/IMG00030.jpg > > I'll try rebuilding with a bigger nodemap size and let you know > > David Lang > also you could just pass numa=off and check if it help. (even if it help it would not mean that problem are gone but become hidden) - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-31 19:12 ` Cyrill Gorcunov @ 2008-12-31 21:18 ` david 2008-12-31 20:23 ` Cyrill Gorcunov 0 siblings, 1 reply; 63+ messages in thread From: david @ 2008-12-31 21:18 UTC (permalink / raw) To: Cyrill Gorcunov; +Cc: Andi Kleen, linux-kernel On Wed, 31 Dec 2008, Cyrill Gorcunov wrote: > [david@lang.hm - Wed, Dec 31, 2008 at 12:07:33PM -0800] >> On Wed, 31 Dec 2008, Cyrill Gorcunov wrote: >> >>> [david@lang.hm - Wed, Dec 31, 2008 at 11:12:12AM -0800] >>>> On Wed, 31 Dec 2008, Cyrill Gorcunov wrote: >>>> >>>>> [david@lang.hm - Tue, Dec 30, 2008 at 05:39:29PM -0800] >>>>>> >>>>>> so it looks like this is in alloc_bootmem_core in both cases. >>>>>> >>>>>> David Lang >>>>>> >>>>> >>>>> Along with Andi's proposed earlyprintk=vga I think >>>>> bootmem_debug option could be usefull here too. >>>> >>>> adding bootmem_debug creates so much additonal output that the oops >>>> scrolls off the screen (except the last 'paragraph' of it) >>>> >>>> it looks like it's individual items being allocated (trying to scan it as >>>> it scrolled by) >>> >>> on the picture you sent me i noticed the message >>> "Your memory is not aligned you need to rebuild your >>> kernel with bigger NODEMAP SIZE shift=20" and then >>> srat code complains about "No NUMA code hash function found" >>> which looks a bit scary. Btw, could you post this picture >>> on some public resource so NUMA people could check it? >> >> http://linux.lang.hm/linux/IMG00030.jpg >> >> I'll try rebuilding with a bigger nodemap size and let you know >> >> David Lang >> > > also you could just pass numa=off and check if it help. > (even if it help it would not mean that problem are gone > but become hidden) with numa=off the system looks like it gets a bit further http://linux.lang.hm/linux/IMG00031.jpg this is with framebuffer disabled, earlyprintk=vga bootmem_debug numa=off David Lang ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-31 21:18 ` david @ 2008-12-31 20:23 ` Cyrill Gorcunov 2008-12-31 20:27 ` Cyrill Gorcunov 0 siblings, 1 reply; 63+ messages in thread From: Cyrill Gorcunov @ 2008-12-31 20:23 UTC (permalink / raw) To: david; +Cc: Andi Kleen, linux-kernel [david@lang.hm - Wed, Dec 31, 2008 at 01:18:25PM -0800] > On Wed, 31 Dec 2008, Cyrill Gorcunov wrote: > >> [david@lang.hm - Wed, Dec 31, 2008 at 12:07:33PM -0800] >>> On Wed, 31 Dec 2008, Cyrill Gorcunov wrote: >>> >>>> [david@lang.hm - Wed, Dec 31, 2008 at 11:12:12AM -0800] >>>>> On Wed, 31 Dec 2008, Cyrill Gorcunov wrote: >>>>> >>>>>> [david@lang.hm - Tue, Dec 30, 2008 at 05:39:29PM -0800] >>>>>>> >>>>>>> so it looks like this is in alloc_bootmem_core in both cases. >>>>>>> >>>>>>> David Lang >>>>>>> >>>>>> >>>>>> Along with Andi's proposed earlyprintk=vga I think >>>>>> bootmem_debug option could be usefull here too. >>>>> >>>>> adding bootmem_debug creates so much additonal output that the oops >>>>> scrolls off the screen (except the last 'paragraph' of it) >>>>> >>>>> it looks like it's individual items being allocated (trying to scan it as >>>>> it scrolled by) >>>> >>>> on the picture you sent me i noticed the message >>>> "Your memory is not aligned you need to rebuild your >>>> kernel with bigger NODEMAP SIZE shift=20" and then >>>> srat code complains about "No NUMA code hash function found" >>>> which looks a bit scary. Btw, could you post this picture >>>> on some public resource so NUMA people could check it? >>> >>> http://linux.lang.hm/linux/IMG00030.jpg >>> >>> I'll try rebuilding with a bigger nodemap size and let you know >>> >>> David Lang >>> >> >> also you could just pass numa=off and check if it help. >> (even if it help it would not mean that problem are gone >> but become hidden) > > with numa=off the system looks like it gets a bit further > > http://linux.lang.hm/linux/IMG00031.jpg > > this is with framebuffer disabled, earlyprintk=vga bootmem_debug numa=off > > David Lang > Thanks David, if I recognize correctly now it fails at vfs_caches_init. hmm... - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-31 20:23 ` Cyrill Gorcunov @ 2008-12-31 20:27 ` Cyrill Gorcunov 2008-12-31 22:30 ` Cyrill Gorcunov 0 siblings, 1 reply; 63+ messages in thread From: Cyrill Gorcunov @ 2008-12-31 20:27 UTC (permalink / raw) To: david, Andi Kleen, linux-kernel [Cyrill Gorcunov - Wed, Dec 31, 2008 at 11:23:46PM +0300] ... | >> | >> also you could just pass numa=off and check if it help. | >> (even if it help it would not mean that problem are gone | >> but become hidden) | > | > with numa=off the system looks like it gets a bit further | > | > http://linux.lang.hm/linux/IMG00031.jpg | > | > this is with framebuffer disabled, earlyprintk=vga bootmem_debug numa=off | > | > David Lang | > | | Thanks David, if I recognize correctly now it fails at | vfs_caches_init. hmm... | | - Cyrill - no suprises - vfs_caches_init uses SLAB_PANIC and since we seems to have "memory related" problems earlier now we've been catched explicitly by slab code. - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
* Re: early exception error 2008-12-31 20:27 ` Cyrill Gorcunov @ 2008-12-31 22:30 ` Cyrill Gorcunov 0 siblings, 0 replies; 63+ messages in thread From: Cyrill Gorcunov @ 2008-12-31 22:30 UTC (permalink / raw) To: david, Andi Kleen, linux-kernel [Cyrill Gorcunov - Wed, Dec 31, 2008 at 11:27:44PM +0300] ... | | Thanks David, if I recognize correctly now it fails at | | vfs_caches_init. hmm... | | | | - Cyrill - | | no suprises - vfs_caches_init uses SLAB_PANIC and since | we seems to have "memory related" problems earlier now | we've been catched explicitly by slab code. | | - Cyrill - on the other hand I think we would have different Oops form here if it would really be slab panic... checking. - Cyrill - ^ permalink raw reply [flat|nested] 63+ messages in thread
end of thread, other threads:[~2009-01-07 6:47 UTC | newest]
Thread overview: 63+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <alpine.DEB.1.10.0901021029010.21408@asgard.lang.hm>
[not found] ` <20090102173441.GC5372@localhost>
[not found] ` <alpine.DEB.1.10.0901021044460.21408@asgard.lang.hm>
[not found] ` <20090102174845.GD5372@localhost>
[not found] ` <20090102175226.GE5372@localhost>
[not found] ` <alpine.DEB.1.10.0901021131210.21567@asgard.lang.hm>
[not found] ` <20090102203058.GH5372@localhost>
[not found] ` <alpine.DEB.1.10.0901030823190.23262@asgard.lang.hm>
[not found] ` <20090103161052.GB11093@localhost>
[not found] ` <alpine.DEB.1.10.0901031118450.23262@asgard.lang.hm>
2009-01-03 19:03 ` early exception error Cyrill Gorcunov
2009-01-03 21:24 ` Cyrill Gorcunov
2009-01-04 0:24 ` Jiri Slaby
2009-01-04 0:59 ` Andi Kleen
2009-01-04 10:32 ` Cyrill Gorcunov
2009-01-04 11:11 ` Cyrill Gorcunov
2009-01-04 11:29 ` Cyrill Gorcunov
2009-01-04 12:23 ` Jiri Slaby
2009-01-05 22:20 ` david
2009-01-05 21:25 ` Cyrill Gorcunov
2009-01-05 23:20 ` david
2009-01-06 8:01 ` Cyrill Gorcunov
2009-01-05 21:55 ` Yinghai Lu
2009-01-05 22:07 ` Yinghai Lu
2009-01-05 23:20 ` david
2009-01-06 0:50 ` david
2009-01-06 0:54 ` david
2009-01-06 0:02 ` Yinghai Lu
2009-01-06 1:22 ` david
2009-01-06 0:25 ` Yinghai Lu
2009-01-06 2:03 ` david
2009-01-06 1:06 ` Yinghai Lu
2009-01-06 5:29 ` david
2009-01-06 6:09 ` Yinghai Lu
2009-01-07 7:49 ` david
2009-01-05 23:18 ` david
2009-01-05 22:29 ` Yinghai Lu
2009-01-05 22:31 ` Yinghai Lu
2008-12-30 22:21 david
2008-12-30 21:26 ` Cyrill Gorcunov
2008-12-30 22:31 ` david
2008-12-30 21:41 ` Cyrill Gorcunov
2008-12-30 22:48 ` david
2008-12-31 0:25 ` Andi Kleen
2008-12-31 1:39 ` david
2008-12-31 1:25 ` Andi Kleen
2008-12-31 9:38 ` Cyrill Gorcunov
2008-12-31 19:12 ` david
2008-12-31 18:30 ` Cyrill Gorcunov
2008-12-31 19:50 ` Andi Kleen
2008-12-31 20:20 ` Cyrill Gorcunov
2008-12-31 20:59 ` david
2009-01-01 4:17 ` Andi Kleen
2009-01-01 6:17 ` david
2009-01-01 14:02 ` Andi Kleen
2009-01-02 18:21 ` david
2009-01-02 17:24 ` Cyrill Gorcunov
2009-01-02 20:57 ` Robert Hancock
2009-01-05 9:26 ` Johannes Weiner
2009-01-05 13:08 ` Andi Kleen
2009-01-05 14:51 ` Jiri Slaby
2009-01-05 15:01 ` Cyrill Gorcunov
2009-01-05 15:14 ` Jiri Slaby
2009-01-05 15:30 ` Cyrill Gorcunov
2009-01-05 15:39 ` Jiri Slaby
2009-01-05 15:42 ` Cyrill Gorcunov
2009-01-05 14:51 ` Jiri Slaby
2008-12-31 20:07 ` david
2008-12-31 19:12 ` Cyrill Gorcunov
2008-12-31 21:18 ` david
2008-12-31 20:23 ` Cyrill Gorcunov
2008-12-31 20:27 ` Cyrill Gorcunov
2008-12-31 22:30 ` Cyrill Gorcunov
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox