Bug#664767: Brcmsmac driver woes, possible regression?
Camaleón wrote:
> It seems the key patches are from 18 to 23 (remember I'm using ES for
> the regulatory domain) :-?
Yep.
Could you try with patches 1-19? (Patches 18, 19, 22, and 23 seem
potentially interesting.)
Thanks,
Jonathan
--
To UNSUBSCRIBE, email to debian-kernel-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Archive: http://lists.debian.org/20120708165003.GA7328@burratino
07-16-2012, 01:44 PM
Camaleón
Bug#664767: Brcmsmac driver woes, possible regression?
2012/7/8 Jonathan Nieder <jrnieder@gmail.com>:
> Could you try with patches 1-19? (Patches 18, 19, 22, and 23 seem
> potentially interesting.)
Sorry for the delay... I've tried kernel 3.2.21 with patches 1 to 19
but I get random reconnects in just one day:
Moreover, if I delay the data input when N-M asks me for the AP
password, gnome-shell starts segfaulting :-(
Greetings,
--
Camaleón
--
To UNSUBSCRIBE, email to debian-kernel-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Archive: CAKprTDFDYjg7z5JwiDLLTY3BxY7pAyRLXewUQBvQNfK7T_uPz g@mail.gmail.com">http://lists.debian.org/CAKprTDFDYjg7z5JwiDLLTY3BxY7pAyRLXewUQBvQNfK7T_uPz g@mail.gmail.com
07-16-2012, 02:00 PM
Jonathan Nieder
Bug#664767: Brcmsmac driver woes, possible regression?
Camaleón wrote:
> Sorry for the delay... I've tried kernel 3.2.21 with patches 1 to 19
> but I get random reconnects in just one day:
[...]
> Moreover, if I delay the data input when N-M asks me for the AP
> password, gnome-shell starts segfaulting :-(
Thank you. Next combination to try when you have time is 1-22.
Many thanks,
Jonathan
--
To UNSUBSCRIBE, email to debian-kernel-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Archive: CAFzf2XzN94et_nBQZTa8RrEdyVVccz1iAbTo5iMO-fYzuOcHjA@mail.gmail.com">http://lists.debian.org/CAFzf2XzN94et_nBQZTa8RrEdyVVccz1iAbTo5iMO-fYzuOcHjA@mail.gmail.com
07-23-2012, 12:04 AM
Jonathan Nieder
Bug#664767: Brcmsmac driver woes, possible regression?
Camaleón wrote:
> I compiled the kernel today with the 22 patches and today got this:
Neat. Ok, we're almost done. Could you try the attached patch (patch
23) without the others against 3.2.y?
If it works, I'll submit patches 22 and 23 to stable@ for inclusion
in the 3.2.y tree.
Thanks,
Jonathan
From: Arend van Spriel <arend@broadcom.com>
Date: Wed, 11 Apr 2012 11:52:50 +0200
Subject: brcm80211: smac: only provide valid regulatory hint
The driver provides a regulatory hint to cfg80211 as obtained from the
SPROM. Mostly, this will be a two-letter ISO country code. However, it
may obtain special country code similar to the world regulatory domain
as used in cfg80211. This patch avoids setting these special codes as
the hint is lost to cfg80211.
Reviewed-by: Pieter-Paul Giesberts <pieterpg@broadcom.com>
Reviewed-by: Brett Rudley <brudley@broadcom.com>
Signed-off-by: Arend van Spriel <arend@broadcom.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
---
drivers/net/wireless/brcm80211/brcmsmac/channel.c | 36 ++++++++++++++++++++-
1 file changed, 35 insertions(+), 1 deletion(-)
+/*
+ * Indicates whether the country provided is valid to pass
+ * to cfg80211 or not.
+ *
+ * returns true if valid; false if not.
+ */
+static bool brcms_c_country_valid(const char *ccode)
+{
+ /*
+ * only allow ascii alpha uppercase for the first 2
+ * chars.
+ */
+ if (!((0x80 & ccode[0]) == 0 && ccode[0] >= 0x41 && ccode[0] <= 0x5A &&
+ (0x80 & ccode[1]) == 0 && ccode[1] >= 0x41 && ccode[1] <= 0x5A &&
+ ccode[2] == ' '))
+ return false;
+
+ /*
+ * do not match ISO 3166-1 user assigned country codes
+ * that may be in the driver table
+ */
+ if (!strcmp("AA", ccode) || /* AA */
+ !strcmp("ZZ", ccode) || /* ZZ */
+ ccode[0] == 'X' || /* XA - XZ */
+ (ccode[0] == 'Q' && /* QM - QZ */
+ (ccode[1] >= 'M' && ccode[1] <= 'Z')))
+ return false;
+
+ if (!strcmp("NA", ccode))
+ return false;
+
+ return true;
+}
+
/* Lookup a country info structure from a null terminated country
* abbreviation and regrev directly with no translation.
*/
@@ -1089,7 +1123,7 @@ struct brcms_cm_info *brcms_c_channel_mgr_attach(struct brcms_c_info *wlc)
/* store the country code for passing up as a regulatory hint */
ccode = getvar(wlc->hw->sih, BRCMS_SROM_CCODE);
- if (ccode)
+ if (ccode && brcms_c_country_valid(ccode))
strncpy(wlc->pub->srom_ccode, ccode, BRCM_CNTRY_BUF_SZ - 1);
/*
--
1.7.10.4
07-25-2012, 05:06 PM
Camaleón
Bug#664767: Brcmsmac driver woes, possible regression?
2012/7/23 Jonathan Nieder <jrnieder@gmail.com>:
> Camaleón wrote:
>
>> I compiled the kernel today with the 22 patches and today got this:
>
> Neat. Ok, we're almost done. Could you try the attached patch (patch
> 23) without the others against 3.2.y?
>
> If it works, I'll submit patches 22 and 23 to stable@ for inclusion
> in the 3.2.y tree.
Patch 23 seems to be of no help at all, wireless is compelety
unstable... I get reconnects every 5 minutes or less :-(
(attaching syslog with kernel 3.2.21 with just patch 23 applied)
Bug#664767: Brcmsmac driver woes, possible regression?
Camaleón wrote:
> 2012/7/23 Jonathan Nieder <jrnieder@gmail.com>:
>> Camaleón wrote:
>>> I compiled the kernel today with the 22 patches and today got this:
>>
>> Neat. Ok, we're almost done. Could you try the attached patch (patch
>> 23) without the others against 3.2.y?
>>
>> If it works, I'll submit patches 22 and 23 to stable@ for inclusion
>> in the 3.2.y tree.
>
> Patch 23 seems to be of no help at all, wireless is compelety
> unstable... I get reconnects every 5 minutes or less :-(
>
> (attaching syslog with kernel 3.2.21 with just patch 23 applied)
Hmm. What happens if you try all 23 together again?
--
To UNSUBSCRIBE, email to debian-kernel-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Archive: http://lists.debian.org/20120725192137.GC4732@burratino
07-28-2012, 05:22 PM
CamaleĂłn
Bug#664767: Brcmsmac driver woes, possible regression?
2012/7/25 Jonathan Nieder <jrnieder@gmail.com>:
> CamaleĂłn wrote:
>> Patch 23 seems to be of no help at all, wireless is compelety
>> unstable... I get reconnects every 5 minutes or less :-(
>>
>> (attaching syslog with kernel 3.2.21 with just patch 23 applied)
>
> Hmm. What happens if you try all 23 together again?
Compiled today with all the patches and it happens that I get the
usual reconnects... I'm completely baffled.
Bug#664767: Brcmsmac driver woes, possible regression?
Camaleón wrote:
> 2012/7/25 Jonathan Nieder <jrnieder@gmail.com>:
>> Hmm. What happens if you try all 23 together again?
>
> Compiled today with all the patches and it happens that I get the
> usual reconnects... I'm completely baffled.
Thanks for the quick feedback. If you don't authenticate with
network-manager quickly enough, does gnome-shell still crash?
Curious,
Jonathan
--
To UNSUBSCRIBE, email to debian-kernel-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Archive: http://lists.debian.org/20120728184957.GA3107@burratino
07-29-2012, 08:39 AM
Camaleón
Bug#664767: Brcmsmac driver woes, possible regression?
El 2012-07-28 a las 13:49 -0500, Jonathan Nieder escribió:
> Camaleón wrote:
> > 2012/7/25 Jonathan Nieder <jrnieder@gmail.com>:
>
> >> Hmm. What happens if you try all 23 together again?
> >
> > Compiled today with all the patches and it happens that I get the
> > usual reconnects... I'm completely baffled.
>
> Thanks for the quick feedback. If you don't authenticate with
> network-manager quickly enough, does gnome-shell still crash?
>
> Curious,
> Jonathan
Yes, indeed, gnome-shell crashes when I delay too much (~10 minutes
or so) the password input (in this last log the crash is not present but
it segfaulted afterwards). That's something I always have found
curious: when wireless reconnects, I first get one pop-up window (light
grey colored, old GNOME style) for the password. If I leave it "as is"
(do not press Accept nor Cancel for a while), I get a second pop-up over
the current one (black window with rounded corners) and if the delay was
noticeable, or even if I click on the Cancel button, gnome-shell
"waves" (crashes) and the session is automatically restored.
But maybe this is something for a different bug report against N-M :-?
Greetings,
--
Camaleón
--
To UNSUBSCRIBE, email to debian-kernel-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Archive: 20120729083900.GA4030@stt008.linux.site">http://lists.debian.org/20120729083900.GA4030@stt008.linux.site
08-11-2012, 08:28 PM
Camaleón
Bug#664767: Brcmsmac driver woes, possible regression?
2012/7/29 Camaleón <noelamac@gmail.com>:
As I had some spare time, I downloaded kernel 3.6-rc1 from upstream
sources and compiled "as is" with no additional patches applied. Here
wireless reconnects very, very often (I had to manually switch off the
wifi button), see attached syslog (I think there are new messages
coming from bcma and brcmsmac that were not present in older versions
:-?).
I still don't lose the hope of seeing this driver running as stable as
it was on kernel 2.6.38 series (stubborn that I am :-P) and again, I'm
open for running any test, patch or whatever debugging tracing it is
required.
Greetings,
--
Camaleón
Aug 11 21:17:01 stt300 /USR/SBIN/CRON[4734]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Aug 11 21:51:19 stt300 NetworkManager[1461]: <info> kernel firmware directory '/lib/firmware' changed
Aug 11 21:51:30 stt300 kernel: [46983.943278] device-mapper: uevent: version 1.0.3
Aug 11 21:51:30 stt300 kernel: [46983.943538] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
Aug 11 21:51:34 stt300 kernel: [46987.815960] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
Aug 11 21:51:34 stt300 kernel: [46987.817252] SGI XFS Quota Management subsystem
Aug 11 21:51:34 stt300 kernel: [46987.876928] JFS: nTxBlock = 8192, nTxLock = 65536
Aug 11 21:51:34 stt300 kernel: [46987.916180] NTFS driver 2.1.30 [Flags: R/W MODULE].
Aug 11 21:51:34 stt300 kernel: [46987.969054] QNX4 filesystem 0.2.3 registered.
Aug 11 21:51:34 stt300 kernel: [46988.057452] Btrfs loaded
Aug 11 21:51:34 stt300 os-prober: debug: /dev/sda1: is active swap
Aug 11 21:51:59 stt300 shutdown[6237]: shutting down for system reboot
Aug 11 21:52:03 stt300 acpid: client 1527[0:0] has disconnected
Aug 11 21:52:03 stt300 acpid: client connected from 6252[0:0]
Aug 11 21:52:03 stt300 acpid: 1 client rule loaded
Aug 11 21:52:05 stt300 init: Switching to runlevel: 6
Aug 11 21:52:09 stt300 NetworkManager[1461]: <info> caught signal 15, shutting down normally.
Aug 11 21:52:09 stt300 NetworkManager[1461]: <warn> quit request received, terminating...
Aug 11 21:52:09 stt300 NetworkManager[1461]: <info> (eth0): now unmanaged
Aug 11 21:52:09 stt300 NetworkManager[1461]: <info> (eth0): device state change: unavailable -> unmanaged (reason 'removed') [20 10 36]
Aug 11 21:52:09 stt300 NetworkManager[1461]: <info> (eth0): cleaning up...
Aug 11 21:52:09 stt300 NetworkManager[1461]: <info> (eth0): taking down device.
Aug 11 21:52:09 stt300 NetworkManager[1461]: <info> (wlan0): now unmanaged
Aug 11 21:52:09 stt300 NetworkManager[1461]: <info> (wlan0): device state change: unavailable -> unmanaged (reason 'removed') [20 10 36]
Aug 11 21:52:09 stt300 NetworkManager[1461]: <info> (wlan0): cleaning up...
Aug 11 21:52:09 stt300 NetworkManager[1461]: <info> exiting (success)
Aug 11 21:52:10 stt300 avahi-daemon[1632]: Got SIGTERM, quitting.
Aug 11 21:52:10 stt300 avahi-daemon[1632]: avahi-daemon 0.6.31 exiting.
Aug 11 21:52:11 stt300 acpid: exiting
Aug 11 21:52:11 stt300 modem-manager[1523]: <info> Caught signal 15, shutting down...
Aug 11 21:52:44 stt300 kernel: imklog 5.8.11, log source = /proc/kmsg started.
Aug 11 21:52:44 stt300 rsyslogd: [origin software="rsyslogd" swVersion="5.8.11" x-pid="1556" x-info="http://www.rsyslog.com"] start
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Initializing cgroup subsys cpuset
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Initializing cgroup subsys cpu
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Linux version 3.6.0-rc1 (root@stt300) (gcc version 4.7.1 (Debian 4.7.1-2) ) #2 SMP Sat Aug 11 19:23:27 CEST 2012
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Disabled fast string operations
Aug 11 21:52:44 stt300 kernel: [ 0.000000] e820: BIOS-provided physical RAM map:
Aug 11 21:52:44 stt300 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
Aug 11 21:52:44 stt300 kernel: [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
Aug 11 21:52:44 stt300 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Aug 11 21:52:44 stt300 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007f43efff] usable
Aug 11 21:52:44 stt300 kernel: [ 0.000000] BIOS-e820: [mem 0x000000007f43f000-0x000000007f4befff] reserved
Aug 11 21:52:44 stt300 kernel: [ 0.000000] BIOS-e820: [mem 0x000000007f4bf000-0x000000007f5befff] ACPI NVS
Aug 11 21:52:44 stt300 kernel: [ 0.000000] BIOS-e820: [mem 0x000000007f5bf000-0x000000007f5f6fff] ACPI data
Aug 11 21:52:44 stt300 kernel: [ 0.000000] BIOS-e820: [mem 0x000000007f5f7000-0x000000007f5fffff] usable
Aug 11 21:52:44 stt300 kernel: [ 0.000000] BIOS-e820: [mem 0x000000007f600000-0x000000007fffffff] reserved
Aug 11 21:52:44 stt300 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Aug 11 21:52:44 stt300 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Aug 11 21:52:44 stt300 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fed14000-0x00000000fed19fff] reserved
Aug 11 21:52:44 stt300 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
Aug 11 21:52:44 stt300 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Aug 11 21:52:44 stt300 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
Aug 11 21:52:44 stt300 kernel: [ 0.000000] NX (Execute Disable) protection: active
Aug 11 21:52:44 stt300 kernel: [ 0.000000] DMI 2.6 present.
Aug 11 21:52:44 stt300 kernel: [ 0.000000] DMI: Hewlett-Packard Compaq Mini CQ10-500 /148A, BIOS F.15 01/14/2011
Aug 11 21:52:44 stt300 kernel: [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
Aug 11 21:52:44 stt300 kernel: [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
Aug 11 21:52:44 stt300 kernel: [ 0.000000] e820: last_pfn = 0x7f600 max_arch_pfn = 0x1000000
Aug 11 21:52:44 stt300 kernel: [ 0.000000] MTRR default type: uncachable
Aug 11 21:52:44 stt300 kernel: [ 0.000000] MTRR fixed ranges enabled:
Aug 11 21:52:44 stt300 kernel: [ 0.000000] 00000-9FFFF write-back
Aug 11 21:52:44 stt300 kernel: [ 0.000000] A0000-BFFFF uncachable
Aug 11 21:52:44 stt300 kernel: [ 0.000000] C0000-FFFFF write-protect
Aug 11 21:52:44 stt300 kernel: [ 0.000000] MTRR variable ranges enabled:
Aug 11 21:52:44 stt300 kernel: [ 0.000000] 0 base 0FFE00000 mask 0FFE00000 write-protect
Aug 11 21:52:44 stt300 kernel: [ 0.000000] 1 base 000000000 mask 0C0000000 write-back
Aug 11 21:52:44 stt300 kernel: [ 0.000000] 2 base 040000000 mask 0C0000000 write-back
Aug 11 21:52:44 stt300 kernel: [ 0.000000] 3 base 07F800000 mask 0FF800000 uncachable
Aug 11 21:52:44 stt300 kernel: [ 0.000000] 4 disabled
Aug 11 21:52:44 stt300 kernel: [ 0.000000] 5 disabled
Aug 11 21:52:44 stt300 kernel: [ 0.000000] 6 disabled
Aug 11 21:52:44 stt300 kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Aug 11 21:52:44 stt300 kernel: [ 0.000000] initial memory mapped: [mem 0x00000000-0x019fffff]
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
Aug 11 21:52:44 stt300 kernel: [ 0.000000] init_memory_mapping: [mem 0x00000000-0x379fdfff]
Aug 11 21:52:44 stt300 kernel: [ 0.000000] [mem 0x00000000-0x001fffff] page 4k
Aug 11 21:52:44 stt300 kernel: [ 0.000000] [mem 0x00200000-0x377fffff] page 2M
Aug 11 21:52:44 stt300 kernel: [ 0.000000] [mem 0x37800000-0x379fdfff] page 4k
Aug 11 21:52:44 stt300 kernel: [ 0.000000] kernel direct mapping tables up to 0x379fdfff @ [mem 0x019f9000-0x019fffff]
Aug 11 21:52:44 stt300 kernel: [ 0.000000] RAMDISK: [mem 0x37b2a000-0x37d8cfff]
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Allocated new RAMDISK: [mem 0x3779b000-0x379fd48c]
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Move RAMDISK from [mem 0x37b2a000-0x37d8c48c] to [mem 0x3779b000-0x379fd48c]
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: RSDP 000fe020 00024 (v02 HP )
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: XSDT 7f5f6120 00074 (v01 HPQOEM SLIC-MPC 00000001 01000013)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: FACP 7f5f5000 000F4 (v04 HP SLIC-MPC 00000001 MSFT 01000013)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: DSDT 7f5e6000 0BA96 (v01 HP SLIC-MPC 00000001 MSFT 01000013)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: FACS 7f589000 00040
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: HPET 7f5f4000 00038 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: APIC 7f5f3000 00078 (v02 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: MCFG 7f5f2000 0003C (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: SLIC 7f5e5000 00176 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: BOOT 7f5e4000 00028 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: SSDT 7f5e3000 004C4 (v02 PmRef CpuPm 00003000 INTL 20051117)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: SSDT 7f5e2000 001F7 (v02 PmRef Cpu0Tst 00003000 INTL 20051117)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: SSDT 7f5e1000 00064 (v02 PmRef Cpu1Tst 00003000 INTL 20051117)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: WDAT 7f5e0000 00194 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
Aug 11 21:52:44 stt300 kernel: [ 0.000000] 1148MB HIGHMEM available.
Aug 11 21:52:44 stt300 kernel: [ 0.000000] 889MB LOWMEM available.
Aug 11 21:52:44 stt300 kernel: [ 0.000000] mapped low ram: 0 - 379fe000
Aug 11 21:52:44 stt300 kernel: [ 0.000000] low ram: 0 - 379fe000
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Zone ranges:
Aug 11 21:52:44 stt300 kernel: [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Normal [mem 0x01000000-0x379fdfff]
Aug 11 21:52:44 stt300 kernel: [ 0.000000] HighMem [mem 0x379fe000-0x7f5fffff]
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Movable zone start for each node
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Early memory node ranges
Aug 11 21:52:44 stt300 kernel: [ 0.000000] node 0: [mem 0x00010000-0x0009efff]
Aug 11 21:52:44 stt300 kernel: [ 0.000000] node 0: [mem 0x00100000-0x7f43efff]
Aug 11 21:52:44 stt300 kernel: [ 0.000000] node 0: [mem 0x7f5f7000-0x7f5fffff]
Aug 11 21:52:44 stt300 kernel: [ 0.000000] On node 0 totalpages: 521175
Aug 11 21:52:44 stt300 kernel: [ 0.000000] free_area_init_node: node 0, pgdat c1425b00, node_mem_map f67aa200
Aug 11 21:52:44 stt300 kernel: [ 0.000000] DMA zone: 32 pages used for memmap
Aug 11 21:52:44 stt300 kernel: [ 0.000000] DMA zone: 0 pages reserved
Aug 11 21:52:44 stt300 kernel: [ 0.000000] DMA zone: 3951 pages, LIFO batch:0
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Normal zone: 1748 pages used for memmap
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Normal zone: 221994 pages, LIFO batch:31
Aug 11 21:52:44 stt300 kernel: [ 0.000000] HighMem zone: 2297 pages used for memmap
Aug 11 21:52:44 stt300 kernel: [ 0.000000] HighMem zone: 291153 pages, LIFO batch:31
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Using APIC driver default
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x408
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x00] disabled)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
Aug 11 21:52:44 stt300 kernel: [ 0.000000] IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: IRQ0 used by override.
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: IRQ2 used by override.
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: IRQ9 used by override.
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
Aug 11 21:52:44 stt300 kernel: [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
Aug 11 21:52:44 stt300 kernel: [ 0.000000] smpboot: Allowing 4 CPUs, 2 hotplug CPUs
Aug 11 21:52:44 stt300 kernel: [ 0.000000] nr_irqs_gsi: 40
Aug 11 21:52:44 stt300 kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
Aug 11 21:52:44 stt300 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
Aug 11 21:52:44 stt300 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
Aug 11 21:52:44 stt300 kernel: [ 0.000000] e820: [mem 0x80000000-0xdfffffff] available for PCI devices
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware
Aug 11 21:52:44 stt300 kernel: [ 0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:4 nr_node_ids:1
Aug 11 21:52:44 stt300 kernel: [ 0.000000] PERCPU: Embedded 14 pages/cpu @f6766000 s33664 r0 d23680 u57344
Aug 11 21:52:44 stt300 kernel: [ 0.000000] pcpu-alloc: s33664 r0 d23680 u57344 alloc=14*4096
Aug 11 21:52:44 stt300 kernel: [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 517098
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.6.0-rc1 root=UUID=ef88aa1c-5071-41ac-8884-6c991eca9b22 ro quiet
Aug 11 21:52:44 stt300 kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] __ex_table already sorted, skipping sort
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Initializing CPU#0
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Initializing HighMem for node 0 (000379fe:0007f600)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Memory: 2059560k/2086912k available (2882k kernel code, 25140k reserved, 1394k data, 420k init, 1173800k highmem)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] virtual kernel memory layout:
Aug 11 21:52:44 stt300 kernel: [ 0.000000] fixmap : 0xffd36000 - 0xfffff000 (2852 kB)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] pkmap : 0xffa00000 - 0xffc00000 (2048 kB)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] vmalloc : 0xf81fe000 - 0xff9fe000 ( 120 MB)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] lowmem : 0xc0000000 - 0xf79fe000 ( 889 MB)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] .init : 0xc142e000 - 0xc1497000 ( 420 kB)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] .data : 0xc12d0aac - 0xc142d580 (1394 kB)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] .text : 0xc1000000 - 0xc12d0aac (2882 kB)
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Hierarchical RCU implementation.
Aug 11 21:52:44 stt300 kernel: [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
Aug 11 21:52:44 stt300 kernel: [ 0.000000] RCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=4.
Aug 11 21:52:44 stt300 kernel: [ 0.000000] NR_IRQS:2304 nr_irqs:712 16
Aug 11 21:52:44 stt300 kernel: [ 0.000000] CPU 0 irqstacks, hard=f6006000 soft=f6008000
Aug 11 21:52:44 stt300 kernel: [ 0.000000] Console: colour VGA+ 80x25
Aug 11 21:52:44 stt300 kernel: [ 0.000000] console [tty0] enabled
Aug 11 21:52:44 stt300 kernel: [ 0.000000] hpet clockevent registered
Aug 11 21:52:44 stt300 kernel: [ 0.000000] tsc: Fast TSC calibration using PIT
Aug 11 21:52:44 stt300 kernel: [ 0.000000] tsc: Detected 1662.816 MHz processor
Aug 11 21:52:44 stt300 kernel: [ 0.004004] Calibrating delay loop (skipped), value calculated using timer frequency.. 3325.63 BogoMIPS (lpj=6651264)
Aug 11 21:52:44 stt300 kernel: [ 0.004012] pid_max: default: 32768 minimum: 301
Aug 11 21:52:44 stt300 kernel: [ 0.004079] Security Framework initialized
Aug 11 21:52:44 stt300 kernel: [ 0.004087] AppArmor: AppArmor disabled by boot time parameter
Aug 11 21:52:44 stt300 kernel: [ 0.004114] Mount-cache hash table entries: 512
Aug 11 21:52:44 stt300 kernel: [ 0.004521] Initializing cgroup subsys cpuacct
Aug 11 21:52:44 stt300 kernel: [ 0.004527] Initializing cgroup subsys devices
Aug 11 21:52:44 stt300 kernel: [ 0.004532] Initializing cgroup subsys freezer
Aug 11 21:52:44 stt300 kernel: [ 0.004537] Initializing cgroup subsys net_cls
Aug 11 21:52:44 stt300 kernel: [ 0.004541] Initializing cgroup subsys blkio
Aug 11 21:52:44 stt300 kernel: [ 0.004545] Initializing cgroup subsys perf_event
Aug 11 21:52:44 stt300 kernel: [ 0.004592] Disabled fast string operations
Aug 11 21:52:44 stt300 kernel: [ 0.004599] CPU: Physical Processor ID: 0
Aug 11 21:52:44 stt300 kernel: [ 0.004603] CPU: Processor Core ID: 0
Aug 11 21:52:44 stt300 kernel: [ 0.004608] mce: CPU supports 5 MCE banks
Aug 11 21:52:44 stt300 kernel: [ 0.004619] CPU0: Thermal monitoring handled by SMI
Aug 11 21:52:44 stt300 kernel: [ 0.004625] process: using mwait in idle threads
Aug 11 21:52:44 stt300 kernel: [ 0.004641] Last level iTLB entries: 4KB 32, 2MB 0, 4MB 0
Aug 11 21:52:44 stt300 kernel: [ 0.004641] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 8
Aug 11 21:52:44 stt300 kernel: [ 0.004641] tlb_flushall_shift is 0x6
Aug 11 21:52:44 stt300 kernel: [ 0.008387] ACPI: Core revision 20120711
Aug 11 21:52:44 stt300 kernel: [ 0.024108] Enabling APIC mode: Flat. Using 1 I/O APICs
Aug 11 21:52:44 stt300 kernel: [ 0.024627] ..TIMER: vector=0x51 apic1=0 pin1=2 apic2=-1 pin2=-1
Aug 11 21:52:44 stt300 kernel: [ 0.066270] smpboot: CPU0: Intel(R) Atom(TM) CPU N455 @ 1.66GHz stepping 0a
Aug 11 21:52:44 stt300 kernel: [ 0.068004] Performance Events: PEBS fmt0+, 8-deep LBR, Atom events, Intel PMU driver.
Aug 11 21:52:44 stt300 kernel: [ 0.068004] ... version: 3
Aug 11 21:52:44 stt300 kernel: [ 0.068004] ... bit width: 40
Aug 11 21:52:44 stt300 kernel: [ 0.068004] ... generic registers: 2
Aug 11 21:52:44 stt300 kernel: [ 0.068004] ... value mask: 000000ffffffffff
Aug 11 21:52:44 stt300 kernel: [ 0.068004] ... max period: 000000007fffffff
Aug 11 21:52:44 stt300 kernel: [ 0.068004] ... fixed-purpose events: 3
Aug 11 21:52:44 stt300 kernel: [ 0.068004] ... event mask: 0000000700000003
Aug 11 21:52:44 stt300 kernel: [ 0.068004] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Aug 11 21:52:44 stt300 kernel: [ 0.068004] CPU 1 irqstacks, hard=f60fc000 soft=f60fe000
Aug 11 21:52:44 stt300 kernel: [ 0.008000] Initializing CPU#1
Aug 11 21:52:44 stt300 kernel: [ 0.008000] Disabled fast string operations
Aug 11 21:52:44 stt300 kernel: [ 0.008000] CPU1: Thermal monitoring handled by SMI
Aug 11 21:52:44 stt300 kernel: [ 0.068004] smpboot: Booting Node 0, Processors #1
Aug 11 21:52:44 stt300 kernel: [ 0.080119] Brought up 2 CPUs
Aug 11 21:52:44 stt300 kernel: [ 0.080133] smpboot: Total of 2 processors activated (6651.26 BogoMIPS)
Aug 11 21:52:44 stt300 kernel: [ 0.080676] devtmpfs: initialized
Aug 11 21:52:44 stt300 kernel: [ 0.080676] PM: Registering ACPI NVS region [mem 0x7f4bf000-0x7f5befff] (1048576 bytes)
Aug 11 21:52:44 stt300 kernel: [ 0.080676] dummy:
Aug 11 21:52:44 stt300 kernel: [ 0.080676] NET: Registered protocol family 16
Aug 11 21:52:44 stt300 kernel: [ 0.080782] ACPI: bus type pci registered
Aug 11 21:52:44 stt300 kernel: [ 0.080942] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Aug 11 21:52:44 stt300 kernel: [ 0.080949] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
Aug 11 21:52:44 stt300 kernel: [ 0.080953] PCI: Using MMCONFIG for extended config space
Aug 11 21:52:44 stt300 kernel: [ 0.080957] PCI: Using configuration type 1 for base access
Aug 11 21:52:44 stt300 kernel: [ 0.084096] bio: create slab <bio-0> at 0
Aug 11 21:52:44 stt300 kernel: [ 0.084167] ACPI: Added _OSI(Module Device)
Aug 11 21:52:44 stt300 kernel: [ 0.084167] ACPI: Added _OSI(Processor Device)
Aug 11 21:52:44 stt300 kernel: [ 0.084167] ACPI: Added _OSI(3.0 _SCP Extensions)
Aug 11 21:52:44 stt300 kernel: [ 0.084167] ACPI: Added _OSI(Processor Aggregator Device)
Aug 11 21:52:44 stt300 kernel: [ 0.088347] ACPI: EC: Look up EC in DSDT
Aug 11 21:52:44 stt300 kernel: [ 0.092237] ACPI: Executed 1 blocks of module-level executable AML code
Aug 11 21:52:44 stt300 kernel: [ 0.096847] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Aug 11 21:52:44 stt300 kernel: [ 0.097862] ACPI: SSDT 7f494c98 001F7 (v02 PmRef Cpu0Ist 00003000 INTL 20051117)
Aug 11 21:52:44 stt300 kernel: [ 0.098829] ACPI: Dynamic OEM Table Load:
Aug 11 21:52:44 stt300 kernel: [ 0.098836] ACPI: SSDT (null) 001F7 (v02 PmRef Cpu0Ist 00003000 INTL 20051117)
Aug 11 21:52:44 stt300 kernel: [ 0.099142] ACPI: SSDT 7f493e18 001C7 (v02 PmRef Cpu0Cst 00003001 INTL 20051117)
Aug 11 21:52:44 stt300 kernel: [ 0.100079] ACPI: Dynamic OEM Table Load:
Aug 11 21:52:44 stt300 kernel: [ 0.100086] ACPI: SSDT (null) 001C7 (v02 PmRef Cpu0Cst 00003001 INTL 20051117)
Aug 11 21:52:44 stt300 kernel: [ 0.100648] ACPI: SSDT 7f494f18 000D0 (v02 PmRef Cpu1Ist 00003000 INTL 20051117)
Aug 11 21:52:44 stt300 kernel: [ 0.101593] ACPI: Dynamic OEM Table Load:
Aug 11 21:52:44 stt300 kernel: [ 0.101600] ACPI: SSDT (null) 000D0 (v02 PmRef Cpu1Ist 00003000 INTL 20051117)
Aug 11 21:52:44 stt300 kernel: [ 0.101880] ACPI: SSDT 7f492f18 00083 (v02 PmRef Cpu1Cst 00003000 INTL 20051117)
Aug 11 21:52:44 stt300 kernel: [ 0.102802] ACPI: Dynamic OEM Table Load:
Aug 11 21:52:44 stt300 kernel: [ 0.102808] ACPI: SSDT (null) 00083 (v02 PmRef Cpu1Cst 00003000 INTL 20051117)
Aug 11 21:52:44 stt300 kernel: [ 0.408480] ACPI: Interpreter enabled
Aug 11 21:52:44 stt300 kernel: [ 0.408497] ACPI: (supports S0 S3 S4 S5)
Aug 11 21:52:44 stt300 kernel: [ 0.408566] ACPI: Using IOAPIC for interrupt routing
Aug 11 21:52:44 stt300 kernel: [ 0.422799] ACPI: Power Resource [FN00] (on)
Aug 11 21:52:44 stt300 kernel: [ 0.423692] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
Aug 11 21:52:44 stt300 kernel: [ 0.424100] ACPI: No dock devices found.
Aug 11 21:52:44 stt300 kernel: [ 0.424113] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Aug 11 21:52:44 stt300 kernel: [ 0.425134] ACPI Warning: For \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20120711/nspredef-359)
Aug 11 21:52:44 stt300 kernel: [ 0.425150] \_SB_.PCI0:_OSC evaluation returned wrong type
Aug 11 21:52:44 stt300 kernel: [ 0.425153] _OSC request data:1 8 1f
Aug 11 21:52:44 stt300 kernel: [ 0.425165] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Aug 11 21:52:44 stt300 kernel: [ 0.426881] PCI host bridge to bus 0000:00
Aug 11 21:52:44 stt300 kernel: [ 0.426892] pci_bus 0000:00: busn_res: [bus 00-ff] is inserted under domain [bus 00-ff]
Aug 11 21:52:44 stt300 kernel: [ 0.426898] pci_bus 0000:00: root bus resource [bus 00-ff]
Aug 11 21:52:44 stt300 kernel: [ 0.426905] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
Aug 11 21:52:44 stt300 kernel: [ 0.426911] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
Aug 11 21:52:44 stt300 kernel: [ 0.426918] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
Aug 11 21:52:44 stt300 kernel: [ 0.426924] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff]
Aug 11 21:52:44 stt300 kernel: [ 0.426946] pci 0000:00:00.0: [8086:a010] type 00 class 0x060000
Aug 11 21:52:44 stt300 kernel: [ 0.427014] pci 0000:00:02.0: [8086:a011] type 00 class 0x030000
Aug 11 21:52:44 stt300 kernel: [ 0.427030] pci 0000:00:02.0: reg 10: [mem 0x94180000-0x941fffff]
Aug 11 21:52:44 stt300 kernel: [ 0.427041] pci 0000:00:02.0: reg 14: [io 0x30c0-0x30c7]
Aug 11 21:52:44 stt300 kernel: [ 0.427051] pci 0000:00:02.0: reg 18: [mem 0x80000000-0x8fffffff pref]
Aug 11 21:52:44 stt300 kernel: [ 0.427062] pci 0000:00:02.0: reg 1c: [mem 0x94000000-0x940fffff]
Aug 11 21:52:44 stt300 kernel: [ 0.427115] pci 0000:00:02.1: [8086:a012] type 00 class 0x038000
Aug 11 21:52:44 stt300 kernel: [ 0.427129] pci 0000:00:02.1: reg 10: [mem 0x94100000-0x9417ffff]
Aug 11 21:52:44 stt300 kernel: [ 0.427257] pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
Aug 11 21:52:44 stt300 kernel: [ 0.427285] pci 0000:00:1b.0: reg 10: [mem 0x94200000-0x94203fff 64bit]
Aug 11 21:52:44 stt300 kernel: [ 0.427399] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Aug 11 21:52:44 stt300 kernel: [ 0.427443] pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400
Aug 11 21:52:44 stt300 kernel: [ 0.427558] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Aug 11 21:52:44 stt300 kernel: [ 0.427602] pci 0000:00:1c.1: [8086:27d2] type 01 class 0x060400
Aug 11 21:52:44 stt300 kernel: [ 0.427721] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Aug 11 21:52:44 stt300 kernel: [ 0.427772] pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
Aug 11 21:52:44 stt300 kernel: [ 0.427833] pci 0000:00:1d.0: reg 20: [io 0x3080-0x309f]
Aug 11 21:52:44 stt300 kernel: [ 0.427893] pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
Aug 11 21:52:44 stt300 kernel: [ 0.427954] pci 0000:00:1d.1: reg 20: [io 0x3060-0x307f]
Aug 11 21:52:44 stt300 kernel: [ 0.428010] pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
Aug 11 21:52:44 stt300 kernel: [ 0.428093] pci 0000:00:1d.2: reg 20: [io 0x3040-0x305f]
Aug 11 21:52:44 stt300 kernel: [ 0.428154] pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
Aug 11 21:52:44 stt300 kernel: [ 0.428216] pci 0000:00:1d.3: reg 20: [io 0x3020-0x303f]
Aug 11 21:52:44 stt300 kernel: [ 0.428291] pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
Aug 11 21:52:44 stt300 kernel: [ 0.428667] pci 0000:00:1d.7: reg 10: [mem 0x94204400-0x942047ff]
Aug 11 21:52:44 stt300 kernel: [ 0.432746] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Aug 11 21:52:44 stt300 kernel: [ 0.432789] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
Aug 11 21:52:44 stt300 kernel: [ 0.432898] pci 0000:00:1f.0: [8086:27bc] type 00 class 0x060100
Aug 11 21:52:44 stt300 kernel: [ 0.433081] pci 0000:00:1f.2: [8086:27c1] type 00 class 0x010601
Aug 11 21:52:44 stt300 kernel: [ 0.433109] pci 0000:00:1f.2: reg 10: [io 0x30b8-0x30bf]
Aug 11 21:52:44 stt300 kernel: [ 0.433125] pci 0000:00:1f.2: reg 14: [io 0x30cc-0x30cf]
Aug 11 21:52:44 stt300 kernel: [ 0.433141] pci 0000:00:1f.2: reg 18: [io 0x30b0-0x30b7]
Aug 11 21:52:44 stt300 kernel: [ 0.433158] pci 0000:00:1f.2: reg 1c: [io 0x30c8-0x30cb]
Aug 11 21:52:44 stt300 kernel: [ 0.433174] pci 0000:00:1f.2: reg 20: [io 0x30a0-0x30af]
Aug 11 21:52:44 stt300 kernel: [ 0.433190] pci 0000:00:1f.2: reg 24: [mem 0x94204000-0x942043ff]
Aug 11 21:52:44 stt300 kernel: [ 0.433253] pci 0000:00:1f.2: PME# supported from D3hot
Aug 11 21:52:44 stt300 kernel: [ 0.433283] pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500
Aug 11 21:52:44 stt300 kernel: [ 0.433358] pci 0000:00:1f.3: reg 20: [io 0x3000-0x301f]
Aug 11 21:52:44 stt300 kernel: [ 0.433481] pci_bus 0000:01: busn_res: [bus 01] is inserted under [bus 00-ff]
Aug 11 21:52:44 stt300 kernel: [ 0.433565] pci 0000:01:00.0: [10ec:8136] type 00 class 0x020000
Aug 11 21:52:44 stt300 kernel: [ 0.433624] pci 0000:01:00.0: reg 10: [io 0x2000-0x20ff]
Aug 11 21:52:44 stt300 kernel: [ 0.433742] pci 0000:01:00.0: reg 18: [mem 0x90004000-0x90004fff 64bit pref]
Aug 11 21:52:44 stt300 kernel: [ 0.433816] pci 0000:01:00.0: reg 20: [mem 0x90000000-0x90003fff 64bit pref]
Aug 11 21:52:44 stt300 kernel: [ 0.434133] pci 0000:01:00.0: supports D1 D2
Aug 11 21:52:44 stt300 kernel: [ 0.434139] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug 11 21:52:44 stt300 kernel: [ 0.434337] pci 0000:01:00.1: [10ec:5288] type 00 class 0xff0000
Aug 11 21:52:44 stt300 kernel: [ 0.434401] pci 0000:01:00.1: reg 10: [mem 0x93000000-0x9300ffff]
Aug 11 21:52:44 stt300 kernel: [ 0.434921] pci 0000:01:00.1: supports D1 D2
Aug 11 21:52:44 stt300 kernel: [ 0.434926] pci 0000:01:00.1: PME# supported from D1 D2 D3hot D3cold
Aug 11 21:52:44 stt300 kernel: [ 0.435150] pci 0000:00:1c.0: PCI bridge to [bus 01]
Aug 11 21:52:44 stt300 kernel: [ 0.435159] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
Aug 11 21:52:44 stt300 kernel: [ 0.435168] pci 0000:00:1c.0: bridge window [mem 0x93000000-0x93ffffff]
Aug 11 21:52:44 stt300 kernel: [ 0.435180] pci 0000:00:1c.0: bridge window [mem 0x90000000-0x90ffffff 64bit pref]
Aug 11 21:52:44 stt300 kernel: [ 0.435249] pci_bus 0000:02: busn_res: [bus 02] is inserted under [bus 00-ff]
Aug 11 21:52:44 stt300 kernel: [ 0.435306] pci 0000:02:00.0: [14e4:4727] type 00 class 0x028000
Aug 11 21:52:44 stt300 kernel: [ 0.435352] pci 0000:02:00.0: reg 10: [mem 0x92000000-0x92003fff 64bit]
Aug 11 21:52:44 stt300 kernel: [ 0.435593] pci 0000:02:00.0: supports D1 D2
Aug 11 21:52:44 stt300 kernel: [ 0.440064] pci 0000:00:1c.1: PCI bridge to [bus 02]
Aug 11 21:52:44 stt300 kernel: [ 0.440073] pci 0000:00:1c.1: bridge window [io 0x1000-0x1fff]
Aug 11 21:52:44 stt300 kernel: [ 0.440082] pci 0000:00:1c.1: bridge window [mem 0x92000000-0x92ffffff]
Aug 11 21:52:44 stt300 kernel: [ 0.440094] pci 0000:00:1c.1: bridge window [mem 0x91000000-0x91ffffff 64bit pref]
Aug 11 21:52:44 stt300 kernel: [ 0.440137] pci_bus 0000:03: busn_res: [bus 03] is inserted under [bus 00-ff]
Aug 11 21:52:44 stt300 kernel: [ 0.440204] pci 0000:00:1e.0: PCI bridge to [bus 03] (subtractive decode)
Aug 11 21:52:44 stt300 kernel: [ 0.440223] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
Aug 11 21:52:44 stt300 kernel: [ 0.440232] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
Aug 11 21:52:44 stt300 kernel: [ 0.440238] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
Aug 11 21:52:44 stt300 kernel: [ 0.440245] pci 0000:00:1e.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode)
Aug 11 21:52:44 stt300 kernel: [ 0.440273] pci_bus 0000:00: on NUMA node 0
Aug 11 21:52:44 stt300 kernel: [ 0.440281] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
Aug 11 21:52:44 stt300 kernel: [ 0.440606] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P32_._PRT]
Aug 11 21:52:44 stt300 kernel: [ 0.440813] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
Aug 11 21:52:44 stt300 kernel: [ 0.440959] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP2._PRT]
Aug 11 21:52:44 stt300 kernel: [ 0.441303] ACPI Warning: For \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20120711/nspredef-359)
Aug 11 21:52:44 stt300 kernel: [ 0.441319] \_SB_.PCI0:_OSC evaluation returned wrong type
Aug 11 21:52:44 stt300 kernel: [ 0.441322] _OSC request data:1 1f 1f
Aug 11 21:52:44 stt300 kernel: [ 0.441333] pci0000:00: Requesting ACPI _OSC control (0x1d)
Aug 11 21:52:44 stt300 kernel: [ 0.441482] ACPI Warning: For \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20120711/nspredef-359)
Aug 11 21:52:44 stt300 kernel: [ 0.441497] \_SB_.PCI0:_OSC evaluation returned wrong type
Aug 11 21:52:44 stt300 kernel: [ 0.441500] _OSC request data:1 0 1d
Aug 11 21:52:44 stt300 kernel: [ 0.441509] pci0000:00: ACPI _OSC request failed (AE_TYPE), returned control mask: 0x1d
Aug 11 21:52:44 stt300 kernel: [ 0.441513] ACPI _OSC control for PCIe not granted, disabling ASPM
Aug 11 21:52:44 stt300 kernel: [ 0.448457] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12)
Aug 11 21:52:44 stt300 kernel: [ 0.448617] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 *10 11 12)
Aug 11 21:52:44 stt300 kernel: [ 0.448771] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12)
Aug 11 21:52:44 stt300 kernel: [ 0.448925] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12)
Aug 11 21:52:44 stt300 kernel: [ 0.449081] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
Aug 11 21:52:44 stt300 kernel: [ 0.449237] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
Aug 11 21:52:44 stt300 kernel: [ 0.449393] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
Aug 11 21:52:44 stt300 kernel: [ 0.449549] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
Aug 11 21:52:44 stt300 kernel: [ 0.449753] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks= none
Aug 11 21:52:44 stt300 kernel: [ 0.449753] vgaarb: loaded
Aug 11 21:52:44 stt300 kernel: [ 0.449753] vgaarb: bridge control possible 0000:00:02.0
Aug 11 21:52:44 stt300 kernel: [ 0.449753] PCI: Using ACPI for IRQ routing
Aug 11 21:52:44 stt300 kernel: [ 0.458885] PCI: pci_cache_line_size set to 64 bytes
Aug 11 21:52:44 stt300 kernel: [ 0.459026] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
Aug 11 21:52:44 stt300 kernel: [ 0.459032] e820: reserve RAM buffer [mem 0x7f43f000-0x7fffffff]
Aug 11 21:52:44 stt300 kernel: [ 0.459038] e820: reserve RAM buffer [mem 0x7f600000-0x7fffffff]
Aug 11 21:52:44 stt300 kernel: [ 0.459336] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
Aug 11 21:52:44 stt300 kernel: [ 0.459347] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
Aug 11 21:52:44 stt300 kernel: [ 0.459357] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
Aug 11 21:52:44 stt300 kernel: [ 0.464068] Switching to clocksource hpet
Aug 11 21:52:44 stt300 kernel: [ 0.468186] pnp: PnP ACPI init
Aug 11 21:52:44 stt300 kernel: [ 0.468225] ACPI: bus type pnp registered
Aug 11 21:52:44 stt300 kernel: [ 0.470069] pnp 00:00: [bus 00-ff]
Aug 11 21:52:44 stt300 kernel: [ 0.470078] pnp 00:00: [io 0x0000-0x0cf7 window]
Aug 11 21:52:44 stt300 kernel: [ 0.470084] pnp 00:00: [io 0x0cf8-0x0cff]
Aug 11 21:52:44 stt300 kernel: [ 0.470091] pnp 00:00: [io 0x0d00-0xffff window]
Aug 11 21:52:44 stt300 kernel: [ 0.470097] pnp 00:00: [mem 0x000a0000-0x000bffff window]
Aug 11 21:52:44 stt300 kernel: [ 0.470103] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
Aug 11 21:52:44 stt300 kernel: [ 0.470109] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
Aug 11 21:52:44 stt300 kernel: [ 0.470116] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
Aug 11 21:52:44 stt300 kernel: [ 0.470122] pnp 00:00: [mem 0x000cc000-0x000cffff window]
Aug 11 21:52:44 stt300 kernel: [ 0.470128] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
Aug 11 21:52:44 stt300 kernel: [ 0.470134] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
Aug 11 21:52:44 stt300 kernel: [ 0.470140] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
Aug 11 21:52:44 stt300 kernel: [ 0.470146] pnp 00:00: [mem 0x000dc000-0x000dffff window]
Aug 11 21:52:44 stt300 kernel: [ 0.470153] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
Aug 11 21:52:44 stt300 kernel: [ 0.470159] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
Aug 11 21:52:44 stt300 kernel: [ 0.470165] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
Aug 11 21:52:44 stt300 kernel: [ 0.470171] pnp 00:00: [mem 0x000ec000-0x000effff window]
Aug 11 21:52:44 stt300 kernel: [ 0.470177] pnp 00:00: [mem 0x000f0000-0x000fffff window]
Aug 11 21:52:44 stt300 kernel: [ 0.470184] pnp 00:00: [mem 0x80000000-0xfebfffff window]
Aug 11 21:52:44 stt300 kernel: [ 0.470312] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
Aug 11 21:52:44 stt300 kernel: [ 0.470649] pnp 00:01: [io 0x002e-0x002f]
Aug 11 21:52:44 stt300 kernel: [ 0.470656] pnp 00:01: [io 0x004e-0x004f]
Aug 11 21:52:44 stt300 kernel: [ 0.470662] pnp 00:01: [io 0x0061]
Aug 11 21:52:44 stt300 kernel: [ 0.470667] pnp 00:01: [io 0x0070]
Aug 11 21:52:44 stt300 kernel: [ 0.470672] pnp 00:01: [io 0x0080]
Aug 11 21:52:44 stt300 kernel: [ 0.470678] pnp 00:01: [io 0x0092]
Aug 11 21:52:44 stt300 kernel: [ 0.470683] pnp 00:01: [io 0x00b2-0x00b3]
Aug 11 21:52:44 stt300 kernel: [ 0.470689] pnp 00:01: [io 0x0063]
Aug 11 21:52:44 stt300 kernel: [ 0.470694] pnp 00:01: [io 0x0065]
Aug 11 21:52:44 stt300 kernel: [ 0.470699] pnp 00:01: [io 0x0067]
Aug 11 21:52:44 stt300 kernel: [ 0.470705] pnp 00:01: [io 0x0600-0x060f]
Aug 11 21:52:44 stt300 kernel: [ 0.470710] pnp 00:01: [io 0x0610]
Aug 11 21:52:44 stt300 kernel: [ 0.470716] pnp 00:01: [io 0x0800-0x080f]
Aug 11 21:52:44 stt300 kernel: [ 0.470721] pnp 00:01: [io 0x0810-0x0817]
Aug 11 21:52:44 stt300 kernel: [ 0.470727] pnp 00:01: [io 0x0400-0x047f]
Aug 11 21:52:44 stt300 kernel: [ 0.470732] pnp 00:01: [io 0x0500-0x053f]
Aug 11 21:52:44 stt300 kernel: [ 0.470738] pnp 00:01: [mem 0xe0000000-0xefffffff]
Aug 11 21:52:44 stt300 kernel: [ 0.470744] pnp 00:01: [mem 0xfed1c000-0xfed1ffff]
Aug 11 21:52:44 stt300 kernel: [ 0.470750] pnp 00:01: [mem 0xfed14000-0xfed17fff]
Aug 11 21:52:44 stt300 kernel: [ 0.470756] pnp 00:01: [mem 0xfed18000-0xfed18fff]
Aug 11 21:52:44 stt300 kernel: [ 0.470762] pnp 00:01: [mem 0xfed19000-0xfed19fff]
Aug 11 21:52:44 stt300 kernel: [ 0.470768] pnp 00:01: [mem 0xfec00000-0xfec00fff]
Aug 11 21:52:44 stt300 kernel: [ 0.470774] pnp 00:01: [mem 0xfee00000-0xfee00fff]
Aug 11 21:52:44 stt300 kernel: [ 0.470918] system 00:01: [io 0x0600-0x060f] has been reserved
Aug 11 21:52:44 stt300 kernel: [ 0.470925] system 00:01: [io 0x0610] has been reserved
Aug 11 21:52:44 stt300 kernel: [ 0.470932] system 00:01: [io 0x0800-0x080f] has been reserved
Aug 11 21:52:44 stt300 kernel: [ 0.470944] system 00:01: [io 0x0810-0x0817] has been reserved
Aug 11 21:52:44 stt300 kernel: [ 0.470951] system 00:01: [io 0x0400-0x047f] has been reserved
Aug 11 21:52:44 stt300 kernel: [ 0.470958] system 00:01: [io 0x0500-0x053f] has been reserved
Aug 11 21:52:44 stt300 kernel: [ 0.470967] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
Aug 11 21:52:44 stt300 kernel: [ 0.470974] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
Aug 11 21:52:44 stt300 kernel: [ 0.470981] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
Aug 11 21:52:44 stt300 kernel: [ 0.470989] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
Aug 11 21:52:44 stt300 kernel: [ 0.470996] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
Aug 11 21:52:44 stt300 kernel: [ 0.471004] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
Aug 11 21:52:44 stt300 kernel: [ 0.471011] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
Aug 11 21:52:44 stt300 kernel: [ 0.471020] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Aug 11 21:52:44 stt300 kernel: [ 0.471054] pnp 00:02: [io 0x0000-0x001f]
Aug 11 21:52:44 stt300 kernel: [ 0.471060] pnp 00:02: [io 0x0081-0x0091]
Aug 11 21:52:44 stt300 kernel: [ 0.471066] pnp 00:02: [io 0x0093-0x009f]
Aug 11 21:52:44 stt300 kernel: [ 0.471071] pnp 00:02: [io 0x00c0-0x00df]
Aug 11 21:52:44 stt300 kernel: [ 0.471077] pnp 00:02: [dma 4]
Aug 11 21:52:44 stt300 kernel: [ 0.471147] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
Aug 11 21:52:44 stt300 kernel: [ 0.471214] pnp 00:03: [io 0x0070-0x0077]
Aug 11 21:52:44 stt300 kernel: [ 0.471289] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
Aug 11 21:52:44 stt300 kernel: [ 0.471463] pnp 00:04: [irq 0 disabled]
Aug 11 21:52:44 stt300 kernel: [ 0.471477] pnp 00:04: [irq 8]
Aug 11 21:52:44 stt300 kernel: [ 0.471483] pnp 00:04: [mem 0xfed00000-0xfed003ff]
Aug 11 21:52:44 stt300 kernel: [ 0.471555] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
Aug 11 21:52:44 stt300 kernel: [ 0.471589] pnp 00:05: [io 0x00f0]
Aug 11 21:52:44 stt300 kernel: [ 0.471598] pnp 00:05: [irq 13]
Aug 11 21:52:44 stt300 kernel: [ 0.471669] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
Aug 11 21:52:44 stt300 kernel: [ 0.471709] pnp 00:06: [mem 0xff800000-0xffffffff]
Aug 11 21:52:44 stt300 kernel: [ 0.471784] pnp 00:06: Plug and Play ACPI device, IDs INT0800 (active)
Aug 11 21:52:44 stt300 kernel: [ 0.471840] pnp 00:07: [io 0x0060]
Aug 11 21:52:44 stt300 kernel: [ 0.471846] pnp 00:07: [io 0x0064]
Aug 11 21:52:44 stt300 kernel: [ 0.471854] pnp 00:07: [irq 1]
Aug 11 21:52:44 stt300 kernel: [ 0.471927] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
Aug 11 21:52:44 stt300 kernel: [ 0.471974] pnp 00:08: [irq 12]
Aug 11 21:52:44 stt300 kernel: [ 0.472097] pnp 00:08: Plug and Play ACPI device, IDs SYN1e33 SYN1e00 SYN0002 PNP0f13 (active)
Aug 11 21:52:44 stt300 kernel: [ 0.472294] pnp: PnP ACPI: found 9 devices
Aug 11 21:52:44 stt300 kernel: [ 0.472297] ACPI: ACPI bus type pnp unregistered
Aug 11 21:52:44 stt300 kernel: [ 0.472303] PnPBIOS: Disabled by ACPI PNP
Aug 11 21:52:44 stt300 kernel: [ 0.513025] pci 0000:00:1c.0: PCI bridge to [bus 01]
Aug 11 21:52:44 stt300 kernel: [ 0.513036] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
Aug 11 21:52:44 stt300 kernel: [ 0.513047] pci 0000:00:1c.0: bridge window [mem 0x93000000-0x93ffffff]
Aug 11 21:52:44 stt300 kernel: [ 0.513057] pci 0000:00:1c.0: bridge window [mem 0x90000000-0x90ffffff 64bit pref]
Aug 11 21:52:44 stt300 kernel: [ 0.513070] pci 0000:00:1c.1: PCI bridge to [bus 02]
Aug 11 21:52:44 stt300 kernel: [ 0.513077] pci 0000:00:1c.1: bridge window [io 0x1000-0x1fff]
Aug 11 21:52:44 stt300 kernel: [ 0.513087] pci 0000:00:1c.1: bridge window [mem 0x92000000-0x92ffffff]
Aug 11 21:52:44 stt300 kernel: [ 0.513097] pci 0000:00:1c.1: bridge window [mem 0x91000000-0x91ffffff 64bit pref]
Aug 11 21:52:44 stt300 kernel: [ 0.513109] pci 0000:00:1e.0: PCI bridge to [bus 03]
Aug 11 21:52:44 stt300 kernel: [ 0.513182] pci 0000:00:1e.0: setting latency timer to 64
Aug 11 21:52:44 stt300 kernel: [ 0.513191] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
Aug 11 21:52:44 stt300 kernel: [ 0.513198] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
Aug 11 21:52:44 stt300 kernel: [ 0.513204] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
Aug 11 21:52:44 stt300 kernel: [ 0.513210] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff]
Aug 11 21:52:44 stt300 kernel: [ 0.513217] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
Aug 11 21:52:44 stt300 kernel: [ 0.513223] pci_bus 0000:01: resource 1 [mem 0x93000000-0x93ffffff]
Aug 11 21:52:44 stt300 kernel: [ 0.513230] pci_bus 0000:01: resource 2 [mem 0x90000000-0x90ffffff 64bit pref]
Aug 11 21:52:44 stt300 kernel: [ 0.513236] pci_bus 0000:02: resource 0 [io 0x1000-0x1fff]
Aug 11 21:52:44 stt300 kernel: [ 0.513242] pci_bus 0000:02: resource 1 [mem 0x92000000-0x92ffffff]
Aug 11 21:52:44 stt300 kernel: [ 0.513249] pci_bus 0000:02: resource 2 [mem 0x91000000-0x91ffffff 64bit pref]
Aug 11 21:52:44 stt300 kernel: [ 0.513255] pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7]
Aug 11 21:52:44 stt300 kernel: [ 0.513261] pci_bus 0000:03: resource 5 [io 0x0d00-0xffff]
Aug 11 21:52:44 stt300 kernel: [ 0.513267] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
Aug 11 21:52:44 stt300 kernel: [ 0.513273] pci_bus 0000:03: resource 7 [mem 0x80000000-0xfebfffff]
Aug 11 21:52:44 stt300 kernel: [ 0.513383] NET: Registered protocol family 2
Aug 11 21:52:44 stt300 kernel: [ 0.513734] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
Aug 11 21:52:44 stt300 kernel: [ 0.514584] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
Aug 11 21:52:44 stt300 kernel: [ 0.515013] TCP: Hash tables configured (established 131072 bind 65536)
Aug 11 21:52:44 stt300 kernel: [ 0.515095] TCP: reno registered
Aug 11 21:52:44 stt300 kernel: [ 0.515104] UDP hash table entries: 512 (order: 2, 16384 bytes)
Aug 11 21:52:44 stt300 kernel: [ 0.515121] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
Aug 11 21:52:44 stt300 kernel: [ 0.515328] NET: Registered protocol family 1
Aug 11 21:52:44 stt300 kernel: [ 0.515366] pci 0000:00:02.0: Boot video device
Aug 11 21:52:44 stt300 kernel: [ 0.528102] PCI: CLS 64 bytes, default 64
Aug 11 21:52:44 stt300 kernel: [ 0.528222] Unpacking initramfs...
Aug 11 21:52:44 stt300 kernel: [ 0.643173] Freeing initrd memory: 2444k freed
Aug 11 21:52:44 stt300 kernel: [ 0.644984] Simple Boot Flag at 0x44 set to 0x1
Aug 11 21:52:44 stt300 kernel: [ 0.645682] audit: initializing netlink socket (disabled)
Aug 11 21:52:44 stt300 kernel: [ 0.645710] type=2000 audit(1344714745.640:1): initialized
Aug 11 21:52:44 stt300 kernel: [ 0.674723] bounce pool size: 64 pages
Aug 11 21:52:44 stt300 kernel: [ 0.674735] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Aug 11 21:52:44 stt300 kernel: [ 0.675580] VFS: Disk quotas dquot_6.5.2
Aug 11 21:52:44 stt300 kernel: [ 0.675645] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
Aug 11 21:52:44 stt300 kernel: [ 0.675835] msgmni has been set to 1734
Aug 11 21:52:44 stt300 kernel: [ 0.676231] alg: No test for stdrng (krng)
Aug 11 21:52:44 stt300 kernel: [ 0.676310] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
Aug 11 21:52:44 stt300 kernel: [ 0.676317] io scheduler noop registered
Aug 11 21:52:44 stt300 kernel: [ 0.676322] io scheduler deadline registered
Aug 11 21:52:44 stt300 kernel: [ 0.676358] io scheduler cfq registered (default)
Aug 11 21:52:44 stt300 kernel: [ 0.676603] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
Aug 11 21:52:44 stt300 kernel: [ 0.676810] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
Aug 11 21:52:44 stt300 kernel: [ 0.677001] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Aug 11 21:52:44 stt300 kernel: [ 0.677059] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Aug 11 21:52:44 stt300 kernel: [ 0.677063] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Aug 11 21:52:44 stt300 kernel: [ 0.677792] intel_idle: MWAIT substates: 0x20220
Aug 11 21:52:44 stt300 kernel: [ 0.677811] intel_idle: v0.4 model 0x1C
Aug 11 21:52:44 stt300 kernel: [ 0.677815] intel_idle: lapic_timer_reliable_states 0x2
Aug 11 21:52:44 stt300 kernel: [ 0.677819] tsc: Marking TSC unstable due to TSC halts in idle states deeper than C2
Aug 11 21:52:44 stt300 kernel: [ 0.677885] GHES: HEST is not enabled!
Aug 11 21:52:44 stt300 kernel: [ 0.677915] isapnp: Scanning for PnP cards...
Aug 11 21:52:44 stt300 kernel: [ 1.031803] isapnp: No Plug & Play device found
Aug 11 21:52:44 stt300 kernel: [ 1.031978] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Aug 11 21:52:44 stt300 kernel: [ 1.033164] Linux agpgart interface v0.103
Aug 11 21:52:44 stt300 kernel: [ 1.033382] agpgart-intel 0000:00:00.0: Intel GMA3150 Chipset
Aug 11 21:52:44 stt300 kernel: [ 1.033507] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable
Aug 11 21:52:44 stt300 kernel: [ 1.033682] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
Aug 11 21:52:44 stt300 kernel: [ 1.033922] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x80000000
Aug 11 21:52:44 stt300 kernel: [ 1.034253] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUE] at 0x60,0x64 irq 1,12
Aug 11 21:52:44 stt300 kernel: [ 1.040096] serio: i8042 KBD port at 0x60,0x64 irq 1
Aug 11 21:52:44 stt300 kernel: [ 1.040114] serio: i8042 AUX port at 0x60,0x64 irq 12
Aug 11 21:52:44 stt300 kernel: [ 1.040474] mousedev: PS/2 mouse device common for all mice
Aug 11 21:52:44 stt300 kernel: [ 1.040575] rtc_cmos 00:03: RTC can wake from S4
Aug 11 21:52:44 stt300 kernel: [ 1.040810] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
Aug 11 21:52:44 stt300 kernel: [ 1.040848] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
Aug 11 21:52:44 stt300 kernel: [ 1.040982] cpuidle: using governor ladder
Aug 11 21:52:44 stt300 kernel: [ 1.041125] cpuidle: using governor menu
Aug 11 21:52:44 stt300 kernel: [ 1.041187] drop_monitor: Initializing network drop monitor service
Aug 11 21:52:44 stt300 kernel: [ 1.041372] TCP: cubic registered
Aug 11 21:52:44 stt300 kernel: [ 1.041468] NET: Registered protocol family 10
Aug 11 21:52:44 stt300 kernel: [ 1.041875] mip6: Mobile IPv6
Aug 11 21:52:44 stt300 kernel: [ 1.041881] NET: Registered protocol family 17
Aug 11 21:52:44 stt300 kernel: [ 1.041910] Key type dns_resolver registered
Aug 11 21:52:44 stt300 kernel: [ 1.042265] Using IPI No-Shortcut mode
Aug 11 21:52:44 stt300 kernel: [ 1.042549] PM: Hibernation image not present or could not be loaded.
Aug 11 21:52:44 stt300 kernel: [ 1.042574] registered taskstats version 1
Aug 11 21:52:44 stt300 kernel: [ 1.043606] rtc_cmos 00:03: setting system clock to 2012-08-11 19:52:27 UTC (1344714747)
Aug 11 21:52:44 stt300 kernel: [ 1.043966] Freeing unused kernel memory: 420k freed
Aug 11 21:52:44 stt300 kernel: [ 1.044272] Write protecting the kernel text: 2884k
Aug 11 21:52:44 stt300 kernel: [ 1.044344] Write protecting the kernel read-only data: 1100k
Aug 11 21:52:44 stt300 kernel: [ 1.044349] NX-protecting the kernel data: 3260k
Aug 11 21:52:44 stt300 kernel: [ 1.044570] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Aug 11 21:52:44 stt300 kernel: [ 1.044570] SCSI subsystem initialized
Aug 11 21:52:44 stt300 kernel: [ 1.044570] ACPI: bus type scsi registered
Aug 11 21:52:44 stt300 kernel: [ 1.044570] libata version 3.00 loaded.
Aug 11 21:52:44 stt300 kernel: [ 1.044570] ahci 0000:00:1f.2: version 3.0
Aug 11 21:52:44 stt300 kernel: [ 1.044570] ahci 0000:00:1f.2: irq 42 for MSI/MSI-X
Aug 11 21:52:44 stt300 kernel: [ 1.044570] ahci: SSS flag set, parallel bus scan disabled
Aug 11 21:52:44 stt300 kernel: [ 1.044570] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
Aug 11 21:52:44 stt300 kernel: [ 1.044570] ahci 0000:00:1f.2: flags: 64bit ncq ilck stag pm led clo pmp pio slum part
Aug 11 21:52:44 stt300 kernel: [ 1.044570] ahci 0000:00:1f.2: setting latency timer to 64
Aug 11 21:52:44 stt300 kernel: [ 1.044570] ACPI Warning: For \_TZ_.THRM._AL0: Return Package has no elements (empty) (20120711/nspredef-463)
Aug 11 21:52:44 stt300 kernel: [ 1.044570] ACPI: [Package] has zero elements (f5584e20)
Aug 11 21:52:44 stt300 kernel: [ 1.044570] ACPI: Invalid active0 threshold
Aug 11 21:52:44 stt300 kernel: [ 1.044570] thermal LNXTHERM:00: registered as thermal_zone0
Aug 11 21:52:44 stt300 kernel: [ 1.044570] ACPI: Thermal Zone [THRM] (54 C)
Aug 11 21:52:44 stt300 kernel: [ 1.044570] scsi0 : ahci
Aug 11 21:52:44 stt300 kernel: [ 1.044570] scsi1 : ahci
Aug 11 21:52:44 stt300 kernel: [ 1.044570] scsi2 : ahci
Aug 11 21:52:44 stt300 kernel: [ 1.044570] scsi3 : ahci
Aug 11 21:52:44 stt300 kernel: [ 1.044570] ata1: SATA max UDMA/133 abar m1024@0x94204000 port 0x94204100 irq 42
Aug 11 21:52:44 stt300 kernel: [ 1.044570] ata2: SATA max UDMA/133 abar m1024@0x94204000 port 0x94204180 irq 42
Aug 11 21:52:44 stt300 kernel: [ 1.044570] ata3: DUMMY
Aug 11 21:52:44 stt300 kernel: [ 1.044570] ata4: DUMMY
Aug 11 21:52:44 stt300 kernel: [ 1.532136] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Aug 11 21:52:44 stt300 kernel: [ 1.533920] ata1.00: unexpected _GTF length (4)
Aug 11 21:52:44 stt300 kernel: [ 1.534307] ata1.00: ATA-8: ST9250315AS, 0001SDM1, max UDMA/133
Aug 11 21:52:44 stt300 kernel: [ 1.534318] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32)
Aug 11 21:52:44 stt300 kernel: [ 1.536510] ata1.00: unexpected _GTF length (4)
Aug 11 21:52:44 stt300 kernel: [ 1.536887] ata1.00: configured for UDMA/133
Aug 11 21:52:44 stt300 kernel: [ 1.537186] scsi 0:0:0:0: Direct-Access ATA ST9250315AS 0001 PQ: 0 ANSI: 5
Aug 11 21:52:44 stt300 kernel: [ 1.856149] ata2: SATA link down (SStatus 0 SControl 300)
Aug 11 21:52:44 stt300 kernel: [ 1.868065] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
Aug 11 21:52:44 stt300 kernel: [ 1.868309] sd 0:0:0:0: [sda] Write Protect is off
Aug 11 21:52:44 stt300 kernel: [ 1.868321] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Aug 11 21:52:44 stt300 kernel: [ 1.868424] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Aug 11 21:52:44 stt300 kernel: [ 1.905423] sda: sda1 sda2
Aug 11 21:52:44 stt300 kernel: [ 1.906425] sd 0:0:0:0: [sda] Attached SCSI disk
Aug 11 21:52:44 stt300 kernel: [ 2.226862] PM: Starting manual resume from disk
Aug 11 21:52:44 stt300 kernel: [ 2.226870] PM: Hibernation image partition 8:1 present
Aug 11 21:52:44 stt300 kernel: [ 2.226873] PM: Looking for hibernation image.
Aug 11 21:52:44 stt300 kernel: [ 2.227301] PM: Image not found (code -22)
Aug 11 21:52:44 stt300 kernel: [ 2.227306] PM: Hibernation image not present or could not be loaded.
Aug 11 21:52:44 stt300 kernel: [ 2.235769] REISERFS (device sda2): found reiserfs format "3.6" with standard journal
Aug 11 21:52:44 stt300 kernel: [ 2.235811] REISERFS (device sda2): using ordered data mode
Aug 11 21:52:44 stt300 kernel: [ 2.235814] reiserfs: using flush barriers
Aug 11 21:52:44 stt300 kernel: [ 2.242860] REISERFS (device sda2): journal params: device sda2, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
Aug 11 21:52:44 stt300 kernel: [ 2.243454] REISERFS (device sda2): checking transaction log (sda2)
Aug 11 21:52:44 stt300 kernel: [ 2.346845] REISERFS (device sda2): Using r5 hash to sort names
Aug 11 21:52:44 stt300 kernel: [ 5.854299] ACPI: Requesting acpi_cpufreq
Aug 11 21:52:44 stt300 kernel: [ 5.903512] ACPI: Battery Slot [BAT0] (battery present)
Aug 11 21:52:44 stt300 kernel: [ 5.907137] ACPI: AC Adapter [AC] (on-line)
Aug 11 21:52:44 stt300 kernel: [ 5.908804] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
Aug 11 21:52:44 stt300 kernel: [ 5.908823] ACPI: Power Button [PWRB]
Aug 11 21:52:44 stt300 kernel: [ 5.909114] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
Aug 11 21:52:44 stt300 kernel: [ 5.914702] ACPI: Lid Switch [LID0]
Aug 11 21:52:44 stt300 kernel: [ 5.915023] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
Aug 11 21:52:44 stt300 kernel: [ 5.915039] ACPI: Power Button [PWRF]
Aug 11 21:52:44 stt300 kernel: [ 5.915701] wmi: Mapper loaded
Aug 11 21:52:44 stt300 kernel: [ 5.945349] [drm] Initialized drm 1.1.0 20060810
Aug 11 21:52:44 stt300 kernel: [ 6.008650] i915 0000:00:02.0: setting latency timer to 64
Aug 11 21:52:44 stt300 kernel: [ 6.009443] i915 0000:00:02.0: irq 43 for MSI/MSI-X
Aug 11 21:52:44 stt300 kernel: [ 6.009480] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
Aug 11 21:52:44 stt300 kernel: [ 6.009486] [drm] Driver supports precise vblank timestamp query.
Aug 11 21:52:44 stt300 kernel: [ 6.009592] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem: owns=io+mem
Aug 11 21:52:44 stt300 kernel: [ 6.062728] bcma: bus0: Found chip with id 0x4313, rev 0x01 and package 0x08
Aug 11 21:52:44 stt300 kernel: [ 6.062766] bcma: bus0: Core 0 found: ChipCommon (manuf 0x4BF, id 0x800, rev 0x24, class 0x0)
Aug 11 21:52:44 stt300 kernel: [ 6.062794] bcma: bus0: Core 1 found: IEEE 802.11 (manuf 0x4BF, id 0x812, rev 0x18, class 0x0)
Aug 11 21:52:44 stt300 kernel: [ 6.062844] bcma: bus0: Core 2 found: PCIe (manuf 0x4BF, id 0x820, rev 0x11, class 0x0)
Aug 11 21:52:44 stt300 kernel: [ 6.098238] bcma: bus0: Bus registered
Aug 11 21:52:44 stt300 kernel: [ 6.123131] rts_pstor: module is from the staging directory, the quality is unknown, you have been warned.
Aug 11 21:52:44 stt300 kernel: [ 6.125590] Initializing Realtek PCIE storage driver...
Aug 11 21:52:44 stt300 kernel: [ 6.129705] Resource length: 0x10000
Aug 11 21:52:44 stt300 kernel: [ 6.129764] Original address: 0x93000000, remapped address: 0xf85c0000
Aug 11 21:52:44 stt300 kernel: [ 6.129777] pci->irq = 17
Aug 11 21:52:44 stt300 kernel: [ 6.129785] rtsx_acquire_irq: chip->msi_en = 0, pci->irq = 17
Aug 11 21:52:44 stt300 kernel: [ 6.160333] ACPI: bus type usb registered
Aug 11 21:52:44 stt300 kernel: [ 6.160450] usbcore: registered new interface driver usbfs
Aug 11 21:52:44 stt300 kernel: [ 6.160502] usbcore: registered new interface driver hub
Aug 11 21:52:44 stt300 kernel: [ 6.161171] usbcore: registered new device driver usb
Aug 11 21:52:44 stt300 kernel: [ 6.164825] input: PC Speaker as /devices/platform/pcspkr/input/input4
Aug 11 21:52:44 stt300 kernel: [ 6.210130] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Aug 11 21:52:44 stt300 kernel: [ 6.213896] uhci_hcd: USB Universal Host Controller Interface driver
Aug 11 21:52:44 stt300 kernel: [ 6.325311] input: HP WMI hotkeys as /devices/virtual/input/input5
Aug 11 21:52:44 stt300 kernel: [ 6.330283] scsi4 : SCSI emulation for PCI-Express Mass Storage devices
Aug 11 21:52:44 stt300 kernel: [ 6.330850] rts_pstor: waiting for device to settle before scanning
Aug 11 21:52:44 stt300 kernel: [ 6.331524] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
Aug 11 21:52:44 stt300 kernel: [ 6.331647] r8169 0000:01:00.0: (unregistered net_device): unknown MAC, using family default
Aug 11 21:52:44 stt300 kernel: [ 6.331980] r8169 0000:01:00.0: irq 44 for MSI/MSI-X
Aug 11 21:52:44 stt300 kernel: [ 6.334663] r8169 0000:01:00.0: eth0: RTL8101e at 0xf822c000, 68:b5:99:d3:c1:d8, XID 04000000 IRQ 44
Aug 11 21:52:44 stt300 kernel: [ 6.410152] cfg80211: Calling CRDA to update world regulatory domain
Aug 11 21:52:44 stt300 kernel: [ 6.453309] [drm] initialized overlay support
Aug 11 21:52:44 stt300 kernel: [ 6.480939] fbcon: inteldrmfb (fb0) is primary device
Aug 11 21:52:44 stt300 kernel: [ 1.538010] ACPI: Invalid Power Resource to register!
Aug 11 21:52:44 stt300 kernel: [ 6.710025] Console: switching to colour frame buffer device 128x37
Aug 11 21:52:44 stt300 kernel: [ 6.721623] fb0: inteldrmfb frame buffer device
Aug 11 21:52:44 stt300 kernel: [ 6.721626] drm: registered panic notifier
Aug 11 21:52:44 stt300 kernel: [ 6.727910] brcmsmac bcma0:0: mfg 4bf core 812 rev 24 class 0 irq 17
Aug 11 21:52:44 stt300 kernel: [ 6.747879] acpi device:21: registered as cooling_device2
Aug 11 21:52:44 stt300 kernel: [ 6.748378] ACPI: Video Device [OVGA] (multi-head: yes rom: no post: no)
Aug 11 21:52:44 stt300 kernel: [ 6.748868] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input6
Aug 11 21:52:44 stt300 kernel: [ 6.749084] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
Aug 11 21:52:44 stt300 kernel: [ 6.749200] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
Aug 11 21:52:44 stt300 kernel: [ 6.749895] ACPI Warning: 0x00000460-0x0000047f SystemIO conflicts with Region PMBA 1 (20120711/utaddress-251)
Aug 11 21:52:44 stt300 kernel: [ 6.749916] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Aug 11 21:52:44 stt300 kernel: [ 6.749922] lpc_ich: Resource conflict(s) found affecting iTCO_wdt
Aug 11 21:52:44 stt300 kernel: [ 6.749931] ACPI Warning: 0x00000428-0x0000042f SystemIO conflicts with Region PMBA 1 (20120711/utaddress-251)
Aug 11 21:52:44 stt300 kernel: [ 6.749946] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Aug 11 21:52:44 stt300 kernel: [ 6.749955] ACPI Warning: 0x00000500-0x0000053f SystemIO conflicts with Region GPIO 1 (20120711/utaddress-251)
Aug 11 21:52:44 stt300 kernel: [ 6.749971] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Aug 11 21:52:44 stt300 kernel: [ 6.749976] lpc_ich: Resource conflict(s) found affecting gpio_ich
Aug 11 21:52:44 stt300 kernel: [ 6.750617] ehci_hcd 0000:00:1d.7: setting latency timer to 64
Aug 11 21:52:44 stt300 kernel: [ 6.750630] ehci_hcd 0000:00:1d.7: EHCI Host Controller
Aug 11 21:52:44 stt300 kernel: [ 6.750653] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
Aug 11 21:52:44 stt300 kernel: [ 6.754623] ehci_hcd 0000:00:1d.7: debug port 1
Aug 11 21:52:44 stt300 kernel: [ 6.754645] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
Aug 11 21:52:44 stt300 kernel: [ 6.754748] ehci_hcd 0000:00:1d.7: irq 16, io mem 0x94204400
Aug 11 21:52:44 stt300 kernel: [ 6.764120] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Aug 11 21:52:44 stt300 kernel: [ 6.764220] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Aug 11 21:52:44 stt300 kernel: [ 6.764230] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 11 21:52:44 stt300 kernel: [ 6.764238] usb usb1: Product: EHCI Host Controller
Aug 11 21:52:44 stt300 kernel: [ 6.764245] usb usb1: Manufacturer: Linux 3.6.0-rc1 ehci_hcd
Aug 11 21:52:44 stt300 kernel: [ 6.764252] usb usb1: SerialNumber: 0000:00:1d.7
Aug 11 21:52:44 stt300 kernel: [ 6.764781] hub 1-0:1.0: USB hub found
Aug 11 21:52:44 stt300 kernel: [ 6.764799] hub 1-0:1.0: 8 ports detected
Aug 11 21:52:44 stt300 kernel: [ 6.765634] uhci_hcd 0000:00:1d.0: setting latency timer to 64
Aug 11 21:52:44 stt300 kernel: [ 6.765647] uhci_hcd 0000:00:1d.0: UHCI Host Controller
Aug 11 21:52:44 stt300 kernel: [ 6.765669] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
Aug 11 21:52:44 stt300 kernel: [ 6.765726] uhci_hcd 0000:00:1d.0: irq 16, io base 0x00003080
Aug 11 21:52:44 stt300 kernel: [ 6.765851] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
Aug 11 21:52:44 stt300 kernel: [ 6.765862] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 11 21:52:44 stt300 kernel: [ 6.765870] usb usb2: Product: UHCI Host Controller
Aug 11 21:52:44 stt300 kernel: [ 6.765878] usb usb2: Manufacturer: Linux 3.6.0-rc1 uhci_hcd
Aug 11 21:52:44 stt300 kernel: [ 6.765886] usb usb2: SerialNumber: 0000:00:1d.0
Aug 11 21:52:44 stt300 kernel: [ 6.766324] hub 2-0:1.0: USB hub found
Aug 11 21:52:44 stt300 kernel: [ 6.766343] hub 2-0:1.0: 2 ports detected
Aug 11 21:52:44 stt300 kernel: [ 6.766620] uhci_hcd 0000:00:1d.1: setting latency timer to 64
Aug 11 21:52:44 stt300 kernel: [ 6.766632] uhci_hcd 0000:00:1d.1: UHCI Host Controller
Aug 11 21:52:44 stt300 kernel: [ 6.766653] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
Aug 11 21:52:44 stt300 kernel: [ 6.766743] uhci_hcd 0000:00:1d.1: irq 18, io base 0x00003060
Aug 11 21:52:44 stt300 kernel: [ 6.766864] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Aug 11 21:52:44 stt300 kernel: [ 6.766873] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 11 21:52:44 stt300 kernel: [ 6.766880] usb usb3: Product: UHCI Host Controller
Aug 11 21:52:44 stt300 kernel: [ 6.766889] usb usb3: Manufacturer: Linux 3.6.0-rc1 uhci_hcd
Aug 11 21:52:44 stt300 kernel: [ 6.766896] usb usb3: SerialNumber: 0000:00:1d.1
Aug 11 21:52:44 stt300 kernel: [ 6.767685] hub 3-0:1.0: USB hub found
Aug 11 21:52:44 stt300 kernel: [ 6.767705] hub 3-0:1.0: 2 ports detected
Aug 11 21:52:44 stt300 kernel: [ 6.768044] uhci_hcd 0000:00:1d.2: setting latency timer to 64
Aug 11 21:52:44 stt300 kernel: [ 6.768057] uhci_hcd 0000:00:1d.2: UHCI Host Controller
Aug 11 21:52:44 stt300 kernel: [ 6.768078] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
Aug 11 21:52:44 stt300 kernel: [ 6.768134] uhci_hcd 0000:00:1d.2: irq 17, io base 0x00003040
Aug 11 21:52:44 stt300 kernel: [ 6.768256] usb usb4: New USB devi