Re: Linux 2.6.24.1 - kernel does not boot; IRQ trouble?

2008-02-22 Thread Kay Sievers
On Tue, Feb 19, 2008 at 9:47 AM, Kay Sievers [EMAIL PROTECTED] wrote:
 On Feb 18, 2008 9:06 PM, Stephen Hemminger [EMAIL PROTECTED] wrote:
   On Mon, 18 Feb 2008 19:42:25 + (GMT)
   Chris Rankin [EMAIL PROTECTED] wrote:
  
--- Stephen Hemminger [EMAIL PROTECTED] wrote:
   sysfs: duplicate filename 'bridge' can not be created
   WARNING: at fs/sysfs/dir.c:424 sysfs_add_one()
   Pid: 1, comm: swapper Not tainted 2.6.24.1 #1
[c0105020] show_trace_log_lvl+0x1a/0x2f
[c0105990] show_trace+0x12/0x14
[c010613d] dump_stack+0x6c/0x72
[c01991bf] sysfs_add_one+0x57/0xbc
[c0199e41] sysfs_create_link+0xc2/0x10d
[c01bae9a] pci_bus_add_devices+0xbd/0x103
[c034016c] pci_legacy_init+0x56/0xe3
[c03274e1] kernel_init+0x157/0x2c3
[c0104c83] kernel_thread_helper+0x7/0x10
===
   pci :00:01.0: Error creating sysfs bridge symlink, 
 continuing...
   sysfs: duplicate filename 'bridge' can not be created
   WARNING: at fs/sysfs/dir.c:424 sysfs_add_one()

Greg,
it seems that:
  arch/x86/pci/legacy.c :: pci_legacy_init()

tries to create already created bridge symlinks in 2.6.24. So we
discover the same devices twice? Can this be a reason for the hang?

I guess in 2.6.25, the warning is gone with:
  commit fd7d1ced29e5beb88c9068801da7a362606d8273
  Author: Greg Kroah-Hartman [EMAIL PROTECTED]
  Date:   Tue May 22 22:47:54 2007 -0400

  PCI: make pci_bus a struct device

  This moves the pci_bus class device to be a real struct device and at
  the same time, place it in the device tree in the correct location.
  Note, the old bridge symlink is now gone.

Thanks,
Kay
-
To unsubscribe from this list: send the line unsubscribe linux-acpi in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: Linux 2.6.24.1 - kernel does not boot; IRQ trouble?

2008-02-22 Thread Chris Rankin
--- Kay Sievers [EMAIL PROTECTED] wrote:
 Greg,
 it seems that:
   arch/x86/pci/legacy.c :: pci_legacy_init()
 
 tries to create already created bridge symlinks in 2.6.24. So we
 discover the same devices twice? Can this be a reason for the hang?

