Hi,
we got a bit further, Evgeny was able to get C-states working with
"nohz=off highres=off" boot parameters.
A short summary what has been found out that far:
- apic timer breaks on C2 or deeper
- noapictimer workaround helps to come a bit further, but results in sever
other errors (see comment #13)
- "nohz=off highres=off" works (tested on 2.6.25.4-8-pae and
2.6.22.17-0.1-default SUSE kernels)
- processor.max_cstate=1 works
- This affects AMD Mobile Semprons (at least 3500+ and 3600+)
The output of /proc/acp/processor/*/power without highres/nohz
looks promising:
states:
C1: type[C1] promotion[C2] demotion[--] latency[000]
usage[00000030] duration[00000000000000000000]
C2: type[C2] promotion[C3] demotion[C1] latency[005]
usage[00002135] duration[00000000000011279621]
*C3: type[C3] promotion[--] demotion[C2] latency[020]
usage[00034222] duration[00000000000228307174]
Also see bug:
https://bugzilla.novell.com/show_bug.cgi?id=396220
and some posts from Richard on the linux-acpi list.
This seem to be a mainline kernel regression since the nohz/highres
patches have been added.
I do not own such a machine myself (Richard, Evgeny, Uli (and Anvin?)
have such a machine and already helped to come that far).
Also the highres/nohz parts are a dark area to me... Any pointer how to
debug (or debug patches or patches to test), where to look at, etc. is
very much appreciated.
Thanks,
Thomas
Thomas Renninger wrote:
> - This affects AMD Mobile Semprons (at least 3500+ and 3600+)
>
> This seem to be a mainline kernel regression since the nohz/highres
> patches have been added.
> I do not own such a machine myself (Richard, Evgeny, Uli (and Anvin?)
> have such a machine and already helped to come that far).
'Fraid I don't. :(
-hpa
H. Peter Anvin wrote:
> Thomas Renninger wrote:
>> - This affects AMD Mobile Semprons (at least 3500+ and 3600+)
>>
>> This seem to be a mainline kernel regression since the nohz/highres
>> patches have been added.
>> I do not own such a machine myself (Richard, Evgeny, Uli (and Anvin?)
>> have such a machine and already helped to come that far).
>
> 'Fraid I don't. :(
>
> -hpa
>
I can help out as needed, just a work deadline I have to meet so I
haven't been able to dig further. Just point me in the direction and
I'll gladly be someones hands on the beastly machine :-)
Richard
This is against Andi's (ak) release branch,
hope that is ok...
Can this one be reviewed/added, pls.
Thanks,
Thomas
NO_HZ: Blacklist AMD Mobile Semprons 3500/3600 to not use no_hz by default
Tested-by: [email protected]
Signed-off-by: Thomas Renninger <[email protected]>
---
kernel/time/tick-sched.c | 31 +++++++++++++++++++++++++++++++
1 files changed, 31 insertions(+), 0 deletions(-)
diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c
index b854a89..bda0164 100644
--- a/kernel/time/tick-sched.c
+++ b/kernel/time/tick-sched.c
@@ -589,6 +589,32 @@ static enum hrtimer_restart tick_sched_timer(struct
hrtimer *timer)
return HRTIMER_RESTART;
}
+#if defined(CONFIG_X86) && defined(CONFIG_NO_HZ)
+static __init int is_nohz_broken(void)
+{
+ struct cpuinfo_x86 *c = &cpu_data(0);
+ /* AMD Sempron Mobile 3500+ and 3600+ are known to break
+ * with tickless idle
+ */
+ if (c->x86_vendor == X86_VENDOR_AMD &&
+ c->x86 == 15) {
+ if (strstr(c->x86_model_id, "Sempron") &&
+ strstr(c->x86_model_id, "Mobile") &&
+ (strstr(c->x86_model_id, "3500") ||
+ strstr(c->x86_model_id, "3600"))) {
+ printk(KERN_INFO "AMD Sempron Mobile found");
+ return 1;
+ }
+ }
+ return 0;
+}
+#else
+static __init int is_nohz_broken(void)
+{
+ return 0;
+}
+#endif
+
/**
* tick_setup_sched_timer - setup the tick emulation timer
*/
@@ -623,6 +649,11 @@ void tick_setup_sched_timer(void)
}
#ifdef CONFIG_NO_HZ
+ if (is_nohz_broken()) {
+ printk("- disabling tickless idle\n");
+ tick_nohz_enabled = 0;
+ }
+
if (tick_nohz_enabled)
ts->nohz_mode = NOHZ_MODE_HIGHRES;
#endif
--
1.5.4.5
On Wed, 16 Jul 2008, Thomas Renninger wrote:
> This is against Andi's (ak) release branch,
> hope that is ok...
No idea what that is.
> Can this one be reviewed/added, pls.
Reviewed yes. Added no.
> kernel/time/tick-sched.c | 31 +++++++++++++++++++++++++++++++
> 1 files changed, 31 insertions(+), 0 deletions(-)
>
> diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c
> index b854a89..bda0164 100644
> --- a/kernel/time/tick-sched.c
> +++ b/kernel/time/tick-sched.c
> @@ -589,6 +589,32 @@ static enum hrtimer_restart tick_sched_timer(struct
> hrtimer *timer)
> return HRTIMER_RESTART;
> }
>
> +#if defined(CONFIG_X86) && defined(CONFIG_NO_HZ)
> +static __init int is_nohz_broken(void)
> +{
We definitely do not add x86 quirks into the generic code.
Is there really no other way to fix this problem ? Which chipset is
involved here ? SB400/600 perhaps ?
Thanks,
tglx
On Wednesday 16 July 2008 09:03:12 pm you wrote:
> On Wed, 16 Jul 2008, Thomas Renninger wrote:
> > This is against Andi's (ak) release branch,
> > hope that is ok...
>
> No idea what that is.
The branch Andi will merge his ACPI stuff into 2.6.27.
>
> > Can this one be reviewed/added, pls.
>
> Reviewed yes. Added no.
>
> > kernel/time/tick-sched.c | 31 +++++++++++++++++++++++++++++++
> > 1 files changed, 31 insertions(+), 0 deletions(-)
> >
> > diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c
> > index b854a89..bda0164 100644
> > --- a/kernel/time/tick-sched.c
> > +++ b/kernel/time/tick-sched.c
> > @@ -589,6 +589,32 @@ static enum hrtimer_restart tick_sched_timer(struct
> > hrtimer *timer)
> > return HRTIMER_RESTART;
> > }
> >
> > +#if defined(CONFIG_X86) && defined(CONFIG_NO_HZ)
> > +static __init int is_nohz_broken(void)
> > +{
>
> We definitely do not add x86 quirks into the generic code.
So the right solution (if nobody cares about this one) is to set
tick_no_hz_enabled global and disable it through:
arch/x86/kernel/quirks.c
is that correct?
>
> Is there really no other way to fix this problem ?
I have no idea.
Richard's last message:
"I can help out as needed, just a work deadline I have to meet so I
haven't been able to dig further. Just point me in the direction and
I'll gladly be someones hands on the beastly machine"
has silently be ignored.
> Which chipset is
> involved here ? SB400/600 perhaps ?
No, it is probably much older and I am pretty sure that it is not chipset
related, but related to the "Mobile" in the Mobile Sempron as this exactly
seem to hit 3500 and 3600 Mobile Sempron CPUs.
I can't help much further because:
- I have not such a machine
- I don't know these parts. I hoped to get some hints to help these guys
Thomas
Thomas Renninger wrote:
> I have no idea.
> Richard's last message:
> "I can help out as needed, just a work deadline I have to meet so I
> haven't been able to dig further. Just point me in the direction and
> I'll gladly be someones hands on the beastly machine"
>
> has silently be ignored.
>
>
>> Which chipset is
>> involved here ? SB400/600 perhaps ?
>>
> No, it is probably much older and I am pretty sure that it is not chipset
> related, but related to the "Mobile" in the Mobile Sempron as this exactly
> seem to hit 3500 and 3600 Mobile Sempron CPUs.
>
> I can't help much further because:
> - I have not such a machine
> - I don't know these parts. I hoped to get some hints to help these guys
>
> Thomas
>
>
Hi All,
I am still available to hack away :-) I would also like to get this bug
resolved but I feel I am out of my depth with this problem. (Embedded
PowerPC's are my toys)
As a quick test, I grabbed the 2.6.26 kernel and built it... but alas,
it broke... well, from my ill-educated guess, it looked like acpid done
something and the machine shut down.
Richard
On Wednesday 16 July 2008 21:03:12 Thomas Gleixner wrote:
> On Wed, 16 Jul 2008, Thomas Renninger wrote:
...
> We definitely do not add x86 quirks into the generic code.
>
> Is there really no other way to fix this problem ? Which chipset is
> involved here ? SB400/600 perhaps ?
Evgeny's (eumaster) and Uli's chipsets are both:
north-bridge: nvidia c51mv
south-bridge: nvidia mcp51m
Also both are MSI laptops:
- MSI-M670, modell MS-1632
- MSI S430x
(This could also be a chipset or even an MSI specific BIOS bug?
Richard could you compare with your HW, pls if still possible).
Some more info:
- things break entering C2 or deeper
- noapictimer workaround helps to come a bit further, but results in sever
other errors, disk(dma error), keyboad, mouse etc., also see:
https://bugzilla.novell.com/show_bug.cgi?id=396220#c13
- "nohz=off" works (tested on 2.6.25.4-8-pae and 2.6.22.17-0.1-default SUSE kernels)
- processor.max_cstate=1 works
Thomas
lspci
00:00.0 RAM memory: nVidia Corporation C51 Host Bridge (rev a2)
00:00.1 RAM memory: nVidia Corporation C51 Memory Controller 0 (rev a2)
00:00.2 RAM memory: nVidia Corporation C51 Memory Controller 1 (rev a2)
00:00.3 RAM memory: nVidia Corporation C51 Memory Controller 5 (rev a2)
00:00.4 RAM memory: nVidia Corporation C51 Memory Controller 4 (rev a2)
00:00.5 RAM memory: nVidia Corporation C51 Host Bridge (rev a2)
00:00.6 RAM memory: nVidia Corporation C51 Memory Controller 3 (rev a2)
00:00.7 RAM memory: nVidia Corporation C51 Memory Controller 2 (rev a2)
00:03.0 PCI bridge: nVidia Corporation C51 PCI Express Bridge (rev a1)
00:05.0 VGA compatible controller: nVidia Corporation MCP51 PCI-X GeForce Go 6100 (rev a2)
00:09.0 RAM memory: nVidia Corporation MCP51 Host Bridge (rev a2)
00:0a.0 ISA bridge: nVidia Corporation MCP51 LPC Bridge (rev a3)
00:0a.1 SMBus: nVidia Corporation MCP51 SMBus (rev a3)
00:0a.3 Co-processor: nVidia Corporation MCP51 PMU (rev a3)
00:0b.0 USB Controller: nVidia Corporation MCP51 USB Controller (rev a3)
00:0b.1 USB Controller: nVidia Corporation MCP51 USB Controller (rev a3)
00:0d.0 IDE interface: nVidia Corporation MCP51 IDE (rev a1)
00:0e.0 IDE interface: nVidia Corporation MCP51 Serial ATA Controller (rev a1)
00:10.0 PCI bridge: nVidia Corporation MCP51 PCI Bridge (rev a2)
00:10.1 Audio device: nVidia Corporation MCP51 High Definition Audio (rev a2)
00:14.0 Bridge: nVidia Corporation MCP51 Ethernet Controller (rev a3)
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
Thomas Renninger wrote:
> On Wednesday 16 July 2008 21:03:12 Thomas Gleixner wrote:
>
>> On Wed, 16 Jul 2008, Thomas Renninger wrote:
>>
> ...
>
>> We definitely do not add x86 quirks into the generic code.
>>
>> Is there really no other way to fix this problem ? Which chipset is
>> involved here ? SB400/600 perhaps ?
>>
>
> Evgeny's (eumaster) and Uli's chipsets are both:
>
> north-bridge: nvidia c51mv
> south-bridge: nvidia mcp51m
>
> Also both are MSI laptops:
> - MSI-M670, modell MS-1632
> - MSI S430x
> (This could also be a chipset or even an MSI specific BIOS bug?
> Richard could you compare with your HW, pls if still possible).
>
> Some more info:
> - things break entering C2 or deeper
> - noapictimer workaround helps to come a bit further, but results in sever
> other errors, disk(dma error), keyboad, mouse etc., also see:
> https://bugzilla.novell.com/show_bug.cgi?id=396220#c13
> - "nohz=off" works (tested on 2.6.25.4-8-pae and 2.6.22.17-0.1-default SUSE kernels)
> - processor.max_cstate=1 works
>
> Thomas
>
> lspci
> 00:00.0 RAM memory: nVidia Corporation C51 Host Bridge (rev a2)
> 00:00.1 RAM memory: nVidia Corporation C51 Memory Controller 0 (rev a2)
> 00:00.2 RAM memory: nVidia Corporation C51 Memory Controller 1 (rev a2)
> 00:00.3 RAM memory: nVidia Corporation C51 Memory Controller 5 (rev a2)
> 00:00.4 RAM memory: nVidia Corporation C51 Memory Controller 4 (rev a2)
> 00:00.5 RAM memory: nVidia Corporation C51 Host Bridge (rev a2)
> 00:00.6 RAM memory: nVidia Corporation C51 Memory Controller 3 (rev a2)
> 00:00.7 RAM memory: nVidia Corporation C51 Memory Controller 2 (rev a2)
> 00:03.0 PCI bridge: nVidia Corporation C51 PCI Express Bridge (rev a1)
> 00:05.0 VGA compatible controller: nVidia Corporation MCP51 PCI-X GeForce Go 6100 (rev a2)
> 00:09.0 RAM memory: nVidia Corporation MCP51 Host Bridge (rev a2)
> 00:0a.0 ISA bridge: nVidia Corporation MCP51 LPC Bridge (rev a3)
> 00:0a.1 SMBus: nVidia Corporation MCP51 SMBus (rev a3)
> 00:0a.3 Co-processor: nVidia Corporation MCP51 PMU (rev a3)
> 00:0b.0 USB Controller: nVidia Corporation MCP51 USB Controller (rev a3)
> 00:0b.1 USB Controller: nVidia Corporation MCP51 USB Controller (rev a3)
> 00:0d.0 IDE interface: nVidia Corporation MCP51 IDE (rev a1)
> 00:0e.0 IDE interface: nVidia Corporation MCP51 Serial ATA Controller (rev a1)
> 00:10.0 PCI bridge: nVidia Corporation MCP51 PCI Bridge (rev a2)
> 00:10.1 Audio device: nVidia Corporation MCP51 High Definition Audio (rev a2)
> 00:14.0 Bridge: nVidia Corporation MCP51 Ethernet Controller (rev a3)
> 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
>
>
Hi All,
Here is a dump from lspci.... looks completely different :-P and here i
was blaming ATI :-)
Richard
00:00.0 Host bridge: ATI Technologies Inc RS690 Host Bridge
00:01.0 PCI bridge: ATI Technologies Inc RS690 PCI to PCI Bridge
(Internal gfx)
00:04.0 PCI bridge: ATI Technologies Inc Unknown device 7914
00:05.0 PCI bridge: ATI Technologies Inc RS690 PCI to PCI Bridge (PCI
Express Port 1)
00:06.0 PCI bridge: ATI Technologies Inc RS690 PCI to PCI Bridge (PCI
Express Port 2)
00:12.0 SATA controller: ATI Technologies Inc SB600 Non-Raid-5 SATA
00:13.0 USB Controller: ATI Technologies Inc SB600 USB (OHCI0)
00:13.1 USB Controller: ATI Technologies Inc SB600 USB (OHCI1)
00:13.2 USB Controller: ATI Technologies Inc SB600 USB (OHCI2)
00:13.3 USB Controller: ATI Technologies Inc SB600 USB (OHCI3)
00:13.4 USB Controller: ATI Technologies Inc SB600 USB (OHCI4)
00:13.5 USB Controller: ATI Technologies Inc SB600 USB Controller (EHCI)
00:14.0 SMBus: ATI Technologies Inc SBx00 SMBus Controller (rev 14)
00:14.1 IDE interface: ATI Technologies Inc SB600 IDE
00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia
00:14.3 ISA bridge: ATI Technologies Inc SB600 PCI to LPC Bridge
00:14.4 PCI bridge: ATI Technologies Inc SBx00 PCI to PCI Bridge
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
01:05.0 VGA compatible controller: ATI Technologies Inc RS690M [Radeon
X1200 Series]
02:04.0 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev b6)
02:04.1 FireWire (IEEE 1394): Ricoh Co Ltd R5C832 IEEE 1394 Controller
(rev 02)
10:00.0 Ethernet controller: Broadcom Corporation NetLink BCM5787M
Gigabit Ethernet PCI Express (rev 02)
30:00.0 Network controller: Broadcom Corporation BCM4312 802.11a/b/g
(rev 02)
On Thu, 17 Jul 2008, Richard wrote:
> Thomas Renninger wrote:
> > I have no idea.
> > Richard's last message:
> > "I can help out as needed, just a work deadline I have to meet so I haven't
> > been able to dig further. Just point me in the direction and I'll gladly be
> > someones hands on the beastly machine"
> >
> > has silently be ignored.
Sorry, was not on my radar.
> > > Which chipset is involved here ? SB400/600 perhaps ?
> > >
> > No, it is probably much older and I am pretty sure that it is not chipset
> > related, but related to the "Mobile" in the Mobile Sempron as this exactly
> > seem to hit 3500 and 3600 Mobile Sempron CPUs.
> >
> > I can't help much further because:
> > - I have not such a machine
> > - I don't know these parts. I hoped to get some hints to help these guys
> >
> > Thomas
> >
> >
> Hi All,
>
> I am still available to hack away :-) I would also like to get this bug
> resolved but I feel I am out of my depth with this problem. (Embedded
> PowerPC's are my toys)
>
> As a quick test, I grabbed the 2.6.26 kernel and built it... but
> alas, it broke... well, from my ill-educated guess, it looked like
> acpid done something and the machine shut down.
ouch.
I read the whole thread and also checked the suse bugzilla, which
confuses the hell out of me as there is reported that kubuntu with
2.6.24 works and everything suse > 2.6.20 does not.
Can you please tell me the symptoms of vanilla 2.6.25 without nohz=off
on the kernel command line ?
Thanks,
tglx
Thomas Gleixner wrote:
> ouch.
>
> I read the whole thread and also checked the suse bugzilla, which
> confuses the hell out of me as there is reported that kubuntu with
> 2.6.24 works and everything suse > 2.6.20 does not.
>
> Can you please tell me the symptoms of vanilla 2.6.25 without nohz=off
> on the kernel command line ?
>
> Thanks,
>
> tglx
>
>
The Short story... it was a dark and rainy night :-P oops, wrong mailing
list.... so here goes
The kernel boots and when init.d starts, the screen switches off, the
CPU fan goes to Max speed, and a few minutes later all goes quiet and it
appears to have powered off.
I usually boot with noapictimer and if I disable ACPI totally, the clock
references don't work and the timebase goes wrong. (Playing a MP3 is
quite an entertaining event as it sounds like an old vinyl record player
with a slipping drive belt)
Richard
On Thu, 17 Jul 2008, Richard wrote:
> > north-bridge: nvidia c51mv
> > south-bridge: nvidia mcp51m
> >
> > Also both are MSI laptops:
> > - MSI-M670, modell MS-1632
> > - MSI S430x
> > (This could also be a chipset or even an MSI specific BIOS bug?
> > Richard could you compare with your HW, pls if still possible).
> >
> > Some more info:
> > - things break entering C2 or deeper
> > - noapictimer workaround helps to come a bit further, but results in sever
> > other errors, disk(dma error), keyboad, mouse etc., also see:
Hmm, I don't see how the apic timer is related to that, but it might
be a problem with the hpet.
Does "noapictimer nohz=off" work ?
> > https://bugzilla.novell.com/show_bug.cgi?id=396220#c13
> > - "nohz=off" works (tested on 2.6.25.4-8-pae and 2.6.22.17-0.1-default
> > SUSE kernels)
> > - processor.max_cstate=1 works
Why does it work with 2.6.24 on kubuntu 8.04 ?
How does a 2.6.24/25/26 vanilla kernel behave on those systems ?
> > 00:09.0 RAM memory: nVidia Corporation MCP51 Host Bridge (rev a2)
>
> Here is a dump from lspci.... looks completely different :-P and here i was
> blaming ATI :-)
>
> 00:00.0 Host bridge: ATI Technologies Inc RS690 Host Bridge
Oh, that's a different beast, but it might be also a problem with the
timer interrupt routing.
Thanks,
tglx
On Thu, 17 Jul 2008, Richard wrote:
> The Short story... it was a dark and rainy night :-P oops, wrong mailing
> list.... so here goes
Hehe
> The kernel boots and when init.d starts, the screen switches off, the CPU fan
> goes to Max speed, and a few minutes later all goes quiet and it appears to
> have powered off.
>
> I usually boot with noapictimer and if I disable ACPI totally, the clock
> references don't work and the timebase goes wrong. (Playing a MP3 is quite an
> entertaining event as it sounds like an old vinyl record player with a
> slipping drive belt)
That's with 2.6.25 vanilla, right ?
Can you provide a bootlog from that kernel with noapictimer on the
kernel command line ?
Also as it reaches at least init it would be great to get a bootlog
for a boot w/o any command line options via netconsole (see
Documentation/networking/netconsole.txt)
Thanks,
tglx
Thomas Gleixner wrote:
> On Thu, 17 Jul 2008, Richard wrote:
>
>> The Short story... it was a dark and rainy night :-P oops, wrong mailing
>> list.... so here goes
>>
>
> Hehe
>
>
>> The kernel boots and when init.d starts, the screen switches off, the CPU fan
>> goes to Max speed, and a few minutes later all goes quiet and it appears to
>> have powered off.
>>
>> I usually boot with noapictimer and if I disable ACPI totally, the clock
>> references don't work and the timebase goes wrong. (Playing a MP3 is quite an
>> entertaining event as it sounds like an old vinyl record player with a
>> slipping drive belt)
>>
>
> That's with 2.6.25 vanilla, right ?
>
> Can you provide a bootlog from that kernel with noapictimer on the
> kernel command line ?
>
> Also as it reaches at least init it would be great to get a bootlog
> for a boot w/o any command line options via netconsole (see
> Documentation/networking/netconsole.txt)
>
> Thanks,
>
> tglx
>
>
Prepare to be spammed.... I am using a Sabayon build, but all distros I
have tried exibit the same behavior to me. the nohz=off options also
works quite well. (I have a 2.6.26 vanilla that behaves the same)
but for now, I am off to read and setup the netconsole.
Richard
--------------- WITH Noapic timer ------------
Jul 14 11:12:23 localhost syslog-ng[11073]: syslog-ng starting up;
version='2.0.6'
Jul 14 11:12:23 localhost plash=silent,theme:sabayon vga=791
CONSOLE=/dev/tty1 noapictimer resume=swap:/dev/sda6
Jul 14 11:12:23 localhost [ 0.000000] Initializing CPU#0
Jul 14 11:12:23 localhost [ 0.000000] PID hash table entries: 4096
(order: 12, 32768 bytes)
Jul 14 11:12:23 localhost [ 0.000000] Extended CMOS year: 2000
Jul 14 11:12:23 localhost [ 0.000000] TSC calibrated against PM_TIMER
Jul 14 11:12:23 localhost [ 0.000001] time.c: Detected 1994.901 MHz
processor.
Jul 14 11:12:23 localhost [ 0.000056] Console: colour dummy device 80x25
Jul 14 11:12:23 localhost [ 0.000059] console [tty0] enabled
Jul 14 11:12:23 localhost [ 0.000123] Checking aperture...
Jul 14 11:12:23 localhost [ 0.000126] Node 0: aperture @ 915a000000 size
32 MB
Jul 14 11:12:23 localhost [ 0.000127] Aperture beyond 4GB. Ignoring.
Jul 14 11:12:23 localhost [ 0.000999] No AGP bridge found
Jul 14 11:12:23 localhost [ 0.000999] Memory: 1921588k/1965760k
available (6515k kernel code, 43784k reserved, 2917k data, 428k init)
Jul 14 11:12:23 localhost [ 0.000999] CPA: page pool initialized 1 of 1
pages preallocated
Jul 14 11:12:23 localhost [ 0.000999] SLUB: Genslabs=13, HWalign=64,
Order=0-1, MinObjects=4, CPUs=2, Nodes=1
Jul 14 11:12:23 localhost [ 0.060993] Calibrating delay using timer
specific routine.. 3996.13 BogoMIPS (lpj=1998065)
Jul 14 11:12:23 localhost [ 0.061057] Security Framework initialized
Jul 14 11:12:23 localhost [ 0.061062] SELinux: Disabled at boot.
Jul 14 11:12:23 localhost [ 0.061065] Capability LSM initialized
Jul 14 11:12:23 localhost [ 0.061453] Dentry cache hash table entries:
262144 (order: 9, 2097152 bytes)
Jul 14 11:12:23 localhost [ 0.063811] Inode-cache hash table entries:
131072 (order: 8, 1048576 bytes)
Jul 14 11:12:23 localhost [ 0.064903] Mount-cache hash table entries: 256
Jul 14 11:12:23 localhost [ 0.065226] Initializing cgroup subsys debug
Jul 14 11:12:23 localhost [ 0.065246] Initializing cgroup subsys ns
Jul 14 11:12:23 localhost [ 0.065249] Initializing cgroup subsys cpuacct
Jul 14 11:12:23 localhost [ 0.065277] CPU: L1 I Cache: 64K (64
bytes/line), D cache 64K (64 bytes/line)
Jul 14 11:12:23 localhost [ 0.065279] CPU: L2 Cache: 256K (64 bytes/line)
Jul 14 11:12:23 localhost [ 0.065281] CPU 0/0 -> Node 0
Jul 14 11:12:23 localhost [ 0.065319] ACPI: Core revision 20070126
Jul 14 11:12:23 localhost [ 0.098984] ..MP-BIOS bug: 8254 timer not
connected to IO-APIC
Jul 14 11:12:23 localhost [ 0.109426] Disabling APIC timer
Jul 14 11:12:23 localhost [ 0.109482] Brought up 1 CPUs
Jul 14 11:12:23 localhost [ 0.109743] net_namespace: 1016 bytes
Jul 14 11:12:23 localhost [ 0.109912] xor: automatically using best
checksumming function: generic_sse
Jul 14 11:12:23 localhost [ 0.113984] generic_sse: 6144.000 MB/sec
Jul 14 11:12:23 localhost [ 0.113986] xor: using function: generic_sse
(6144.000 MB/sec)
Jul 14 11:12:23 localhost [ 0.114017] NET: Registered protocol family 16
Jul 14 11:12:23 localhost [ 0.114272] No dock devices found.
Jul 14 11:12:23 localhost [ 0.114630] ACPI: bus type pci registered
Jul 14 11:12:23 localhost [ 0.126265] PCI: Using MMCONFIG at e0000000 -
efffffff
Jul 14 11:12:23 localhost [ 0.126269] PCI: Using configuration type 1
Jul 14 11:12:23 localhost [ 0.129856] ACPI: EC: Look up EC in DSDT
Jul 14 11:12:23 localhost [ 0.131069] ACPI: EC: non-query interrupt
received, switching to interrupt mode
Jul 14 11:12:23 localhost [ 0.389921] ACPI: Interpreter enabled
Jul 14 11:12:23 localhost [ 0.389926] ACPI: (supports S0 S3 S4 S5)
Jul 14 11:12:23 localhost [ 0.389939] ACPI: Using IOAPIC for interrupt
routing
Jul 14 11:12:23 localhost [ 0.399925] ACPI: EC: GPE = 0x11, I/O:
command/status = 0x66, data = 0x62
Jul 14 11:12:23 localhost [ 0.399929] ACPI: EC: driver started in
interrupt mode
Jul 14 11:12:23 localhost [ 0.400022] ACPI: PCI Root Bridge [C08B] (0000:00)
Jul 14 11:12:23 localhost [ 0.400241] pci 0000:00:12.0: set SATA to AHCI
mode
Jul 14 11:12:23 localhost [ 0.401413] PCI: Transparent bridge - 0000:00:14.4
Jul 14 11:12:23 localhost [ 0.401460] ACPI: PCI Interrupt Routing Table
[\_SB_.C08B._PRT]
Jul 14 11:12:23 localhost [ 0.401855] ACPI: PCI Interrupt Routing Table
[\_SB_.C08B.C08C._PRT]
Jul 14 11:12:23 localhost [ 0.401988] ACPI: PCI Interrupt Routing Table
[\_SB_.C08B.C0FC._PRT]
Jul 14 11:12:23 localhost [ 0.422527] ACPI: PCI Interrupt Link [C145]
(IRQs 10 11) *0, disabled.
Jul 14 11:12:23 localhost [ 0.422695] ACPI: PCI Interrupt Link [C146]
(IRQs 10 11) *0, disabled.
Jul 14 11:12:23 localhost [ 0.422860] ACPI: PCI Interrupt Link [C147]
(IRQs 10 11) *0, disabled.
Jul 14 11:12:23 localhost [ 0.423042] ACPI: PCI Interrupt Link [C148]
(IRQs 10 11) *0, disabled.
Jul 14 11:12:23 localhost [ 0.423205] ACPI: PCI Interrupt Link [C149]
(IRQs 10 11) *0, disabled.
Jul 14 11:12:23 localhost [ 0.423368] ACPI: PCI Interrupt Link [C14A]
(IRQs 9) *0, disabled.
Jul 14 11:12:23 localhost [ 0.423531] ACPI: PCI Interrupt Link [C14B]
(IRQs 10 11) *0, disabled.
Jul 14 11:12:23 localhost [ 0.423699] ACPI: PCI Interrupt Link [C14C]
(IRQs 10 11) *0, disabled.
Jul 14 11:12:23 localhost [ 0.423857] ACPI: Power Resource [C171] (off)
Jul 14 11:12:23 localhost [ 0.424053] ACPI: Power Resource [C230] (off)
Jul 14 11:12:23 localhost [ 0.424100] ACPI: Power Resource [C24C] (on)
Jul 14 11:12:23 localhost [ 0.424211] ACPI: Power Resource [C395] (off)
Jul 14 11:12:23 localhost [ 0.424300] ACPI: Power Resource [C396] (off)
Jul 14 11:12:23 localhost [ 0.424388] ACPI: Power Resource [C397] (off)
Jul 14 11:12:23 localhost [ 0.424476] ACPI: Power Resource [C398] (off)
Jul 14 11:12:23 localhost [ 0.424731] ACPI: WMI: Mapper loaded
Jul 14 11:12:23 localhost [ 0.424734] Linux Plug and Play Support v0.97
(c) Adam Belay
Jul 14 11:12:23 localhost [ 0.424766] pnp: PnP ACPI init
Jul 14 11:12:23 localhost [ 0.424776] ACPI: bus type pnp registered
Jul 14 11:12:23 localhost [ 0.433729] pnp: PnP ACPI: found 14 devices
Jul 14 11:12:23 localhost [ 0.433733] ACPI: ACPI bus type pnp unregistered
Jul 14 11:12:23 localhost [ 0.433949] SCSI subsystem initialized
Jul 14 11:12:23 localhost [ 0.433979] libata version 3.00 loaded.
Jul 14 11:12:23 localhost [ 0.434162] usbcore: registered new interface
driver usbfs
Jul 14 11:12:23 localhost [ 0.434225] usbcore: registered new interface
driver hub
Jul 14 11:12:23 localhost [ 0.434267] usbcore: registered new device
driver usb
Jul 14 11:12:23 localhost [ 0.434463] PCI: Using ACPI for IRQ routing
Jul 14 11:12:23 localhost [ 0.434467] PCI: If a device doesn't work, try
"pci=routeirq". If it helps, post a report
Jul 14 11:12:23 localhost [ 0.434505] PCI: Cannot allocate resource
region 0 of device 0000:00:14.2
Jul 14 11:12:23 localhost [ 0.440968] NetLabel: Initializing
Jul 14 11:12:23 localhost [ 0.440968] NetLabel: domain hash size = 128
Jul 14 11:12:23 localhost [ 0.440968] NetLabel: protocols = UNLABELED
CIPSOv4
Jul 14 11:12:23 localhost [ 0.440968] NetLabel: unlabeled traffic
allowed by default
Jul 14 11:12:23 localhost [ 0.440969] ACPI: RTC can wake from S4
Jul 14 11:12:23 localhost [ 0.444000] system 00:00: iomem range
0x0-0x9ffff could not be reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:00: iomem range
0xe0000-0xfffff could not be reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:00: iomem range
0x100000-0xffffffff could not be reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0a: ioport range
0x40b-0x40b has been reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0a: ioport range
0x4d0-0x4d1 has been reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0a: ioport range
0x4d6-0x4d6 has been reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0a: ioport range
0x500-0x51f has been reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0a: ioport range
0xc00-0xc01 has been reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0a: ioport range
0xc14-0xc14 has been reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0a: ioport range
0xc50-0xc51 has been reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0a: ioport range
0xc52-0xc52 has been reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0a: ioport range
0xc6c-0xc6c has been reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0a: ioport range
0xc6f-0xc6f has been reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0a: ioport range
0xcd0-0xcdf has been reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0a: iomem range
0xffb00000-0xffbfffff could not be reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0a: iomem range
0xfff00000-0xffffffff could not be reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0c: ioport range
0x8000-0x802f has been reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0c: ioport range
0x8100-0x811f has been reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0c: iomem range
0xe0000000-0xefffffff could not be reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0c: iomem range
0xfec00000-0xfec000ff could not be reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0c: iomem range
0xfed45000-0xfed8ffff has been reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0d: iomem range
0xcd400-0xcffff has been reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0d: iomem range
0xd2a00-0xd2fff has been reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0d: iomem range
0x0-0x7ffffff could not be reserved
Jul 14 11:12:23 localhost [ 0.444000] system 00:0d: iomem range
0xfee00000-0xfee00fff could not be reserved
Jul 14 11:12:23 localhost [ 0.444000] PCI: Bridge: 0000:00:01.0
Jul 14 11:12:23 localhost [ 0.444000] IO window: 4000-4fff
Jul 14 11:12:23 localhost [ 0.444000] MEM window: 0xd0400000-0xd05fffff
Jul 14 11:12:23 localhost [ 0.444000] PREFETCH window:
0x00000000c0000000-0x00000000c7ffffff
Jul 14 11:12:23 localhost [ 0.444000] PCI: Bridge: 0000:00:04.0
Jul 14 11:12:23 localhost [ 0.444000] IO window: disabled.
Jul 14 11:12:23 localhost [ 0.444000] MEM window: 0xd0000000-0xd00fffff
Jul 14 11:12:23 localhost [ 0.444000] PREFETCH window: disabled.
Jul 14 11:12:23 localhost [ 0.444000] PCI: Bridge: 0000:00:05.0
Jul 14 11:12:23 localhost [ 0.444000] IO window: 2000-3fff
Jul 14 11:12:23 localhost [ 0.444000] MEM window: 0xcc000000-0xcfffffff
Jul 14 11:12:23 localhost [ 0.444000] PREFETCH window: disabled.
Jul 14 11:12:23 localhost [ 0.444000] PCI: Bridge: 0000:00:06.0
Jul 14 11:12:23 localhost [ 0.444000] IO window: disabled.
Jul 14 11:12:23 localhost [ 0.444000] MEM window: 0xc8000000-0xc80fffff
Jul 14 11:12:23 localhost [ 0.444000] PREFETCH window: disabled.
Jul 14 11:12:23 localhost [ 0.444000] PCI: Bus 3, cardbus bridge:
0000:02:04.0
Jul 14 11:12:23 localhost [ 0.444000] IO window: 0x00001000-0x000010ff
Jul 14 11:12:23 localhost [ 0.444000] IO window: 0x00001400-0x000014ff
Jul 14 11:12:23 localhost [ 0.444000] PREFETCH window: 0x88000000-0x8bffffff
Jul 14 11:12:23 localhost [ 0.444000] MEM window: 0x90000000-0x93ffffff
Jul 14 11:12:23 localhost [ 0.444000] PCI: Bridge: 0000:00:14.4
Jul 14 11:12:23 localhost [ 0.444000] IO window: 1000-1fff
Jul 14 11:12:23 localhost [ 0.444000] MEM window: 0xd0100000-0xd03fffff
Jul 14 11:12:23 localhost [ 0.444000] PREFETCH window:
0x0000000088000000-0x000000008bffffff
Jul 14 11:12:23 localhost [ 0.444000] PCI: Setting latency timer of
device 0000:00:04.0 to 64
Jul 14 11:12:23 localhost [ 0.444000] PCI: Setting latency timer of
device 0000:00:05.0 to 64
Jul 14 11:12:23 localhost [ 0.444000] PCI: Setting latency timer of
device 0000:00:06.0 to 64
Jul 14 11:12:23 localhost [ 0.444000] ACPI: PCI Interrupt
0000:02:04.0[A] -> GSI 20 (level, low) -> IRQ 20
Jul 14 11:12:23 localhost [ 0.444000] NET: Registered protocol family 2
Jul 14 11:12:23 localhost [ 0.453011] IP route cache hash table entries:
65536 (order: 7, 524288 bytes)
Jul 14 11:12:23 localhost [ 0.453029] TCP established hash table
entries: 262144 (order: 10, 4194304 bytes)
Jul 14 11:12:23 localhost [ 0.454874] TCP bind hash table entries: 65536
(order: 8, 1048576 bytes)
Jul 14 11:12:23 localhost [ 0.455337] TCP: Hash tables configured
(established 262144 bind 65536)
Jul 14 11:12:23 localhost [ 0.455341] TCP reno registered
Jul 14 11:12:23 localhost [ 0.459013] checking if image is initramfs...
it is
Jul 14 11:12:23 localhost [ 0.696353] Freeing initrd memory: 4264k freed
Jul 14 11:12:23 localhost [ 0.699093] audit: initializing netlink socket
(disabled)
Jul 14 11:12:23 localhost [ 0.699106] type=2000 audit(1216033886.698:1):
initialized
Jul 14 11:12:23 localhost [ 0.699296] Total HugeTLB memory allocated, 0
Jul 14 11:12:23 localhost [ 0.701520] VFS: Disk quotas dquot_6.5.1
Jul 14 11:12:23 localhost [ 0.701610] Dquot-cache hash table entries:
512 (order 0, 4096 bytes)
Jul 14 11:12:23 localhost [ 0.702534] squashfs: version 3.3 (2007/10/31)
Phillip Lougher
Jul 14 11:12:23 localhost [ 0.703472] Installing knfsd (copyright (C)
1996 [email protected]).
Jul 14 11:12:23 localhost [ 0.704181] NTFS driver 2.1.29 [Flags: R/W].
Jul 14 11:12:23 localhost [ 0.704474] QNX4 filesystem 0.2.3 registered.
Jul 14 11:12:23 localhost [ 0.704719] aufs 20080609
Jul 14 11:12:23 localhost [ 0.704721] fuse init (API version 7.9)
Jul 14 11:12:23 localhost [ 0.705033] JFS: nTxBlock = 8192, nTxLock = 65536
Jul 14 11:12:23 localhost [ 0.707785] SGI XFS with ACLs, security
attributes, realtime, large block/inode numbers, no debug enabled
Jul 14 11:12:23 localhost [ 0.708440] SGI XFS Quota Management subsystem
Jul 14 11:12:23 localhost [ 0.708453] Registering unionfs 2.3.3 (for 2.6.25)
Jul 14 11:12:23 localhost [ 0.708739] async_tx: api initialized (async)
Jul 14 11:12:23 localhost [ 0.708797] Block layer SCSI generic (bsg)
driver version 0.4 loaded (major 253)
Jul 14 11:12:23 localhost [ 0.708800] io scheduler noop registered
Jul 14 11:12:23 localhost [ 0.708802] io scheduler anticipatory registered
Jul 14 11:12:23 localhost [ 0.708805] io scheduler deadline registered
Jul 14 11:12:23 localhost [ 0.708926] io scheduler cfq registered (default)
Jul 14 11:12:23 localhost [ 0.709058] pci 0000:01:05.0: Boot video device
Jul 14 11:12:23 localhost [ 0.709167] PCI: Setting latency timer of
device 0000:00:04.0 to 64
Jul 14 11:12:23 localhost [ 0.709187] assign_interrupt_mode Found MSI
capability
Jul 14 11:12:23 localhost [ 0.709211] Allocate Port
Service[0000:00:04.0:pcie00]
Jul 14 11:12:23 localhost [ 0.709251] Allocate Port
Service[0000:00:04.0:pcie03]
Jul 14 11:12:23 localhost [ 0.709315] PCI: Setting latency timer of
device 0000:00:05.0 to 64
Jul 14 11:12:23 localhost [ 0.709334] assign_interrupt_mode Found MSI
capability
Jul 14 11:12:23 localhost [ 0.709353] Allocate Port
Service[0000:00:05.0:pcie00]
Jul 14 11:12:23 localhost [ 0.709387] Allocate Port
Service[0000:00:05.0:pcie03]
Jul 14 11:12:23 localhost [ 0.709448] PCI: Setting latency timer of
device 0000:00:06.0 to 64
Jul 14 11:12:23 localhost [ 0.709466] assign_interrupt_mode Found MSI
capability
Jul 14 11:12:23 localhost [ 0.709485] Allocate Port
Service[0000:00:06.0:pcie00]
Jul 14 11:12:23 localhost [ 0.709520] Allocate Port
Service[0000:00:06.0:pcie03]
Jul 14 11:12:23 localhost [ 0.741416] lp: driver loaded but no devices found
Jul 14 11:12:23 localhost [ 0.741535] Real Time Clock Driver v1.12ac
Jul 14 11:12:23 localhost [ 0.748283] ppdev: user-space parallel port driver
Jul 14 11:12:23 localhost [ 0.748287] Linux agpgart interface v0.103
Jul 14 11:12:23 localhost [ 0.748576] vesafb: framebuffer at 0xc0000000,
mapped to 0xffffc20010f00000, using 3072k, total 16384k
Jul 14 11:12:23 localhost [ 0.748580] vesafb: mode is 1024x768x16,
linelength=2048, pages=9
Jul 14 11:12:23 localhost [ 0.748582] vesafb: scrolling: redraw
Jul 14 11:12:23 localhost [ 0.748585] vesafb: Truecolor: size=0:5:6:5,
shift=0:11:5:0
Jul 14 11:12:23 localhost [ 0.796629] Console: switching to colour frame
buffer device 128x48
Jul 14 11:12:23 localhost [ 0.920823] fbcondecor: console 0 using theme
'sabayon'
Jul 14 11:12:23 localhost [ 0.943942] Clockevents: could not switch to
one-shot mode: lapic is not functional.
Jul 14 11:12:23 localhost [ 0.943946] Could not switch to high
resolution mode on CPU 0
Jul 14 11:12:23 localhost [ 1.183263] fbcondecor: switched decor state
to 'on' on console 0
Jul 14 11:12:23 localhost [ 1.183986] fb0: VESA VGA frame buffer device
Jul 14 11:12:23 localhost [ 1.184427] ACPI: AC Adapter [C1EB] (on-line)
Jul 14 11:12:23 localhost [ 1.284830] ACPI: Battery Slot [C1ED] (battery
present)
Jul 14 11:12:23 localhost [ 1.285049] ACPI: Battery Slot [C1EC] (battery
absent)
Jul 14 11:12:23 localhost [ 1.285614] input: Power Button (FF) as
/class/input/input0
Jul 14 11:12:23 localhost [ 1.290516] ACPI: Power Button (FF) [PWRF]
Jul 14 11:12:23 localhost [ 1.290516] input: Sleep Button (CM) as
/class/input/input1
Jul 14 11:12:23 localhost [ 1.293520] ACPI: Sleep Button (CM) [C28D]
Jul 14 11:12:23 localhost [ 1.293520] input: Lid Switch as
/class/input/input2
Jul 14 11:12:23 localhost [ 1.293520] ACPI: Lid Switch [C265]
Jul 14 11:12:23 localhost [ 1.293520] ACPI: Transitioning device [C399]
to D3
Jul 14 11:12:23 localhost [ 1.293520] ACPI: PNP0C0B:00 is registered as
cooling_device0
Jul 14 11:12:23 localhost [ 1.293520] ACPI: Fan [C399] (off)
Jul 14 11:12:23 localhost [ 1.293520] ACPI: Transitioning device [C39A]
to D3
Jul 14 11:12:23 localhost [ 1.293520] ACPI: PNP0C0B:01 is registered as
cooling_device1
Jul 14 11:12:23 localhost [ 1.293520] ACPI: Fan [C39A] (off)
Jul 14 11:12:23 localhost [ 1.293520] ACPI: Transitioning device [C39B]
to D3
Jul 14 11:12:23 localhost [ 1.293520] ACPI: PNP0C0B:02 is registered as
cooling_device2
Jul 14 11:12:23 localhost [ 1.293520] ACPI: Fan [C39B] (off)
Jul 14 11:12:23 localhost [ 1.293605] ACPI: Transitioning device [C39C]
to D3
Jul 14 11:12:23 localhost [ 1.293643] ACPI: PNP0C0B:03 is registered as
cooling_device3
Jul 14 11:12:23 localhost [ 1.293648] ACPI: Fan [C39C] (off)
Jul 14 11:12:23 localhost [ 1.293810] ACPI: CPU0 (power states: C1[C1]
C2[C2] C3[C3])
Jul 14 11:12:23 localhost [ 1.293848] ACPI: ACPI0007:00 is registered as
cooling_device4
Jul 14 11:12:23 localhost [ 1.293852] ACPI: Processor [C000] (supports 8
throttling states)
Jul 14 11:12:23 localhost [ 1.304825] ACPI: LNXTHERM:01 is registered as
thermal_zone0
Jul 14 11:12:23 localhost [ 1.307922] ACPI: Thermal Zone [TZ1] (66 C)
Jul 14 11:12:23 localhost [ 1.308079] Serial: 8250/16550 driver
$Revision: 1.90 $ 4 ports, IRQ sharing enabled
Jul 14 11:12:23 localhost [ 1.311644] parport_pc 00:02: activated
Jul 14 11:12:23 localhost [ 1.311649] parport_pc 00:02: reported by Plug
and Play ACPI
Jul 14 11:12:23 localhost [ 1.312639] parport_pc 00:02: disabled
Jul 14 11:12:23 localhost [ 1.313101] Floppy drive(s): fd0 is 1.44M
Jul 14 11:12:23 localhost [ 4.324136] floppy0: no floppy controllers found
Jul 14 11:12:23 localhost [ 4.324136] brd: module loaded
Jul 14 11:12:23 localhost [ 4.324162] loop: module loaded
Jul 14 11:12:23 localhost [ 4.324164] Compaq SMART2 Driver (v 2.6.0)
Jul 14 11:12:23 localhost [ 4.324218] HP CISS Driver (v 3.6.20)
Jul 14 11:12:23 localhost [ 4.324459] MM: desc_per_page = 128
Jul 14 11:12:23 localhost [ 4.324571] input: Macintosh mouse button
emulation as /class/input/input3
Jul 14 11:12:23 localhost [ 4.324765] Loading iSCSI transport class
v2.0-869.
Jul 14 11:12:23 localhost [ 4.325111] iscsi: registered transport (tcp)
Jul 14 11:12:23 localhost [ 4.325320] Adaptec aacraid driver 1.1-5[2455]-ms
Jul 14 11:12:23 localhost [ 4.325376] aic94xx: Adaptec aic94xx SAS/SATA
driver version 1.0.3 loaded
Jul 14 11:12:23 localhost [ 4.325579] QLogic Fibre Channel HBA Driver
Jul 14 11:12:23 localhost [ 4.325674] iscsi: registered transport (qla4xxx)
Jul 14 11:12:23 localhost [ 4.325714] QLogic iSCSI HBA Driver
Jul 14 11:12:23 localhost [ 4.325716] Emulex LightPulse Fibre Channel
SCSI driver 8.2.5
Jul 14 11:12:23 localhost [ 4.325718] Copyright(c) 2004-2008 Emulex. All
rights reserved.
Jul 14 11:12:23 localhost [ 4.325875] DC390: clustering now enabled by
default. If you get problems load
Jul 14 11:12:23 localhost [ 4.325877] with "disable_clustering=1" and
report to maintainers
Jul 14 11:12:23 localhost [ 4.325969] megaraid cmm: 2.20.2.7 (Release
Date: Sun Jul 16 00:01:03 EST 2006)
Jul 14 11:12:23 localhost [ 4.326010] megaraid: 2.20.5.1 (Release Date:
Thu Nov 16 15:32:35 EST 2006)
Jul 14 11:12:23 localhost [ 4.326051] megasas: 00.00.03.16-rc1 Thu. Nov.
07 10:09:32 PDT 2007
Jul 14 11:12:23 localhost [ 4.326284] GDT-HA: Storage RAID Controller
Driver. Version: 3.05
Jul 14 11:12:23 localhost [ 4.326392] GDT-HA: Found 0 PCI Storage RAID
Controllers
Jul 14 11:12:23 localhost [ 4.326474] 3ware Storage Controller device
driver for Linux v1.26.02.002.
Jul 14 11:12:23 localhost [ 4.326509] 3ware 9000 Storage Controller
device driver for Linux v2.26.02.010.
Jul 14 11:12:23 localhost [ 4.326544] ipr: IBM Power RAID SCSI Device
Driver version: 2.4.1 (April 24, 2007)
Jul 14 11:12:23 localhost [ 4.326583] RocketRAID 3xxx/4xxx Controller
driver v1.3 (071203)
Jul 14 11:12:23 localhost [ 4.326618] stex: Promise SuperTrak EX Driver
version: 3.6.0000.1
Jul 14 11:12:23 localhost [ 4.326692] st: Version 20080221, fixed
bufsize 32768, s/g segs 256
Jul 14 11:12:23 localhost [ 4.326729] Driver 'st' needs updating -
please use bus_type methods
Jul 14 11:12:23 localhost [ 4.326765] osst :I: Tape driver with OnStream
support version 0.99.4
Jul 14 11:12:23 localhost [ 4.326766] osst :I: $Id: osst.c,v 1.73
2005/01/01 21:13:34 wriede Exp $
Jul 14 11:12:23 localhost [ 4.326798] Driver 'osst' needs updating -
please use bus_type methods
Jul 14 11:12:23 localhost [ 4.326860] Driver 'sd' needs updating -
please use bus_type methods
Jul 14 11:12:23 localhost [ 4.326888] Driver 'sr' needs updating -
please use bus_type methods
Jul 14 11:12:23 localhost [ 4.326966] ahci 0000:00:12.0: version 3.0
Jul 14 11:12:23 localhost [ 4.326996] ACPI: PCI Interrupt
0000:00:12.0[A] -> GSI 16 (level, low) -> IRQ 16
Jul 14 11:12:23 localhost [ 4.327028] ahci 0000:00:12.0: controller
can't do 64bit DMA, forcing 32bit
Jul 14 11:12:23 localhost [ 5.328030] ahci 0000:00:12.0: AHCI 0001.0100
32 slots 4 ports 3 Gbps 0x1 impl SATA mode
Jul 14 11:12:23 localhost [ 5.328030] ahci 0000:00:12.0: flags: ncq sntf
ilck pm led clo pio slum part
Jul 14 11:12:23 localhost [ 5.328030] scsi0 : ahci
Jul 14 11:12:23 localhost [ 5.328030] scsi1 : ahci
Jul 14 11:12:23 localhost [ 5.328030] scsi2 : ahci
Jul 14 11:12:23 localhost [ 5.328030] scsi3 : ahci
Jul 14 11:12:23 localhost [ 5.328030] ata1: SATA max UDMA/133 abar
m1024@0xd0609000 port 0xd0609100 irq 16
Jul 14 11:12:23 localhost [ 5.328030] ata2: DUMMY
Jul 14 11:12:23 localhost [ 5.328030] ata3: DUMMY
Jul 14 11:12:23 localhost [ 5.328030] ata4: DUMMY
Jul 14 11:12:23 localhost [ 5.783987] ata1: SATA link up 1.5 Gbps
(SStatus 113 SControl 300)
Jul 14 11:12:23 localhost [ 5.784357] ata1.00: ATA-7: FUJITSU MHW2080BH
PL, 891F, max UDMA/100
Jul 14 11:12:23 localhost [ 5.784357] ata1.00: 156301488 sectors, multi
16: LBA48
Jul 14 11:12:23 localhost [ 5.784357] ata1.00: SB600 AHCI: limiting to
255 sectors per cmd
Jul 14 11:12:23 localhost [ 5.784849] ata1.00: SB600 AHCI: limiting to
255 sectors per cmd
Jul 14 11:12:23 localhost [ 5.784849] ata1.00: configured for UDMA/100
Jul 14 11:12:23 localhost [ 5.784959] scsi 0:0:0:0: Direct-Access ATA
FUJITSU MHW2080B 891F PQ: 0 ANSI: 5
Jul 14 11:12:23 localhost [ 5.785113] sd 0:0:0:0: [sda] 156301488
512-byte hardware sectors (80026 MB)
Jul 14 11:12:23 localhost [ 5.785126] sd 0:0:0:0: [sda] Write Protect is off
Jul 14 11:12:23 localhost [ 5.785129] sd 0:0:0:0: [sda] Mode Sense: 00
3a 00 00
Jul 14 11:12:23 localhost [ 5.785147] sd 0:0:0:0: [sda] Write cache:
enabled, read cache: enabled, doesn't support DPO or FUA
Jul 14 11:12:23 localhost [ 5.785197] sd 0:0:0:0: [sda] 156301488
512-byte hardware sectors (80026 MB)
Jul 14 11:12:23 localhost [ 5.785207] sd 0:0:0:0: [sda] Write Protect is off
Jul 14 11:12:23 localhost [ 5.785210] sd 0:0:0:0: [sda] Mode Sense: 00
3a 00 00
Jul 14 11:12:23 localhost [ 5.785227] sd 0:0:0:0: [sda] Write cache:
enabled, read cache: enabled, doesn't support DPO or FUA
Jul 14 11:12:23 localhost [ 5.785231] sda: sda1 sda2 < sda5 sda6 >
Jul 14 11:12:23 localhost [ 5.903658] sd 0:0:0:0: [sda] Attached SCSI disk
Jul 14 11:12:23 localhost [ 5.903678] sd 0:0:0:0: Attached scsi generic
sg0 type 0
Jul 14 11:12:23 localhost [ 5.904537] ACPI: PCI Interrupt
0000:00:14.1[A] -> GSI 16 (level, low) -> IRQ 16
Jul 14 11:12:23 localhost [ 5.904629] scsi4 : pata_atiixp
Jul 14 11:12:23 localhost [ 5.904722] scsi5 : pata_atiixp
Jul 14 11:12:23 localhost [ 5.905213] ata5: PATA max UDMA/100 cmd 0x1f0
ctl 0x3f6 bmdma 0x5040 irq 14
Jul 14 11:12:23 localhost [ 5.905216] ata6: PATA max UDMA/100 cmd 0x170
ctl 0x376 bmdma 0x5048 irq 15
Jul 14 11:12:23 localhost [ 6.245700] ata5.00: ATAPI: TSSTcorpCD/DVDW
TS-L632D, HH17, max MWDMA2
Jul 14 11:12:23 localhost [ 6.437678] ata5.00: configured for MWDMA2
Jul 14 11:12:23 localhost [ 6.595751] scsi 4:0:0:0: CD-ROM TSSTcorp
CD/DVDW TS-L632D HH17 PQ: 0 ANSI: 5
Jul 14 11:12:23 localhost [ 6.624413] sr0: scsi3-mmc drive: 24x/24x
writer dvd-ram cd/rw xa/form2 cdda tray
Jul 14 11:12:23 localhost [ 6.624413] Uniform CD-ROM driver Revision: 3.20
Jul 14 11:12:23 localhost [ 6.624413] sr 4:0:0:0: Attached scsi CD-ROM sr0
Jul 14 11:12:23 localhost [ 6.624413] sr 4:0:0:0: Attached scsi generic
sg1 type 5
Jul 14 11:12:23 localhost [ 6.625563] I2O subsystem v1.325
Jul 14 11:12:23 localhost [ 6.625567] i2o: max drivers = 8
Jul 14 11:12:23 localhost [ 6.625692] I2O Configuration OSM v1.323
Jul 14 11:12:23 localhost [ 6.625761] I2O Bus Adapter OSM v1.317
Jul 14 11:12:23 localhost [ 6.625792] I2O Block Device OSM v1.325
Jul 14 11:12:23 localhost [ 6.625951] I2O SCSI Peripheral OSM v1.316
Jul 14 11:12:23 localhost [ 6.625978] I2O ProcFS OSM v1.316
Jul 14 11:12:23 localhost [ 6.626017] Fusion MPT base driver 3.04.06
Jul 14 11:12:23 localhost [ 6.626019] Copyright (c) 1999-2007 LSI
Corporation
Jul 14 11:12:23 localhost [ 6.626024] Fusion MPT SPI Host driver 3.04.06
Jul 14 11:12:23 localhost [ 6.626079] Fusion MPT FC Host driver 3.04.06
Jul 14 11:12:23 localhost [ 6.626129] Fusion MPT SAS Host driver 3.04.06
Jul 14 11:12:23 localhost [ 6.626175] Fusion MPT misc device (ioctl)
driver 3.04.06
Jul 14 11:12:23 localhost [ 6.626213] mptctl: Registered with Fusion MPT
base driver
Jul 14 11:12:23 localhost [ 6.626216] mptctl: /dev/mptctl @
(major,minor=10,220)
Jul 14 11:12:23 localhost [ 6.626218] Fusion MPT LAN driver 3.04.06
Jul 14 11:12:23 localhost [ 6.626480] ACPI: PCI Interrupt
0000:02:04.1[B] -> GSI 21 (level, low) -> IRQ 21
Jul 14 11:12:23 localhost [ 6.678422] ohci1394: fw-host0: OHCI-1394 1.1
(PCI): IRQ=[21] MMIO=[d0101000-d01017ff] Max Packet=[2048] IR/IT
contexts=[4/4]
Jul 14 11:12:23 localhost [ 6.682657] usbcore: registered new interface
driver usblp
Jul 14 11:12:23 localhost [ 6.682661] Initializing USB Mass Storage
driver...
Jul 14 11:12:23 localhost [ 6.682694] usbcore: registered new interface
driver usb-storage
Jul 14 11:12:23 localhost [ 6.682697] USB Mass Storage support registered.
Jul 14 11:12:23 localhost [ 6.682734] usbcore: registered new interface
driver libusual
Jul 14 11:12:23 localhost [ 6.682821] PNP: PS/2 Controller
[PNP0303:C249,PNP0f13:C24A] at 0x60,0x64 irq 1,12
Jul 14 11:12:23 localhost [ 6.685170] i8042.c: Detected active
multiplexing controller, rev 1.1.
Jul 14 11:12:23 localhost [ 6.685993] serio: i8042 KBD port at 0x60,0x64
irq 1
Jul 14 11:12:23 localhost [ 6.685997] serio: i8042 AUX0 port at
0x60,0x64 irq 12
Jul 14 11:12:23 localhost [ 6.686000] serio: i8042 AUX1 port at
0x60,0x64 irq 12
Jul 14 11:12:23 localhost [ 6.686003] serio: i8042 AUX2 port at
0x60,0x64 irq 12
Jul 14 11:12:23 localhost [ 6.686005] serio: i8042 AUX3 port at
0x60,0x64 irq 12
Jul 14 11:12:23 localhost [ 6.693230] parkbd: no such parport
Jul 14 11:12:23 localhost [ 6.696492] mice: PS/2 mouse device common for
all mice
Jul 14 11:12:23 localhost [ 6.731963] input: AT Translated Set 2
keyboard as /class/input/input4
Jul 14 11:12:23 localhost [ 6.750185] md: linear personality registered
for level -1
Jul 14 11:12:23 localhost [ 6.750185] md: raid0 personality registered
for level 0
Jul 14 11:12:23 localhost [ 6.750185] md: raid1 personality registered
for level 1
Jul 14 11:12:23 localhost [ 6.750185] md: raid10 personality registered
for level 10
Jul 14 11:12:23 localhost [ 6.766206] raid6: int64x1 1820 MB/s
Jul 14 11:12:23 localhost [ 6.783200] raid6: int64x2 2390 MB/s
Jul 14 11:12:23 localhost [ 6.800193] raid6: int64x4 2222 MB/s
Jul 14 11:12:23 localhost [ 6.817196] raid6: int64x8 1996 MB/s
Jul 14 11:12:23 localhost [ 6.834174] raid6: sse2x1 2789 MB/s
Jul 14 11:12:23 localhost [ 6.851172] raid6: sse2x2 3730 MB/s
Jul 14 11:12:23 localhost [ 6.868175] raid6: sse2x4 3796 MB/s
Jul 14 11:12:23 localhost [ 6.868177] raid6: using algorithm sse2x4
(3796 MB/s)
Jul 14 11:12:23 localhost [ 6.868181] md: raid6 personality registered
for level 6
Jul 14 11:12:23 localhost [ 6.868183] md: raid5 personality registered
for level 5
Jul 14 11:12:23 localhost [ 6.868185] md: raid4 personality registered
for level 4
Jul 14 11:12:23 localhost [ 6.868187] md: multipath personality
registered for level -4
Jul 14 11:12:23 localhost [ 6.868189] md: faulty personality registered
for level -5
Jul 14 11:12:23 localhost [ 6.868389] device-mapper: ioctl: 4.13.0-ioctl
(2007-10-18) initialised: [email protected]
Jul 14 11:12:23 localhost [ 6.868651] cpuidle: using governor ladder
Jul 14 11:12:23 localhost [ 6.868949] cpuidle: using governor menu
Jul 14 11:12:23 localhost [ 7.490268] Synaptics Touchpad, model: 1, fw:
6.2, id: 0x2580b1, caps: 0xa04793/0x300000
Jul 14 11:12:23 localhost [ 7.490273] serio: Synaptics pass-through port
at isa0060/serio4/input0
Jul 14 11:12:23 localhost [ 7.530585] input: SynPS/2 Synaptics TouchPad
as /class/input/input5
Jul 14 11:12:23 localhost [ 7.539273] dcdbas dcdbas: Dell Systems
Management Base Driver (version 5.6.0-3.2)
Jul 14 11:12:23 localhost [ 7.539349] usbcore: registered new interface
driver hiddev
Jul 14 11:12:23 localhost [ 7.539381] usbcore: registered new interface
driver usbhid
Jul 14 11:12:23 localhost [ 7.539384] drivers/hid/usbhid/hid-core.c:
v2.6:USB HID core driver
Jul 14 11:12:23 localhost [ 7.539975] TCP bic registered
Jul 14 11:12:23 localhost [ 7.539991] NET: Registered protocol family 1
Jul 14 11:12:23 localhost [ 7.540005] NET: Registered protocol family 17
Jul 14 11:12:23 localhost [ 7.540181] RPC: Registered udp transport module.
Jul 14 11:12:23 localhost [ 7.540183] RPC: Registered tcp transport module.
Jul 14 11:12:23 localhost [ 7.540196] powernow-k8: Found 1 Mobile AMD
Sempron(tm) Processor 3600+ processors (1 cpu cores) (version 2.20.00)
Jul 14 11:12:23 localhost [ 7.540233] powernow-k8: 0 : fid 0xc (2000
MHz), vid 0x10
Jul 14 11:12:23 localhost [ 7.540236] powernow-k8: 1 : fid 0xa (1800
MHz), vid 0x12
Jul 14 11:12:23 localhost [ 7.540238] powernow-k8: 2 : fid 0x8 (1600
MHz), vid 0x14
Jul 14 11:12:23 localhost [ 7.540240] powernow-k8: 3 : fid 0x0 (800
MHz), vid 0x18
Jul 14 11:12:23 localhost [ 7.540266] powernow-k8: ph2 null fid
transition 0xc
Jul 14 11:12:23 localhost [ 7.540491] registered taskstats version 1
Jul 14 11:12:23 localhost [ 7.540620] drivers/rtc/hctosys.c: unable to
open rtc device (rtc0)
Jul 14 11:12:23 localhost [ 7.540635] Freeing unused kernel memory: 428k
freed
Jul 14 11:12:23 localhost [ 7.945187] ieee1394: Host added:
ID:BUS[0-00:1023] GUID[00023f99295d2f0e]
Jul 14 11:12:23 localhost [ 8.171975] ata1: soft resetting link
Jul 14 11:12:23 localhost [ 8.324961] ata1: SATA link up 1.5 Gbps
(SStatus 113 SControl 300)
Jul 14 11:12:23 localhost [ 8.325393] ata1.00: SB600 AHCI: limiting to
255 sectors per cmd
Jul 14 11:12:23 localhost [ 8.325929] ata1.00: SB600 AHCI: limiting to
255 sectors per cmd
Jul 14 11:12:23 localhost [ 8.325932] ata1.00: configured for UDMA/100
Jul 14 11:12:23 localhost [ 8.325936] ata1: EH complete
Jul 14 11:12:23 localhost [ 8.325978] sd 0:0:0:0: [sda] 156301488
512-byte hardware sectors (80026 MB)
Jul 14 11:12:23 localhost [ 8.325991] sd 0:0:0:0: [sda] Write Protect is off
Jul 14 11:12:23 localhost [ 8.325993] sd 0:0:0:0: [sda] Mode Sense: 00
3a 00 00
Jul 14 11:12:23 localhost [ 8.326011] sd 0:0:0:0: [sda] Write cache:
enabled, read cache: enabled, doesn't support DPO or FUA
Jul 14 11:12:23 localhost [ 8.541019] ACPI: PCI Interrupt
0000:00:13.5[D] -> GSI 23 (level, low) -> IRQ 23
Jul 14 11:12:23 localhost [ 8.541035] ehci_hcd 0000:00:13.5: EHCI Host
Controller
Jul 14 11:12:23 localhost [ 8.541168] ehci_hcd 0000:00:13.5: new USB bus
registered, assigned bus number 1
Jul 14 11:12:23 localhost [ 8.541216] ehci_hcd 0000:00:13.5: debug port 1
Jul 14 11:12:23 localhost [ 8.541232] ehci_hcd 0000:00:13.5: irq 23, io
mem 0xd0606000
Jul 14 11:12:23 localhost [ 8.546919] ehci_hcd 0000:00:13.5: USB 2.0
started, EHCI 1.00, driver 10 Dec 2004
Jul 14 11:12:23 localhost [ 8.547108] usb usb1: configuration #1 chosen
from 1 choice
Jul 14 11:12:23 localhost [ 8.547153] hub 1-0:1.0: USB hub found
Jul 14 11:12:23 localhost [ 8.547162] hub 1-0:1.0: 10 ports detected
Jul 14 11:12:23 localhost [ 8.688424] USB Universal Host Controller
Interface driver v3.0
Jul 14 11:12:23 localhost [ 8.788190] sl811: driver sl811-hcd, 19 May 2005
Jul 14 11:12:23 localhost [ 8.802923] hub 1-0:1.0: unable to enumerate
USB device on port 3
Jul 14 11:12:23 localhost [ 9.008884] hub 1-0:1.0: unable to enumerate
USB device on port 5
Jul 14 11:12:23 localhost [ 9.148467] Intel(R) PRO/1000 Network Driver -
version 7.3.20-k2
Jul 14 11:12:23 localhost [ 9.148471] Copyright (c) 1999-2006 Intel
Corporation.
Jul 14 11:12:23 localhost [ 9.177026] tg3.c:v3.91 (April 18, 2008)
Jul 14 11:12:23 localhost [ 9.177086] ACPI: PCI Interrupt
0000:10:00.0[A] -> GSI 16 (level, low) -> IRQ 16
Jul 14 11:12:23 localhost [ 9.177096] PCI: Setting latency timer of
device 0000:10:00.0 to 64
Jul 14 11:12:23 localhost [ 9.384458] eth0: Tigon3 [partno(none) rev
b002 PHY(5787)] (PCI Express) 10/100/1000Base-T Ethernet 00:1a:4b:58:56:fe
Jul 14 11:12:23 localhost [ 9.384463] eth0: RXcsums[1] LinkChgREG[0]
MIirq[0] ASF[0] WireSpeed[1] TSOcap[1]
Jul 14 11:12:23 localhost [ 9.384467] eth0: dma_rwctrl[76180000]
dma_mask[64-bit]
Jul 14 11:12:23 localhost [ 20.472144] fbcondecor: console 0 using theme
'sabayon'
Jul 14 11:12:23 localhost [ 20.566664] fbcondecor: switched decor state
to 'on' on console 0
Jul 14 11:12:23 localhost [ 22.737510] TuxOnIce: Normal swapspace found.
Jul 14 11:12:23 localhost [ 22.745947] TuxOnIce: Failed to initialise
the lzf compression transform.
Jul 14 11:12:23 localhost [ 22.801255] kjournald starting. Commit
interval 5 seconds
Jul 14 11:12:23 localhost [ 22.801266] EXT3-fs: mounted filesystem with
ordered data mode.
Jul 14 11:12:23 localhost [ 26.177341] pci_hotplug: PCI Hot Plug PCI
Core version: 0.5
Jul 14 11:12:23 localhost [ 26.198376] shpchp: Standard Hot Plug PCI
Controller Driver version: 0.4
Jul 14 11:12:23 localhost [ 26.434516] ACPI: device:03 is registered as
cooling_device5
Jul 14 11:12:23 localhost [ 26.435581] input: Video Bus as
/class/input/input6
Jul 14 11:12:23 localhost [ 26.443355] ACPI: Video Device [C08D]
(multi-head: yes rom: no post: no)
Jul 14 11:12:23 localhost [ 26.817183] fglrx: no version for
"struct_module" found: kernel tainted.
Jul 14 11:12:23 localhost [ 26.820396] fglrx: module license
'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints
kernel.
Jul 14 11:12:23 localhost [ 26.844750] [fglrx] vendor: 1002 device: 791f
count: 1
Jul 14 11:12:23 localhost [ 26.844841] [fglrx] Maximum main memory to
use for locked dma buffers: 1760 MBytes.
Jul 14 11:12:23 localhost [ 26.844999] [fglrx] PAT is enabled successfully!
Jul 14 11:12:23 localhost [ 26.845031] [fglrx] module loaded - fglrx
8.50.3 [Jun 2 2008] with 1 minors
Jul 14 11:12:23 localhost [ 26.845282] ACPI: PCI Interrupt
0000:30:00.0[A] -> GSI 18 (level, low) -> IRQ 18
Jul 14 11:12:23 localhost [ 26.845292] PCI: Setting latency timer of
device 0000:30:00.0 to 64
Jul 14 11:12:23 localhost [ 26.853175] ssb: Core 0 found: ChipCommon (cc
0x800, rev 0x13, vendor 0x4243)
Jul 14 11:12:23 localhost [ 26.853184] ssb: Core 1 found: IEEE 802.11
(cc 0x812, rev 0x0D, vendor 0x4243)
Jul 14 11:12:23 localhost [ 26.853192] ssb: Core 2 found: USB 1.1 Host
(cc 0x817, rev 0x04, vendor 0x4243)
Jul 14 11:12:23 localhost [ 26.853201] ssb: Core 3 found: PCI-E (cc
0x820, rev 0x05, vendor 0x4243)
Jul 14 11:12:23 localhost [ 26.862907] ssb: SPROM revision 3 detected.
Jul 14 11:12:23 localhost [ 26.870213] ssb: Sonics Silicon Backplane
found on PCI device 0000:30:00.0
Jul 14 11:12:23 localhost [ 26.907282] ohci_hcd: 2006 August 04 USB 1.1
'Open' Host Controller (OHCI) Driver
Jul 14 11:12:23 localhost [ 26.907322] ACPI: PCI Interrupt
0000:00:13.0[A] -> GSI 23 (level, low) -> IRQ 23
Jul 14 11:12:23 localhost [ 26.907338] ohci_hcd 0000:00:13.0: OHCI Host
Controller
Jul 14 11:12:23 localhost [ 26.907406] ohci_hcd 0000:00:13.0: new USB
bus registered, assigned bus number 2
Jul 14 11:12:23 localhost [ 26.907428] ohci_hcd 0000:00:13.0: irq 23, io
mem 0xd0601000
Jul 14 11:12:23 localhost [ 26.962276] usb usb2: configuration #1 chosen
from 1 choice
Jul 14 11:12:23 localhost [ 26.962306] hub 2-0:1.0: USB hub found
Jul 14 11:12:23 localhost [ 26.962322] hub 2-0:1.0: 2 ports detected
Jul 14 11:12:23 localhost [ 27.063239] piix4_smbus 0000:00:14.0: Found
0000:00:14.0 device
Jul 14 11:12:23 localhost [ 27.063335] ACPI: PCI Interrupt
0000:00:13.1[B] -> GSI 17 (level, low) -> IRQ 17
Jul 14 11:12:23 localhost [ 27.063354] ohci_hcd 0000:00:13.1: OHCI Host
Controller
Jul 14 11:12:23 localhost [ 27.063411] ohci_hcd 0000:00:13.1: new USB
bus registered, assigned bus number 3
Jul 14 11:12:23 localhost [ 27.063439] ohci_hcd 0000:00:13.1: irq 17, io
mem 0xd0602000
Jul 14 11:12:23 localhost [ 27.119439] usb usb3: configuration #1 chosen
from 1 choice
Jul 14 11:12:23 localhost [ 27.119470] hub 3-0:1.0: USB hub found
Jul 14 11:12:23 localhost [ 27.119486] hub 3-0:1.0: 2 ports detected
Jul 14 11:12:23 localhost [ 27.212536] input: PC Speaker as
/class/input/input7
Jul 14 11:12:23 localhost [ 27.220235] ACPI: PCI Interrupt
0000:00:13.2[C] -> GSI 17 (level, low) -> IRQ 17
Jul 14 11:12:23 localhost [ 27.220255] ohci_hcd 0000:00:13.2: OHCI Host
Controller
Jul 14 11:12:23 localhost [ 27.220315] ohci_hcd 0000:00:13.2: new USB
bus registered, assigned bus number 4
Jul 14 11:12:23 localhost [ 27.220337] ohci_hcd 0000:00:13.2: irq 17, io
mem 0xd0603000
Jul 14 11:12:23 localhost [ 27.275288] usb usb4: configuration #1 chosen
from 1 choice
Jul 14 11:12:23 localhost [ 27.275322] hub 4-0:1.0: USB hub found
Jul 14 11:12:23 localhost [ 27.275338] hub 4-0:1.0: 2 ports detected
Jul 14 11:12:23 localhost [ 27.285095] hub 1-0:1.0: unable to enumerate
USB device on port 3
Jul 14 11:12:23 localhost [ 27.384360] ACPI: PCI Interrupt
0000:00:14.2[A] -> GSI 16 (level, low) -> IRQ 16
Jul 14 11:12:23 localhost [ 27.385289] tpm_inf_pnp 00:03: Found C231
with ID IFX0102
Jul 14 11:12:23 localhost [ 27.385343] tpm_inf_pnp 00:03: TPM found:
config base 0x520, data base 0x530, chip version 0x000b, vendor id
0x15d1 (Infineon), product id 0x000b (SLB 9635 TT 1.2)
Jul 14 11:12:23 localhost [ 27.455295] ACPI: PCI Interrupt
0000:00:13.3[B] -> GSI 17 (level, low) -> IRQ 17
Jul 14 11:12:23 localhost [ 27.455316] ohci_hcd 0000:00:13.3: OHCI Host
Controller
Jul 14 11:12:23 localhost [ 27.455384] ohci_hcd 0000:00:13.3: new USB
bus registered, assigned bus number 5
Jul 14 11:12:23 localhost [ 27.455406] ohci_hcd 0000:00:13.3: irq 17, io
mem 0xd0604000
Jul 14 11:12:23 localhost [ 27.491062] hub 1-0:1.0: unable to enumerate
USB device on port 5
Jul 14 11:12:23 localhost [ 27.510213] usb usb5: configuration #1 chosen
from 1 choice
Jul 14 11:12:23 localhost [ 27.510244] hub 5-0:1.0: USB hub found
Jul 14 11:12:23 localhost [ 27.510260] hub 5-0:1.0: 2 ports detected
Jul 14 11:12:23 localhost [ 27.625434] ACPI: PCI Interrupt
0000:00:13.4[C] -> GSI 17 (level, low) -> IRQ 17
Jul 14 11:12:23 localhost [ 27.625454] ohci_hcd 0000:00:13.4: OHCI Host
Controller
Jul 14 11:12:23 localhost [ 27.625519] ohci_hcd 0000:00:13.4: new USB
bus registered, assigned bus number 6
Jul 14 11:12:23 localhost [ 27.625541] ohci_hcd 0000:00:13.4: irq 17, io
mem 0xd0605000
Jul 14 11:12:23 localhost [ 27.665929] b43-phy0: Broadcom 4311 WLAN found
Jul 14 11:12:23 localhost [ 27.680198] usb usb6: configuration #1 chosen
from 1 choice
Jul 14 11:12:23 localhost [ 27.680233] hub 6-0:1.0: USB hub found
Jul 14 11:12:23 localhost [ 27.680249] hub 6-0:1.0: 2 ports detected
Jul 14 11:12:23 localhost [ 27.691825] phy0: Selected rate control
algorithm 'pid'
Jul 14 11:12:23 localhost [ 27.714970] Broadcom 43xx driver loaded [
Features: PMLR, Firmware-ID: FW13 ]
Jul 14 11:12:23 localhost [ 27.768012] usb 3-1: new low speed USB device
using ohci_hcd and address 2
Jul 14 11:12:23 localhost [ 27.800454] Yenta: CardBus bridge found at
0000:02:04.0 [103c:30c2]
Jul 14 11:12:23 localhost [ 27.930862] Yenta: ISA IRQ mask 0x0cb8, PCI
irq 20
Jul 14 11:12:23 localhost [ 27.930867] Socket status: 30000006
Jul 14 11:12:23 localhost [ 27.930870] Yenta: Raising subordinate bus#
of parent bus (#02) from #03 to #06
Jul 14 11:12:23 localhost [ 27.930876] pcmcia: parent PCI bridge I/O
window: 0x1000 - 0x1fff
Jul 14 11:12:23 localhost [ 27.930880] pcmcia: parent PCI bridge Memory
window: 0xd0100000 - 0xd03fffff
Jul 14 11:12:23 localhost [ 27.930884] pcmcia: parent PCI bridge Memory
window: 0x88000000 - 0x8bffffff
Jul 14 11:12:23 localhost [ 27.968265] usb 3-1: configuration #1 chosen
from 1 choice
Jul 14 11:12:23 localhost [ 27.975373] input: Microsoft Microsoft
5-Button Mouse with IntelliEye(TM) as /class/input/input8
Jul 14 11:12:23 localhost [ 27.984034] input,hidraw0: USB HID v1.10
Mouse [Microsoft Microsoft 5-Button Mouse with IntelliEye(TM)] on
usb-0000:00:13.1-1
Jul 14 11:12:23 localhost [ 28.260930] usb 4-1: new full speed USB
device using ohci_hcd and address 2
Jul 14 11:12:23 localhost [ 28.463250] usb 4-1: configuration #1 chosen
from 1 choice
Jul 14 11:12:23 localhost [ 37.887605] EXT3 FS on sda5, internal journal
Jul 14 11:12:23 localhost [ 38.384389] kjournald starting. Commit
interval 5 seconds
Jul 14 11:12:23 localhost [ 38.384892] EXT3 FS on sda1, internal journal
Jul 14 11:12:23 localhost [ 38.384897] EXT3-fs: mounted filesystem with
ordered data mode.
Jul 14 11:12:23 localhost [ 46.201074] Adding 1397612k swap on
/dev/sda6. Priority:-1 extents:1 across:1397612k
Jul 14 11:12:23 localhost [ 49.022502] ACPI: PCI Interrupt
0000:01:05.0[B] -> GSI 19 (level, low) -> IRQ 19
Jul 14 11:12:23 localhost [ 51.539994] [fglrx] GART Table is not in
FRAME_BUFFER range
Jul 14 11:12:23 localhost [ 51.546717] [fglrx] Reserved FB block: Shared
offset:0, size:1000000
Jul 14 11:12:23 localhost [ 51.546722] [fglrx] Reserved FB block:
Unshared offset:7ffb000, size:5000
Jul 14 11:12:24 localhost NetworkManager: <info> starting...
Jul 14 11:12:25 localhost NetworkManager: <info> New VPN service
'openvpn' (org.freedesktop.NetworkManager.openvpn).
Jul 14 11:12:25 localhost NetworkManager: <info> New VPN service 'vpnc'
(org.freedesktop.NetworkManager.vpnc).
Jul 14 11:12:25 localhost [ 58.144095] input: b43-phy0 as
/class/input/input9
Jul 14 11:12:25 localhost [ 58.510340] b43-phy0: Loading firmware
version 410.2160 (2007-05-26 15:32:10)
Jul 14 11:12:26 localhost rpc.statd[11155]: Version 1.1.2 Starting
Jul 14 11:12:26 localhost rpc.statd[11155]: Flags:
Jul 14 11:12:27 localhost [ 60.105033] Registered led device: b43-phy0::tx
Jul 14 11:12:27 localhost [ 60.105245] Registered led device: b43-phy0::rx
Jul 14 11:12:27 localhost [ 60.105337] Registered led device:
b43-phy0::radio
Jul 14 11:12:27 localhost [ 60.105408] b43-phy0 ERROR: PHY transmission
error
Jul 14 11:12:27 localhost NetworkManager: <debug> [1216033947.243399]
GentooReadConfig(): Enabling DHCP for device wlan0.
Jul 14 11:12:27 localhost NetworkManager: <debug> [1216033947.243537]
GentooReadConfig(): Found hostname.
Jul 14 11:12:27 localhost NetworkManager: nm_ip4_config_set_hostname:
assertion `config != NULL' failed
Jul 14 11:12:27 localhost NetworkManager: <info> wlan0: Device is
fully-supported using driver '(null)'.
Jul 14 11:12:27 localhost NetworkManager: <info> wlan0: driver supports
SSID scans (scan_capa 0x01).
Jul 14 11:12:27 localhost NetworkManager: <info> nm_device_init():
waiting for device's worker thread to start
Jul 14 11:12:27 localhost NetworkManager: <info> nm_device_init():
device's worker thread started, continuing.
Jul 14 11:12:27 localhost NetworkManager: <info> Now managing wireless
(802.11) device 'wlan0'.
Jul 14 11:12:27 localhost NetworkManager: <info> Deactivating device wlan0.
Jul 14 11:12:27 localhost [ 60.497877] warning: `avahi-daemon' uses
32-bit capabilities (legacy support in use)
Jul 14 11:12:27 localhost avahi-daemon[11181]: Found user 'avahi' (UID
108) and group 'avahi' (GID 444).
Jul 14 11:12:27 localhost avahi-daemon[11181]: Successfully dropped root
privileges.
Jul 14 11:12:27 localhost avahi-daemon[11181]: avahi-daemon 0.6.22
starting up.
Jul 14 11:12:27 localhost avahi-daemon[11181]: Successfully called chroot().
Jul 14 11:12:27 localhost avahi-daemon[11181]: Successfully dropped
remaining capabilities.
Jul 14 11:12:28 localhost avahi-daemon[11182]: chroot.c: open() failed:
No such file or directory
Jul 14 11:12:28 localhost avahi-daemon[11181]: Failed to open
/etc/resolv.conf: Invalid argument
Jul 14 11:12:28 localhost avahi-daemon[11181]: Loading service file
/services/sftp-ssh.service.
Jul 14 11:12:28 localhost avahi-daemon[11181]: Loading service file
/services/ssh.service.
Jul 14 11:12:28 localhost [ 61.152777] NET: Registered protocol family 10
Jul 14 11:12:28 localhost [ 61.153792] lo: Disabled Privacy Extensions
Jul 14 11:12:28 localhost [ 61.155452] ADDRCONF(NETDEV_UP): wlan0: link
is not ready
Jul 14 11:12:28 localhost avahi-daemon[11181]: System host name is set
to 'localhost'. This is not a suitable mDNS host name, looking for
alternatives.
Jul 14 11:12:28 localhost avahi-daemon[11181]: Network interface
enumeration completed.
Jul 14 11:12:28 localhost avahi-daemon[11181]: Registering HINFO record
with values 'X86_64'/'LINUX'.
Jul 14 11:12:28 localhost avahi-daemon[11181]: Server startup complete.
Host name is linux.local. Local service cookie is 1695439168.
Jul 14 11:12:28 localhost avahi-daemon[11181]: Service "linux"
(/services/ssh.service) successfully established.
Jul 14 11:12:28 localhost avahi-daemon[11181]: Service "SFTP File
Transfer on linux" (/services/sftp-ssh.service) successfully established.
Jul 14 11:12:29 localhost [ 62.225181] ADDRCONF(NETDEV_UP): eth0: link
is not ready
Jul 14 11:12:29 localhost NetworkManager: <debug> [1216033949.332147]
GentooReadConfig(): Enabling DHCP for device eth0.
Jul 14 11:12:29 localhost NetworkManager: <debug> [1216033949.332401]
GentooReadConfig(): Found hostname.
Jul 14 11:12:29 localhost NetworkManager: nm_ip4_config_set_hostname:
assertion `config != NULL' failed
Jul 14 11:12:29 localhost NetworkManager: <info> eth0: Device is
fully-supported using driver '(null)'.
Jul 14 11:12:29 localhost NetworkManager: <info> nm_device_init():
waiting for device's worker thread to start
Jul 14 11:12:29 localhost NetworkManager: <info> nm_device_init():
device's worker thread started, continuing.
Jul 14 11:12:29 localhost NetworkManager: <info> Now managing wired
Ethernet (802.3) device 'eth0'.
Jul 14 11:12:29 localhost NetworkManager: <info> Deactivating device eth0.
Jul 14 11:12:29 localhost NetworkManager: <info> Will activate wired
connection 'eth0' because it now has a link.
Jul 14 11:12:29 localhost NetworkManager: <debug> [1216033949.341104]
nm_hal_device_added(): New device added (hal udi is
'/org/freedesktop/Hal/devices/computer_logicaldev_input_4').
Jul 14 11:12:29 localhost [ 62.680557] NFSD: Using
/var/lib/nfs/v4recovery as the NFSv4 state recovery directory
Jul 14 11:12:29 localhost [ 62.680743] NFSD: starting 90-second grace period
Jul 14 11:12:30 localhost [ 63.778053] tg3: eth0: Link is up at 100
Mbps, full duplex.
Jul 14 11:12:30 localhost [ 63.778058] tg3: eth0: Flow control is on for
TX and on for RX.
Jul 14 11:12:30 localhost [ 63.778668] ADDRCONF(NETDEV_CHANGE): eth0:
link becomes ready
Jul 14 11:12:30 localhost NetworkManager: <info> Will activate wired
connection 'eth0' because it now has a link.
Jul 14 11:12:30 localhost NetworkManager: <info> SWITCH: no current
connection, found better connection 'eth0'.
Jul 14 11:12:30 localhost NetworkManager: <info> Will activate
connection 'eth0'.
Jul 14 11:12:30 localhost NetworkManager: <info> Device eth0 activation
scheduled...
Jul 14 11:12:30 localhost NetworkManager: <info> Activation (eth0)
started...
Jul 14 11:12:30 localhost NetworkManager: <info> Activation (eth0) Stage
1 of 5 (Device Prepare) scheduled...
Jul 14 11:12:30 localhost NetworkManager: <info> Activation (eth0) Stage
1 of 5 (Device Prepare) started...
Jul 14 11:12:30 localhost NetworkManager: <info> Activation (eth0) Stage
2 of 5 (Device Configure) scheduled...
Jul 14 11:12:30 localhost NetworkManager: <info> Activation (eth0) Stage
1 of 5 (Device Prepare) complete.
Jul 14 11:12:30 localhost NetworkManager: <info> Activation (eth0) Stage
2 of 5 (Device Configure) starting...
Jul 14 11:12:30 localhost NetworkManager: <info> Activation (eth0) Stage
2 of 5 (Device Configure) successful.
Jul 14 11:12:30 localhost NetworkManager: <info> Activation (eth0) Stage
3 of 5 (IP Configure Start) scheduled.
Jul 14 11:12:30 localhost NetworkManager: <info> Activation (eth0) Stage
2 of 5 (Device Configure) complete.
Jul 14 11:12:30 localhost NetworkManager: <info> Activation (eth0) Stage
3 of 5 (IP Configure Start) started...
Jul 14 11:12:30 localhost dhcdbd: message_handler: message handler not
found under /com/redhat/dhcp/eth0 for sub-path eth0.dbus.get.reason
Jul 14 11:12:31 localhost [ 64.537597] fbcondecor: console 1 using theme
'sabayon'
Jul 14 11:12:31 localhost [ 64.725655] fbcondecor: switched decor state
to 'on' on console 1
Jul 14 11:12:31 localhost NetworkManager: <info> Activation (eth0)
Beginning DHCP transaction.
Jul 14 11:12:31 localhost avahi-daemon[11181]: Joining mDNS multicast
group on interface eth0.IPv6 with address fe80::21a:4bff:fe58:56fe.
Jul 14 11:12:31 localhost avahi-daemon[11181]: New relevant interface
eth0.IPv6 for mDNS.
Jul 14 11:12:31 localhost avahi-daemon[11181]: Registering new address
record for fe80::21a:4bff:fe58:56fe on eth0.*.
Jul 14 11:12:31 localhost NetworkManager: <info> Activation (eth0) Stage
3 of 5 (IP Configure Start) complete.
Jul 14 11:12:31 localhost NetworkManager: <info> DHCP daemon state is
now 12 (successfully started) for interface eth0
Jul 14 11:12:31 localhost dhclient: wmaster0: unknown hardware address
type 801
Jul 14 11:12:31 localhost [ 64.887052] fbcondecor: console 2 using theme
'sabayon'
Jul 14 11:12:32 localhost [ 65.066425] fbcondecor: switched decor state
to 'on' on console 2
Jul 14 11:12:32 localhost [ 65.303157] fbcondecor: console 3 using theme
'sabayon'
Jul 14 11:12:32 localhost [ 65.501345] fbcondecor: switched decor state
to 'on' on console 3
Jul 14 11:12:32 localhost [ 65.749552] fbcondecor: console 4 using theme
'sabayon'
Jul 14 11:12:33 localhost [ 65.930928] fbcondecor: switched decor state
to 'on' on console 4
Jul 14 11:12:33 localhost NetworkManager: <info> DHCP daemon state is
now 1 (starting) for interface eth0
Jul 14 11:12:33 localhost dhclient: wmaster0: unknown hardware address
type 801
Jul 14 11:12:33 localhost [ 66.130474] fbcondecor: console 5 using theme
'sabayon'
Jul 14 11:12:33 localhost [ 66.315604] fbcondecor: switched decor state
to 'on' on console 5
Jul 14 11:12:33 localhost /etc/init.d/alsasound[11375]: No mixer config
in /var/lib/alsa/asound.state, you have to unmute your card!
Jul 14 11:12:36 localhost dhclient: option_space_encapsulate: option
space agent does not exist, but is configured.
Jul 14 11:12:36 localhost dhclient: DHCPDISCOVER on eth0 to
255.255.255.255 port 67 interval 8
Jul 14 11:12:36 localhost dhclient: DHCPOFFER from 10.0.0.6
Jul 14 11:12:36 localhost dhclient: option_space_encapsulate: option
space agent does not exist, but is configured.
Jul 14 11:12:36 localhost dhclient: DHCPREQUEST on eth0 to
255.255.255.255 port 67
Jul 14 11:12:36 localhost dhclient: DHCPACK from 10.0.0.6
Jul 14 11:12:36 localhost avahi-daemon[11181]: Joining mDNS multicast
group on interface eth0.IPv4 with address 10.0.5.203.
Jul 14 11:12:36 localhost avahi-daemon[11181]: New relevant interface
eth0.IPv4 for mDNS.
Jul 14 11:12:36 localhost avahi-daemon[11181]: Registering new address
record for 10.0.5.203 on eth0.IPv4.
Jul 14 11:12:36 localhost avahi-daemon[11181]: Withdrawing address
record for 10.0.5.203 on eth0.
Jul 14 11:12:36 localhost avahi-daemon[11181]: Leaving mDNS multicast
group on interface eth0.IPv4 with address 10.0.5.203.
Jul 14 11:12:36 localhost avahi-daemon[11181]: Interface eth0.IPv4 no
longer relevant for mDNS.
Jul 14 11:12:36 localhost avahi-daemon[11181]: Joining mDNS multicast
group on interface eth0.IPv4 with address 10.0.5.203.
Jul 14 11:12:36 localhost avahi-daemon[11181]: New relevant interface
eth0.IPv4 for mDNS.
Jul 14 11:12:36 localhost avahi-daemon[11181]: Registering new address
record for 10.0.5.203 on eth0.IPv4.
Jul 14 11:12:36 localhost NetworkManager: <info> DHCP daemon state is
now 2 (bound) for interface eth0
Jul 14 11:12:36 localhost NetworkManager: <info> Activation (eth0) Stage
4 of 5 (IP Configure Get) scheduled...
Jul 14 11:12:36 localhost NetworkManager: <info> Activation (eth0) Stage
4 of 5 (IP Configure Get) started...
Jul 14 11:12:36 localhost dhclient: bound to 10.0.5.203 -- renewal in
3403 seconds.
Jul 14 11:12:36 localhost dhcdbd: message_handler: message handler not
found under /com/redhat/dhcp/eth0 for sub-path eth0.dbus.get.nis_domain
Jul 14 11:12:36 localhost dhcdbd: message_handler: message handler not
found under /com/redhat/dhcp/eth0 for sub-path eth0.dbus.get.nis_servers
Jul 14 11:12:36 localhost NetworkManager: <info> Retrieved the following
IP4 configuration from the DHCP daemon:
Jul 14 11:12:36 localhost NetworkManager: <info> address 10.0.5.203
Jul 14 11:12:36 localhost NetworkManager: <info> netmask 255.255.0.0
Jul 14 11:12:36 localhost NetworkManager: <info> broadcast 10.0.255.255
Jul 14 11:12:36 localhost NetworkManager: <info> gateway 10.0.0.1
Jul 14 11:12:36 localhost NetworkManager: <info> nameserver 10.0.0.192
Jul 14 11:12:36 localhost NetworkManager: <info> nameserver 10.0.0.14
Jul 14 11:12:36 localhost NetworkManager: <info> nameserver 10.0.0.250
Jul 14 11:12:36 localhost NetworkManager: <info> hostname 'localhost'
Jul 14 11:12:36 localhost NetworkManager: <info> domain name
'cambridgebroadband.com'
Jul 14 11:12:36 localhost dhcdbd: message_handler: message handler not
found under /com/redhat/dhcp/eth0 for sub-path eth0.dbus.get.interface_mtu
Jul 14 11:12:36 localhost NetworkManager: <info> Activation (eth0) Stage
5 of 5 (IP Configure Commit) scheduled...
Jul 14 11:12:36 localhost NetworkManager: <info> Activation (eth0) Stage
4 of 5 (IP Configure Get) complete.
Jul 14 11:12:36 localhost NetworkManager: <info> Activation (eth0) Stage
5 of 5 (IP Configure Commit) started...
Jul 14 11:12:36 localhost avahi-daemon[11181]: Withdrawing address
record for 10.0.5.203 on eth0.
Jul 14 11:12:36 localhost avahi-daemon[11181]: Leaving mDNS multicast
group on interface eth0.IPv4 with address 10.0.5.203.
Jul 14 11:12:36 localhost avahi-daemon[11181]: Interface eth0.IPv4 no
longer relevant for mDNS.
Jul 14 11:12:36 localhost avahi-daemon[11181]: Withdrawing address
record for fe80::21a:4bff:fe58:56fe on eth0.
Jul 14 11:12:36 localhost avahi-daemon[11181]: Leaving mDNS multicast
group on interface eth0.IPv6 with address fe80::21a:4bff:fe58:56fe.
Jul 14 11:12:36 localhost avahi-daemon[11181]: Interface eth0.IPv6 no
longer relevant for mDNS.
Jul 14 11:12:36 localhost avahi-daemon[11181]: Joining mDNS multicast
group on interface eth0.IPv4 with address 10.0.5.203.
Jul 14 11:12:36 localhost avahi-daemon[11181]: New relevant interface
eth0.IPv4 for mDNS.
Jul 14 11:12:36 localhost avahi-daemon[11181]: Registering new address
record for 10.0.5.203 on eth0.IPv4.
Jul 14 11:12:37 localhost sshd[11500]: Server listening on :: port 22.
Jul 14 11:12:37 localhost sshd[11500]: Server listening on 0.0.0.0 port 22.
Jul 14 11:12:37 localhost cron[11536]: (CRON) STARTUP (V5.0)
Jul 14 11:12:37 localhost NetworkManager: <info> Old device 'eth0'
activating, won't change.
Jul 14 11:12:37 localhost NetworkManager: <info> Activation (eth0)
successful, device activated.
Jul 14 11:12:37 localhost NetworkManager: <info> Activation (eth0)
Finish handler scheduled.
Jul 14 11:12:37 localhost NetworkManager: <info> Activation (eth0) Stage
5 of 5 (IP Configure Commit) complete.
On Thu, 17 Jul 2008, Richard wrote:
> Prepare to be spammed.... I am using a Sabayon build, but all distros I have
> tried exibit the same behavior to me. the nohz=off options also works quite
> well. (I have a 2.6.26 vanilla that behaves the same)
>
> but for now, I am off to read and setup the netconsole.
Thanks for the boot log. That looks familiar:
> Jul 14 11:12:23 localhost [ 0.098984] ..MP-BIOS bug: 8254 timer not connected
> to IO-APIC
We have a fix for that in Linus tree. Any chance to give current
mainline a test ride ?
Thanks,
tglx
Thomas Gleixner wrote:
> On Thu, 17 Jul 2008, Richard wrote:
>
>> Prepare to be spammed.... I am using a Sabayon build, but all distros I have
>> tried exibit the same behavior to me. the nohz=off options also works quite
>> well. (I have a 2.6.26 vanilla that behaves the same)
>>
>> but for now, I am off to read and setup the netconsole.
>>
>
> Thanks for the boot log. That looks familiar:
>
>
>> Jul 14 11:12:23 localhost [ 0.098984] ..MP-BIOS bug: 8254 timer not connected
>> to IO-APIC
>>
>
> We have a fix for that in Linus tree. Any chance to give current
> mainline a test ride ?
>
> Thanks,
>
> tglx
>
>
Here you go.. a 2.6.26-tip dmesg (the top seems to be missing for some
reason!) .. just shout if you need the bits on the top.
Richard
n DSDT
[ 0.074620] ACPI: EC: non-query interrupt received, switching to
interrupt mode
[ 0.338551] ACPI: Interpreter enabled
[ 0.338594] ACPI: (supports S0 S3 S4 S5)
[ 0.338762] ACPI: Using IOAPIC for interrupt routing
[ 0.349915] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
[ 0.349980] ACPI: EC: driver started in interrupt mode
[ 0.350114] ACPI: PCI Root Bridge [C08B] (0000:00)
[ 0.350352] PCI: 0000:00:12.0 reg 10 io port: [9000, 9007]
[ 0.350395] PCI: 0000:00:12.0 reg 14 io port: [9008, 900b]
[ 0.350438] PCI: 0000:00:12.0 reg 18 io port: [9010, 9017]
[ 0.350481] PCI: 0000:00:12.0 reg 1c io port: [5018, 501b]
[ 0.350524] PCI: 0000:00:12.0 reg 20 io port: [5020, 502f]
[ 0.350568] PCI: 0000:00:12.0 reg 24 32bit mmio: [d0609000, d06093ff]
[ 0.350627] pci 0000:00:12.0: set SATA to AHCI mode
[ 0.350682] PCI: 0000:00:13.0 reg 10 32bit mmio: [d0601000, d0601fff]
[ 0.350771] PCI: 0000:00:13.1 reg 10 32bit mmio: [d0602000, d0602fff]
[ 0.350860] PCI: 0000:00:13.2 reg 10 32bit mmio: [d0603000, d0603fff]
[ 0.350953] PCI: 0000:00:13.3 reg 10 32bit mmio: [d0604000, d0604fff]
[ 0.351043] PCI: 0000:00:13.4 reg 10 32bit mmio: [d0605000, d0605fff]
[ 0.351152] PCI: 0000:00:13.5 reg 10 32bit mmio: [d0606000, d06060ff]
[ 0.351260] PCI: 0000:00:14.0 reg 10 io port: [8200, 820f]
[ 0.351352] PCI: 0000:00:14.1 reg 10 io port: [0, 7]
[ 0.351395] PCI: 0000:00:14.1 reg 14 io port: [0, 3]
[ 0.351439] PCI: 0000:00:14.1 reg 18 io port: [0, 7]
[ 0.351482] PCI: 0000:00:14.1 reg 1c io port: [0, 3]
[ 0.351526] PCI: 0000:00:14.1 reg 20 io port: [5040, 504f]
[ 0.351617] PCI: 0000:00:14.2 reg 10 64bit mmio: [d0608000, d060bfff]
[ 0.351856] PCI: 0000:01:05.0 reg 10 64bit mmio: [c0000000, c7ffffff]
[ 0.351898] PCI: 0000:01:05.0 reg 18 64bit mmio: [d0400000, d040ffff]
[ 0.351939] PCI: 0000:01:05.0 reg 20 io port: [4000, 40ff]
[ 0.352018] PCI: 0000:01:05.0 reg 24 32bit mmio: [d0500000, d05fffff]
[ 0.352074] PCI: bridge 0000:00:01.0 io port: [4000, 4fff]
[ 0.352112] PCI: bridge 0000:00:01.0 32bit mmio: [d0400000, d05fffff]
[ 0.352151] PCI: bridge 0000:00:01.0 64bit mmio pref: [c0000000,
c7ffffff]
[ 0.352272] PCI: 0000:10:00.0 reg 10 64bit mmio: [d0000000, d000ffff]
[ 0.352384] PCI: bridge 0000:00:04.0 32bit mmio: [d0000000, d00fffff]
[ 0.352464] PCI: bridge 0000:00:05.0 io port: [2000, 3fff]
[ 0.352502] PCI: bridge 0000:00:05.0 32bit mmio: [cc000000, cfffffff]
[ 0.352582] PCI: 0000:30:00.0 reg 10 64bit mmio: [c8000000, c8003fff]
[ 0.352696] PCI: bridge 0000:00:06.0 32bit mmio: [c8000000, c80fffff]
[ 0.352783] PCI: 0000:02:04.0 reg 10 32bit mmio: [d0100000, d0100fff]
[ 0.352864] PCI: 0000:02:04.1 reg 10 32bit mmio: [d0101000, d01017ff]
[ 0.353004] PCI: Transparent bridge - 0000:00:14.4
[ 0.354945] PCI: bridge 0000:00:14.4 32bit mmio: [d0100000, d03fffff]
[ 0.354945] ACPI: PCI Interrupt Routing Table [\_SB_.C08B._PRT]
[ 0.354945] ACPI: PCI Interrupt Routing Table [\_SB_.C08B.C08C._PRT]
[ 0.354945] ACPI: PCI Interrupt Routing Table [\_SB_.C08B.C0FC._PRT]
[ 0.377286] ACPI: PCI Interrupt Link [C145] (IRQs 10 11) *0, disabled.
[ 0.377681] ACPI: PCI Interrupt Link [C146] (IRQs 10 11) *0, disabled.
[ 0.378076] ACPI: PCI Interrupt Link [C147] (IRQs 10 11) *0, disabled.
[ 0.378466] ACPI: PCI Interrupt Link [C148] (IRQs 10 11) *0, disabled.
[ 0.378855] ACPI: PCI Interrupt Link [C149] (IRQs 10 11) *0, disabled.
[ 0.379263] ACPI: PCI Interrupt Link [C14A] (IRQs 9) *0, disabled.
[ 0.379617] ACPI: PCI Interrupt Link [C14B] (IRQs 10 11) *0, disabled.
[ 0.380005] ACPI: PCI Interrupt Link [C14C] (IRQs 10 11) *0, disabled.
[ 0.380399] ACPI: Power Resource [C171] (off)
[ 0.380637] ACPI: Power Resource [C230] (off)
[ 0.380727] ACPI: Power Resource [C24C] (on)
[ 0.380894] ACPI: Power Resource [C395] (off)
[ 0.381032] ACPI: Power Resource [C396] (off)
[ 0.381163] ACPI: Power Resource [C397] (off)
[ 0.381294] ACPI: Power Resource [C398] (off)
[ 0.381629] ACPI: WMI: Mapper loaded
[ 0.381671] Linux Plug and Play Support v0.97 (c) Adam Belay
[ 0.381743] pnp: PnP ACPI init
[ 0.381790] ACPI: bus type pnp registered
[ 0.392418] pnp: PnP ACPI: found 14 devices
[ 0.392463] ACPI: ACPI bus type pnp unregistered
[ 0.392750] SCSI subsystem initialized
[ 0.392820] libata version 3.00 loaded.
[ 0.393028] usbcore: registered new interface driver usbfs
[ 0.393133] usbcore: registered new interface driver hub
[ 0.393214] usbcore: registered new device driver usb
[ 0.393470] PCI: Using ACPI for IRQ routing
[ 0.393549] PCI: Cannot allocate resource region 0 of device 0000:00:14.2
[ 0.398952] NetLabel: Initializing
[ 0.398994] NetLabel: domain hash size = 128
[ 0.399030] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.399083] NetLabel: unlabeled traffic allowed by default
[ 0.399252] ACPI: RTC can wake from S4
[ 0.401956] system 00:00: iomem range 0x0-0x9ffff could not be reserved
[ 0.401999] system 00:00: iomem range 0xe0000-0xfffff could not be
reserved
[ 0.402038] system 00:00: iomem range 0x100000-0xffffffff could not
be reserved
[ 0.402092] system 00:0a: ioport range 0x40b-0x40b has been reserved
[ 0.402130] system 00:0a: ioport range 0x4d0-0x4d1 has been reserved
[ 0.402168] system 00:0a: ioport range 0x4d6-0x4d6 has been reserved
[ 0.402207] system 00:0a: ioport range 0x500-0x51f has been reserved
[ 0.402245] system 00:0a: ioport range 0xc00-0xc01 has been reserved
[ 0.402283] system 00:0a: ioport range 0xc14-0xc14 has been reserved
[ 0.402322] system 00:0a: ioport range 0xc50-0xc51 has been reserved
[ 0.402360] system 00:0a: ioport range 0xc52-0xc52 has been reserved
[ 0.402399] system 00:0a: ioport range 0xc6c-0xc6c has been reserved
[ 0.402437] system 00:0a: ioport range 0xc6f-0xc6f has been reserved
[ 0.402476] system 00:0a: ioport range 0xcd0-0xcdf has been reserved
[ 0.402516] system 00:0a: iomem range 0xffb00000-0xffbfffff could not
be reserved
[ 0.402559] system 00:0a: iomem range 0xfff00000-0xffffffff could not
be reserved
[ 0.402607] system 00:0c: ioport range 0x8000-0x802f has been reserved
[ 0.402645] system 00:0c: ioport range 0x8100-0x811f has been reserved
[ 0.402685] system 00:0c: iomem range 0xe0000000-0xefffffff could not
be reserved
[ 0.402727] system 00:0c: iomem range 0xfec00000-0xfec000ff could not
be reserved
[ 0.402770] system 00:0c: iomem range 0xfed45000-0xfed8ffff has been
reserved
[ 0.402816] system 00:0d: iomem range 0xcd400-0xcffff has been reserved
[ 0.402856] system 00:0d: iomem range 0xd2a00-0xd2fff has been reserved
[ 0.402894] system 00:0d: iomem range 0x0-0x7ffffff could not be reserved
[ 0.402933] system 00:0d: iomem range 0xfee00000-0xfee00fff has been
reserved
[ 0.403431] PCI: region 0000:02:04.0/9 too large:
0x0000000000000000-0x0000000003ffffff
[ 0.403487] PCI: Bridge: 0000:00:01.0
[ 0.403523] IO window: 4000-4fff
[ 0.403560] MEM window: 0xd0400000-0xd05fffff
[ 0.403597] PREFETCH window: 0x00000000c0000000-0x00000000c7ffffff
[ 0.403636] PCI: Bridge: 0000:00:04.0
[ 0.403671] IO window: disabled.
[ 0.403708] MEM window: 0xd0000000-0xd00fffff
[ 0.403744] PREFETCH window: disabled.
[ 0.403781] PCI: Bridge: 0000:00:05.0
[ 0.403817] IO window: 2000-3fff
[ 0.403853] MEM window: 0xcc000000-0xcfffffff
[ 0.403890] PREFETCH window: disabled.
[ 0.403948] Switched to high resolution mode on CPU 0
[ 0.403953] PCI: Bridge: 0000:00:06.0
[ 0.403990] IO window: disabled.
[ 0.404036] MEM window: 0xc8000000-0xc80fffff
[ 0.404074] PREFETCH window: disabled.
[ 0.404115] PCI: Bus 3, cardbus bridge: 0000:02:04.0
[ 0.404152] IO window: 0x00001000-0x000010ff
[ 0.404193] IO window: 0x00001400-0x000014ff
[ 0.404232] MEM window: 0x8c000000-0x8fffffff
[ 0.404273] PCI: Bridge: 0000:00:14.4
[ 0.404311] IO window: 1000-1fff
[ 0.404351] MEM window: 0xd0100000-0xd03fffff
[ 0.404391] PREFETCH window: disabled.
[ 0.404448] PCI: Setting latency timer of device 0000:00:04.0 to 64
[ 0.404456] PCI: Setting latency timer of device 0000:00:05.0 to 64
[ 0.404463] PCI: Setting latency timer of device 0000:00:06.0 to 64
[ 0.404485] vendor=1002 device=4384
[ 0.404525] ACPI: PCI Interrupt 0000:02:04.0[A] -> GSI 20 (level,
low) -> IRQ 20
[ 0.404603] bus: 00 index 0 io port: [0, ffff]
[ 0.404641] bus: 00 index 1 mmio: [0, ffffffffffffffff]
[ 0.404679] bus: 01 index 0 io port: [4000, 4fff]
[ 0.404716] bus: 01 index 1 mmio: [d0400000, d05fffff]
[ 0.404754] bus: 01 index 2 mmio: [c0000000, c7ffffff]
[ 0.404792] bus: 01 index 3 mmio: [0, 0]
[ 0.404829] bus: 10 index 0 mmio: [0, 0]
[ 0.404866] bus: 10 index 1 mmio: [d0000000, d00fffff]
[ 0.404904] bus: 10 index 2 mmio: [0, 0]
[ 0.404940] bus: 10 index 3 mmio: [0, 0]
[ 0.404978] bus: 20 index 0 io port: [2000, 3fff]
[ 0.405024] bus: 20 index 1 mmio: [cc000000, cfffffff]
[ 0.405063] bus: 20 index 2 mmio: [0, 0]
[ 0.405099] bus: 20 index 3 mmio: [0, 0]
[ 0.405137] bus: 30 index 0 mmio: [0, 0]
[ 0.405174] bus: 30 index 1 mmio: [c8000000, c80fffff]
[ 0.405212] bus: 30 index 2 mmio: [0, 0]
[ 0.405249] bus: 30 index 3 mmio: [0, 0]
[ 0.405286] bus: 02 index 0 io port: [1000, 1fff]
[ 0.405323] bus: 02 index 1 mmio: [d0100000, d03fffff]
[ 0.405361] bus: 02 index 2 mmio: [0, 0]
[ 0.405398] bus: 02 index 3 io port: [0, ffff]
[ 0.405435] bus: 02 index 4 mmio: [0, ffffffffffffffff]
[ 0.405473] bus: 03 index 0 io port: [1000, 10ff]
[ 0.405510] bus: 03 index 1 io port: [1400, 14ff]
[ 0.405549] bus: 03 index 2 mmio: [0, 3ffffff]
[ 0.405586] bus: 03 index 3 mmio: [8c000000, 8fffffff]
[ 0.405635] NET: Registered protocol family 2
[ 0.415123] IP route cache hash table entries: 65536 (order: 7,
524288 bytes)
[ 0.416256] TCP established hash table entries: 262144 (order: 10,
4194304 bytes)
[ 0.418411] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.418905] TCP: Hash tables configured (established 262144 bind 65536)
[ 0.418949] TCP reno registered
[ 0.422086] NET: Registered protocol family 1
[ 0.422228] checking if image is initramfs... it is
[ 0.656268] Freeing initrd memory: 4264k freed
[ 0.659311] audit: initializing netlink socket (disabled)
[ 0.659364] type=2000 audit(1216316121.658:1): initialized
[ 0.659640] Total HugeTLB memory allocated, 0
[ 0.663226] VFS: Disk quotas dquot_6.5.1
[ 0.663372] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.665729] Installing knfsd (copyright (C) 1996 [email protected]).
[ 0.666854] NTFS driver 2.1.29 [Flags: R/W].
[ 0.667311] QNX4 filesystem 0.2.3 registered.
[ 0.667351] fuse init (API version 7.9)
[ 0.667840] JFS: nTxBlock = 8192, nTxLock = 65536
[ 0.670878] SGI XFS with ACLs, security attributes, realtime, large
block/inode numbers, no debug enabled
[ 0.671883] SGI XFS Quota Management subsystem
[ 0.671936] msgmni has been set to 3761
[ 0.672209] async_tx: api initialized (async)
[ 0.672342] Block layer SCSI generic (bsg) driver version 0.4 loaded
(major 253)
[ 0.672385] io scheduler noop registered
[ 0.672422] io scheduler anticipatory registered
[ 0.672459] io scheduler deadline registered
[ 0.672672] io scheduler cfq registered (default)
[ 0.672781] pci 0000:01:05.0: Boot video device
[ 0.672933] PCI: Setting latency timer of device 0000:00:04.0 to 64
[ 0.672953] assign_interrupt_mode Found MSI capability
[ 0.673031] Allocate Port Service[0000:00:04.0:pcie00]
[ 0.673101] Allocate Port Service[0000:00:04.0:pcie03]
[ 0.673184] PCI: Setting latency timer of device 0000:00:05.0 to 64
[ 0.673202] assign_interrupt_mode Found MSI capability
[ 0.673260] Allocate Port Service[0000:00:05.0:pcie00]
[ 0.673318] Allocate Port Service[0000:00:05.0:pcie03]
[ 0.673401] PCI: Setting latency timer of device 0000:00:06.0 to 64
[ 0.673418] assign_interrupt_mode Found MSI capability
[ 0.673475] Allocate Port Service[0000:00:06.0:pcie00]
[ 0.673534] Allocate Port Service[0000:00:06.0:pcie03]
[ 0.675061] ACPI: AC Adapter [C1EB] (off-line)
[ 0.736752] ACPI: Battery Slot [C1ED] (battery present)
[ 0.737036] ACPI: Battery Slot [C1EC] (battery absent)
[ 0.737277] input: Power Button (FF) as /class/input/input0
[ 0.737316] ACPI: Power Button (FF) [PWRF]
[ 0.737503] input: Sleep Button (CM) as /class/input/input1
[ 0.737541] ACPI: Sleep Button (CM) [C28D]
[ 0.737680] input: Lid Switch as /class/input/input2
[ 0.737798] ACPI: Lid Switch [C265]
[ 0.738159] ACPI: Transitioning device [C399] to D3
[ 0.738271] ACPI: PNP0C0B:00 is registered as cooling_device0
[ 0.738313] ACPI: Fan [C399] (off)
[ 0.738533] ACPI: Transitioning device [C39A] to D3
[ 0.738631] ACPI: PNP0C0B:01 is registered as cooling_device1
[ 0.738672] ACPI: Fan [C39A] (off)
[ 0.738890] ACPI: Transitioning device [C39B] to D3
[ 0.738999] ACPI: PNP0C0B:02 is registered as cooling_device2
[ 0.739040] ACPI: Fan [C39B] (off)
[ 0.739263] ACPI: Transitioning device [C39C] to D3
[ 0.739361] ACPI: PNP0C0B:03 is registered as cooling_device3
[ 0.739404] ACPI: Fan [C39C] (off)
[ 0.739690] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
[ 0.739909] ACPI: ACPI0007:00 is registered as cooling_device4
[ 0.739949] ACPI: Processor [C000] (supports 8 throttling states)
[ 0.752713] ACPI: LNXTHERM:01 is registered as thermal_zone0
[ 0.757844] ACPI: Thermal Zone [TZ1] (45 C)
[ 0.813424] lp: driver loaded but no devices found
[ 0.825644] ppdev: user-space parallel port driver
[ 0.825693] Linux agpgart interface v0.103
[ 0.825747] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ
sharing enabled
[ 0.830562] parport_pc 00:02: activated
[ 0.830611] parport_pc 00:02: reported by Plug and Play ACPI
[ 0.831964] parport_pc 00:02: disabled
[ 0.832721] Floppy drive(s): fd0 is 1.44M
[ 3.842993] floppy0: no floppy controllers found
[ 3.845070] brd: module loaded
[ 3.846157] loop: module loaded
[ 3.846202] Compaq SMART2 Driver (v 2.6.0)
[ 3.846333] HP CISS Driver (v 3.6.20)
[ 3.846748] MM: desc_per_page = 128
[ 3.846958] input: Macintosh mouse button emulation as
/class/input/input3
[ 3.847366] Loading iSCSI transport class v2.0-870.
[ 3.848240] iscsi: registered transport (tcp)
[ 3.848652] Adaptec aacraid driver 1.1-5[2456]-ms
[ 3.848876] aic94xx: Adaptec aic94xx SAS/SATA driver version 1.0.3 loaded
[ 3.849412] QLogic Fibre Channel HBA Driver: 8.02.01-k4
[ 3.849630] iscsi: registered transport (qla4xxx)
[ 3.849763] QLogic iSCSI HBA Driver
[ 3.849813] Emulex LightPulse Fibre Channel SCSI driver 8.2.7
[ 3.849857] Copyright(c) 2004-2008 Emulex. All rights reserved.
[ 3.850303] DC390: clustering now enabled by default. If you get
problems load
[ 3.850305] with "disable_clustering=1" and report to maintainers
[ 3.850576] megaraid cmm: 2.20.2.7 (Release Date: Sun Jul 16 00:01:03
EST 2006)
[ 3.850703] megaraid: 2.20.5.1 (Release Date: Thu Nov 16 15:32:35 EST
2006)
[ 3.850867] megasas: 00.00.03.20-rc1 Mon. March 10 11:02:31 PDT 2008
[ 3.851092] GDT-HA: Storage RAID Controller Driver. Version: 3.05
[ 3.851361] 3ware Storage Controller device driver for Linux
v1.26.02.002.
[ 3.851487] 3ware 9000 Storage Controller device driver for Linux
v2.26.02.010.
[ 3.851607] ipr: IBM Power RAID SCSI Device Driver version: 2.4.1
(April 24, 2007)
[ 3.851738] RocketRAID 3xxx/4xxx Controller driver v1.3 (071203)
[ 3.851860] stex: Promise SuperTrak EX Driver version: 3.6.0000.1
[ 3.852092] st: Version 20080224, fixed bufsize 32768, s/g segs 256
[ 3.852204] Driver 'st' needs updating - please use bus_type methods
[ 3.852320] osst :I: Tape driver with OnStream support version 0.99.4
[ 3.852321] osst :I: $Id: osst.c,v 1.73 2005/01/01 21:13:34 wriede Exp $
[ 3.852476] Driver 'osst' needs updating - please use bus_type methods
[ 3.852644] Driver 'sd' needs updating - please use bus_type methods
[ 3.852752] Driver 'sr' needs updating - please use bus_type methods
[ 3.852946] ahci 0000:00:12.0: version 3.0
[ 3.852992] ACPI: PCI Interrupt 0000:00:12.0[A] -> GSI 16 (level,
low) -> IRQ 16
[ 3.853112] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing
32bit
[ 3.853238] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps
0x1 impl SATA mode
[ 3.853288] ahci 0000:00:12.0: flags: ncq sntf ilck pm led clo pio
slum part
[ 3.853521] scsi0 : ahci
[ 3.853817] scsi1 : ahci
[ 3.854056] scsi2 : ahci
[ 3.854236] scsi3 : ahci
[ 3.854429] ata1: SATA max UDMA/133 abar m1024@0xd0609000 port
0xd0609100 irq 16
[ 3.854485] ata2: DUMMY
[ 3.854527] ata3: DUMMY
[ 3.854569] ata4: DUMMY
[ 4.159002] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 4.159449] ata1.00: ATA-7: FUJITSU MHW2080BH PL, 891F, max UDMA/100
[ 4.159493] ata1.00: 156301488 sectors, multi 16: LBA48
[ 4.159550] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd
[ 4.160129] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd
[ 4.160175] ata1.00: configured for UDMA/100
[ 4.160298] isa bounce pool size: 16 pages
[ 4.160433] scsi 0:0:0:0: Direct-Access ATA FUJITSU MHW2080B
891F PQ: 0 ANSI: 5
[ 4.160724] sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors
(80026 MB)
[ 4.160791] sd 0:0:0:0: [sda] Write Protect is off
[ 4.160835] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 4.160869] sd 0:0:0:0: [sda] Write cache: enabled, read cache:
enabled, doesn't support DPO or FUA
[ 4.161016] sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors
(80026 MB)
[ 4.161081] sd 0:0:0:0: [sda] Write Protect is off
[ 4.161125] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 4.161160] sd 0:0:0:0: [sda] Write cache: enabled, read cache:
enabled, doesn't support DPO or FUA
[ 4.161216] sda: sda1 sda2 < sda5 sda6 >
[ 4.277514] sd 0:0:0:0: [sda] Attached SCSI disk
[ 4.277687] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 4.279082] ACPI: PCI Interrupt 0000:00:14.1[A] -> GSI 16 (level,
low) -> IRQ 16
[ 4.279302] scsi4 : pata_atiixp
[ 4.279498] scsi5 : pata_atiixp
[ 4.280281] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x5040
irq 14
[ 4.280334] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x5048
irq 15
[ 4.469539] ata5.00: ATAPI: TSSTcorpCD/DVDW TS-L632D, HH17, max MWDMA2
[ 4.510480] ata5.00: configured for MWDMA2
[ 4.667387] scsi 4:0:0:0: CD-ROM TSSTcorp CD/DVDW TS-L632D
HH17 PQ: 0 ANSI: 5
[ 4.696182] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw
xa/form2 cdda tray
[ 4.696239] Uniform CD-ROM driver Revision: 3.20
[ 4.696490] sr 4:0:0:0: Attached scsi CD-ROM sr0
[ 4.696605] sr 4:0:0:0: Attached scsi generic sg1 type 5
[ 4.699033] I2O subsystem v1.325
[ 4.699088] i2o: max drivers = 8
[ 4.699360] I2O Configuration OSM v1.323
[ 4.699545] I2O Bus Adapter OSM v1.317
[ 4.699653] I2O Block Device OSM v1.325
[ 4.699951] I2O SCSI Peripheral OSM v1.316
[ 4.700078] I2O ProcFS OSM v1.316
[ 4.700199] Fusion MPT base driver 3.04.07
[ 4.700242] Copyright (c) 1999-2008 LSI Corporation
[ 4.700289] Fusion MPT SPI Host driver 3.04.07
[ 4.700443] Fusion MPT FC Host driver 3.04.07
[ 4.700578] Fusion MPT SAS Host driver 3.04.07
[ 4.700713] Fusion MPT misc device (ioctl) driver 3.04.07
[ 4.700835] mptctl: Registered with Fusion MPT base driver
[ 4.700879] mptctl: /dev/mptctl @ (major,minor=10,220)
[ 4.700930] Fusion MPT LAN driver 3.04.07
[ 4.701517] vendor=1002 device=4384
[ 4.701567] ACPI: PCI Interrupt 0000:02:04.1[B] -> GSI 21 (level,
low) -> IRQ 21
[ 4.754060] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[21]
MMIO=[d0101000-d01017ff] Max Packet=[2048] IR/IT contexts=[4/4]
[ 4.758617] usbcore: registered new interface driver usblp
[ 4.758664] Initializing USB Mass Storage driver...
[ 4.758778] usbcore: registered new interface driver usb-storage
[ 4.758824] USB Mass Storage support registered.
[ 4.758941] usbcore: registered new interface driver libusual
[ 4.759158] PNP: PS/2 Controller [PNP0303:C249,PNP0f13:C24A] at
0x60,0x64 irq 1,12
[ 4.761160] i8042.c: Detected active multiplexing controller, rev 1.1.
[ 4.761938] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 4.762015] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[ 4.762060] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[ 4.762110] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[ 4.762154] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[ 4.770860] parkbd: no such parport
[ 4.775084] mice: PS/2 mouse device common for all mice
[ 4.787583] md: linear personality registered for level -1
[ 4.787635] md: raid0 personality registered for level 0
[ 4.787679] md: raid1 personality registered for level 1
[ 4.787729] md: raid10 personality registered for level 10
[ 4.803982] raid6: int64x1 1464 MB/s
[ 4.820996] raid6: int64x2 1984 MB/s
[ 4.837971] raid6: int64x4 1839 MB/s
[ 4.854999] raid6: int64x8 1589 MB/s
[ 4.871982] raid6: sse2x1 2261 MB/s
[ 4.888988] raid6: sse2x2 3000 MB/s
[ 4.905987] raid6: sse2x4 3140 MB/s
[ 4.906036] raid6: using algorithm sse2x4 (3140 MB/s)
[ 4.906080] md: raid6 personality registered for level 6
[ 4.906125] md: raid5 personality registered for level 5
[ 4.906174] md: raid4 personality registered for level 4
[ 4.906219] md: multipath personality registered for level -4
[ 4.906269] md: faulty personality registered for level -5
[ 4.906543] device-mapper: ioctl: 4.13.0-ioctl (2007-10-18)
initialised: [email protected]
[ 4.907132] cpuidle: using governor ladder
[ 4.907668] cpuidle: using governor menu
[ 4.927044] input: AT Translated Set 2 keyboard as /class/input/input4
[ 4.931757] dcdbas dcdbas: Dell Systems Management Base Driver
(version 5.6.0-3.2)
[ 4.931951] usbcore: registered new interface driver hiddev
[ 4.932067] usbcore: registered new interface driver usbhid
[ 4.932118] usbhid: v2.6:USB HID core driver
[ 4.932882] TCP bic registered
[ 4.932928] NET: Registered protocol family 17
[ 4.933231] RPC: Registered udp transport module.
[ 4.933282] RPC: Registered tcp transport module.
[ 4.933335] powernow-k8: Found 1 Mobile AMD Sempron(tm) Processor
3600+ processors (1 cpu cores) (version 2.20.00)
[ 4.933445] powernow-k8: 0 : fid 0xc (2000 MHz), vid 0x10
[ 4.933490] powernow-k8: 1 : fid 0xa (1800 MHz), vid 0x12
[ 4.933553] powernow-k8: 2 : fid 0x8 (1600 MHz), vid 0x14
[ 4.933597] powernow-k8: 3 : fid 0x0 (800 MHz), vid 0x18
[ 4.933677] powernow-k8: ph2 null fid transition 0xc
[ 4.934029] registered taskstats version 1
[ 4.934246] drivers/rtc/hctosys.c: unable to open rtc device (rtc0)
[ 4.934344] Freeing unused kernel memory: 484k freed
[ 4.964679] ata1: hard resetting link
[ 5.269550] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 5.269935] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd
[ 5.270437] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd
[ 5.270446] ata1.00: configured for UDMA/100
[ 5.270518] ata1: EH complete
[ 5.270591] sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors
(80026 MB)
[ 5.270617] sd 0:0:0:0: [sda] Write Protect is off
[ 5.270619] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 5.270658] sd 0:0:0:0: [sda] Write cache: enabled, read cache:
enabled, doesn't support DPO or FUA
[ 5.329031] ehci_hcd: disagrees about version of symbol struct_module
[ 5.369905] uhci_hcd: disagrees about version of symbol struct_module
[ 5.392288] ohci_hcd: disagrees about version of symbol struct_module
[ 5.423797] sl811_hcd: disagrees about version of symbol struct_module
[ 5.558415] pata_pcmcia: disagrees about version of symbol struct_module
[ 5.596909] Synaptics Touchpad, model: 1, fw: 6.2, id: 0x2580b1,
caps: 0xa04793/0x300000
[ 5.596915] serio: Synaptics pass-through port at isa0060/serio4/input0
[ 5.641282] input: SynPS/2 Synaptics TouchPad as /class/input/input5
[ 5.749709] scsi_wait_scan: disagrees about version of symbol
struct_module
[ 5.825889] e1000: disagrees about version of symbol struct_module
[ 5.850784] tg3: disagrees about version of symbol struct_module
[ 6.014804] ieee1394: Host added: ID:BUS[0-00:1023]
GUID[00023f99295d2f0e]
[ 11.401531] Clocksource tsc unstable (delta = -99824559 ns)
[ 17.316892] EXT3-fs: INFO: recovery required on readonly filesystem.
[ 17.316896] EXT3-fs: write access will be enabled during recovery.
[ 17.435953] kjournald starting. Commit interval 5 seconds
[ 17.435972] EXT3-fs: recovery complete.
[ 17.436517] EXT3-fs: mounted filesystem with ordered data mode.
[ 22.793073] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 22.830548] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 22.952962] tg3.c:v3.92.1 (June 9, 2008)
[ 22.953037] ACPI: PCI Interrupt 0000:10:00.0[A] -> GSI 16 (level,
low) -> IRQ 16
[ 22.953053] PCI: Setting latency timer of device 0000:10:00.0 to 64
[ 23.174804] eth0: Tigon3 [partno(none) rev b002 PHY(5787)] (PCI
Express) 10/100/1000Base-T Ethernet 00:1a:4b:58:56:fe
[ 23.174819] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0]
WireSpeed[1] TSOcap[1]
[ 23.174825] eth0: dma_rwctrl[76180000] dma_mask[64-bit]
[ 23.792903] ACPI: device:03 is registered as cooling_device5
[ 23.794864] input: Video Bus as /class/input/input6
[ 23.803636] ACPI: Video Device [C08D] (multi-head: yes rom: no
post: no)
[ 24.564953] ACPI: PCI Interrupt 0000:30:00.0[A] -> GSI 18 (level,
low) -> IRQ 18
[ 24.564976] PCI: Setting latency timer of device 0000:30:00.0 to 64
[ 24.572564] ssb: Core 0 found: ChipCommon (cc 0x800, rev 0x13, vendor
0x4243)
[ 24.572576] ssb: Core 1 found: IEEE 802.11 (cc 0x812, rev 0x0D,
vendor 0x4243)
[ 24.572592] ssb: Core 2 found: USB 1.1 Host (cc 0x817, rev 0x04,
vendor 0x4243)
[ 24.572601] ssb: Core 3 found: PCI-E (cc 0x820, rev 0x05, vendor 0x4243)
[ 24.582529] ssb: SPROM revision 3 detected.
[ 24.590681] ssb: Sonics Silicon Backplane found on PCI device
0000:30:00.0
[ 24.709772] ohci_hcd: 2006 August 04 USB 1.1 'Open' Host Controller
(OHCI) Driver
[ 24.709877] ACPI: PCI Interrupt 0000:00:13.0[A] -> GSI 23 (level,
low) -> IRQ 23
[ 24.709910] ohci_hcd 0000:00:13.0: OHCI Host Controller
[ 24.711051] ohci_hcd 0000:00:13.0: new USB bus registered, assigned
bus number 1
[ 24.711108] ohci_hcd 0000:00:13.0: irq 23, io mem 0xd0601000
[ 24.778766] usb usb1: configuration #1 chosen from 1 choice
[ 24.778860] hub 1-0:1.0: USB hub found
[ 24.778885] hub 1-0:1.0: 2 ports detected
[ 24.879913] ACPI: PCI Interrupt 0000:00:13.1[B] -> GSI 17 (level,
low) -> IRQ 17
[ 24.879960] ohci_hcd 0000:00:13.1: OHCI Host Controller
[ 24.880100] ohci_hcd 0000:00:13.1: new USB bus registered, assigned
bus number 2
[ 24.880150] ohci_hcd 0000:00:13.1: irq 17, io mem 0xd0602000
[ 24.934815] usb usb2: configuration #1 chosen from 1 choice
[ 24.934896] hub 2-0:1.0: USB hub found
[ 24.934920] hub 2-0:1.0: 2 ports detected
[ 25.035919] ACPI: PCI Interrupt 0000:00:13.2[C] -> GSI 17 (level,
low) -> IRQ 17
[ 25.035961] ohci_hcd 0000:00:13.2: OHCI Host Controller
[ 25.036100] ohci_hcd 0000:00:13.2: new USB bus registered, assigned
bus number 3
[ 25.036133] ohci_hcd 0000:00:13.2: irq 17, io mem 0xd0603000
[ 25.090771] usb usb3: configuration #1 chosen from 1 choice
[ 25.090863] hub 3-0:1.0: USB hub found
[ 25.090890] hub 3-0:1.0: 2 ports detected
[ 25.191958] ACPI: PCI Interrupt 0000:00:13.3[B] -> GSI 17 (level,
low) -> IRQ 17
[ 25.191997] ohci_hcd 0000:00:13.3: OHCI Host Controller
[ 25.192147] ohci_hcd 0000:00:13.3: new USB bus registered, assigned
bus number 4
[ 25.192182] ohci_hcd 0000:00:13.3: irq 17, io mem 0xd0604000
[ 25.246773] usb usb4: configuration #1 chosen from 1 choice
[ 25.246854] hub 4-0:1.0: USB hub found
[ 25.246879] hub 4-0:1.0: 2 ports detected
[ 25.347928] ACPI: PCI Interrupt 0000:00:13.4[C] -> GSI 17 (level,
low) -> IRQ 17
[ 25.347964] ohci_hcd 0000:00:13.4: OHCI Host Controller
[ 25.348114] ohci_hcd 0000:00:13.4: new USB bus registered, assigned
bus number 5
[ 25.348149] ohci_hcd 0000:00:13.4: irq 17, io mem 0xd0605000
[ 25.402755] usb usb5: configuration #1 chosen from 1 choice
[ 25.402854] hub 5-0:1.0: USB hub found
[ 25.402880] hub 5-0:1.0: 2 ports detected
[ 25.421594] usb 3-1: new full speed USB device using ohci_hcd and
address 2
[ 25.504214] ACPI: PCI Interrupt 0000:00:13.5[D] -> GSI 23 (level,
low) -> IRQ 23
[ 25.504256] ehci_hcd 0000:00:13.5: EHCI Host Controller
[ 25.504636] ehci_hcd 0000:00:13.5: new USB bus registered, assigned
bus number 6
[ 25.504715] ehci_hcd 0000:00:13.5: debug port 1
[ 25.504736] ehci_hcd 0000:00:13.5: irq 23, io mem 0xd0606000
[ 25.551577] ehci_hcd 0000:00:13.5: USB 2.0 started, EHCI 1.00, driver
10 Dec 2004
[ 25.551831] usb usb6: configuration #1 chosen from 1 choice
[ 25.551914] hub 6-0:1.0: USB hub found
[ 25.551937] hub 6-0:1.0: 10 ports detected
[ 25.653213] piix4_smbus 0000:00:14.0: SMBus Host Controller at
0x8200, revision 0
[ 25.787046] input: PC Speaker as /class/input/input7
[ 25.891022] ACPI: PCI Interrupt 0000:00:14.2[A] -> GSI 16 (level,
low) -> IRQ 16
[ 25.949534] usb 3-1: device not accepting address 2, error -62
[ 25.972182] Yenta: CardBus bridge found at 0000:02:04.0 [103c:30c2]
[ 25.972223] PCI: Bus 3, cardbus bridge: 0000:02:04.0
[ 25.972228] IO window: 0x00001000-0x000010ff
[ 25.972235] IO window: 0x00001400-0x000014ff
[ 25.972248] PREFETCH window: 0x88400000-0x887fffff
[ 25.972255] MEM window: 0x8c000000-0x8fffffff
[ 26.000581] hub 3-0:1.0: unable to enumerate USB device on port 1
[ 26.095297] Yenta: ISA IRQ mask 0x0cb8, PCI irq 20
[ 26.095310] Socket status: 30000006
[ 26.095520] Yenta: Raising subordinate bus# of parent bus (#02) from
#03 to #06
[ 26.095529] pcmcia: parent PCI bridge I/O window: 0x1000 - 0x1fff
[ 26.095535] pcmcia: parent PCI bridge Memory window: 0xd0100000 -
0xd03fffff
[ 26.274801] tpm_inf_pnp 00:03: Found C231 with ID IFX0102
[ 26.274862] tpm_inf_pnp 00:03: TPM found: config base 0x520, data
base 0x530, chip version 0x000b, vendor id 0x15d1 (Infineon), product id
0x000b (SLB 9635 TT 1.2)
[ 26.680580] usb 3-1: new full speed USB device using ohci_hcd and
address 4
[ 26.826743] usb 3-1: configuration #1 chosen from 1 choice
[ 26.863651] b43-phy0: Broadcom 4311 WLAN found
[ 26.897885] phy0: Selected rate control algorithm 'pid'
[ 27.164882] Broadcom 43xx driver loaded [ Features: PMLR,
Firmware-ID: FW13 ]
[ 59.379874] EXT3 FS on sda5, internal journal
[ 62.372667] kjournald starting. Commit interval 5 seconds
[ 62.373549] EXT3 FS on sda1, internal journal
[ 62.373562] EXT3-fs: mounted filesystem with ordered data mode.
[ 138.575037] Adding 1397612k swap on /dev/sda6. Priority:-1 extents:1
across:1397612k
On Thu, 17 Jul 2008, Richard wrote:
>
> Here you go.. a 2.6.26-tip dmesg (the top seems to be missing for some
> reason!) .. just shout if you need the bits on the top.
Those are the interesting ones :)
Questions:
Are CONFIG_HIGHRES_TIMERS and CONFIG_NO_HZ enabled ?
Is it still necessary to add any command line option ?
Is the system stable ?
Also please provide the output of
# cat /sys/devices/system/clocksource/clocksource0/current_clocksource
and
# cat /proc/timer_list
Thanks,
tglx
Thomas Gleixner wrote:
> On Thu, 17 Jul 2008, Richard wrote:
>
>> Here you go.. a 2.6.26-tip dmesg (the top seems to be missing for some
>> reason!) .. just shout if you need the bits on the top.
>>
>
> Those are the interesting ones :)
>
> Questions:
>
> Are CONFIG_HIGHRES_TIMERS and CONFIG_NO_HZ enabled ?
> Is it still necessary to add any command line option ?
> Is the system stable ?
>
> Also please provide the output of
>
> # cat /sys/devices/system/clocksource/clocksource0/current_clocksource
>
> and
>
> # cat /proc/timer_list
>
> Thanks,
>
> tglx
>
>
Hi Thomas,
Sorry for the Delay... but I am having a horrible time getting
netconsole to work , and syslog doesnt have the initial bootup messages
in it for some arb reason... When I get netconsole working, I'll be
posting the logs.
Are CONFIG_HIGHRES_TIMERS and CONFIG_NO_HZ enabled ?
Yes, they are both set to Y in .config
A new thing I have seen is that reboot doesnt work.... issue the command
reboot and it shuts down linux, blanks the screen, but doesnt actually
reset the machine... it stays in that state until you power off (holding
the PWR button) Below is some of the info you requested, but I do
realise logs are needed, and am on that case right now.. (just needed to
let the power button recoder from its morning of abuse)
Richard
-======================= TEST 1 ==========================
1) NO COMMAND PARAMETERS
Booted OK, but hun after a few minutes..
Current Clocksource : acpi_pm
Timer List Version: v0.3
HRTIMER_MAX_CLOCK_BASES: 2
now at 452837390745 nsecs
cpu: 0
clock 0:
.index: 0
.resolution: 1 nsecs
.get_time: ktime_get_real
.offset: 1216374295000000000 nsecs
active timers:
clock 1:
.index: 1
.resolution: 1 nsecs
.get_time: ktime_get
.offset: 0 nsecs
active timers:
#0: <ffff88007298fde8>, tick_sched_timer, S:01
# expires at 452838000000 nsecs [in 609255 nsecs]
#1: <ffff88007298fde8>, hrtimer_wakeup, S:01
# expires at 486030389909 nsecs [in 33192999164 nsecs]
.expires_next : 452838000000 nsecs
.hres_active : 1
.nr_events : 321945
.nohz_mode : 2
.idle_tick : 452705000000 nsecs
.tick_stopped : 0
.idle_jiffies : 4295120000
.idle_calls : 11496
.idle_sleeps : 9725
.idle_entrytime : 452760000161 nsecs
.idle_waketime : 452784682635 nsecs
.idle_exittime : 452784980997 nsecs
.idle_sleeptime : 139411764446 nsecs
.last_jiffies : 4295120055
.next_jiffies : 4295120250
.idle_expires : 452954000000 nsecs
jiffies: 4295120134
Tick Device: mode: 1
Clock Event Device: pit
max_delta_ns: 27461866
min_delta_ns: 12571
mult: 5124677
shift: 32
mode: 3
next_event: 9223372036854775807 nsecs
set_next_event: pit_next_event
set_mode: init_pit_timer
event_handler: tick_handle_oneshot_broadcast
tick_broadcast_mask: 00000001
tick_broadcast_oneshot_mask: 00000000
Tick Device: mode: 1
Clock Event Device: lapic
max_delta_ns: 672799576
min_delta_ns: 1203
mult: 53550558
shift: 32
mode: 3
next_event: 452839000000 nsecs
set_next_event: lapic_next_event
set_mode: lapic_timer_setup
event_handler: hrtimer_interrupt
-------------------- End of Timer list ----------
================================== TEST 2 ======================
2) NOHZ_OFF Parameter
Current Clocksource : acpi_pm
Timer List Version: v0.3
HRTIMER_MAX_CLOCK_BASES: 2
now at 277267789698 nsecs
cpu: 0
clock 0:
.index: 0
.resolution: 1 nsecs
.get_time: ktime_get_real
.offset: 1216375039000000000 nsecs
active timers:
clock 1:
.index: 1
.resolution: 1 nsecs
.get_time: ktime_get
.offset: 0 nsecs
active timers:
#0: <ffff88007213bde8>, tick_sched_timer, S:01
# expires at 277269000000 nsecs [in 1210302 nsecs]
#1: <ffff88007213bde8>, hrtimer_wakeup, S:01
# expires at 282567959776 nsecs [in 5300170078 nsecs]
.expires_next : 277269000000 nsecs
.hres_active : 1
.nr_events : 282282
.nohz_mode : 0
.idle_tick : 0 nsecs
.tick_stopped : 0
.idle_jiffies : 0
.idle_calls : 0
.idle_sleeps : 0
.idle_entrytime : 277214142641 nsecs
.idle_waketime : 0 nsecs
.idle_exittime : 0 nsecs
.idle_sleeptime : 67420060577 nsecs
.last_jiffies : 0
.next_jiffies : 0
.idle_expires : 0 nsecs
jiffies: 4294944564
Tick Device: mode: 1
Clock Event Device: pit
max_delta_ns: 27461866
min_delta_ns: 12571
mult: 5124677
shift: 32
mode: 3
next_event: 9223372036854775807 nsecs
set_next_event: pit_next_event
set_mode: init_pit_timer
event_handler: tick_handle_oneshot_broadcast
tick_broadcast_mask: 00000001
tick_broadcast_oneshot_mask: 00000000
Tick Device: mode: 1
Clock Event Device: lapic
max_delta_ns: 672803521
min_delta_ns: 1203
mult: 53550244
shift: 32
mode: 3
next_event: 277269000000 nsecs
set_next_event: lapic_next_event
set_mode: lapic_timer_setup
event_handler: hrtimer_interrupt
================================ TEST 3 ===================================0
3) NOAPICTIMER
Current Clocksource : acpi_pm
Timer List Version: v0.3
HRTIMER_MAX_CLOCK_BASES: 2
now at 440206030717 nsecs
cpu: 0
clock 0:
.index: 0
.resolution: 999848 nsecs
.get_time: ktime_get_real
.offset: 0 nsecs
active timers:
clock 1:
.index: 1
.resolution: 999848 nsecs
.get_time: ktime_get
.offset: 0 nsecs
active timers:
#0: <ffff880072d97de8>, hrtimer_wakeup, S:01
# expires at 467194846891 nsecs [in 26988816174 nsecs]
.expires_next : 9223372036854775807 nsecs
.hres_active : 0
.nr_events : 0
.nohz_mode : 0
.idle_tick : 0 nsecs
.tick_stopped : 0
.idle_jiffies : 0
.idle_calls : 0
.idle_sleeps : 0
.idle_entrytime : 440149158389 nsecs
.idle_waketime : 0 nsecs
.idle_exittime : 0 nsecs
.idle_sleeptime : 118766989831 nsecs
.last_jiffies : 0
.next_jiffies : 0
.idle_expires : 0 nsecs
jiffies: 4295107551
Tick Device: mode: 0
Clock Event Device: pit
max_delta_ns: 27461866
min_delta_ns: 12571
mult: 5124677
shift: 32
mode: 2
next_event: 0 nsecs
set_next_event: pit_next_event
set_mode: init_pit_timer
event_handler: tick_handle_periodic_broadcast
tick_broadcast_mask: 00000001
tick_broadcast_oneshot_mask: 00000000
Tick Device: mode: 0
Clock Event Device: lapic
max_delta_ns: 0
min_delta_ns: 0
mult: 1
shift: 32
mode: 1
next_event: 0 nsecs
set_next_event: lapic_next_event
set_mode: lapic_timer_setup
event_handler: tick_handle_periodic
Thomas Gleixner wrote:
> On Thu, 17 Jul 2008, Richard wrote:
>
>> Here you go.. a 2.6.26-tip dmesg (the top seems to be missing for some
>> reason!) .. just shout if you need the bits on the top.
>>
>
> Those are the interesting ones :)
>
> Questions:
>
> Are CONFIG_HIGHRES_TIMERS and CONFIG_NO_HZ enabled ?
> Is it still necessary to add any command line option ?
> Is the system stable ?
>
> Also please provide the output of
>
> # cat /sys/devices/system/clocksource/clocksource0/current_clocksource
>
> and
>
> # cat /proc/timer_list
>
> Thanks,
>
> tglx
>
>
Alas, a log.. there are 2 more in the following emails (Log 1 of 3)
Richard
with command line option noapictimer.
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Linux version 2.6.26-tip (root@localhost) (gcc version
4.2.3 (Gentoo 4.2.3 p1.0)) #3 SMP Thu Jul 17 19:30:56 UTC 2008
[ 0.000000] Command line: root=/dev/ram0 ramdisk=8192
real_root=UUID=e1ef4642-3c14-4a73-be54-c04e9bcf2422 dolvm init=/linuxrc
CONSOLE=/dev/tty1 noapictimer resume=swap:/dev/sda6 nox
[email protected]/eth0,[email protected]/
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 0000000077fb0000 (usable)
[ 0.000000] BIOS-e820: 0000000077fb0000 - 0000000077fc8000 (reserved)
[ 0.000000] BIOS-e820: 0000000077fc8000 - 0000000077fe7fb8 (ACPI NVS)
[ 0.000000] BIOS-e820: 0000000077fe7fb8 - 0000000080000000 (reserved)
[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec02000 (reserved)
[ 0.000000] BIOS-e820: 00000000ffbc0000 - 00000000ffcc0000 (reserved)
[ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Centaur CentaurHauls
[ 0.000000] last_pfn = 0x77fb0 max_arch_pfn = 0x3ffffffff
[ 0.000000] init_memory_mapping
[ 0.000000] last_map_addr: 77fb0000 end: 77fb0000
[ 0.000000] RAMDISK: 77ad8000 - 77f9f5f9
[ 0.000000] DMI 2.4 present.
[ 0.000000] ACPI: RSDP 000FE0B0, 0024 (r2 HP )
[ 0.000000] ACPI: XSDT 77FC81BC, 0064 (r1 HPQOEM SLIC-MPC 1
HP 1)
[ 0.000000] ACPI: FACP 77FC8084, 00F4 (r4 HP 0944 3
HP 1)
[ 0.000000] ACPI Error (tbfadt-0453): 32/64X address mismatch in
"Pm2ControlBlock": [00008800] [0000000000008100], using 64X [20080321]
[ 0.000000] ACPI: DSDT 77FC84A4, 11437 (r1 HP SB400 10000
MSFT 3000001)
[ 0.000000] ACPI: FACS 77FE7D80, 0040
[ 0.000000] ACPI: SLIC 77FC8220, 0176 (r1 HPQOEM SLIC-MPC 1
HP 1)
[ 0.000000] ACPI: EPTH 77FC8398, 0038 (r1 HP 0944 1
HP 1)
[ 0.000000] ACPI: APIC 77FC83D0, 0062 (r1 HP 0944 1
HP 1)
[ 0.000000] ACPI: MCFG 77FC8434, 003C (r1 HP 0944 1
HP 1)
[ 0.000000] ACPI: TCPA 77FC8470, 0032 (r2 HP 0944 1
HP 1)
[ 0.000000] ACPI: SSDT 77FD98DB, 0059 (r1 HP HPQNLP 1
MSFT 3000001)
[ 0.000000] ACPI: SSDT 77FD9934, 0115 (r1 HP PSSTBLID 1
HP 1)
[ 0.000000] ACPI: DMI detected: Hewlett-Packard
[ 0.000000] Scanning NUMA topology in Northbridge 24
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at 0000000000000000-0000000077fb0000
[ 0.000000] Bootmem setup node 0 0000000000000000-0000000077fb0000
[ 0.000000] NODE_DATA [0000000000001000 - 0000000000004fff]
[ 0.000000] bootmap [000000000000a000 - 0000000000018ff7] pages f
[ 0.000000] (6 early reservations) ==> bootmem
[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==>
[0000000000 - 0000001000]
[ 0.000000] #1 [0000006000 - 0000008000] TRAMPOLINE ==>
[0000006000 - 0000008000]
[ 0.000000] #2 [0000200000 - 0000c5a60c] TEXT DATA BSS ==>
[0000200000 - 0000c5a60c]
[ 0.000000] #3 [0077ad8000 - 0077f9f5f9] RAMDISK ==>
[0077ad8000 - 0077f9f5f9]
[ 0.000000] #4 [000009fc00 - 0000100000] BIOS reserved ==>
[000009fc00 - 0000100000]
[ 0.000000] #5 [0000008000 - 000000a000] PGTABLE ==>
[0000008000 - 000000a000]
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000000 -> 0x00001000
[ 0.000000] DMA32 0x00001000 -> 0x00100000
[ 0.000000] Normal 0x00100000 -> 0x00100000
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0x00000000 -> 0x0000009f
[ 0.000000] 0: 0x00000100 -> 0x00077fb0
[ 0.000000] Detected use of extended apic ids on hypertransport bus
[ 0.000000] ACPI: PM-Timer IO Port: 0x8008
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[ 0.000000] Setting APIC routing to flat
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] SMP: Allowing 2 CPUs, 1 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: 000000000009f000 -
00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 -
00000000000e0000
[ 0.000000] PM: Registered nosave memory: 00000000000e0000 -
0000000000100000
[ 0.000000] Allocating PCI resources starting at 88000000 (gap:
80000000:60000000)
[ 0.000000] PERCPU: Allocating 48320 bytes of per cpu data
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on.
Total pages: 481873
[ 0.000000] Policy zone: DMA32
[ 0.000000] Kernel command line: root=/dev/ram0 ramdisk=8192
real_root=UUID=e1ef4642-3c14-4a73-be54-c04e9bcf2422 dolvm init=/linuxrc
CONSOLE=/dev/tty1 noapictimer resume=swap:/dev/sda6 nox
[email protected]/eth0,[email protected]/
[ 0.000000] Initializing CPU#0
[ 0.000000] PID hash table entries: 4096 (order: 12, 32768 bytes)
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] TSC calibrated against PM_TIMER
[ 0.000000] Detected 1994.903 MHz processor.
[ 0.001999] Console: colour VGA+ 80x25
[ 0.001999] console [tty0] enabled
[ 0.001999] Checking aperture...
[ 0.001999] No AGP bridge found
[ 0.001999] Node 0: aperture @ d05c000000 size 32 MB
[ 0.001999] Aperture beyond 4GB. Ignoring.
[ 0.001999] Memory: 1920920k/1965760k available (6412k kernel code,
44452k reserved, 3058k data, 484k init)
[ 0.001999] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0,
CPUs=2, Nodes=1
[ 0.002194] Calibrating delay loop (skipped), value calculated using
timer frequency.. <6>3989.80 BogoMIPS (lpj=1994903)
[ 0.002303] Security Framework initialized
[ 0.002341] SELinux: Disabled at boot.
[ 0.002572] Dentry cache hash table entries: 262144 (order: 9,
2097152 bytes)
[ 0.004928] Inode-cache hash table entries: 131072 (order: 8, 1048576
bytes)
[ 0.006138] Mount-cache hash table entries: 256
[ 0.006550] Initializing cgroup subsys debug
[ 0.006623] Initializing cgroup subsys ns
[ 0.006723] Initializing cgroup subsys cpuacct
[ 0.006820] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64
bytes/line)
[ 0.006909] CPU: L2 Cache: 256K (64 bytes/line)
[ 0.006980] CPU 0/0 -> Node 0
[ 0.007100] using C1E aware idle routine
[ 0.007199] ACPI: Core revision 20080321
[ 0.043993] ..MP-BIOS bug: 8254 timer not connected to IO-APIC
[ 0.053880] CPU0: Mobile AMD Sempron(tm) Processor 3600+ stepping 02
[ 0.053983] Disabling APIC timer
[ 0.054075] Brought up 1 CPUs
[ 0.054117] Total of 1 processors activated (3989.80 BogoMIPS).
[ 0.054360] net_namespace: 1224 bytes
[ 0.054560] xor: automatically using best checksumming function:
generic_sse
[ 0.058775] generic_sse: 6144.000 MB/sec
[ 0.058812] xor: using function: generic_sse (6144.000 MB/sec)
[ 0.058885] NET: Registered protocol family 16
[ 0.059153] No dock devices found.
[ 0.059715] TOM: 0000000080000000 aka 2048M
[ 0.059799] ACPI: bus type pci registered
[ 0.059938] PCI: MCFG configuration 0: base e0000000 segment 0 buses
0 - 255
[ 0.059978] PCI: MCFG area at e0000000 reserved in E820
[ 0.066175] PCI: Using MMCONFIG at e0000000 - efffffff
[ 0.066218] PCI: Using configuration type 1 for base access
[ 0.072489] ACPI: EC: non-query interrupt received, switching to
interrupt mode
[ 0.336948] ACPI: Interpreter enabled
[ 0.336948] ACPI: (supports S0 S3 S4 S5)
[ 0.336948] ACPI: Using IOAPIC for interrupt routing
[ 0.348195] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
[ 0.348242] ACPI: EC: driver started in interrupt mode
[ 0.348377] ACPI: PCI Root Bridge [C08B] (0000:00)
[ 0.348613] PCI: 0000:00:12.0 reg 10 io port: [9000, 9007]
[ 0.348656] PCI: 0000:00:12.0 reg 14 io port: [9008, 900b]
[ 0.348699] PCI: 0000:00:12.0 reg 18 io port: [9010, 9017]
[ 0.348742] PCI: 0000:00:12.0 reg 1c io port: [5018, 501b]
[ 0.348785] PCI: 0000:00:12.0 reg 20 io port: [5020, 502f]
[ 0.348828] PCI: 0000:00:12.0 reg 24 32bit mmio: [d0609000, d06093ff]
[ 0.348888] pci 0000:00:12.0: set SATA to AHCI mode
[ 0.348943] PCI: 0000:00:13.0 reg 10 32bit mmio: [d0601000, d0601fff]
[ 0.349039] PCI: 0000:00:13.1 reg 10 32bit mmio: [d0602000, d0602fff]
[ 0.349127] PCI: 0000:00:13.2 reg 10 32bit mmio: [d0603000, d0603fff]
[ 0.349214] PCI: 0000:00:13.3 reg 10 32bit mmio: [d0604000, d0604fff]
[ 0.349302] PCI: 0000:00:13.4 reg 10 32bit mmio: [d0605000, d0605fff]
[ 0.349408] PCI: 0000:00:13.5 reg 10 32bit mmio: [d0606000, d06060ff]
[ 0.349513] PCI: 0000:00:14.0 reg 10 io port: [8200, 820f]
[ 0.349602] PCI: 0000:00:14.1 reg 10 io port: [0, 7]
[ 0.349645] PCI: 0000:00:14.1 reg 14 io port: [0, 3]
[ 0.349686] PCI: 0000:00:14.1 reg 18 io port: [0, 7]
[ 0.349729] PCI: 0000:00:14.1 reg 1c io port: [0, 3]
[ 0.349771] PCI: 0000:00:14.1 reg 20 io port: [5040, 504f]
[ 0.349860] PCI: 0000:00:14.2 reg 10 64bit mmio: [d0608000, d060bfff]
[ 0.350120] PCI: 0000:01:05.0 reg 10 64bit mmio: [c0000000, c7ffffff]
[ 0.350162] PCI: 0000:01:05.0 reg 18 64bit mmio: [d0400000, d040ffff]
[ 0.350202] PCI: 0000:01:05.0 reg 20 io port: [4000, 40ff]
[ 0.350242] PCI: 0000:01:05.0 reg 24 32bit mmio: [d0500000, d05fffff]
[ 0.350297] PCI: bridge 0000:00:01.0 io port: [4000, 4fff]
[ 0.350336] PCI: bridge 0000:00:01.0 32bit mmio: [d0400000, d05fffff]
[ 0.350377] PCI: bridge 0000:00:01.0 64bit mmio pref: [c0000000,
c7ffffff]
[ 0.350504] PCI: 0000:10:00.0 reg 10 64bit mmio: [d0000000, d000ffff]
[ 0.350619] PCI: bridge 0000:00:04.0 32bit mmio: [d0000000, d00fffff]
[ 0.350703] PCI: bridge 0000:00:05.0 io port: [2000, 3fff]
[ 0.350742] PCI: bridge 0000:00:05.0 32bit mmio: [cc000000, cfffffff]
[ 0.351946] PCI: 0000:30:00.0 reg 10 64bit mmio: [c8000000, c8003fff]
[ 0.351946] PCI: bridge 0000:00:06.0 32bit mmio: [c8000000, c80fffff]
[ 0.352042] PCI: 0000:02:04.0 reg 10 32bit mmio: [d0100000, d0100fff]
[ 0.352211] PCI: 0000:02:04.1 reg 10 32bit mmio: [d0101000, d01017ff]
[ 0.352486] PCI: Transparent bridge - 0000:00:14.4
[ 0.352571] PCI: bridge 0000:00:14.4 32bit mmio: [d0100000, d03fffff]
[ 0.375710] ACPI: PCI Interrupt Link [C145] (IRQs 10 11) *0, disabled.
[ 0.376127] ACPI: PCI Interrupt Link [C146] (IRQs 10 11) *0, disabled.
[ 0.376521] ACPI: PCI Interrupt Link [C147] (IRQs 10 11) *0, disabled.
[ 0.376913] ACPI: PCI Interrupt Link [C148] (IRQs 10 11) *0, disabled.
[ 0.377304] ACPI: PCI Interrupt Link [C149] (IRQs 10 11) *0, disabled.
[ 0.377688] ACPI: PCI Interrupt Link [C14A] (IRQs 9) *0, disabled.
[ 0.378050] ACPI: PCI Interrupt Link [C14B] (IRQs 10 11) *0, disabled.
[ 0.378452] ACPI: PCI Interrupt Link [C14C] (IRQs 10 11) *0, disabled.
[ 0.378856] ACPI: Power Resource [C171] (off)
[ 0.379100] ACPI: Power Resource [C230] (off)
[ 0.379192] ACPI: Power Resource [C24C] (on)
[ 0.379366] ACPI: Power Resource [C395] (off)
[ 0.379499] ACPI: Power Resource [C396] (off)
[ 0.379632] ACPI: Power Resource [C397] (off)
[ 0.379766] ACPI: Power Resource [C398] (off)
[ 0.380126] ACPI: WMI: Mapper loaded
[ 0.380168] Linux Plug and Play Support v0.97 (c) Adam Belay
[ 0.380237] pnp: PnP ACPI init
[ 0.380282] ACPI: bus type pnp registered
[ 0.391314] pnp: PnP ACPI: found 14 devices
[ 0.391361] ACPI: ACPI bus type pnp unregistered
[ 0.391731] SCSI subsystem initialized
[ 0.392031] usbcore: registered new interface driver usbfs
[ 0.392142] usbcore: registered new interface driver hub
[ 0.392227] usbcore: registered new device driver usb
[ 0.392486] PCI: Using ACPI for IRQ routing
[ 0.392564] PCI: Cannot allocate resource region 0 of device 0000:00:14.2
[ 0.397958] NetLabel: Initializing
[ 0.397996] NetLabel: domain hash size = 128
[ 0.398033] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.398084] NetLabel: unlabeled traffic allowed by default
[ 0.398250] ACPI: RTC can wake from S4
[ 0.400965] system 00:00: iomem range 0x0-0x9ffff could not be reserved
[ 0.401004] system 00:00: iomem range 0xe0000-0xfffff could not be
reserved
[ 0.401043] system 00:00: iomem range 0x100000-0xffffffff could not
be reserved
[ 0.401095] system 00:0a: ioport range 0x40b-0x40b has been reserved
[ 0.401134] system 00:0a: ioport range 0x4d0-0x4d1 has been reserved
[ 0.401173] system 00:0a: ioport range 0x4d6-0x4d6 has been reserved
[ 0.401211] system 00:0a: ioport range 0x500-0x51f has been reserved
[ 0.401250] system 00:0a: ioport range 0xc00-0xc01 has been reserved
[ 0.401289] system 00:0a: ioport range 0xc14-0xc14 has been reserved
[ 0.401327] system 00:0a: ioport range 0xc50-0xc51 has been reserved
[ 0.401366] system 00:0a: ioport range 0xc52-0xc52 has been reserved
[ 0.401404] system 00:0a: ioport range 0xc6c-0xc6c has been reserved
[ 0.401443] system 00:0a: ioport range 0xc6f-0xc6f has been reserved
[ 0.401481] system 00:0a: ioport range 0xcd0-0xcdf has been reserved
[ 0.401522] system 00:0a: iomem range 0xffb00000-0xffbfffff could not
be reserved
[ 0.401565] system 00:0a: iomem range 0xfff00000-0xffffffff could not
be reserved
[ 0.401613] system 00:0c: ioport range 0x8000-0x802f has been reserved
[ 0.401651] system 00:0c: ioport range 0x8100-0x811f has been reserved
[ 0.401692] system 00:0c: iomem range 0xe0000000-0xefffffff could not
be reserved
[ 0.401734] system 00:0c: iomem range 0xfec00000-0xfec000ff could not
be reserved
[ 0.401777] system 00:0c: iomem range 0xfed45000-0xfed8ffff has been
reserved
[ 0.401821] system 00:0d: iomem range 0xcd400-0xcffff has been reserved
[ 0.401859] system 00:0d: iomem range 0xd2a00-0xd2fff has been reserved
[ 0.401898] system 00:0d: iomem range 0x0-0x7ffffff could not be reserved
[ 0.401936] system 00:0d: iomem range 0xfee00000-0xfee00fff has been
reserved
[ 0.402443] PCI: region 0000:02:04.0/9 too large:
0x0000000000000000-0x0000000003ffffff
[ 0.402501] PCI: Bridge: 0000:00:01.0
[ 0.402537] IO window: 4000-4fff
[ 0.402574] MEM window: 0xd0400000-0xd05fffff
[ 0.402610] PREFETCH window: 0x00000000c0000000-0x00000000c7ffffff
[ 0.402649] PCI: Bridge: 0000:00:04.0
[ 0.402685] IO window: disabled.
[ 0.402721] MEM window: 0xd0000000-0xd00fffff
[ 0.402757] PREFETCH window: disabled.
[ 0.402794] PCI: Bridge: 0000:00:05.0
[ 0.402830] IO window: 2000-3fff
[ 0.402866] MEM window: 0xcc000000-0xcfffffff
[ 0.402903] PREFETCH window: disabled.
[ 0.402949] Clockevents: could not switch to one-shot mode: lapic is
not functional.
[ 0.403024] Could not switch to high resolution mode on CPU 0
[ 0.403065] PCI: Bridge: 0000:00:06.0
[ 0.403101] IO window: disabled.
[ 0.403139] MEM window: 0xc8000000-0xc80fffff
[ 0.403177] PREFETCH window: disabled.
[ 0.403218] PCI: Bus 3, cardbus bridge: 0000:02:04.0
[ 0.403256] IO window: 0x00001000-0x000010ff
[ 0.403296] IO window: 0x00001400-0x000014ff
[ 0.403337] MEM window: 0x8c000000-0x8fffffff
[ 0.403378] PCI: Bridge: 0000:00:14.4
[ 0.403416] IO window: 1000-1fff
[ 0.403456] MEM window: 0xd0100000-0xd03fffff
[ 0.403496] PREFETCH window: disabled.
[ 0.403591] vendor=1002 device=4384
[ 0.403633] ACPI: PCI Interrupt 0000:02:04.0[A] -> GSI 20 (level,
low) -> IRQ 20
[ 0.403710] bus: 00 index 0 io port: [0, ffff]
[ 0.403748] bus: 00 index 1 mmio: [0, ffffffffffffffff]
[ 0.403786] bus: 01 index 0 io port: [4000, 4fff]
[ 0.403825] bus: 01 index 1 mmio: [d0400000, d05fffff]
[ 0.403862] bus: 01 index 2 mmio: [c0000000, c7ffffff]
[ 0.403901] bus: 01 index 3 mmio: [0, 0]
[ 0.403943] bus: 10 index 0 mmio: [0, 0]
[ 0.403980] bus: 10 index 1 mmio: [d0000000, d00fffff]
[ 0.404018] bus: 10 index 2 mmio: [0, 0]
[ 0.404055] bus: 10 index 3 mmio: [0, 0]
[ 0.404092] bus: 20 index 0 io port: [2000, 3fff]
[ 0.404130] bus: 20 index 1 mmio: [cc000000, cfffffff]
[ 0.404168] bus: 20 index 2 mmio: [0, 0]
[ 0.404205] bus: 20 index 3 mmio: [0, 0]
[ 0.404242] bus: 30 index 0 mmio: [0, 0]
[ 0.404279] bus: 30 index 1 mmio: [c8000000, c80fffff]
[ 0.404316] bus: 30 index 2 mmio: [0, 0]
[ 0.404353] bus: 30 index 3 mmio: [0, 0]
[ 0.404390] bus: 02 index 0 io port: [1000, 1fff]
[ 0.404428] bus: 02 index 1 mmio: [d0100000, d03fffff]
[ 0.404466] bus: 02 index 2 mmio: [0, 0]
[ 0.404503] bus: 02 index 3 io port: [0, ffff]
[ 0.404540] bus: 02 index 4 mmio: [0, ffffffffffffffff]
[ 0.404578] bus: 03 index 0 io port: [1000, 10ff]
[ 0.404616] bus: 03 index 1 io port: [1400, 14ff]
[ 0.404653] bus: 03 index 2 mmio: [0, 3ffffff]
[ 0.404691] bus: 03 index 3 mmio: [8c000000, 8fffffff]
[ 0.404740] NET: Registered protocol family 2
[ 0.414035] IP route cache hash table entries: 65536 (order: 7,
524288 bytes)
[ 0.415010] TCP established hash table entries: 262144 (order: 10,
4194304 bytes)
[ 0.416914] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.417419] TCP: Hash tables configured (established 262144 bind 65536)
[ 0.417462] TCP reno registered
[ 0.420010] NET: Registered protocol family 1
[ 0.420151] checking if image is initramfs... it is
[ 0.693135] Freeing initrd memory: 4893k freed
[ 0.696324] audit: initializing netlink socket (disabled)
[ 0.696376] type=2000 audit(1216404031.694:1): initialized
[ 0.696614] Total HugeTLB memory allocated, 0
[ 0.699540] VFS: Disk quotas dquot_6.5.1
[ 0.699674] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.701560] Installing knfsd (copyright (C) 1996 [email protected]).
[ 0.702383] NTFS driver 2.1.29 [Flags: R/W].
[ 0.702735] QNX4 filesystem 0.2.3 registered.
[ 0.702775] fuse init (API version 7.9)
[ 0.703223] JFS: nTxBlock = 8192, nTxLock = 65536
[ 0.706059] SGI XFS with ACLs, security attributes, realtime, large
block/inode numbers, no debug enabled
[ 0.706917] SGI XFS Quota Management subsystem
[ 0.706975] msgmni has been set to 3761
[ 0.707191] async_tx: api initialized (async)
[ 0.707304] Block layer SCSI generic (bsg) driver version 0.4 loaded
(major 253)
[ 0.707349] io scheduler noop registered
[ 0.707386] io scheduler anticipatory registered
[ 0.707424] io scheduler deadline registered
[ 0.707615] io scheduler cfq registered (default)
[ 0.707917] assign_interrupt_mode Found MSI capability
[ 0.708120] assign_interrupt_mode Found MSI capability
[ 0.708299] assign_interrupt_mode Found MSI capability
[ 1.109346] ACPI: AC Adapter [C1EB] (off-line)
[ 1.170892] ACPI: Battery Slot [C1ED] (battery present)
[ 1.171164] ACPI: Battery Slot [C1EC] (battery absent)
[ 1.171358] input: Power Button (FF) as /class/input/input0
[ 1.171396] ACPI: Power Button (FF) [PWRF]
[ 1.171564] input: Sleep Button (CM) as /class/input/input1
[ 1.171603] ACPI: Sleep Button (CM) [C28D]
[ 1.171719] input: Lid Switch as /class/input/input2
[ 1.171864] ACPI: Lid Switch [C265]
[ 1.172191] ACPI: Transitioning device [C399] to D3
[ 1.172284] ACPI: PNP0C0B:00 is registered as cooling_device0
[ 1.172326] ACPI: Fan [C399] (off)
[ 1.172547] ACPI: Transitioning device [C39A] to D3
[ 1.172627] ACPI: PNP0C0B:01 is registered as cooling_device1
[ 1.172668] ACPI: Fan [C39A] (off)
[ 1.172898] ACPI: Transitioning device [C39B] to D3
[ 1.172978] ACPI: PNP0C0B:02 is registered as cooling_device2
[ 1.173020] ACPI: Fan [C39B] (off)
[ 1.173241] ACPI: Transitioning device [C39C] to D3
[ 1.174851] ACPI: PNP0C0B:03 is registered as cooling_device3
[ 1.174893] ACPI: Fan [C39C] (off)
[ 1.175109] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
[ 1.175310] ACPI: ACPI0007:00 is registered as cooling_device4
[ 1.175780] ACPI: Processor [C000] (supports 8 throttling states)
[ 1.188988] ACPI: LNXTHERM:01 is registered as thermal_zone0
[ 1.194351] ACPI: Thermal Zone [TZ1] (68 C)
[ 1.238241] lp: driver loaded but no devices found
[ 1.247249] ppdev: user-space parallel port driver
[ 1.247304] Linux agpgart interface v0.103
[ 1.247350] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ
sharing enabled
[ 1.252138] parport_pc 00:02: activated
[ 1.252193] parport_pc 00:02: reported by Plug and Play ACPI
[ 1.253547] parport_pc 00:02: disabled
[ 1.254203] Floppy drive(s): fd0 is 1.44M
[ 4.264246] floppy0: no floppy controllers found
[ 4.266050] brd: module loaded
[ 4.266996] loop: module loaded
[ 4.267041] Compaq SMART2 Driver (v 2.6.0)
[ 4.267161] HP CISS Driver (v 3.6.20)
[ 4.267583] MM: desc_per_page = 128
[ 4.267651] tg3.c:v3.92.1 (June 9, 2008)
[ 4.267761] ACPI: PCI Interrupt 0000:10:00.0[A] -> GSI 16 (level,
low) -> IRQ 16
[ 4.474876] eth0: Tigon3 [partno(none) rev b002 PHY(5787)] (PCI
Express) 10/100/1000Base-T Ethernet 00:1a:4b:58:56:fe
[ 4.474935] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0]
WireSpeed[1] TSOcap[1]
[ 4.474983] eth0: dma_rwctrl[76180000] dma_mask[64-bit]
[ 4.475151] netconsole: local port 6665
[ 4.475208] netconsole: local IP 192.168.3.2
[ 4.475251] netconsole: interface eth0
[ 4.475300] netconsole: remote port 9999
[ 4.475343] netconsole: remote IP 192.168.3.1
[ 4.475387] netconsole: remote ethernet address ff:ff:ff:ff:ff:ff
[ 4.475438] netconsole: device eth0 not up yet, forcing it
[ 7.268736] tg3: eth0: Link is up at 1000 Mbps, full duplex.
[ 7.268796] tg3: eth0: Flow control is on for TX and on for RX.
[ 7.272785] console [netcon0] enabled
[ 7.295912] netconsole: network logging started
[ 7.296123] input: Macintosh mouse button emulation as
/class/input/input3
[ 7.296864] Loading iSCSI transport class v2.0-870.
[ 7.297413] iscsi: registered transport (tcp)
[ 7.297753] Adaptec aacraid driver 1.1-5[2456]-ms
[ 7.297971] aic94xx: Adaptec aic94xx SAS/SATA driver version 1.0.3 loaded
[ 7.298315] QLogic Fibre Channel HBA Driver: 8.02.01-k4
[ 7.298489] iscsi: registered transport (qla4xxx)
[ 7.298606] QLogic iSCSI HBA Driver
[ 7.298651] Emulex LightPulse Fibre Channel SCSI driver 8.2.7
[ 7.298704] Copyright(c) 2004-2008 Emulex. All rights reserved.
[ 7.299014] DC390: clustering now enabled by default. If you get
problems load
[ 7.299015] with "disable_clustering=1" and report to maintainers
[ 7.299243] megaraid cmm: 2.20.2.7 (Release Date: Sun Jul 16 00:01:03
EST 2006)
[ 7.299349] megaraid: 2.20.5.1 (Release Date: Thu Nov 16 15:32:35 EST
2006)
[ 7.299463] megasas: 00.00.03.20-rc1 Mon. March 10 11:02:31 PDT 2008
[ 7.299634] GDT-HA: Storage RAID Controller Driver. Version: 3.05
[ 7.299861] 3ware Storage Controller device driver for Linux
v1.26.02.002.
[ 7.299965] 3ware 9000 Storage Controller device driver for Linux
v2.26.02.010.
[ 7.300072] ipr: IBM Power RAID SCSI Device Driver version: 2.4.1
(April 24, 2007)
[ 7.300189] RocketRAID 3xxx/4xxx Controller driver v1.3 (071203)
[ 7.300290] stex: Promise SuperTrak EX Driver version: 3.6.0000.1
[ 7.300452] st: Version 20080224, fixed bufsize 32768, s/g segs 256
[ 7.300549] Driver 'st' needs updating - please use bus_type methods
[ 7.300645] osst :I: Tape driver with OnStream support version 0.99.4
[ 7.300646] osst :I: $Id: osst.c,v 1.73 2005/01/01 21:13:34 wriede Exp $
[ 7.300910] Driver 'osst' needs updating - please use bus_type methods
[ 7.301040] Driver 'sd' needs updating - please use bus_type methods
[ 7.301124] Driver 'sr' needs updating - please use bus_type methods
[ 7.301313] ACPI: PCI Interrupt 0000:00:12.0[A] -> GSI 16 (level,
low) -> IRQ 16
[ 7.301435] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing
32bit
[ 7.301554] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps
0x1 impl SATA mode
[ 7.301613] ahci 0000:00:12.0: flags: ncq sntf ilck pm led clo pio
slum part
[ 7.301850] scsi0 : ahci
[ 7.302108] scsi1 : ahci
[ 7.302244] scsi2 : ahci
[ 7.302381] scsi3 : ahci
[ 7.302543] ata1: SATA max UDMA/133 abar m1024@0xd0609000 port
0xd0609100 irq 16
[ 7.302602] ata2: DUMMY
[ 7.302644] ata3: DUMMY
[ 7.302694] ata4: DUMMY
[ 7.607739] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 7.608180] ata1.00: ATA-7: FUJITSU MHW2080BH PL, 891F, max UDMA/100
[ 7.608232] ata1.00: 156301488 sectors, multi 16: LBA48
[ 7.608284] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd
[ 7.608849] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd
[ 7.608902] ata1.00: configured for UDMA/100
[ 7.609011] isa bounce pool size: 16 pages
[ 7.609143] scsi 0:0:0:0: Direct-Access ATA FUJITSU MHW2080B
891F PQ: 0 ANSI: 5
[ 7.609416] sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors
(80026 MB)
[ 7.609488] sd 0:0:0:0: [sda] Write Protect is off
[ 7.609563] sd 0:0:0:0: [sda] Write cache: enabled, read cache:
enabled, doesn't support DPO or FUA
[ 7.609678] sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors
(80026 MB)
[ 7.609759] sd 0:0:0:0: [sda] Write Protect is off
[ 7.609832] sd 0:0:0:0: [sda] Write cache: enabled, read cache:
enabled, doesn't support DPO or FUA
[ 7.609890] sda: sda1 sda2 < sda5 sda6 >
[ 7.726685] sd 0:0:0:0: [sda] Attached SCSI disk
[ 7.726864] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 7.728093] ACPI: PCI Interrupt 0000:00:14.1[A] -> GSI 16 (level,
low) -> IRQ 16
[ 7.728323] scsi4 : pata_atiixp
[ 7.728475] scsi5 : pata_atiixp
[ 7.729226] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x5040
irq 14
[ 7.729276] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x5048
irq 15
[ 7.918213] ata5.00: ATAPI: TSSTcorpCD/DVDW TS-L632D, HH17, max MWDMA2
[ 7.959136] ata5.00: configured for MWDMA2
[ 8.116013] scsi 4:0:0:0: CD-ROM TSSTcorp CD/DVDW TS-L632D
HH17 PQ: 0 ANSI: 5
[ 8.144818] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw
xa/form2 cdda tray
[ 8.144881] Uniform CD-ROM driver Revision: 3.20
[ 8.145229] sr 4:0:0:0: Attached scsi generic sg1 type 5
[ 8.147281] I2O subsystem v1.325
[ 8.147339] i2o: max drivers = 8
[ 8.147562] I2O Configuration OSM v1.323
[ 8.147736] I2O Bus Adapter OSM v1.317
[ 8.147825] I2O Block Device OSM v1.325
[ 8.148069] I2O SCSI Peripheral OSM v1.316
[ 8.148158] I2O ProcFS OSM v1.316
[ 8.148254] Fusion MPT base driver 3.04.07
[ 8.148298] Copyright (c) 1999-2008 LSI Corporation
[ 8.151313] Fusion MPT SPI Host driver 3.04.07
[ 8.151446] Fusion MPT FC Host driver 3.04.07
[ 8.151562] Fusion MPT SAS Host driver 3.04.07
[ 8.151681] Fusion MPT misc device (ioctl) driver 3.04.07
[ 8.151780] mptctl: Registered with Fusion MPT base driver
[ 8.151826] mptctl: /dev/mptctl @ (major,minor=10,220)
[ 8.151878] Fusion MPT LAN driver 3.04.07
[ 8.152364] vendor=1002 device=4384
[ 8.152422] ACPI: PCI Interrupt 0000:02:04.1[B] -> GSI 21 (level,
low) -> IRQ 21
[ 8.204930] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[21]
MMIO=[d0101000-d01017ff] Max Packet=[2048] IR/IT contexts=[4/4]
[ 8.210063] usbcore: registered new interface driver usblp
[ 8.210119] Initializing USB Mass Storage driver...
[ 8.210212] usbcore: registered new interface driver usb-storage
[ 8.210258] USB Mass Storage support registered.
[ 8.210361] usbcore: registered new interface driver libusual
[ 8.210526] PNP: PS/2 Controller [PNP0303:C249,PNP0f13:C24A] at
0x60,0x64 irq 1,12
[ 8.212486] i8042.c: Detected active multiplexing controller, rev 1.1.
[ 8.213270] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 8.213318] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[ 8.213369] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[ 8.213415] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[ 8.213459] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[ 8.222233] parkbd: no such parport
[ 8.226082] mice: PS/2 mouse device common for all mice
[ 8.238418] md: linear personality registered for level -1
[ 8.238468] md: raid0 personality registered for level 0
[ 8.238518] md: raid1 personality registered for level 1
[ 8.238563] md: raid10 personality registered for level 10
[ 8.254982] raid6: int64x1 1496 MB/s
[ 8.271988] raid6: int64x2 1921 MB/s
[ 8.288974] raid6: int64x4 1839 MB/s
[ 8.305998] raid6: int64x8 1660 MB/s
[ 8.322964] raid6: sse2x1 2093 MB/s
[ 8.339961] raid6: sse2x2 3023 MB/s
[ 8.356978] raid6: sse2x4 3117 MB/s
[ 8.357028] raid6: using algorithm sse2x4 (3117 MB/s)
[ 8.357073] md: raid6 personality registered for level 6
[ 8.357117] md: raid5 personality registered for level 5
[ 8.357167] md: raid4 personality registered for level 4
[ 8.357213] md: multipath personality registered for level -4
[ 8.357263] md: faulty personality registered for level -5
[ 8.357480] device-mapper: ioctl: 4.13.0-ioctl (2007-10-18)
initialised: [email protected]
[ 8.357892] cpuidle: using governor ladder
[ 8.358253] cpuidle: using governor menu
[ 8.358420] dcdbas dcdbas: Dell Systems Management Base Driver
(version 5.6.0-3.2)
[ 8.358585] usbcore: registered new interface driver hiddev
[ 8.358678] usbcore: registered new interface driver usbhid
[ 8.358724] usbhid: v2.6:USB HID core driver
[ 8.359503] TCP bic registered
[ 8.359558] NET: Registered protocol family 17
[ 8.359856] RPC: Registered udp transport module.
[ 8.359903] RPC: Registered tcp transport module.
[ 8.359972] powernow-k8: Found 1 Mobile AMD Sempron(tm) Processor
3600+ processors (1 cpu cores) (version 2.20.00)
[ 8.360086] powernow-k8: 0 : fid 0xc (2000 MHz), vid 0x10
[ 8.360131] powernow-k8: 1 : fid 0xa (1800 MHz), vid 0x12
[ 8.360183] powernow-k8: 2 : fid 0x8 (1600 MHz), vid 0x14
[ 8.360227] powernow-k8: 3 : fid 0x0 (800 MHz), vid 0x18
[ 8.360309] powernow-k8: ph2 null fid transition 0xc
[ 8.360583] registered taskstats version 1
[ 8.360812] drivers/rtc/hctosys.c: unable to open rtc device (rtc0)
[ 8.360918] Freeing unused kernel memory: 484k freed
Thomas Gleixner wrote:
> On Thu, 17 Jul 2008, Richard wrote:
>
>> Here you go.. a 2.6.26-tip dmesg (the top seems to be missing for some
>> reason!) .. just shout if you need the bits on the top.
>>
>
> Those are the interesting ones :)
>
> Questions:
>
> Are CONFIG_HIGHRES_TIMERS and CONFIG_NO_HZ enabled ?
> Is it still necessary to add any command line option ?
> Is the system stable ?
>
> Also please provide the output of
>
> # cat /sys/devices/system/clocksource/clocksource0/current_clocksource
>
> and
>
> # cat /proc/timer_list
>
> Thanks,
>
> tglx
>
>
log 2 of 3.. this time with no kernel parameters
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Linux version 2.6.26-tip (root@localhost) (gcc version
4.2.3 (Gentoo 4.2.3 p1.0)) #3 SMP Thu Jul 17 19:30:56 UTC 2008
[ 0.000000] Command line: root=/dev/ram0 ramdisk=8192
real_root=UUID=e1ef4642-3c14-4a73-be54-c04e9bcf2422 dolvm init=/linuxrc
CONSOLE=/dev/tty1 resume=swap:/dev/sda6 nox
[email protected]/eth0,[email protected]/
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 0000000077fb0000 (usable)
[ 0.000000] BIOS-e820: 0000000077fb0000 - 0000000077fc8000 (reserved)
[ 0.000000] BIOS-e820: 0000000077fc8000 - 0000000077fe7fb8 (ACPI NVS)
[ 0.000000] BIOS-e820: 0000000077fe7fb8 - 0000000080000000 (reserved)
[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec02000 (reserved)
[ 0.000000] BIOS-e820: 00000000ffbc0000 - 00000000ffcc0000 (reserved)
[ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Centaur CentaurHauls
[ 0.000000] last_pfn = 0x77fb0 max_arch_pfn = 0x3ffffffff
[ 0.000000] init_memory_mapping
[ 0.000000] last_map_addr: 77fb0000 end: 77fb0000
[ 0.000000] RAMDISK: 77ad8000 - 77f9f5f9
[ 0.000000] DMI 2.4 present.
[ 0.000000] ACPI: RSDP 000FE0B0, 0024 (r2 HP )
[ 0.000000] ACPI: XSDT 77FC81BC, 0064 (r1 HPQOEM SLIC-MPC 1
HP 1)
[ 0.000000] ACPI: FACP 77FC8084, 00F4 (r4 HP 0944 3
HP 1)
[ 0.000000] ACPI Error (tbfadt-0453): 32/64X address mismatch in
"Pm2ControlBlock": [00008800] [0000000000008100], using 64X [20080321]
[ 0.000000] ACPI: DSDT 77FC84A4, 11437 (r1 HP SB400 10000
MSFT 3000001)
[ 0.000000] ACPI: FACS 77FE7D80, 0040
[ 0.000000] ACPI: SLIC 77FC8220, 0176 (r1 HPQOEM SLIC-MPC 1
HP 1)
[ 0.000000] ACPI: EPTH 77FC8398, 0038 (r1 HP 0944 1
HP 1)
[ 0.000000] ACPI: APIC 77FC83D0, 0062 (r1 HP 0944 1
HP 1)
[ 0.000000] ACPI: MCFG 77FC8434, 003C (r1 HP 0944 1
HP 1)
[ 0.000000] ACPI: TCPA 77FC8470, 0032 (r2 HP 0944 1
HP 1)
[ 0.000000] ACPI: SSDT 77FD98DB, 0059 (r1 HP HPQNLP 1
MSFT 3000001)
[ 0.000000] ACPI: SSDT 77FD9934, 0115 (r1 HP PSSTBLID 1
HP 1)
[ 0.000000] ACPI: DMI detected: Hewlett-Packard
[ 0.000000] Scanning NUMA topology in Northbridge 24
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at 0000000000000000-0000000077fb0000
[ 0.000000] Bootmem setup node 0 0000000000000000-0000000077fb0000
[ 0.000000] NODE_DATA [0000000000001000 - 0000000000004fff]
[ 0.000000] bootmap [000000000000a000 - 0000000000018ff7] pages f
[ 0.000000] (6 early reservations) ==> bootmem
[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==>
[0000000000 - 0000001000]
[ 0.000000] #1 [0000006000 - 0000008000] TRAMPOLINE ==>
[0000006000 - 0000008000]
[ 0.000000] #2 [0000200000 - 0000c5a60c] TEXT DATA BSS ==>
[0000200000 - 0000c5a60c]
[ 0.000000] #3 [0077ad8000 - 0077f9f5f9] RAMDISK ==>
[0077ad8000 - 0077f9f5f9]
[ 0.000000] #4 [000009fc00 - 0000100000] BIOS reserved ==>
[000009fc00 - 0000100000]
[ 0.000000] #5 [0000008000 - 000000a000] PGTABLE ==>
[0000008000 - 000000a000]
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000000 -> 0x00001000
[ 0.000000] DMA32 0x00001000 -> 0x00100000
[ 0.000000] Normal 0x00100000 -> 0x00100000
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0x00000000 -> 0x0000009f
[ 0.000000] 0: 0x00000100 -> 0x00077fb0
[ 0.000000] Detected use of extended apic ids on hypertransport bus
[ 0.000000] ACPI: PM-Timer IO Port: 0x8008
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[ 0.000000] Setting APIC routing to flat
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] SMP: Allowing 2 CPUs, 1 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: 000000000009f000 -
00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 -
00000000000e0000
[ 0.000000] PM: Registered nosave memory: 00000000000e0000 -
0000000000100000
[ 0.000000] Allocating PCI resources starting at 88000000 (gap:
80000000:60000000)
[ 0.000000] PERCPU: Allocating 48320 bytes of per cpu data
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on.
Total pages: 481873
[ 0.000000] Policy zone: DMA32
[ 0.000000] Kernel command line: root=/dev/ram0 ramdisk=8192
real_root=UUID=e1ef4642-3c14-4a73-be54-c04e9bcf2422 dolvm init=/linuxrc
CONSOLE=/dev/tty1 resume=swap:/dev/sda6 nox
[email protected]/eth0,[email protected]/
[ 0.000000] Initializing CPU#0
[ 0.000000] PID hash table entries: 4096 (order: 12, 32768 bytes)
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] TSC calibrated against PM_TIMER
[ 0.000000] Detected 1994.895 MHz processor.
[ 0.001999] Console: colour VGA+ 80x25
[ 0.001999] console [tty0] enabled
[ 0.001999] Checking aperture...
[ 0.001999] No AGP bridge found
[ 0.001999] Node 0: aperture @ d05c000000 size 32 MB
[ 0.001999] Aperture beyond 4GB. Ignoring.
[ 0.001999] Memory: 1920920k/1965760k available (6412k kernel code,
44452k reserved, 3058k data, 484k init)
[ 0.001999] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0,
CPUs=2, Nodes=1
[ 0.002184] Calibrating delay loop (skipped), value calculated using
timer frequency.. <6>3989.79 BogoMIPS (lpj=1994895)
[ 0.002285] Security Framework initialized
[ 0.002331] SELinux: Disabled at boot.
[ 0.002565] Dentry cache hash table entries: 262144 (order: 9,
2097152 bytes)
[ 0.005360] Inode-cache hash table entries: 131072 (order: 8, 1048576
bytes)
[ 0.006565] Mount-cache hash table entries: 256
[ 0.006995] Initializing cgroup subsys debug
[ 0.007070] Initializing cgroup subsys ns
[ 0.007161] Initializing cgroup subsys cpuacct
[ 0.007264] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64
bytes/line)
[ 0.007338] CPU: L2 Cache: 256K (64 bytes/line)
[ 0.007430] CPU 0/0 -> Node 0
[ 0.007537] using C1E aware idle routine
[ 0.007640] ACPI: Core revision 20080321
[ 0.044993] ..MP-BIOS bug: 8254 timer not connected to IO-APIC
[ 0.054996] CPU0: Mobile AMD Sempron(tm) Processor 3600+ stepping 02
[ 0.055100] Using local APIC timer interrupts.
[ 0.056991] Detected 12.468 MHz APIC timer.
[ 0.056991] Brought up 1 CPUs
[ 0.056991] Total of 1 processors activated (3989.79 BogoMIPS).
[ 0.056991] net_namespace: 1224 bytes
[ 0.056991] xor: automatically using best checksumming function:
generic_sse
[ 0.061181] generic_sse: 6148.000 MB/sec
[ 0.061221] xor: using function: generic_sse (6148.000 MB/sec)
[ 0.061294] NET: Registered protocol family 16
[ 0.061562] No dock devices found.
[ 0.061990] TOM: 0000000080000000 aka 2048M
[ 0.062005] ACPI: bus type pci registered
[ 0.062137] PCI: MCFG configuration 0: base e0000000 segment 0 buses
0 - 255
[ 0.062176] PCI: MCFG area at e0000000 reserved in E820
[ 0.068370] PCI: Using MMCONFIG at e0000000 - efffffff
[ 0.068414] PCI: Using configuration type 1 for base access
[ 0.074793] ACPI: EC: non-query interrupt received, switching to
interrupt mode
[ 0.338948] ACPI: Interpreter enabled
[ 0.338948] ACPI: (supports S0 S3 S4 S5)
[ 0.338948] ACPI: Using IOAPIC for interrupt routing
[ 0.350161] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
[ 0.350208] ACPI: EC: driver started in interrupt mode
[ 0.350342] ACPI: PCI Root Bridge [C08B] (0000:00)
[ 0.350580] PCI: 0000:00:12.0 reg 10 io port: [9000, 9007]
[ 0.350623] PCI: 0000:00:12.0 reg 14 io port: [9008, 900b]
[ 0.350667] PCI: 0000:00:12.0 reg 18 io port: [9010, 9017]
[ 0.350710] PCI: 0000:00:12.0 reg 1c io port: [5018, 501b]
[ 0.350753] PCI: 0000:00:12.0 reg 20 io port: [5020, 502f]
[ 0.350797] PCI: 0000:00:12.0 reg 24 32bit mmio: [d0609000, d06093ff]
[ 0.350857] pci 0000:00:12.0: set SATA to AHCI mode
[ 0.350912] PCI: 0000:00:13.0 reg 10 32bit mmio: [d0601000, d0601fff]
[ 0.351007] PCI: 0000:00:13.1 reg 10 32bit mmio: [d0602000, d0602fff]
[ 0.351096] PCI: 0000:00:13.2 reg 10 32bit mmio: [d0603000, d0603fff]
[ 0.351185] PCI: 0000:00:13.3 reg 10 32bit mmio: [d0604000, d0604fff]
[ 0.351274] PCI: 0000:00:13.4 reg 10 32bit mmio: [d0605000, d0605fff]
[ 0.351381] PCI: 0000:00:13.5 reg 10 32bit mmio: [d0606000, d06060ff]
[ 0.351487] PCI: 0000:00:14.0 reg 10 io port: [8200, 820f]
[ 0.351577] PCI: 0000:00:14.1 reg 10 io port: [0, 7]
[ 0.351620] PCI: 0000:00:14.1 reg 14 io port: [0, 3]
[ 0.351663] PCI: 0000:00:14.1 reg 18 io port: [0, 7]
[ 0.351706] PCI: 0000:00:14.1 reg 1c io port: [0, 3]
[ 0.351748] PCI: 0000:00:14.1 reg 20 io port: [5040, 504f]
[ 0.351837] PCI: 0000:00:14.2 reg 10 64bit mmio: [d0608000, d060bfff]
[ 0.352096] PCI: 0000:01:05.0 reg 10 64bit mmio: [c0000000, c7ffffff]
[ 0.352138] PCI: 0000:01:05.0 reg 18 64bit mmio: [d0400000, d040ffff]
[ 0.352179] PCI: 0000:01:05.0 reg 20 io port: [4000, 40ff]
[ 0.352219] PCI: 0000:01:05.0 reg 24 32bit mmio: [d0500000, d05fffff]
[ 0.352274] PCI: bridge 0000:00:01.0 io port: [4000, 4fff]
[ 0.352313] PCI: bridge 0000:00:01.0 32bit mmio: [d0400000, d05fffff]
[ 0.352353] PCI: bridge 0000:00:01.0 64bit mmio pref: [c0000000,
c7ffffff]
[ 0.352478] PCI: 0000:10:00.0 reg 10 64bit mmio: [d0000000, d000ffff]
[ 0.352592] PCI: bridge 0000:00:04.0 32bit mmio: [d0000000, d00fffff]
[ 0.352676] PCI: bridge 0000:00:05.0 io port: [2000, 3fff]
[ 0.353945] PCI: bridge 0000:00:05.0 32bit mmio: [cc000000, cfffffff]
[ 0.353945] PCI: 0000:30:00.0 reg 10 64bit mmio: [c8000000, c8003fff]
[ 0.353945] PCI: bridge 0000:00:06.0 32bit mmio: [c8000000, c80fffff]
[ 0.354033] PCI: 0000:02:04.0 reg 10 32bit mmio: [d0100000, d0100fff]
[ 0.354201] PCI: 0000:02:04.1 reg 10 32bit mmio: [d0101000, d01017ff]
[ 0.354476] PCI: Transparent bridge - 0000:00:14.4
[ 0.354563] PCI: bridge 0000:00:14.4 32bit mmio: [d0100000, d03fffff]
[ 0.377709] ACPI: PCI Interrupt Link [C145] (IRQs 10 11) *0, disabled.
[ 0.378128] ACPI: PCI Interrupt Link [C146] (IRQs 10 11) *0, disabled.
[ 0.378522] ACPI: PCI Interrupt Link [C147] (IRQs 10 11) *0, disabled.
[ 0.378916] ACPI: PCI Interrupt Link [C148] (IRQs 10 11) *0, disabled.
[ 0.379309] ACPI: PCI Interrupt Link [C149] (IRQs 10 11) *0, disabled.
[ 0.379698] ACPI: PCI Interrupt Link [C14A] (IRQs 9) *0, disabled.
[ 0.380063] ACPI: PCI Interrupt Link [C14B] (IRQs 10 11) *0, disabled.
[ 0.380463] ACPI: PCI Interrupt Link [C14C] (IRQs 10 11) *0, disabled.
[ 0.380860] ACPI: Power Resource [C171] (off)
[ 0.381103] ACPI: Power Resource [C230] (off)
[ 0.381194] ACPI: Power Resource [C24C] (on)
[ 0.381367] ACPI: Power Resource [C395] (off)
[ 0.381500] ACPI: Power Resource [C396] (off)
[ 0.381633] ACPI: Power Resource [C397] (off)
[ 0.381765] ACPI: Power Resource [C398] (off)
[ 0.382126] ACPI: WMI: Mapper loaded
[ 0.382168] Linux Plug and Play Support v0.97 (c) Adam Belay
[ 0.382238] pnp: PnP ACPI init
[ 0.382283] ACPI: bus type pnp registered
[ 0.393306] pnp: PnP ACPI: found 14 devices
[ 0.393353] ACPI: ACPI bus type pnp unregistered
[ 0.393724] SCSI subsystem initialized
[ 0.394020] usbcore: registered new interface driver usbfs
[ 0.394131] usbcore: registered new interface driver hub
[ 0.394216] usbcore: registered new device driver usb
[ 0.394487] PCI: Using ACPI for IRQ routing
[ 0.394569] PCI: Cannot allocate resource region 0 of device 0000:00:14.2
[ 0.399951] NetLabel: Initializing
[ 0.399993] NetLabel: domain hash size = 128
[ 0.400029] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.400082] NetLabel: unlabeled traffic allowed by default
[ 0.400246] ACPI: RTC can wake from S4
[ 0.402957] system 00:00: iomem range 0x0-0x9ffff could not be reserved
[ 0.403000] system 00:00: iomem range 0xe0000-0xfffff could not be
reserved
[ 0.403039] system 00:00: iomem range 0x100000-0xffffffff could not
be reserved
[ 0.403092] system 00:0a: ioport range 0x40b-0x40b has been reserved
[ 0.403130] system 00:0a: ioport range 0x4d0-0x4d1 has been reserved
[ 0.403170] system 00:0a: ioport range 0x4d6-0x4d6 has been reserved
[ 0.403208] system 00:0a: ioport range 0x500-0x51f has been reserved
[ 0.403246] system 00:0a: ioport range 0xc00-0xc01 has been reserved
[ 0.403285] system 00:0a: ioport range 0xc14-0xc14 has been reserved
[ 0.403323] system 00:0a: ioport range 0xc50-0xc51 has been reserved
[ 0.403361] system 00:0a: ioport range 0xc52-0xc52 has been reserved
[ 0.403400] system 00:0a: ioport range 0xc6c-0xc6c has been reserved
[ 0.403438] system 00:0a: ioport range 0xc6f-0xc6f has been reserved
[ 0.403476] system 00:0a: ioport range 0xcd0-0xcdf has been reserved
[ 0.403516] system 00:0a: iomem range 0xffb00000-0xffbfffff could not
be reserved
[ 0.403559] system 00:0a: iomem range 0xfff00000-0xffffffff could not
be reserved
[ 0.403606] system 00:0c: ioport range 0x8000-0x802f has been reserved
[ 0.403644] system 00:0c: ioport range 0x8100-0x811f has been reserved
[ 0.403684] system 00:0c: iomem range 0xe0000000-0xefffffff could not
be reserved
[ 0.403727] system 00:0c: iomem range 0xfec00000-0xfec000ff could not
be reserved
[ 0.403769] system 00:0c: iomem range 0xfed45000-0xfed8ffff has been
reserved
[ 0.403813] system 00:0d: iomem range 0xcd400-0xcffff has been reserved
[ 0.403851] system 00:0d: iomem range 0xd2a00-0xd2fff has been reserved
[ 0.403891] system 00:0d: iomem range 0x0-0x7ffffff could not be reserved
[ 0.403930] system 00:0d: iomem range 0xfee00000-0xfee00fff has been
reserved
[ 0.404435] PCI: region 0000:02:04.0/9 too large:
0x0000000000000000-0x0000000003ffffff
[ 0.404492] PCI: Bridge: 0000:00:01.0
[ 0.404528] IO window: 4000-4fff
[ 0.404565] MEM window: 0xd0400000-0xd05fffff
[ 0.404602] PREFETCH window: 0x00000000c0000000-0x00000000c7ffffff
[ 0.404641] PCI: Bridge: 0000:00:04.0
[ 0.404677] IO window: disabled.
[ 0.404714] MEM window: 0xd0000000-0xd00fffff
[ 0.404751] PREFETCH window: disabled.
[ 0.404788] PCI: Bridge: 0000:00:05.0
[ 0.404824] IO window: 2000-3fff
[ 0.404861] MEM window: 0xcc000000-0xcfffffff
[ 0.404898] PREFETCH window: disabled.
[ 0.404961] PCI: Bridge: 0000:00:06.0
[ 0.404998] IO window: disabled.
[ 0.405044] MEM window: 0xc8000000-0xc80fffff
[ 0.405081] PREFETCH window: disabled.
[ 0.405122] PCI: Bus 3, cardbus bridge: 0000:02:04.0
[ 0.405160] IO window: 0x00001000-0x000010ff
[ 0.405201] IO window: 0x00001400-0x000014ff
[ 0.405241] MEM window: 0x8c000000-0x8fffffff
[ 0.405281] PCI: Bridge: 0000:00:14.4
[ 0.405320] IO window: 1000-1fff
[ 0.405360] MEM window: 0xd0100000-0xd03fffff
[ 0.405399] PREFETCH window: disabled.
[ 0.405493] vendor=1002 device=4384
[ 0.405534] ACPI: PCI Interrupt 0000:02:04.0[A] -> GSI 20 (level,
low) -> IRQ 20
[ 0.405612] bus: 00 index 0 io port: [0, ffff]
[ 0.405650] bus: 00 index 1 mmio: [0, ffffffffffffffff]
[ 0.405689] bus: 01 index 0 io port: [4000, 4fff]
[ 0.405726] bus: 01 index 1 mmio: [d0400000, d05fffff]
[ 0.405764] bus: 01 index 2 mmio: [c0000000, c7ffffff]
[ 0.405802] bus: 01 index 3 mmio: [0, 0]
[ 0.405839] bus: 10 index 0 mmio: [0, 0]
[ 0.405876] bus: 10 index 1 mmio: [d0000000, d00fffff]
[ 0.405914] bus: 10 index 2 mmio: [0, 0]
[ 0.405951] bus: 10 index 3 mmio: [0, 0]
[ 0.405989] bus: 20 index 0 io port: [2000, 3fff]
[ 0.406035] bus: 20 index 1 mmio: [cc000000, cfffffff]
[ 0.406073] bus: 20 index 2 mmio: [0, 0]
[ 0.406110] bus: 20 index 3 mmio: [0, 0]
[ 0.406147] bus: 30 index 0 mmio: [0, 0]
[ 0.406185] bus: 30 index 1 mmio: [c8000000, c80fffff]
[ 0.406222] bus: 30 index 2 mmio: [0, 0]
[ 0.406260] bus: 30 index 3 mmio: [0, 0]
[ 0.406297] bus: 02 index 0 io port: [1000, 1fff]
[ 0.406336] bus: 02 index 1 mmio: [d0100000, d03fffff]
[ 0.406373] bus: 02 index 2 mmio: [0, 0]
[ 0.406412] bus: 02 index 3 io port: [0, ffff]
[ 0.406450] bus: 02 index 4 mmio: [0, ffffffffffffffff]
[ 0.406488] bus: 03 index 0 io port: [1000, 10ff]
[ 0.406526] bus: 03 index 1 io port: [1400, 14ff]
[ 0.406563] bus: 03 index 2 mmio: [0, 3ffffff]
[ 0.406601] bus: 03 index 3 mmio: [8c000000, 8fffffff]
[ 0.406650] NET: Registered protocol family 2
[ 0.416120] IP route cache hash table entries: 65536 (order: 7,
524288 bytes)
[ 0.417107] TCP established hash table entries: 262144 (order: 10,
4194304 bytes)
[ 0.419026] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.419523] TCP: Hash tables configured (established 262144 bind 65536)
[ 0.419567] TCP reno registered
[ 0.422095] NET: Registered protocol family 1
[ 0.422237] checking if image is initramfs... it is
[ 0.696976] Freeing initrd memory: 4893k freed
[ 0.700322] audit: initializing netlink socket (disabled)
[ 0.700374] type=2000 audit(1216403701.699:1): initialized
[ 0.700655] Total HugeTLB memory allocated, 0
[ 0.704361] VFS: Disk quotas dquot_6.5.1
[ 0.704518] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.706977] Installing knfsd (copyright (C) 1996 [email protected]).
[ 0.708074] NTFS driver 2.1.29 [Flags: R/W].
[ 0.708520] QNX4 filesystem 0.2.3 registered.
[ 0.708561] fuse init (API version 7.9)
[ 0.709128] JFS: nTxBlock = 8192, nTxLock = 65536
[ 0.712776] SGI XFS with ACLs, security attributes, realtime, large
block/inode numbers, no debug enabled
[ 0.713822] SGI XFS Quota Management subsystem
[ 0.713877] msgmni has been set to 3761
[ 0.714112] async_tx: api initialized (async)
[ 0.714244] Block layer SCSI generic (bsg) driver version 0.4 loaded
(major 253)
[ 0.714288] io scheduler noop registered
[ 0.714325] io scheduler anticipatory registered
[ 0.714363] io scheduler deadline registered
[ 0.714581] io scheduler cfq registered (default)
[ 0.714861] assign_interrupt_mode Found MSI capability
[ 0.715114] assign_interrupt_mode Found MSI capability
[ 0.715330] assign_interrupt_mode Found MSI capability
[ 1.116562] ACPI: AC Adapter [C1EB] (off-line)
[ 1.178933] ACPI: Battery Slot [C1ED] (battery present)
[ 1.179216] ACPI: Battery Slot [C1EC] (battery absent)
[ 1.179448] input: Power Button (FF) as /class/input/input0
[ 1.179488] ACPI: Power Button (FF) [PWRF]
[ 1.179674] input: Sleep Button (CM) as /class/input/input1
[ 1.179713] ACPI: Sleep Button (CM) [C28D]
[ 1.179849] input: Lid Switch as /class/input/input2
[ 1.179971] ACPI: Lid Switch [C265]
[ 1.180331] ACPI: Transitioning device [C399] to D3
[ 1.180445] ACPI: PNP0C0B:00 is registered as cooling_device0
[ 1.180487] ACPI: Fan [C399] (off)
[ 1.180711] ACPI: Transitioning device [C39A] to D3
[ 1.180808] ACPI: PNP0C0B:01 is registered as cooling_device1
[ 1.180851] ACPI: Fan [C39A] (off)
[ 1.181088] ACPI: Transitioning device [C39B] to D3
[ 1.181186] ACPI: PNP0C0B:02 is registered as cooling_device2
[ 1.181228] ACPI: Fan [C39B] (off)
[ 1.181450] ACPI: Transitioning device [C39C] to D3
[ 1.181547] ACPI: PNP0C0B:03 is registered as cooling_device3
[ 1.181591] ACPI: Fan [C39C] (off)
[ 1.185371] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
[ 1.185584] ACPI: ACPI0007:00 is registered as cooling_device4
[ 1.185625] ACPI: Processor [C000] (supports 8 throttling states)
[ 1.198182] ACPI: LNXTHERM:01 is registered as thermal_zone0
[ 1.203223] ACPI: Thermal Zone [TZ1] (68 C)
[ 1.256731] lp: driver loaded but no devices found
[ 1.265733] ppdev: user-space parallel port driver
[ 1.265782] Linux agpgart interface v0.103
[ 1.265834] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ
sharing enabled
[ 1.270646] parport_pc 00:02: activated
[ 1.270701] parport_pc 00:02: reported by Plug and Play ACPI
[ 1.272074] parport_pc 00:02: disabled
[ 1.272769] Floppy drive(s): fd0 is 1.44M
[ 4.282950] floppy0: no floppy controllers found
[ 4.285036] brd: module loaded
[ 4.286147] loop: module loaded
[ 4.286193] Compaq SMART2 Driver (v 2.6.0)
[ 4.286318] HP CISS Driver (v 3.6.20)
[ 4.286719] MM: desc_per_page = 128
[ 4.286785] tg3.c:v3.92.1 (June 9, 2008)
[ 4.286895] ACPI: PCI Interrupt 0000:10:00.0[A] -> GSI 16 (level,
low) -> IRQ 16
[ 4.494624] eth0: Tigon3 [partno(none) rev b002 PHY(5787)] (PCI
Express) 10/100/1000Base-T Ethernet 00:1a:4b:58:56:fe
[ 4.494684] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0]
WireSpeed[1] TSOcap[1]
[ 4.494733] eth0: dma_rwctrl[76180000] dma_mask[64-bit]
[ 4.494916] netconsole: local port 6665
[ 4.494977] netconsole: local IP 192.168.3.2
[ 4.495020] netconsole: interface eth0
[ 4.495063] netconsole: remote port 9999
[ 4.495112] netconsole: remote IP 192.168.3.1
[ 4.495156] netconsole: remote ethernet address ff:ff:ff:ff:ff:ff
[ 4.495207] netconsole: device eth0 not up yet, forcing it
[ 7.730658] tg3: eth0: Link is up at 1000 Mbps, full duplex.
[ 7.730706] tg3: eth0: Flow control is on for TX and on for RX.
[ 7.733936] console [netcon0] enabled
[ 7.757542] netconsole: network logging started
[ 7.757828] input: Macintosh mouse button emulation as
/class/input/input3
[ 7.758238] Loading iSCSI transport class v2.0-870.
[ 7.759089] iscsi: registered transport (tcp)
[ 7.759512] Adaptec aacraid driver 1.1-5[2456]-ms
[ 7.759770] aic94xx: Adaptec aic94xx SAS/SATA driver version 1.0.3 loaded
[ 7.760234] QLogic Fibre Channel HBA Driver: 8.02.01-k4
[ 7.760470] iscsi: registered transport (qla4xxx)
[ 7.760602] QLogic iSCSI HBA Driver
[ 7.760655] Emulex LightPulse Fibre Channel SCSI driver 8.2.7
[ 7.760699] Copyright(c) 2004-2008 Emulex. All rights reserved.
[ 7.761099] DC390: clustering now enabled by default. If you get
problems load
[ 7.761100] with "disable_clustering=1" and report to maintainers
[ 7.761384] megaraid cmm: 2.20.2.7 (Release Date: Sun Jul 16 00:01:03
EST 2006)
[ 7.761512] megaraid: 2.20.5.1 (Release Date: Thu Nov 16 15:32:35 EST
2006)
[ 7.761647] megasas: 00.00.03.20-rc1 Mon. March 10 11:02:31 PDT 2008
[ 7.761865] GDT-HA: Storage RAID Controller Driver. Version: 3.05
[ 7.762274] 3ware Storage Controller device driver for Linux
v1.26.02.002.
[ 7.762401] 3ware 9000 Storage Controller device driver for Linux
v2.26.02.010.
[ 7.762533] ipr: IBM Power RAID SCSI Device Driver version: 2.4.1
(April 24, 2007)
[ 7.762668] RocketRAID 3xxx/4xxx Controller driver v1.3 (071203)
[ 7.762794] stex: Promise SuperTrak EX Driver version: 3.6.0000.1
[ 7.763015] st: Version 20080224, fixed bufsize 32768, s/g segs 256
[ 7.763133] Driver 'st' needs updating - please use bus_type methods
[ 7.763246] osst :I: Tape driver with OnStream support version 0.99.4
[ 7.763247] osst :I: $Id: osst.c,v 1.73 2005/01/01 21:13:34 wriede Exp $
[ 7.763420] Driver 'osst' needs updating - please use bus_type methods
[ 7.763601] Driver 'sd' needs updating - please use bus_type methods
[ 7.763710] Driver 'sr' needs updating - please use bus_type methods
[ 7.763967] ACPI: PCI Interrupt 0000:00:12.0[A] -> GSI 16 (level,
low) -> IRQ 16
[ 7.764088] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing
32bit
[ 7.764216] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps
0x1 impl SATA mode
[ 7.764269] ahci 0000:00:12.0: flags: ncq sntf ilck pm led clo pio
slum part
[ 7.764515] scsi0 : ahci
[ 7.764819] scsi1 : ahci
[ 7.765051] scsi2 : ahci
[ 7.765228] scsi3 : ahci
[ 7.765418] ata1: SATA max UDMA/133 abar m1024@0xd0609000 port
0xd0609100 irq 16
[ 7.765477] ata2: DUMMY
[ 7.765520] ata3: DUMMY
[ 7.765591] ata4: DUMMY
[ 8.069918] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 8.070365] ata1.00: ATA-7: FUJITSU MHW2080BH PL, 891F, max UDMA/100
[ 8.070418] ata1.00: 156301488 sectors, multi 16: LBA48
[ 8.070474] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd
[ 8.071037] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd
[ 8.071083] ata1.00: configured for UDMA/100
[ 8.071219] isa bounce pool size: 16 pages
[ 8.071362] scsi 0:0:0:0: Direct-Access ATA FUJITSU MHW2080B
891F PQ: 0 ANSI: 5
[ 8.071661] sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors
(80026 MB)
[ 8.071731] sd 0:0:0:0: [sda] Write Protect is off
[ 8.071813] sd 0:0:0:0: [sda] Write cache: enabled, read cache:
enabled, doesn't support DPO or FUA
[ 8.071965] sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors
(80026 MB)
[ 8.072034] sd 0:0:0:0: [sda] Write Protect is off
[ 8.072112] sd 0:0:0:0: [sda] Write cache: enabled, read cache:
enabled, doesn't support DPO or FUA
[ 8.072170] sda: sda1 sda2 < sda5 sda6 >
[ 8.188836] sd 0:0:0:0: [sda] Attached SCSI disk
[ 8.189035] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 8.190432] ACPI: PCI Interrupt 0000:00:14.1[A] -> GSI 16 (level,
low) -> IRQ 16
[ 8.190673] scsi4 : pata_atiixp
[ 8.190930] scsi5 : pata_atiixp
[ 8.191697] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x5040
irq 14
[ 8.191752] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x5048
irq 15
[ 8.381400] ata5.00: ATAPI: TSSTcorpCD/DVDW TS-L632D, HH17, max MWDMA2
[ 8.422328] ata5.00: configured for MWDMA2
[ 8.579234] scsi 4:0:0:0: CD-ROM TSSTcorp CD/DVDW TS-L632D
HH17 PQ: 0 ANSI: 5
[ 8.608049] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw
xa/form2 cdda tray
[ 8.608112] Uniform CD-ROM driver Revision: 3.20
[ 8.608499] sr 4:0:0:0: Attached scsi generic sg1 type 5
[ 8.610885] I2O subsystem v1.325
[ 8.610943] i2o: max drivers = 8
[ 8.611228] I2O Configuration OSM v1.323
[ 8.611414] I2O Bus Adapter OSM v1.317
[ 8.611522] I2O Block Device OSM v1.325
[ 8.611853] I2O SCSI Peripheral OSM v1.316
[ 8.611969] I2O ProcFS OSM v1.316
[ 8.612088] Fusion MPT base driver 3.04.07
[ 8.612138] Copyright (c) 1999-2008 LSI Corporation
[ 8.612187] Fusion MPT SPI Host driver 3.04.07
[ 8.612364] Fusion MPT FC Host driver 3.04.07
[ 8.612506] Fusion MPT SAS Host driver 3.04.07
[ 8.612645] Fusion MPT misc device (ioctl) driver 3.04.07
[ 8.616236] mptctl: Registered with Fusion MPT base driver
[ 8.616282] mptctl: /dev/mptctl @ (major,minor=10,220)
[ 8.616334] Fusion MPT LAN driver 3.04.07
[ 8.616868] vendor=1002 device=4384
[ 8.616919] ACPI: PCI Interrupt 0000:02:04.1[B] -> GSI 21 (level,
low) -> IRQ 21
[ 8.669435] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[21]
MMIO=[d0101000-d01017ff] Max Packet=[2048] IR/IT contexts=[4/4]
[ 8.674041] usbcore: registered new interface driver usblp
[ 8.674099] Initializing USB Mass Storage driver...
[ 8.674218] usbcore: registered new interface driver usb-storage
[ 8.674268] USB Mass Storage support registered.
[ 8.674392] usbcore: registered new interface driver libusual
[ 8.674612] PNP: PS/2 Controller [PNP0303:C249,PNP0f13:C24A] at
0x60,0x64 irq 1,12
[ 8.676686] i8042.c: Detected active multiplexing controller, rev 1.1.
[ 8.677477] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 8.677527] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[ 8.677578] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[ 8.677622] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[ 8.677674] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[ 8.686300] parkbd: no such parport
[ 8.689961] mice: PS/2 mouse device common for all mice
[ 8.702467] md: linear personality registered for level -1
[ 8.702516] md: raid0 personality registered for level 0
[ 8.702568] md: raid1 personality registered for level 1
[ 8.702612] md: raid10 personality registered for level 10
[ 8.718851] raid6: int64x1 1496 MB/s
[ 8.735862] raid6: int64x2 1902 MB/s
[ 8.752861] raid6: int64x4 1835 MB/s
[ 8.769860] raid6: int64x8 1648 MB/s
[ 8.786846] raid6: sse2x1 2085 MB/s
[ 8.803851] raid6: sse2x2 3011 MB/s
[ 8.820842] raid6: sse2x4 3101 MB/s
[ 8.820886] raid6: using algorithm sse2x4 (3101 MB/s)
[ 8.820938] md: raid6 personality registered for level 6
[ 8.820982] md: raid5 personality registered for level 5
[ 8.821033] md: raid4 personality registered for level 4
[ 8.821079] md: multipath personality registered for level -4
[ 8.821124] md: faulty personality registered for level -5
[ 8.821432] device-mapper: ioctl: 4.13.0-ioctl (2007-10-18)
initialised: [email protected]
[ 8.822027] cpuidle: using governor ladder
[ 8.822586] cpuidle: using governor menu
[ 8.842646] input: AT Translated Set 2 keyboard as /class/input/input4
[ 8.847747] dcdbas dcdbas: Dell Systems Management Base Driver
(version 5.6.0-3.2)
[ 8.847947] usbcore: registered new interface driver hiddev
[ 8.848062] usbcore: registered new interface driver usbhid
[ 8.848114] usbhid: v2.6:USB HID core driver
[ 8.848915] TCP bic registered
[ 8.848970] NET: Registered protocol family 17
[ 8.849301] RPC: Registered udp transport module.
[ 8.849349] RPC: Registered tcp transport module.
[ 8.849410] powernow-k8: Found 1 Mobile AMD Sempron(tm) Processor
3600+ processors (1 cpu cores) (version 2.20.00)
[ 8.849541] powernow-k8: 0 : fid 0xc (2000 MHz), vid 0x10
[ 8.849592] powernow-k8: 1 : fid 0xa (1800 MHz), vid 0x12
[ 8.849638] powernow-k8: 2 : fid 0x8 (1600 MHz), vid 0x14
[ 8.849683] powernow-k8: 3 : fid 0x0 (800 MHz), vid 0x18
[ 8.849765] powernow-k8: ph2 null fid transition 0xc
[ 8.850132] registered taskstats version 1
[ 8.850361] drivers/rtc/hctosys.c: unable to open rtc device (rtc0)
[ 8.850465] Freeing unused kernel memory: 484k freed
Thomas Gleixner wrote:
> On Thu, 17 Jul 2008, Richard wrote:
>
>> Here you go.. a 2.6.26-tip dmesg (the top seems to be missing for some
>> reason!) .. just shout if you need the bits on the top.
>>
>
> Those are the interesting ones :)
>
> Questions:
>
> Are CONFIG_HIGHRES_TIMERS and CONFIG_NO_HZ enabled ?
> Is it still necessary to add any command line option ?
> Is the system stable ?
>
> Also please provide the output of
>
> # cat /sys/devices/system/clocksource/clocksource0/current_clocksource
>
> and
>
> # cat /proc/timer_list
>
> Thanks,
>
> tglx
>
>
And finally.... nohz=off
Richard
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Linux version 2.6.26-tip (root@localhost) (gcc version
4.2.3 (Gentoo 4.2.3 p1.0)) #3 SMP Thu Jul 17 19:30:56 UTC 2008
[ 0.000000] Command line: root=/dev/ram0 ramdisk=8192
real_root=UUID=e1ef4642-3c14-4a73-be54-c04e9bcf2422 dolvm init=/linuxrc
CONSOLE=/dev/tty1 nohz=off resume=swap:/dev/sda6 nox
[email protected]/eth0,[email protected]/
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 0000000077fb0000 (usable)
[ 0.000000] BIOS-e820: 0000000077fb0000 - 0000000077fc8000 (reserved)
[ 0.000000] BIOS-e820: 0000000077fc8000 - 0000000077fe7fb8 (ACPI NVS)
[ 0.000000] BIOS-e820: 0000000077fe7fb8 - 0000000080000000 (reserved)
[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec02000 (reserved)
[ 0.000000] BIOS-e820: 00000000ffbc0000 - 00000000ffcc0000 (reserved)
[ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Centaur CentaurHauls
[ 0.000000] last_pfn = 0x77fb0 max_arch_pfn = 0x3ffffffff
[ 0.000000] init_memory_mapping
[ 0.000000] last_map_addr: 77fb0000 end: 77fb0000
[ 0.000000] RAMDISK: 77ad8000 - 77f9f5f9
[ 0.000000] DMI 2.4 present.
[ 0.000000] ACPI: RSDP 000FE0B0, 0024 (r2 HP )
[ 0.000000] ACPI: XSDT 77FC81BC, 0064 (r1 HPQOEM SLIC-MPC 1
HP 1)
[ 0.000000] ACPI: FACP 77FC8084, 00F4 (r4 HP 0944 3
HP 1)
[ 0.000000] ACPI Error (tbfadt-0453): 32/64X address mismatch in
"Pm2ControlBlock": [00008800] [0000000000008100], using 64X [20080321]
[ 0.000000] ACPI: DSDT 77FC84A4, 11437 (r1 HP SB400 10000
MSFT 3000001)
[ 0.000000] ACPI: FACS 77FE7D80, 0040
[ 0.000000] ACPI: SLIC 77FC8220, 0176 (r1 HPQOEM SLIC-MPC 1
HP 1)
[ 0.000000] ACPI: EPTH 77FC8398, 0038 (r1 HP 0944 1
HP 1)
[ 0.000000] ACPI: APIC 77FC83D0, 0062 (r1 HP 0944 1
HP 1)
[ 0.000000] ACPI: MCFG 77FC8434, 003C (r1 HP 0944 1
HP 1)
[ 0.000000] ACPI: TCPA 77FC8470, 0032 (r2 HP 0944 1
HP 1)
[ 0.000000] ACPI: SSDT 77FD98DB, 0059 (r1 HP HPQNLP 1
MSFT 3000001)
[ 0.000000] ACPI: SSDT 77FD9934, 0115 (r1 HP PSSTBLID 1
HP 1)
[ 0.000000] ACPI: DMI detected: Hewlett-Packard
[ 0.000000] Scanning NUMA topology in Northbridge 24
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at 0000000000000000-0000000077fb0000
[ 0.000000] Bootmem setup node 0 0000000000000000-0000000077fb0000
[ 0.000000] NODE_DATA [0000000000001000 - 0000000000004fff]
[ 0.000000] bootmap [000000000000a000 - 0000000000018ff7] pages f
[ 0.000000] (6 early reservations) ==> bootmem
[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==>
[0000000000 - 0000001000]
[ 0.000000] #1 [0000006000 - 0000008000] TRAMPOLINE ==>
[0000006000 - 0000008000]
[ 0.000000] #2 [0000200000 - 0000c5a60c] TEXT DATA BSS ==>
[0000200000 - 0000c5a60c]
[ 0.000000] #3 [0077ad8000 - 0077f9f5f9] RAMDISK ==>
[0077ad8000 - 0077f9f5f9]
[ 0.000000] #4 [000009fc00 - 0000100000] BIOS reserved ==>
[000009fc00 - 0000100000]
[ 0.000000] #5 [0000008000 - 000000a000] PGTABLE ==>
[0000008000 - 000000a000]
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000000 -> 0x00001000
[ 0.000000] DMA32 0x00001000 -> 0x00100000
[ 0.000000] Normal 0x00100000 -> 0x00100000
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0x00000000 -> 0x0000009f
[ 0.000000] 0: 0x00000100 -> 0x00077fb0
[ 0.000000] Detected use of extended apic ids on hypertransport bus
[ 0.000000] ACPI: PM-Timer IO Port: 0x8008
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[ 0.000000] Setting APIC routing to flat
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] SMP: Allowing 2 CPUs, 1 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: 000000000009f000 -
00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 -
00000000000e0000
[ 0.000000] PM: Registered nosave memory: 00000000000e0000 -
0000000000100000
[ 0.000000] Allocating PCI resources starting at 88000000 (gap:
80000000:60000000)
[ 0.000000] PERCPU: Allocating 48320 bytes of per cpu data
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on.
Total pages: 481873
[ 0.000000] Policy zone: DMA32
[ 0.000000] Kernel command line: root=/dev/ram0 ramdisk=8192
real_root=UUID=e1ef4642-3c14-4a73-be54-c04e9bcf2422 dolvm init=/linuxrc
CONSOLE=/dev/tty1 nohz=off resume=swap:/dev/sda6 nox
[email protected]/eth0,[email protected]/
[ 0.000000] Initializing CPU#0
[ 0.000000] PID hash table entries: 4096 (order: 12, 32768 bytes)
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] TSC calibrated against PM_TIMER
[ 0.000000] Detected 1994.904 MHz processor.
[ 0.001999] Console: colour VGA+ 80x25
[ 0.001999] console [tty0] enabled
[ 0.001999] Checking aperture...
[ 0.001999] No AGP bridge found
[ 0.001999] Node 0: aperture @ d35c000000 size 32 MB
[ 0.001999] Aperture beyond 4GB. Ignoring.
[ 0.001999] Memory: 1920920k/1965760k available (6412k kernel code,
44452k reserved, 3058k data, 484k init)
[ 0.001999] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0,
CPUs=2, Nodes=1
[ 0.002184] Calibrating delay loop (skipped), value calculated using
timer frequency.. <6>3989.80 BogoMIPS (lpj=1994904)
[ 0.002285] Security Framework initialized
[ 0.002331] SELinux: Disabled at boot.
[ 0.002563] Dentry cache hash table entries: 262144 (order: 9,
2097152 bytes)
[ 0.004906] Inode-cache hash table entries: 131072 (order: 8, 1048576
bytes)
[ 0.006153] Mount-cache hash table entries: 256
[ 0.006546] Initializing cgroup subsys debug
[ 0.006636] Initializing cgroup subsys ns
[ 0.006736] Initializing cgroup subsys cpuacct
[ 0.006832] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64
bytes/line)
[ 0.006919] CPU: L2 Cache: 256K (64 bytes/line)
[ 0.006988] CPU 0/0 -> Node 0
[ 0.007089] using C1E aware idle routine
[ 0.007202] ACPI: Core revision 20080321
[ 0.043993] ..MP-BIOS bug: 8254 timer not connected to IO-APIC
[ 0.054804] CPU0: Mobile AMD Sempron(tm) Processor 3600+ stepping 02
[ 0.054909] Using local APIC timer interrupts.
[ 0.055991] Detected 12.468 MHz APIC timer.
[ 0.055991] Brought up 1 CPUs
[ 0.055991] Total of 1 processors activated (3989.80 BogoMIPS).
[ 0.055991] net_namespace: 1224 bytes
[ 0.055991] xor: automatically using best checksumming function:
generic_sse
[ 0.060180] generic_sse: 6144.000 MB/sec
[ 0.060220] xor: using function: generic_sse (6144.000 MB/sec)
[ 0.060294] NET: Registered protocol family 16
[ 0.060561] No dock devices found.
[ 0.060990] TOM: 0000000080000000 aka 2048M
[ 0.061003] ACPI: bus type pci registered
[ 0.061134] PCI: MCFG configuration 0: base e0000000 segment 0 buses
0 - 255
[ 0.061173] PCI: MCFG area at e0000000 reserved in E820
[ 0.067366] PCI: Using MMCONFIG at e0000000 - efffffff
[ 0.067410] PCI: Using configuration type 1 for base access
[ 0.073911] ACPI: EC: non-query interrupt received, switching to
interrupt mode
[ 0.337948] ACPI: Interpreter enabled
[ 0.337948] ACPI: (supports S0 S3 S4 S5)
[ 0.338120] ACPI: Using IOAPIC for interrupt routing
[ 0.349227] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
[ 0.349273] ACPI: EC: driver started in interrupt mode
[ 0.349409] ACPI: PCI Root Bridge [C08B] (0000:00)
[ 0.349646] PCI: 0000:00:12.0 reg 10 io port: [9000, 9007]
[ 0.349690] PCI: 0000:00:12.0 reg 14 io port: [9008, 900b]
[ 0.349733] PCI: 0000:00:12.0 reg 18 io port: [9010, 9017]
[ 0.349776] PCI: 0000:00:12.0 reg 1c io port: [5018, 501b]
[ 0.349819] PCI: 0000:00:12.0 reg 20 io port: [5020, 502f]
[ 0.349863] PCI: 0000:00:12.0 reg 24 32bit mmio: [d0609000, d06093ff]
[ 0.349923] pci 0000:00:12.0: set SATA to AHCI mode
[ 0.349984] PCI: 0000:00:13.0 reg 10 32bit mmio: [d0601000, d0601fff]
[ 0.350072] PCI: 0000:00:13.1 reg 10 32bit mmio: [d0602000, d0602fff]
[ 0.350160] PCI: 0000:00:13.2 reg 10 32bit mmio: [d0603000, d0603fff]
[ 0.350247] PCI: 0000:00:13.3 reg 10 32bit mmio: [d0604000, d0604fff]
[ 0.350334] PCI: 0000:00:13.4 reg 10 32bit mmio: [d0605000, d0605fff]
[ 0.350440] PCI: 0000:00:13.5 reg 10 32bit mmio: [d0606000, d06060ff]
[ 0.350545] PCI: 0000:00:14.0 reg 10 io port: [8200, 820f]
[ 0.350634] PCI: 0000:00:14.1 reg 10 io port: [0, 7]
[ 0.350677] PCI: 0000:00:14.1 reg 14 io port: [0, 3]
[ 0.350719] PCI: 0000:00:14.1 reg 18 io port: [0, 7]
[ 0.350760] PCI: 0000:00:14.1 reg 1c io port: [0, 3]
[ 0.350803] PCI: 0000:00:14.1 reg 20 io port: [5040, 504f]
[ 0.350891] PCI: 0000:00:14.2 reg 10 64bit mmio: [d0608000, d060bfff]
[ 0.351150] PCI: 0000:01:05.0 reg 10 64bit mmio: [c0000000, c7ffffff]
[ 0.351193] PCI: 0000:01:05.0 reg 18 64bit mmio: [d0400000, d040ffff]
[ 0.351234] PCI: 0000:01:05.0 reg 20 io port: [4000, 40ff]
[ 0.351274] PCI: 0000:01:05.0 reg 24 32bit mmio: [d0500000, d05fffff]
[ 0.351329] PCI: bridge 0000:00:01.0 io port: [4000, 4fff]
[ 0.351369] PCI: bridge 0000:00:01.0 32bit mmio: [d0400000, d05fffff]
[ 0.351410] PCI: bridge 0000:00:01.0 64bit mmio pref: [c0000000,
c7ffffff]
[ 0.351538] PCI: 0000:10:00.0 reg 10 64bit mmio: [d0000000, d000ffff]
[ 0.351653] PCI: bridge 0000:00:04.0 32bit mmio: [d0000000, d00fffff]
[ 0.351738] PCI: bridge 0000:00:05.0 io port: [2000, 3fff]
[ 0.352945] PCI: bridge 0000:00:05.0 32bit mmio: [cc000000, cfffffff]
[ 0.352945] PCI: 0000:30:00.0 reg 10 64bit mmio: [c8000000, c8003fff]
[ 0.353043] PCI: bridge 0000:00:06.0 32bit mmio: [c8000000, c80fffff]
[ 0.353221] PCI: 0000:02:04.0 reg 10 32bit mmio: [d0100000, d0100fff]
[ 0.353388] PCI: 0000:02:04.1 reg 10 32bit mmio: [d0101000, d01017ff]
[ 0.353663] PCI: Transparent bridge - 0000:00:14.4
[ 0.353748] PCI: bridge 0000:00:14.4 32bit mmio: [d0100000, d03fffff]
[ 0.376761] ACPI: PCI Interrupt Link [C145] (IRQs 10 11) *0, disabled.
[ 0.377175] ACPI: PCI Interrupt Link [C146] (IRQs 10 11) *0, disabled.
[ 0.377562] ACPI: PCI Interrupt Link [C147] (IRQs 10 11) *0, disabled.
[ 0.377955] ACPI: PCI Interrupt Link [C148] (IRQs 10 11) *0, disabled.
[ 0.378355] ACPI: PCI Interrupt Link [C149] (IRQs 10 11) *0, disabled.
[ 0.378755] ACPI: PCI Interrupt Link [C14A] (IRQs 9) *0, disabled.
[ 0.379123] ACPI: PCI Interrupt Link [C14B] (IRQs 10 11) *0, disabled.
[ 0.379511] ACPI: PCI Interrupt Link [C14C] (IRQs 10 11) *0, disabled.
[ 0.379900] ACPI: Power Resource [C171] (off)
[ 0.380142] ACPI: Power Resource [C230] (off)
[ 0.380232] ACPI: Power Resource [C24C] (on)
[ 0.380406] ACPI: Power Resource [C395] (off)
[ 0.380539] ACPI: Power Resource [C396] (off)
[ 0.380672] ACPI: Power Resource [C397] (off)
[ 0.380805] ACPI: Power Resource [C398] (off)
[ 0.381170] ACPI: WMI: Mapper loaded
[ 0.381211] Linux Plug and Play Support v0.97 (c) Adam Belay
[ 0.381282] pnp: PnP ACPI init
[ 0.381327] ACPI: bus type pnp registered
[ 0.392401] pnp: PnP ACPI: found 14 devices
[ 0.392446] ACPI: ACPI bus type pnp unregistered
[ 0.392794] SCSI subsystem initialized
[ 0.393076] usbcore: registered new interface driver usbfs
[ 0.393184] usbcore: registered new interface driver hub
[ 0.393267] usbcore: registered new device driver usb
[ 0.393528] PCI: Using ACPI for IRQ routing
[ 0.393608] PCI: Cannot allocate resource region 0 of device 0000:00:14.2
[ 0.398952] NetLabel: Initializing
[ 0.398993] NetLabel: domain hash size = 128
[ 0.399030] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.399081] NetLabel: unlabeled traffic allowed by default
[ 0.399247] ACPI: RTC can wake from S4
[ 0.401959] system 00:00: iomem range 0x0-0x9ffff could not be reserved
[ 0.402003] system 00:00: iomem range 0xe0000-0xfffff could not be
reserved
[ 0.402042] system 00:00: iomem range 0x100000-0xffffffff could not
be reserved
[ 0.402097] system 00:0a: ioport range 0x40b-0x40b has been reserved
[ 0.402137] system 00:0a: ioport range 0x4d0-0x4d1 has been reserved
[ 0.402176] system 00:0a: ioport range 0x4d6-0x4d6 has been reserved
[ 0.402215] system 00:0a: ioport range 0x500-0x51f has been reserved
[ 0.402255] system 00:0a: ioport range 0xc00-0xc01 has been reserved
[ 0.402294] system 00:0a: ioport range 0xc14-0xc14 has been reserved
[ 0.402333] system 00:0a: ioport range 0xc50-0xc51 has been reserved
[ 0.402373] system 00:0a: ioport range 0xc52-0xc52 has been reserved
[ 0.402412] system 00:0a: ioport range 0xc6c-0xc6c has been reserved
[ 0.402451] system 00:0a: ioport range 0xc6f-0xc6f has been reserved
[ 0.402491] system 00:0a: ioport range 0xcd0-0xcdf has been reserved
[ 0.402531] system 00:0a: iomem range 0xffb00000-0xffbfffff could not
be reserved
[ 0.402575] system 00:0a: iomem range 0xfff00000-0xffffffff could not
be reserved
[ 0.402623] system 00:0c: ioport range 0x8000-0x802f has been reserved
[ 0.402662] system 00:0c: ioport range 0x8100-0x811f has been reserved
[ 0.402702] system 00:0c: iomem range 0xe0000000-0xefffffff could not
be reserved
[ 0.402745] system 00:0c: iomem range 0xfec00000-0xfec000ff could not
be reserved
[ 0.402788] system 00:0c: iomem range 0xfed45000-0xfed8ffff has been
reserved
[ 0.402832] system 00:0d: iomem range 0xcd400-0xcffff has been reserved
[ 0.402871] system 00:0d: iomem range 0xd2a00-0xd2fff has been reserved
[ 0.402910] system 00:0d: iomem range 0x0-0x7ffffff could not be reserved
[ 0.402951] system 00:0d: iomem range 0xfee00000-0xfee00fff has been
reserved
[ 0.403461] PCI: region 0000:02:04.0/9 too large:
0x0000000000000000-0x0000000003ffffff
[ 0.403519] PCI: Bridge: 0000:00:01.0
[ 0.403556] IO window: 4000-4fff
[ 0.403594] MEM window: 0xd0400000-0xd05fffff
[ 0.403632] PREFETCH window: 0x00000000c0000000-0x00000000c7ffffff
[ 0.403671] PCI: Bridge: 0000:00:04.0
[ 0.403707] IO window: disabled.
[ 0.403745] MEM window: 0xd0000000-0xd00fffff
[ 0.403782] PREFETCH window: disabled.
[ 0.403820] PCI: Bridge: 0000:00:05.0
[ 0.403857] IO window: 2000-3fff
[ 0.403894] MEM window: 0xcc000000-0xcfffffff
[ 0.403957] PREFETCH window: disabled.
[ 0.404004] PCI: Bridge: 0000:00:06.0
[ 0.404041] IO window: disabled.
[ 0.404078] MEM window: 0xc8000000-0xc80fffff
[ 0.404116] PREFETCH window: disabled.
[ 0.404157] PCI: Bus 3, cardbus bridge: 0000:02:04.0
[ 0.404195] IO window: 0x00001000-0x000010ff
[ 0.404235] IO window: 0x00001400-0x000014ff
[ 0.404276] MEM window: 0x8c000000-0x8fffffff
[ 0.404317] PCI: Bridge: 0000:00:14.4
[ 0.404354] IO window: 1000-1fff
[ 0.404395] MEM window: 0xd0100000-0xd03fffff
[ 0.404434] PREFETCH window: disabled.
[ 0.404528] vendor=1002 device=4384
[ 0.404569] ACPI: PCI Interrupt 0000:02:04.0[A] -> GSI 20 (level,
low) -> IRQ 20
[ 0.404647] bus: 00 index 0 io port: [0, ffff]
[ 0.404685] bus: 00 index 1 mmio: [0, ffffffffffffffff]
[ 0.404723] bus: 01 index 0 io port: [4000, 4fff]
[ 0.404761] bus: 01 index 1 mmio: [d0400000, d05fffff]
[ 0.404799] bus: 01 index 2 mmio: [c0000000, c7ffffff]
[ 0.404837] bus: 01 index 3 mmio: [0, 0]
[ 0.404874] bus: 10 index 0 mmio: [0, 0]
[ 0.404911] bus: 10 index 1 mmio: [d0000000, d00fffff]
[ 0.404949] bus: 10 index 2 mmio: [0, 0]
[ 0.404986] bus: 10 index 3 mmio: [0, 0]
[ 0.405032] bus: 20 index 0 io port: [2000, 3fff]
[ 0.405070] bus: 20 index 1 mmio: [cc000000, cfffffff]
[ 0.405108] bus: 20 index 2 mmio: [0, 0]
[ 0.405145] bus: 20 index 3 mmio: [0, 0]
[ 0.405183] bus: 30 index 0 mmio: [0, 0]
[ 0.405220] bus: 30 index 1 mmio: [c8000000, c80fffff]
[ 0.405258] bus: 30 index 2 mmio: [0, 0]
[ 0.405295] bus: 30 index 3 mmio: [0, 0]
[ 0.405332] bus: 02 index 0 io port: [1000, 1fff]
[ 0.405370] bus: 02 index 1 mmio: [d0100000, d03fffff]
[ 0.405408] bus: 02 index 2 mmio: [0, 0]
[ 0.405445] bus: 02 index 3 io port: [0, ffff]
[ 0.405482] bus: 02 index 4 mmio: [0, ffffffffffffffff]
[ 0.405520] bus: 03 index 0 io port: [1000, 10ff]
[ 0.405558] bus: 03 index 1 io port: [1400, 14ff]
[ 0.405596] bus: 03 index 2 mmio: [0, 3ffffff]
[ 0.405633] bus: 03 index 3 mmio: [8c000000, 8fffffff]
[ 0.405683] NET: Registered protocol family 2
[ 0.415117] IP route cache hash table entries: 65536 (order: 7,
524288 bytes)
[ 0.416092] TCP established hash table entries: 262144 (order: 10,
4194304 bytes)
[ 0.418413] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.419100] TCP: Hash tables configured (established 262144 bind 65536)
[ 0.419145] TCP reno registered
[ 0.422092] NET: Registered protocol family 1
[ 0.422234] checking if image is initramfs... it is
[ 0.696968] Freeing initrd memory: 4893k freed
[ 0.700318] audit: initializing netlink socket (disabled)
[ 0.700375] type=2000 audit(1216404168.699:1): initialized
[ 0.700679] Total HugeTLB memory allocated, 0
[ 0.704403] VFS: Disk quotas dquot_6.5.1
[ 0.704561] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.707084] Installing knfsd (copyright (C) 1996 [email protected]).
[ 0.708126] NTFS driver 2.1.29 [Flags: R/W].
[ 0.708575] QNX4 filesystem 0.2.3 registered.
[ 0.708615] fuse init (API version 7.9)
[ 0.709229] JFS: nTxBlock = 8192, nTxLock = 65536
[ 0.712133] SGI XFS with ACLs, security attributes, realtime, large
block/inode numbers, no debug enabled
[ 0.713181] SGI XFS Quota Management subsystem
[ 0.713236] msgmni has been set to 3761
[ 0.713455] async_tx: api initialized (async)
[ 0.713587] Block layer SCSI generic (bsg) driver version 0.4 loaded
(major 253)
[ 0.713631] io scheduler noop registered
[ 0.713668] io scheduler anticipatory registered
[ 0.713705] io scheduler deadline registered
[ 0.713923] io scheduler cfq registered (default)
[ 0.714226] assign_interrupt_mode Found MSI capability
[ 0.714463] assign_interrupt_mode Found MSI capability
[ 0.714680] assign_interrupt_mode Found MSI capability
[ 1.115555] ACPI: AC Adapter [C1EB] (off-line)
[ 1.178060] ACPI: Battery Slot [C1ED] (battery present)
[ 1.178336] ACPI: Battery Slot [C1EC] (battery absent)
[ 1.178568] input: Power Button (FF) as /class/input/input0
[ 1.178607] ACPI: Power Button (FF) [PWRF]
[ 1.178795] input: Sleep Button (CM) as /class/input/input1
[ 1.178834] ACPI: Sleep Button (CM) [C28D]
[ 1.178969] input: Lid Switch as /class/input/input2
[ 1.179117] ACPI: Lid Switch [C265]
[ 1.179474] ACPI: Transitioning device [C399] to D3
[ 1.179586] ACPI: PNP0C0B:00 is registered as cooling_device0
[ 1.179628] ACPI: Fan [C399] (off)
[ 1.179852] ACPI: Transitioning device [C39A] to D3
[ 1.179949] ACPI: PNP0C0B:01 is registered as cooling_device1
[ 1.180003] ACPI: Fan [C39A] (off)
[ 1.180225] ACPI: Transitioning device [C39B] to D3
[ 1.180323] ACPI: PNP0C0B:02 is registered as cooling_device2
[ 1.180364] ACPI: Fan [C39B] (off)
[ 1.180587] ACPI: Transitioning device [C39C] to D3
[ 1.180683] ACPI: PNP0C0B:03 is registered as cooling_device3
[ 1.180727] ACPI: Fan [C39C] (off)
[ 1.184536] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
[ 1.184753] ACPI: ACPI0007:00 is registered as cooling_device4
[ 1.184794] ACPI: Processor [C000] (supports 8 throttling states)
[ 1.197411] ACPI: LNXTHERM:01 is registered as thermal_zone0
[ 1.202582] ACPI: Thermal Zone [TZ1] (67 C)
[ 1.258835] lp: driver loaded but no devices found
[ 1.267778] ppdev: user-space parallel port driver
[ 1.267836] Linux agpgart interface v0.103
[ 1.267882] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ
sharing enabled
[ 1.272751] parport_pc 00:02: activated
[ 1.272800] parport_pc 00:02: reported by Plug and Play ACPI
[ 1.274172] parport_pc 00:02: disabled
[ 1.274868] Floppy drive(s): fd0 is 1.44M
[ 4.285951] floppy0: no floppy controllers found
[ 4.288044] brd: module loaded
[ 4.289155] loop: module loaded
[ 4.289201] Compaq SMART2 Driver (v 2.6.0)
[ 4.289326] HP CISS Driver (v 3.6.20)
[ 4.289733] MM: desc_per_page = 128
[ 4.289806] tg3.c:v3.92.1 (June 9, 2008)
[ 4.289915] ACPI: PCI Interrupt 0000:10:00.0[A] -> GSI 16 (level,
low) -> IRQ 16
[ 4.497637] eth0: Tigon3 [partno(none) rev b002 PHY(5787)] (PCI
Express) 10/100/1000Base-T Ethernet 00:1a:4b:58:56:fe
[ 4.497696] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0]
WireSpeed[1] TSOcap[1]
[ 4.497751] eth0: dma_rwctrl[76180000] dma_mask[64-bit]
[ 4.497948] netconsole: local port 6665
[ 4.497991] netconsole: local IP 192.168.3.2
[ 4.498034] netconsole: interface eth0
[ 4.498082] netconsole: remote port 9999
[ 4.498125] netconsole: remote IP 192.168.3.1
[ 4.498175] netconsole: remote ethernet address ff:ff:ff:ff:ff:ff
[ 4.498220] netconsole: device eth0 not up yet, forcing it
[ 7.229923] tg3: eth0: Link is up at 1000 Mbps, full duplex.
[ 7.229978] tg3: eth0: Flow control is on for TX and on for RX.
[ 7.233957] console [netcon0] enabled
[ 7.257479] netconsole: network logging started
[ 7.257694] input: Macintosh mouse button emulation as
/class/input/input3
[ 7.258097] Loading iSCSI transport class v2.0-870.
[ 7.258871] iscsi: registered transport (tcp)
[ 7.259299] Adaptec aacraid driver 1.1-5[2456]-ms
[ 7.259527] aic94xx: Adaptec aic94xx SAS/SATA driver version 1.0.3 loaded
[ 7.259993] QLogic Fibre Channel HBA Driver: 8.02.01-k4
[ 7.260226] iscsi: registered transport (qla4xxx)
[ 7.260361] QLogic iSCSI HBA Driver
[ 7.260411] Emulex LightPulse Fibre Channel SCSI driver 8.2.7
[ 7.260458] Copyright(c) 2004-2008 Emulex. All rights reserved.
[ 7.260838] DC390: clustering now enabled by default. If you get
problems load
[ 7.260839] with "disable_clustering=1" and report to maintainers
[ 7.261122] megaraid cmm: 2.20.2.7 (Release Date: Sun Jul 16 00:01:03
EST 2006)
[ 7.261253] megaraid: 2.20.5.1 (Release Date: Thu Nov 16 15:32:35 EST
2006)
[ 7.261385] megasas: 00.00.03.20-rc1 Mon. March 10 11:02:31 PDT 2008
[ 7.261607] GDT-HA: Storage RAID Controller Driver. Version: 3.05
[ 7.261883] 3ware Storage Controller device driver for Linux
v1.26.02.002.
[ 7.262139] 3ware 9000 Storage Controller device driver for Linux
v2.26.02.010.
[ 7.262273] ipr: IBM Power RAID SCSI Device Driver version: 2.4.1
(April 24, 2007)
[ 7.262409] RocketRAID 3xxx/4xxx Controller driver v1.3 (071203)
[ 7.262536] stex: Promise SuperTrak EX Driver version: 3.6.0000.1
[ 7.262741] st: Version 20080224, fixed bufsize 32768, s/g segs 256
[ 7.262858] Driver 'st' needs updating - please use bus_type methods
[ 7.262990] osst :I: Tape driver with OnStream support version 0.99.4
[ 7.262991] osst :I: $Id: osst.c,v 1.73 2005/01/01 21:13:34 wriede Exp $
[ 7.263144] Driver 'osst' needs updating - please use bus_type methods
[ 7.263327] Driver 'sd' needs updating - please use bus_type methods
[ 7.263434] Driver 'sr' needs updating - please use bus_type methods
[ 7.263671] ACPI: PCI Interrupt 0000:00:12.0[A] -> GSI 16 (level,
low) -> IRQ 16
[ 7.263794] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing
32bit
[ 7.263946] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps
0x1 impl SATA mode
[ 7.263999] ahci 0000:00:12.0: flags: ncq sntf ilck pm led clo pio
slum part
[ 7.264247] scsi0 : ahci
[ 7.264549] scsi1 : ahci
[ 7.264739] scsi2 : ahci
[ 7.264944] scsi3 : ahci
[ 7.265139] ata1: SATA max UDMA/133 abar m1024@0xd0609000 port
0xd0609100 irq 16
[ 7.265193] ata2: DUMMY
[ 7.265242] ata3: DUMMY
[ 7.265285] ata4: DUMMY
[ 7.569938] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 7.570393] ata1.00: ATA-7: FUJITSU MHW2080BH PL, 891F, max UDMA/100
[ 7.570445] ata1.00: 156301488 sectors, multi 16: LBA48
[ 7.570497] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd
[ 7.571062] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd
[ 7.571114] ata1.00: configured for UDMA/100
[ 7.571313] isa bounce pool size: 16 pages
[ 7.571463] scsi 0:0:0:0: Direct-Access ATA FUJITSU MHW2080B
891F PQ: 0 ANSI: 5
[ 7.571830] sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors
(80026 MB)
[ 7.571921] sd 0:0:0:0: [sda] Write Protect is off
[ 7.572030] sd 0:0:0:0: [sda] Write cache: enabled, read cache:
enabled, doesn't support DPO or FUA
[ 7.572169] sd 0:0:0:0: [sda] 156301488 512-byte hardware sectors
(80026 MB)
[ 7.572245] sd 0:0:0:0: [sda] Write Protect is off
[ 7.572344] sd 0:0:0:0: [sda] Write cache: enabled, read cache:
enabled, doesn't support DPO or FUA
[ 7.572403] sda: sda1 sda2 < sda5 sda6 >
[ 7.697865] sd 0:0:0:0: [sda] Attached SCSI disk
[ 7.698069] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 7.699525] ACPI: PCI Interrupt 0000:00:14.1[A] -> GSI 16 (level,
low) -> IRQ 16
[ 7.699781] scsi4 : pata_atiixp
[ 7.700042] scsi5 : pata_atiixp
[ 7.700787] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x5040
irq 14
[ 7.700836] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x5048
irq 15
[ 7.890452] ata5.00: ATAPI: TSSTcorpCD/DVDW TS-L632D, HH17, max MWDMA2
[ 7.931399] ata5.00: configured for MWDMA2
[ 8.088284] scsi 4:0:0:0: CD-ROM TSSTcorp CD/DVDW TS-L632D
HH17 PQ: 0 ANSI: 5
[ 8.117092] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw
xa/form2 cdda tray
[ 8.117154] Uniform CD-ROM driver Revision: 3.20
[ 8.117543] sr 4:0:0:0: Attached scsi generic sg1 type 5
[ 8.119888] I2O subsystem v1.325
[ 8.119982] i2o: max drivers = 8
[ 8.120275] I2O Configuration OSM v1.323
[ 8.120470] I2O Bus Adapter OSM v1.317
[ 8.120578] I2O Block Device OSM v1.325
[ 8.120911] I2O SCSI Peripheral OSM v1.316
[ 8.121027] I2O ProcFS OSM v1.316
[ 8.121147] Fusion MPT base driver 3.04.07
[ 8.121198] Copyright (c) 1999-2008 LSI Corporation
[ 8.121247] Fusion MPT SPI Host driver 3.04.07
[ 8.121410] Fusion MPT FC Host driver 3.04.07
[ 8.121559] Fusion MPT SAS Host driver 3.04.07
[ 8.121697] Fusion MPT misc device (ioctl) driver 3.04.07
[ 8.125293] mptctl: Registered with Fusion MPT base driver
[ 8.125340] mptctl: /dev/mptctl @ (major,minor=10,220)
[ 8.125385] Fusion MPT LAN driver 3.04.07
[ 8.125930] vendor=1002 device=4384
[ 8.125987] ACPI: PCI Interrupt 0000:02:04.1[B] -> GSI 21 (level,
low) -> IRQ 21
[ 8.178514] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[21]
MMIO=[d0101000-d01017ff] Max Packet=[2048] IR/IT contexts=[4/4]
[ 8.183150] usbcore: registered new interface driver usblp
[ 8.183202] Initializing USB Mass Storage driver...
[ 8.183322] usbcore: registered new interface driver usb-storage
[ 8.183368] USB Mass Storage support registered.
[ 8.183494] usbcore: registered new interface driver libusual
[ 8.183705] PNP: PS/2 Controller [PNP0303:C249,PNP0f13:C24A] at
0x60,0x64 irq 1,12
[ 8.185783] i8042.c: Detected active multiplexing controller, rev 1.1.
[ 8.186574] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 8.186624] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[ 8.186674] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[ 8.186720] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[ 8.186773] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[ 8.195495] parkbd: no such parport
[ 8.198037] mice: PS/2 mouse device common for all mice
[ 8.210524] md: linear personality registered for level -1
[ 8.210578] md: raid0 personality registered for level 0
[ 8.210624] md: raid1 personality registered for level 1
[ 8.210674] md: raid10 personality registered for level 10
[ 8.226899] raid6: int64x1 1484 MB/s
[ 8.243921] raid6: int64x2 1898 MB/s
[ 8.260930] raid6: int64x4 1835 MB/s
[ 8.277911] raid6: int64x8 1632 MB/s
[ 8.294916] raid6: sse2x1 2085 MB/s
[ 8.311903] raid6: sse2x2 3007 MB/s
[ 8.328914] raid6: sse2x4 3101 MB/s
[ 8.328958] raid6: using algorithm sse2x4 (3101 MB/s)
[ 8.329010] md: raid6 personality registered for level 6
[ 8.329055] md: raid5 personality registered for level 5
[ 8.329100] md: raid4 personality registered for level 4
[ 8.329152] md: multipath personality registered for level -4
[ 8.329197] md: faulty personality registered for level -5
[ 8.329506] device-mapper: ioctl: 4.13.0-ioctl (2007-10-18)
initialised: [email protected]
[ 8.330118] cpuidle: using governor ladder
[ 8.330666] cpuidle: using governor menu
[ 8.350511] input: AT Translated Set 2 keyboard as /class/input/input4
[ 8.356102] dcdbas dcdbas: Dell Systems Management Base Driver
(version 5.6.0-3.2)
[ 8.356300] usbcore: registered new interface driver hiddev
[ 8.356417] usbcore: registered new interface driver usbhid
[ 8.356464] usbhid: v2.6:USB HID core driver
[ 8.357253] TCP bic registered
[ 8.357308] NET: Registered protocol family 17
[ 8.357638] RPC: Registered udp transport module.
[ 8.357685] RPC: Registered tcp transport module.
[ 8.357746] powernow-k8: Found 1 Mobile AMD Sempron(tm) Processor
3600+ processors (1 cpu cores) (version 2.20.00)
[ 8.357862] powernow-k8: 0 : fid 0xc (2000 MHz), vid 0x10
[ 8.357920] powernow-k8: 1 : fid 0xa (1800 MHz), vid 0x12
[ 8.357973] powernow-k8: 2 : fid 0x8 (1600 MHz), vid 0x14
[ 8.358020] powernow-k8: 3 : fid 0x0 (800 MHz), vid 0x18
[ 8.358100] powernow-k8: ph2 null fid transition 0xc
[ 8.358467] registered taskstats version 1
[ 8.358694] drivers/rtc/hctosys.c: unable to open rtc device (rtc0)
[ 8.358800] Freeing unused kernel memory: 484k freed