No, it can't be because it's *not* hanging in this configuration :-). It hangs 
when I *don't* add
the acpi=noirq option, whereas here it's just adding noise to the dmesg log. 
(I'm guessing Linux
doesn't call pci_legacy_init() when ACPI takes charge of the IRQs.)

Cheers,
Chris



  __
Sent from Yahoo! Mail.
A Smarter Inbox. http://uk.docs.yahoo.com/nowyoucan.html
-
To unsubscribe from this list: send the line unsubscribe linux-acpi in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: Linux 2.6.24.1 - kernel does not boot; IRQ trouble?

2008-02-19 Thread Kay Sievers
On Feb 18, 2008 9:06 PM, Stephen Hemminger
[EMAIL PROTECTED] wrote:
 On Mon, 18 Feb 2008 19:42:25 + (GMT)
 Chris Rankin [EMAIL PROTECTED] wrote:

  --- Stephen Hemminger [EMAIL PROTECTED] wrote:
 sysfs: duplicate filename 'bridge' can not be created
 WARNING: at fs/sysfs/dir.c:424 sysfs_add_one()
 Pid: 1, comm: swapper Not tainted 2.6.24.1 #1
  [c0105020] show_trace_log_lvl+0x1a/0x2f
  [c0105990] show_trace+0x12/0x14
  [c010613d] dump_stack+0x6c/0x72
  [c01991bf] sysfs_add_one+0x57/0xbc
  [c0199e41] sysfs_create_link+0xc2/0x10d
  [c01bae9a] pci_bus_add_devices+0xbd/0x103
  [c034016c] pci_legacy_init+0x56/0xe3
  [c03274e1] kernel_init+0x157/0x2c3
  [c0104c83] kernel_thread_helper+0x7/0x10
  ===
 pci :00:01.0: Error creating sysfs bridge symlink, continuing...
 sysfs: duplicate filename 'bridge' can not be created
 WARNING: at fs/sysfs/dir.c:424 sysfs_add_one()
 Pid: 1, comm: swapper Not tainted 2.6.24.1 #1
  [c0105020] show_trace_log_lvl+0x1a/0x2f
  [c0105990] show_trace+0x12/0x14
  [c010613d] dump_stack+0x6c/0x72
  [c01991bf] sysfs_add_one+0x57/0xbc
  [c0199e41] sysfs_create_link+0xc2/0x10d
  [c01bae9a] pci_bus_add_devices+0xbd/0x103
  [c01bae82] pci_bus_add_devices+0xa5/0x103
  [c034016c] pci_legacy_init+0x56/0xe3
  [c03274e1] kernel_init+0x157/0x2c3
  [c0104c83] kernel_thread_helper+0x7/0x10
  ===
   
I have a vague feeling that this was fixed, perhaps in 2.6.24.x?
  
   Never heard of this, what is the initialization script that causes this?
   Also do you have the SYSFS_DEPRECATED option configured? that caused 
   issues
   with regular network drivers.
 
  Yes, SYSFS_DEPRECATED is enabled. And the init scripts are from Fedora 8.

 There was a bug (fixed in 2.6.24) that had to do with sysfs_create_link
 and SYSFS_DEPRECATED probably there is a similar problem with directories.

Chris, could you enable CONFIG_DEBUG_KOBJECT=y, it might show what
objects try to claim the same name.

Thanks,
Kay
-
To unsubscribe from this list: send the line unsubscribe linux-acpi in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: Linux 2.6.24.1 - kernel does not boot; IRQ trouble?

2008-02-18 Thread Andrew Morton
On Sun, 17 Feb 2008 00:54:08 + (GMT) Chris Rankin [EMAIL PROTECTED] wrote:

 [Try this again, except this time I'll force the attachment as inline text!]
 
 Hi,
 
 I have managed to boot 2.6.24.1 on this machine, with the NMI watchdog 
 enabled, by using the
 acpi=noirq option. (There does seem to be some unhappiness with bridge 
 symlinks in sysfs,
 though.)
 
 ...

 sysfs: duplicate filename 'bridge' can not be created
 WARNING: at fs/sysfs/dir.c:424 sysfs_add_one()
 Pid: 1, comm: swapper Not tainted 2.6.24.1 #1
  [c0105020] show_trace_log_lvl+0x1a/0x2f
  [c0105990] show_trace+0x12/0x14
  [c010613d] dump_stack+0x6c/0x72
  [c01991bf] sysfs_add_one+0x57/0xbc
  [c0199e41] sysfs_create_link+0xc2/0x10d
  [c01bae9a] pci_bus_add_devices+0xbd/0x103
  [c034016c] pci_legacy_init+0x56/0xe3
  [c03274e1] kernel_init+0x157/0x2c3
  [c0104c83] kernel_thread_helper+0x7/0x10
  ===
 pci :00:01.0: Error creating sysfs bridge symlink, continuing...
 sysfs: duplicate filename 'bridge' can not be created
 WARNING: at fs/sysfs/dir.c:424 sysfs_add_one()
 Pid: 1, comm: swapper Not tainted 2.6.24.1 #1
  [c0105020] show_trace_log_lvl+0x1a/0x2f
  [c0105990] show_trace+0x12/0x14
  [c010613d] dump_stack+0x6c/0x72
  [c01991bf] sysfs_add_one+0x57/0xbc
  [c0199e41] sysfs_create_link+0xc2/0x10d
  [c01bae9a] pci_bus_add_devices+0xbd/0x103
  [c01bae82] pci_bus_add_devices+0xa5/0x103
  [c034016c] pci_legacy_init+0x56/0xe3
  [c03274e1] kernel_init+0x157/0x2c3
  [c0104c83] kernel_thread_helper+0x7/0x10
  ===

I have a vague feeling that this was fixed, perhaps in 2.6.24.x?
-
To unsubscribe from this list: send the line unsubscribe linux-acpi in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: Linux 2.6.24.1 - kernel does not boot; IRQ trouble?

2008-02-18 Thread Andrew Morton
On Sun, 17 Feb 2008 00:54:08 + (GMT) Chris Rankin [EMAIL PROTECTED] wrote:

 [Try this again, except this time I'll force the attachment as inline text!]
 
 Hi,
 
 I have managed to boot 2.6.24.1 on this machine, with the NMI watchdog 
 enabled, by using the
 acpi=noirq option. (There does seem to be some unhappiness with bridge 
 symlinks in sysfs,
 though.)
 

Is this a regression?  If so, which was the latest kernel version which
worked OK?

 NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory
 NFSD: starting 90-second grace period
 [drm] Initialized drm 1.1.0 20060810
 [drm] Initialized mga 3.2.1 20051102 on minor 0
 agpgart: Found an AGP 2.0 compliant device at :00:00.0.
 agpgart: Putting AGP V2 device at :00:00.0 into 4x mode
 agpgart: Putting AGP V2 device at :01:00.0 into 4x mode
 [drm] Initialized card for AGP DMA.
 

and here it hangs, I assume?

Please add initcall_debug to the kernel boot command line so we can see if
we can get a more precise idea of where it went wrong.

Do you believe that this hang is somehow caused by x86 NMI?  If so, why?

Thanks.
-
To unsubscribe from this list: send the line unsubscribe linux-acpi in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: Linux 2.6.24.1 - kernel does not boot; IRQ trouble?

2008-02-18 Thread Chris Rankin
--- Andrew Morton [EMAIL PROTECTED] wrote:
 and here it hangs, I assume?

Oops, I think you have misunderstood. The hang happens if I *don't* specify 
acpi=noirq, whereas in
this case I did. I have already reported the original hang under threads:

http://www.ussg.iu.edu/hypermail/linux/kernel/0802.0/0895.html
http://www.ussg.iu.edu/hypermail/linux/kernel/0802.0/0898.html

So I was actually reporting that I've *worked around* the hang here. The net 
result is that all my
PCI devices are now placed on IRQ 9, instead of IRQs 16, 17 18 and 19.

Cheers,
Chris



  ___
Support the World Aids Awareness campaign this month with Yahoo! For Good 
http://uk.promotions.yahoo.com/forgood/
-
To unsubscribe from this list: send the line unsubscribe linux-acpi in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: Linux 2.6.24.1 - kernel does not boot; IRQ trouble?

2008-02-18 Thread Chris Rankin
--- Andrew Morton [EMAIL PROTECTED] wrote:
  sysfs: duplicate filename 'bridge' can not be created
  WARNING: at fs/sysfs/dir.c:424 sysfs_add_one()
  Pid: 1, comm: swapper Not tainted 2.6.24.1 #1
   [c0105020] show_trace_log_lvl+0x1a/0x2f
   [c0105990] show_trace+0x12/0x14
   [c010613d] dump_stack+0x6c/0x72
   [c01991bf] sysfs_add_one+0x57/0xbc
   [c0199e41] sysfs_create_link+0xc2/0x10d
   [c01bae9a] pci_bus_add_devices+0xbd/0x103
   [c034016c] pci_legacy_init+0x56/0xe3
   [c03274e1] kernel_init+0x157/0x2c3
   [c0104c83] kernel_thread_helper+0x7/0x10
   ===
  pci :00:01.0: Error creating sysfs bridge symlink, continuing...
  sysfs: duplicate filename 'bridge' can not be created
  WARNING: at fs/sysfs/dir.c:424 sysfs_add_one()
  Pid: 1, comm: swapper Not tainted 2.6.24.1 #1
   [c0105020] show_trace_log_lvl+0x1a/0x2f
   [c0105990] show_trace+0x12/0x14
   [c010613d] dump_stack+0x6c/0x72
   [c01991bf] sysfs_add_one+0x57/0xbc
   [c0199e41] sysfs_create_link+0xc2/0x10d
   [c01bae9a] pci_bus_add_devices+0xbd/0x103
   [c01bae82] pci_bus_add_devices+0xa5/0x103
   [c034016c] pci_legacy_init+0x56/0xe3
   [c03274e1] kernel_init+0x157/0x2c3
   [c0104c83] kernel_thread_helper+0x7/0x10
   ===
 
 I have a vague feeling that this was fixed, perhaps in 2.6.24.x?

Obviously not in 2.6.24.1, and I thought that 2.6.24.2 just added the fix for 
the vmsplice
exploit. So unless 2.6.24.3 has been released...?

Cheers,
Chris



  ___
Support the World Aids Awareness campaign this month with Yahoo! For Good 
http://uk.promotions.yahoo.com/forgood/
-
To unsubscribe from this list: send the line unsubscribe linux-acpi in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: Linux 2.6.24.1 - kernel does not boot; IRQ trouble?

2008-02-18 Thread Stephen Hemminger
On Mon, 18 Feb 2008 05:00:49 -0800
Andrew Morton [EMAIL PROTECTED] wrote:

 On Sun, 17 Feb 2008 00:54:08 + (GMT) Chris Rankin [EMAIL PROTECTED] 
 wrote:
 
  [Try this again, except this time I'll force the attachment as inline text!]
  
  Hi,
  
  I have managed to boot 2.6.24.1 on this machine, with the NMI watchdog 
  enabled, by using the
  acpi=noirq option. (There does seem to be some unhappiness with bridge 
  symlinks in sysfs,
  though.)
  
  ...
 
  sysfs: duplicate filename 'bridge' can not be created
  WARNING: at fs/sysfs/dir.c:424 sysfs_add_one()
  Pid: 1, comm: swapper Not tainted 2.6.24.1 #1
   [c0105020] show_trace_log_lvl+0x1a/0x2f
   [c0105990] show_trace+0x12/0x14
   [c010613d] dump_stack+0x6c/0x72
   [c01991bf] sysfs_add_one+0x57/0xbc
   [c0199e41] sysfs_create_link+0xc2/0x10d
   [c01bae9a] pci_bus_add_devices+0xbd/0x103
   [c034016c] pci_legacy_init+0x56/0xe3
   [c03274e1] kernel_init+0x157/0x2c3
   [c0104c83] kernel_thread_helper+0x7/0x10
   ===
  pci :00:01.0: Error creating sysfs bridge symlink, continuing...
  sysfs: duplicate filename 'bridge' can not be created
  WARNING: at fs/sysfs/dir.c:424 sysfs_add_one()
  Pid: 1, comm: swapper Not tainted 2.6.24.1 #1
   [c0105020] show_trace_log_lvl+0x1a/0x2f
   [c0105990] show_trace+0x12/0x14
   [c010613d] dump_stack+0x6c/0x72
   [c01991bf] sysfs_add_one+0x57/0xbc
   [c0199e41] sysfs_create_link+0xc2/0x10d
   [c01bae9a] pci_bus_add_devices+0xbd/0x103
   [c01bae82] pci_bus_add_devices+0xa5/0x103
   [c034016c] pci_legacy_init+0x56/0xe3
   [c03274e1] kernel_init+0x157/0x2c3
   [c0104c83] kernel_thread_helper+0x7/0x10
   ===
 
 I have a vague feeling that this was fixed, perhaps in 2.6.24.x?

Never heard of this, what is the initialization script that causes this?
Also do you have the SYSFS_DEPRECATED option configured? that caused issues
with regular network drivers.
-
To unsubscribe from this list: send the line unsubscribe linux-acpi in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: Linux 2.6.24.1 - kernel does not boot; IRQ trouble?

2008-02-18 Thread Chris Rankin
--- Stephen Hemminger [EMAIL PROTECTED] wrote:
   sysfs: duplicate filename 'bridge' can not be created
   WARNING: at fs/sysfs/dir.c:424 sysfs_add_one()
   Pid: 1, comm: swapper Not tainted 2.6.24.1 #1
[c0105020] show_trace_log_lvl+0x1a/0x2f
[c0105990] show_trace+0x12/0x14
[c010613d] dump_stack+0x6c/0x72
[c01991bf] sysfs_add_one+0x57/0xbc
[c0199e41] sysfs_create_link+0xc2/0x10d
[c01bae9a] pci_bus_add_devices+0xbd/0x103
[c034016c] pci_legacy_init+0x56/0xe3
[c03274e1] kernel_init+0x157/0x2c3
[c0104c83] kernel_thread_helper+0x7/0x10
===
   pci :00:01.0: Error creating sysfs bridge symlink, continuing...
   sysfs: duplicate filename 'bridge' can not be created
   WARNING: at fs/sysfs/dir.c:424 sysfs_add_one()
   Pid: 1, comm: swapper Not tainted 2.6.24.1 #1
[c0105020] show_trace_log_lvl+0x1a/0x2f
[c0105990] show_trace+0x12/0x14
[c010613d] dump_stack+0x6c/0x72
[c01991bf] sysfs_add_one+0x57/0xbc
[c0199e41] sysfs_create_link+0xc2/0x10d
[c01bae9a] pci_bus_add_devices+0xbd/0x103
[c01bae82] pci_bus_add_devices+0xa5/0x103
[c034016c] pci_legacy_init+0x56/0xe3
[c03274e1] kernel_init+0x157/0x2c3
[c0104c83] kernel_thread_helper+0x7/0x10
===
  
  I have a vague feeling that this was fixed, perhaps in 2.6.24.x?
 
 Never heard of this, what is the initialization script that causes this?
 Also do you have the SYSFS_DEPRECATED option configured? that caused issues
 with regular network drivers.

Yes, SYSFS_DEPRECATED is enabled. And the init scripts are from Fedora 8.

Cheers,
Chris






  __
Sent from Yahoo! Mail - a smarter inbox http://uk.mail.yahoo.com

-
To unsubscribe from this list: send the line unsubscribe linux-acpi in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: Linux 2.6.24.1 - kernel does not boot; IRQ trouble?

2008-02-18 Thread Stephen Hemminger
On Mon, 18 Feb 2008 19:42:25 + (GMT)
Chris Rankin [EMAIL PROTECTED] wrote:

 --- Stephen Hemminger [EMAIL PROTECTED] wrote:
sysfs: duplicate filename 'bridge' can not be created
WARNING: at fs/sysfs/dir.c:424 sysfs_add_one()
Pid: 1, comm: swapper Not tainted 2.6.24.1 #1
 [c0105020] show_trace_log_lvl+0x1a/0x2f
 [c0105990] show_trace+0x12/0x14
 [c010613d] dump_stack+0x6c/0x72
 [c01991bf] sysfs_add_one+0x57/0xbc
 [c0199e41] sysfs_create_link+0xc2/0x10d
 [c01bae9a] pci_bus_add_devices+0xbd/0x103
 [c034016c] pci_legacy_init+0x56/0xe3
 [c03274e1] kernel_init+0x157/0x2c3
 [c0104c83] kernel_thread_helper+0x7/0x10
 ===
pci :00:01.0: Error creating sysfs bridge symlink, continuing...
sysfs: duplicate filename 'bridge' can not be created
WARNING: at fs/sysfs/dir.c:424 sysfs_add_one()
Pid: 1, comm: swapper Not tainted 2.6.24.1 #1
 [c0105020] show_trace_log_lvl+0x1a/0x2f
 [c0105990] show_trace+0x12/0x14
 [c010613d] dump_stack+0x6c/0x72
 [c01991bf] sysfs_add_one+0x57/0xbc
 [c0199e41] sysfs_create_link+0xc2/0x10d
 [c01bae9a] pci_bus_add_devices+0xbd/0x103
 [c01bae82] pci_bus_add_devices+0xa5/0x103
 [c034016c] pci_legacy_init+0x56/0xe3
 [c03274e1] kernel_init+0x157/0x2c3
 [c0104c83] kernel_thread_helper+0x7/0x10
 ===
   
   I have a vague feeling that this was fixed, perhaps in 2.6.24.x?
  
  Never heard of this, what is the initialization script that causes this?
  Also do you have the SYSFS_DEPRECATED option configured? that caused issues
  with regular network drivers.
 
 Yes, SYSFS_DEPRECATED is enabled. And the init scripts are from Fedora 8.

There was a bug (fixed in 2.6.24) that had to do with sysfs_create_link
and SYSFS_DEPRECATED probably there is a similar problem with directories. 

-
To unsubscribe from this list: send the line unsubscribe linux-acpi in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: Linux 2.6.24.1 - kernel does not boot; IRQ trouble?

2008-02-16 Thread Chris Rankin
[Try this again, except this time I'll force the attachment as inline text!]

Hi,

I have managed to boot 2.6.24.1 on this machine, with the NMI watchdog enabled, 
by using the
acpi=noirq option. (There does seem to be some unhappiness with bridge 
symlinks in sysfs,
though.)

Cheers,
Chris

Linux version 2.6.24.1 ([EMAIL PROTECTED]) (gcc version 4.1.2 20070925 (Red Hat 
4.1.2-33))
#1 SMP PREEMPT Fri Feb 8 22:41:10 GMT 2008
BIOS-provided physical RAM map:
 BIOS-e820:  - 0009fc00 (usable)
 BIOS-e820: 0009fc00 - 000a (reserved)
 BIOS-e820: 000f - 0010 (reserved)
 BIOS-e820: 0010 - 1ffeb000 (usable)
 BIOS-e820: 1ffeb000 - 1ffef000 (ACPI data)
 BIOS-e820: 1ffef000 - 1000 (reserved)
 BIOS-e820: 1000 - 2000 (ACPI NVS)
 BIOS-e820: fec0 - fec1 (reserved)
 BIOS-e820: fee0 - fee01000 (reserved)
 BIOS-e820: fff8 - 0001 (reserved)
511MB LOWMEM available.
Entering add_active_range(0, 0, 131051) 0 entries of 256 used
Zone PFN ranges:
  DMA 0 - 4096
  Normal   4096 -   131051
Movable zone start PFN for each node
early_node_map[1] active PFN ranges
0:0 -   131051
On node 0 totalpages: 131051
  DMA zone: 32 pages used for memmap
  DMA zone: 0 pages reserved
  DMA zone: 4064 pages, LIFO batch:0
  Normal zone: 991 pages used for memmap
  Normal zone: 125964 pages, LIFO batch:31
  Movable zone: 0 pages used for memmap
DMI 2.3 present.
ACPI: RSDP 000F7B40, 0014 (r0 ASUS  )
ACPI: RSDT 1FFEB000, 0030 (r1 ASUS   TUSL2-C  30303031 MSFT 31313031)
ACPI: FACP 1FFEB100, 0074 (r1 ASUS   TUSL2-C  30303031 MSFT 31313031)
ACPI: DSDT 1FFEB180, 39FA (r1   ASUS TUSL2-C  1000 MSFT  10B)
ACPI: FACS 1000, 0040
ACPI: BOOT 1FFEB040, 0028 (r1 ASUS   TUSL2-C  30303031 MSFT 31313031)
ACPI: APIC 1FFEB080, 005A (r1 ASUS   TUSL2-C  30303031 MSFT 31313031)
ACPI: PM-Timer IO Port: 0xe408
ACPI: Local APIC address 0xfee0
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Processor #0 6:8 APIC version 17
ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Allocating PCI resources starting at 3000 (gap: 2000:dec0)
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 130028
Kernel command line: ro root=LABEL=/ nmi_watchdog=1 video=matroxfb:vesa:0x11A
console=ttyS0,115200n8 console=tty0 acpi=noirq
Found and enabled local APIC!
mapped APIC to b000 (fee0)
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Initializing CPU#0
CPU 0 irqstacks, hard=c035f000 soft=c035b000
PID hash table entries: 2048 (order: 11, 8192 bytes)
Detected 1005.045 MHz processor.
Console: colour VGA+ 80x25
console [tty0] enabled
console [ttyS0] enabled
Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
Memory: 513484k/524204k available (1577k kernel code, 10128k reserved, 607k 
data, 196k init, 0k
highmem)
virtual kernel memory layout:
fixmap  : 0xfffb5000 - 0xf000   ( 296 kB)
vmalloc : 0xe080 - 0xfffb3000   ( 503 MB)
lowmem  : 0xc000 - 0xdffeb000   ( 511 MB)
  .init : 0xc0327000 - 0xc0358000   ( 196 kB)
  .data : 0xc028a7ca - 0xc03227c4   ( 607 kB)
  .text : 0xc010 - 0xc028a7ca   (1577 kB)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
SLUB: Genslabs=11, HWalign=32, Order=0-1, MinObjects=4, CPUs=1, Nodes=1
Calibrating delay using timer specific routine.. 2011.90 BogoMIPS (lpj=4023814)
Mount-cache hash table entries: 512
CPU: After generic identify, caps: 0383fbff     
 

CPU: L1 I cache: 16K, L1 D cache: 16K
CPU: L2 cache: 256K
CPU: After all inits, caps: 0383fbff   0040  
 

Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
Compat vDSO mapped to e000.
Checking 'hlt' instruction... OK.
SMP alternatives: switching to UP code
Freeing SMP alternatives: 9k freed
ACPI: Core revision 20070126
CPU0: Intel Pentium III (Coppermine) stepping 06
Leaving ESR disabled.
Total of 1 processors activated (2011.90 BogoMIPS).
Brought up 1 CPUs
net_namespace: 64 bytes
NET: Registered protocol family 16
ACPI: bus type pci registered
PCI: PCI BIOS revision 2.10 entry at 0xf0e30, last bus=3
PCI: Using configuration type 1
Setting up standard PCI resources
ACPI: EC: Look up EC in DSDT
ACPI: Interpreter enabled
ACPI: (supports S0 S1 S5)
ACPI: Using PIC for interrupt routing
ACPI: PCI Root Bridge [PCI0] (:00)
PCI quirk: region e400-e47f claimed by ICH4 ACPI/GPIO/TCO
PCI quirk: region ec00-ec3f claimed by ICH4 GPIO
PCI: Transparent bridge - :00:1e.0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT]
ACPI: PCI