* 8192cu misbehaviours with RTL8188RU chipset
@ 2012-12-10 0:34 Alessandro Lannocca
2012-12-10 17:01 ` Larry Finger
0 siblings, 1 reply; 9+ messages in thread
From: Alessandro Lannocca @ 2012-12-10 0:34 UTC (permalink / raw)
To: linux-wireless
[-- Attachment #1: Type: text/plain, Size: 4166 bytes --]
Good morning, I recently (yesterday) bought an RTL8188RU-based wifi
card, the Alfa AWUS036NHR <0bda:817f>, and proceeded to compile
compat-wireless 3.6.8-1 to have it working.
I'm using this card for penetration testing purposes, so I applied
this this patch to be able to switch channels in monitor mode and to
prevent the driver from overwriting QoS headers:
<snip>
--- a/net/mac80211/tx.c Sat Sep 29 20:29:54 2012 -0400
+++ b/net/mac80211/tx.c Sat Sep 29 20:37:29 2012 -0400
@@ -1487,7 +1487,10 @@
/* Older kernels do not have the select_queue callback */
skb_set_queue_mapping(skb, ieee80211_select_queue(sdata, skb));
#endif
- ieee80211_set_qos_hdr(sdata, skb);
+ // Don't overwrite QoS header in monitor mode
+ if (likely(info->control.vif->
type != NL80211_IFTYPE_MONITOR)) {
+ ieee80211_set_qos_hdr(sdata, skb);
+ }
ieee80211_tx(sdata, skb, false);
rcu_read_unlock();
}
diff -r 0de05c2ae1be net/wireless/chan.c
--- a/net/wireless/chan.c Sat Sep 29 20:29:54 2012 -0400
+++ b/net/wireless/chan.c Sat Sep 29 20:37:29 2012 -0400
@@ -85,8 +85,8 @@
if (!rdev->ops->set_monitor_channel)
return -EOPNOTSUPP;
- if (!cfg80211_has_monitors_only(rdev))
- return -EBUSY;
+ //if (!cfg80211_has_monitors_only(rdev))
+ // return -EBUSY;
chan = rdev_freq_to_chan(rdev, freq, chantype);
if (!chan)
</snip>
Now, it works almost perfectly, I can use my card for regular surfing
with all kinds of AP (WEP/WPA/OPN), monitor mode works and injection
too; however, when in monitor mode, it detects associated WPA clients
as non-associated (exept for itself, it detects its own association
and its own generated wpa-handshake), and I'm unable to get any WPA
handshake.
Also, after the first succesfull connection and disconnection, the
card goes 'mute', it just stops responding, scanning etc, until
unplugged and replugged.
For this purpose I'm using the latest aircrack-ng suite, other
equipment I have, correctly reports all the clients in my own wireless
network as being associated, but not this rtl8188ru card; I think some
unicast frames are being filtered out while in monitor mode.
It's worth noting that injection works and I'm currently able to
effectively deauth wpa clients, but the card doesn't pick up their
(re-)association nor the wpa handshake.
I tried also compat-wireless from linux-next and compat-drivers
aswell; all exhibit this behaviour, unfortunately compat-drivers
exposes some other bugs.
I'm willing to patch/test/recompile to get this bugs ironed out,
unfortunately loading rtl8192cu with "options debug=5" doesn't seem to
have any effect on my logs, however I'm attaching a .pcap capture and
I'm willing to follow your instructions to get you useful info from my
system.
Also, this bug/problem seems to be a regression, beacuse using an
ancient 2.6.34 kernel with compat-wireless-backport.2.6.39-1 the
problem doesn't exist, all works perfectly.
In the attached .pcap file, you'll find a 2-3 APs, including my own,
and 2-3 clients (all connected on my network - CCC), the only
associated client shown is the alfa card itself, the handshake has
been captured aswell, but the other clients (my phone and my tablet)
are show not-associated, when in reality they are
connected/reconnecting and their 4-way handshake shoud be visible
aswell; this is kinda weird.
My system is Ubuntu 12.10
kernel 3.5.0-19
compat-wireless 3.6.8-1
Alfa AWUS036NHR device id 0bda:817f
dmesg output (I know it's probably useless, but it's all it gives me)
<snip>
Dec 6 15:43:26 rothor kernel: [ 1562.960110] rtl8192cu: Chip version 0x10
Dec 6 15:43:26 rothor kernel: [ 1563.036520] rtl8192cu: MAC address:
00:c0:ca:6a:e2:38
Dec 6 15:43:26 rothor kernel: [ 1563.036523] rtl8192cu: Board Type 1
Dec 6 15:43:26 rothor kernel: [ 1563.036822] rtl8192cu: Loading
firmware rtlwifi/rtl8192cufw.bin
Dec 6 15:43:26 rothor kernel: [ 1563.036901] usbcore: registered new
interface driver rtl8192cu
Dec 6 15:43:35 rothor kernel: [ 1571.216096] rtl8192cu: MAC auto ON okay!
Dec 6 15:43:35 rothor kernel: [ 1571.248809] rtl8192cu: Tx queue select: 0x05
</snip>
Any help being appreciated, thank you in advance for your time.
[-- Attachment #2: wpa_clients.pcap-08.cap --]
[-- Type: application/octet-stream, Size: 37077 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: 8192cu misbehaviours with RTL8188RU chipset
2012-12-10 0:34 8192cu misbehaviours with RTL8188RU chipset Alessandro Lannocca
@ 2012-12-10 17:01 ` Larry Finger
2012-12-10 21:05 ` Alessandro Lannocca
0 siblings, 1 reply; 9+ messages in thread
From: Larry Finger @ 2012-12-10 17:01 UTC (permalink / raw)
To: Alessandro Lannocca; +Cc: linux-wireless
On 12/09/2012 06:34 PM, Alessandro Lannocca wrote:
> Good morning, I recently (yesterday) bought an RTL8188RU-based wifi
> card, the Alfa AWUS036NHR <0bda:817f>, and proceeded to compile
> compat-wireless 3.6.8-1 to have it working.
>
> I'm using this card for penetration testing purposes, so I applied
> this this patch to be able to switch channels in monitor mode and to
> prevent the driver from overwriting QoS headers:
>
> <snip>
>
> --- a/net/mac80211/tx.c Sat Sep 29 20:29:54 2012 -0400
> +++ b/net/mac80211/tx.c Sat Sep 29 20:37:29 2012 -0400
> @@ -1487,7 +1487,10 @@
> /* Older kernels do not have the select_queue callback */
> skb_set_queue_mapping(skb, ieee80211_select_queue(sdata, skb));
> #endif
> - ieee80211_set_qos_hdr(sdata, skb);
> + // Don't overwrite QoS header in monitor mode
> + if (likely(info->control.vif->
> type != NL80211_IFTYPE_MONITOR)) {
> + ieee80211_set_qos_hdr(sdata, skb);
> + }
> ieee80211_tx(sdata, skb, false);
> rcu_read_unlock();
> }
> diff -r 0de05c2ae1be net/wireless/chan.c
> --- a/net/wireless/chan.c Sat Sep 29 20:29:54 2012 -0400
> +++ b/net/wireless/chan.c Sat Sep 29 20:37:29 2012 -0400
> @@ -85,8 +85,8 @@
>
> if (!rdev->ops->set_monitor_channel)
> return -EOPNOTSUPP;
> - if (!cfg80211_has_monitors_only(rdev))
> - return -EBUSY;
> + //if (!cfg80211_has_monitors_only(rdev))
> + // return -EBUSY;
>
> chan = rdev_freq_to_chan(rdev, freq, chantype);
> if (!chan)
>
> </snip>
>
> Now, it works almost perfectly, I can use my card for regular surfing
> with all kinds of AP (WEP/WPA/OPN), monitor mode works and injection
> too; however, when in monitor mode, it detects associated WPA clients
> as non-associated (exept for itself, it detects its own association
> and its own generated wpa-handshake), and I'm unable to get any WPA
> handshake.
>
> Also, after the first succesfull connection and disconnection, the
> card goes 'mute', it just stops responding, scanning etc, until
> unplugged and replugged.
>
> For this purpose I'm using the latest aircrack-ng suite, other
> equipment I have, correctly reports all the clients in my own wireless
> network as being associated, but not this rtl8188ru card; I think some
> unicast frames are being filtered out while in monitor mode.
> It's worth noting that injection works and I'm currently able to
> effectively deauth wpa clients, but the card doesn't pick up their
> (re-)association nor the wpa handshake.
>
> I tried also compat-wireless from linux-next and compat-drivers
> aswell; all exhibit this behaviour, unfortunately compat-drivers
> exposes some other bugs.
>
> I'm willing to patch/test/recompile to get this bugs ironed out,
> unfortunately loading rtl8192cu with "options debug=5" doesn't seem to
> have any effect on my logs, however I'm attaching a .pcap capture and
> I'm willing to follow your instructions to get you useful info from my
> system.
>
> Also, this bug/problem seems to be a regression, beacuse using an
> ancient 2.6.34 kernel with compat-wireless-backport.2.6.39-1 the
> problem doesn't exist, all works perfectly.
>
> In the attached .pcap file, you'll find a 2-3 APs, including my own,
> and 2-3 clients (all connected on my network - CCC), the only
> associated client shown is the alfa card itself, the handshake has
> been captured aswell, but the other clients (my phone and my tablet)
> are show not-associated, when in reality they are
> connected/reconnecting and their 4-way handshake shoud be visible
> aswell; this is kinda weird.
>
> My system is Ubuntu 12.10
> kernel 3.5.0-19
> compat-wireless 3.6.8-1
> Alfa AWUS036NHR device id 0bda:817f
> dmesg output (I know it's probably useless, but it's all it gives me)
> <snip>
> Dec 6 15:43:26 rothor kernel: [ 1562.960110] rtl8192cu: Chip version 0x10
> Dec 6 15:43:26 rothor kernel: [ 1563.036520] rtl8192cu: MAC address:
> 00:c0:ca:6a:e2:38
> Dec 6 15:43:26 rothor kernel: [ 1563.036523] rtl8192cu: Board Type 1
> Dec 6 15:43:26 rothor kernel: [ 1563.036822] rtl8192cu: Loading
> firmware rtlwifi/rtl8192cufw.bin
> Dec 6 15:43:26 rothor kernel: [ 1563.036901] usbcore: registered new
> interface driver rtl8192cu
> Dec 6 15:43:35 rothor kernel: [ 1571.216096] rtl8192cu: MAC auto ON okay!
> Dec 6 15:43:35 rothor kernel: [ 1571.248809] rtl8192cu: Tx queue select: 0x05
> </snip>
>
> Any help being appreciated, thank you in advance for your time.
Are you sure your patches are correct? The location that you used affects
*every* driver that uses mac80211, not just rtl8192cu.
I just tested by having rtl8192cu unloaded, then I loaded it with 'sudo modprobe
-v rtl8192cu debug=5'. When I did that and plugged in the device, my log was
immediately "flooded" with the following:
[ 3269.706508] rtl8192cu: Chip version 0x10
[ 3270.130396] rtl8192cu: MAC address: 00:1f:1f:c8:8e:cb
[ 3270.130423] rtl8192cu: Board Type 0
[ 3270.131246] rtlwifi: rx_max_size 15360, rx_urb_num 8, in_ep 1
[ 3270.131827] rtl8192cu: Loading firmware rtlwifi/rtl8192cufw.bin
[ 3270.132914] rtlwifi:rtl_fw_cb():<0-0> Firmware callback routine entered!
[ 3270.137746] ieee80211 phy2: Selected rate control algorithm 'rtl_rc'
[ 3270.150347] rtl8192cu:rtl92cu_gpio_radio_on_off_checking():<0-0> GPIO_IN=0b
[ 3270.150366] rtl8192cu:rtl92cu_gpio_radio_on_off_checking():<0-0> N-SS RF =0
[ 3270.150373] rtl8192cu:rtl92cu_gpio_radio_on_off_checking():<0-0>
pHalData->bHwRadioOff and eRfPowerStateToSet do not match: pHalData->bHwRadioOff
0, eRfPowerStateToSet 0
[ 3270.150379] rtlwifi: wireless switch is on
[ 3270.150977] rtl8192cu:rtl92cu_gpio_radio_on_off_checking():<0-0> GPIO_IN=0b
[ 3270.150984] rtl8192cu:rtl92cu_gpio_radio_on_off_checking():<0-0> N-SS RF =0
[ 3270.150990] rtl8192cu:rtl92cu_gpio_radio_on_off_checking():<0-0>
pHalData->bHwRadioOff and eRfPowerStateToSet do not match: pHalData->bHwRadioOff
0, eRfPowerStateToSet 0
[ 3270.608096] rtl8192cu:_rtl92cu_init_power_on():<0-0> Autoload Done!
[ 3270.617855] rtl8192cu: MAC auto ON okay!
[ 3270.723379] rtl8192cu: Tx queue select: 0x05
[ 3270.723591] rtl8192cu:rtl92c_set_network_type():<0-0> Set Network type to NO
LINK!
[ 3270.726441] rtl8192c_common:rtl92c_phy_set_bw_mode():<0-0> FALSE driver sleep
or unload
[ 3270.727029] rtl8192c_common:rtl92c_download_fw():<0-0> Firmware Version(63),
Signature(0x88c1),Size(32)
[ 3270.727251] rtl8192c_common:_rtl92c_write_fw():<0-0> FW size is 15982 bytes
[ 3270.745940] rtl8192c_common:_rtl92c_fw_free_to_go():<0-0> Checksum report OK
! REG_MCUFWDL:0x00030004
[ 3270.751440] rtl8192c_common:_rtl92c_fw_free_to_go():<0-0> Polling FW ready
success!! REG_MCUFWDL:0x000300c6
[ 3270.751443] rtl8192c_common:rtl92c_download_fw():<0-0> Firmware is ready to run!
[ 3270.751446] rtl8192cu:_rtl92cu_phy_config_mac_with_headerfile():<0-0> Read
Rtl819XMACPHY_Array
[ 3270.751448] rtl8192cu:_rtl92cu_phy_config_mac_with_headerfile():<0-0>
Img:RTL8192CEMAC_2T_ARRAY
[ 3270.757884] rtl8192c_common:_rtl92c_phy_bb8192c_config_parafile():<0-0> ==>
[ 3270.757889] rtl8192c_common:rtl92c_phy_set_bb_reg():<0-0> regaddr(0x24),
bitmask(0xffffffff), data(0x11800f)
[ 3270.757968] rtl8192c_common:rtl92c_phy_set_bb_reg():<0-0> regaddr(0x24),
bitmask(0xffffffff), data(0x11800f)
As you can see, that is about 1 second worth of logging. I suggest that you use
"debug=4" to start with. It is a lot less like "drinking from a firehose".
Larry
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: 8192cu misbehaviours with RTL8188RU chipset
2012-12-10 17:01 ` Larry Finger
@ 2012-12-10 21:05 ` Alessandro Lannocca
2012-12-10 21:06 ` Alessandro Lannocca
0 siblings, 1 reply; 9+ messages in thread
From: Alessandro Lannocca @ 2012-12-10 21:05 UTC (permalink / raw)
To: linux-wireless
[-- Attachment #1: Type: text/plain, Size: 5390 bytes --]
Thank you Larry for your suggestion, however I can't get any debug log
out of my machine, it's probably an ubuntu fault (or I'm missing
something); I even tried switching from rsyslogd to sysklogd and all
debug=[1...5] combintations, all to no avail.
This is my actual <modprobe -v rtl8192cu debug=4> output:
<snip>
insmod /lib/modules/3.5.0-19-generic/updates/net/wireless/cfg80211.ko
insmod /lib/modules/3.5.0-19-generic/updates/net/mac80211/mac80211.ko
insmod /lib/modules/3.5.0-19-generic/updates/drivers/net/wireless/rtlwifi/rtlwifi.ko
insmod /lib/modules/3.5.0-19-generic/updates/drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common.ko
insmod /lib/modules/3.5.0-19-generic/updates/drivers/net/wireless/rtlwifi/rtl8192cu/rtl8192cu.ko
debug=4
</snip>
Attached you can find dmesg i grepped from my (now virtualized) test
system. kern.log/syslog don't offer any more info.
After some more testing this is the situation:
- Card goes mute some seconds after a succesfull disconnection
(interval between disconnection and muting seems random, some seconds
however)
- Card doesn't correctly see associated clients in monitor mode (wpa
networks, don't know if this applies to wep aswell), it corretly sees
itself associated and only get its own 4-way wpa handshake, not
others.
- Led is fixed all the time, it should blink during rx/tx
- regd.c has only a bunch of countries coded, if I set my regdom to IT
I can't get chans 12-13 to work, while if I set it to EC (Italy is an
ETSI member) I get proper channel list.
- maximum txpower is hardcorded to 20dBm in regd.c, it isn't possible
to modify it accordingly to regdom.
As a side note, commit 4f03c1ed8901a01ad4abcef95c02c007a2d481c2 is
giving some headaches in monitor mode, due to the fact that it renders
impossible to switch channels while a mon* and a wlan* interface
coexist (however this is not a bug, just my 2 cents)
If you're willing to tell me which distribution/version combo you're
using I would be very happy to virtualize it and get some useful debug
info out of it, also I'm currently targeting compat-wireless 3.6.8-1;
although these issues remains in daily snapshots until at least last
week, feel free to tell me which version should I be targeting.
Thank you all for your time .
Alex
2012/12/10 Larry Finger <Larry.Finger@lwfinger.net>:
> Are you sure your patches are correct? The location that you used affects
> *every* driver that uses mac80211, not just rtl8192cu.
>
> I just tested by having rtl8192cu unloaded, then I loaded it with 'sudo
> modprobe -v rtl8192cu debug=5'. When I did that and plugged in the device,
> my log was immediately "flooded" with the following:
>
> [ 3269.706508] rtl8192cu: Chip version 0x10
> [ 3270.130396] rtl8192cu: MAC address: 00:1f:1f:c8:8e:cb
> [ 3270.130423] rtl8192cu: Board Type 0
> [ 3270.131246] rtlwifi: rx_max_size 15360, rx_urb_num 8, in_ep 1
> [ 3270.131827] rtl8192cu: Loading firmware rtlwifi/rtl8192cufw.bin
> [ 3270.132914] rtlwifi:rtl_fw_cb():<0-0> Firmware callback routine entered!
> [ 3270.137746] ieee80211 phy2: Selected rate control algorithm 'rtl_rc'
> [ 3270.150347] rtl8192cu:rtl92cu_gpio_radio_on_off_checking():<0-0>
> GPIO_IN=0b
> [ 3270.150366] rtl8192cu:rtl92cu_gpio_radio_on_off_checking():<0-0> N-SS RF
> =0
> [ 3270.150373] rtl8192cu:rtl92cu_gpio_radio_on_off_checking():<0-0>
> pHalData->bHwRadioOff and eRfPowerStateToSet do not match:
> pHalData->bHwRadioOff 0, eRfPowerStateToSet 0
> [ 3270.150379] rtlwifi: wireless switch is on
> [ 3270.150977] rtl8192cu:rtl92cu_gpio_radio_on_off_checking():<0-0>
> GPIO_IN=0b
> [ 3270.150984] rtl8192cu:rtl92cu_gpio_radio_on_off_checking():<0-0> N-SS RF
> =0
> [ 3270.150990] rtl8192cu:rtl92cu_gpio_radio_on_off_checking():<0-0>
> pHalData->bHwRadioOff and eRfPowerStateToSet do not match:
> pHalData->bHwRadioOff 0, eRfPowerStateToSet 0
> [ 3270.608096] rtl8192cu:_rtl92cu_init_power_on():<0-0> Autoload Done!
> [ 3270.617855] rtl8192cu: MAC auto ON okay!
> [ 3270.723379] rtl8192cu: Tx queue select: 0x05
> [ 3270.723591] rtl8192cu:rtl92c_set_network_type():<0-0> Set Network type to
> NO LINK!
> [ 3270.726441] rtl8192c_common:rtl92c_phy_set_bw_mode():<0-0> FALSE driver
> sleep or unload
> [ 3270.727029] rtl8192c_common:rtl92c_download_fw():<0-0> Firmware
> Version(63), Signature(0x88c1),Size(32)
> [ 3270.727251] rtl8192c_common:_rtl92c_write_fw():<0-0> FW size is 15982
> bytes
> [ 3270.745940] rtl8192c_common:_rtl92c_fw_free_to_go():<0-0> Checksum report
> OK ! REG_MCUFWDL:0x00030004
> [ 3270.751440] rtl8192c_common:_rtl92c_fw_free_to_go():<0-0> Polling FW
> ready success!! REG_MCUFWDL:0x000300c6
> [ 3270.751443] rtl8192c_common:rtl92c_download_fw():<0-0> Firmware is ready
> to run!
> [ 3270.751446] rtl8192cu:_rtl92cu_phy_config_mac_with_headerfile():<0-0>
> Read Rtl819XMACPHY_Array
> [ 3270.751448] rtl8192cu:_rtl92cu_phy_config_mac_with_headerfile():<0-0>
> Img:RTL8192CEMAC_2T_ARRAY
> [ 3270.757884] rtl8192c_common:_rtl92c_phy_bb8192c_config_parafile():<0-0>
> ==>
> [ 3270.757889] rtl8192c_common:rtl92c_phy_set_bb_reg():<0-0> regaddr(0x24),
> bitmask(0xffffffff), data(0x11800f)
> [ 3270.757968] rtl8192c_common:rtl92c_phy_set_bb_reg():<0-0> regaddr(0x24),
> bitmask(0xffffffff), data(0x11800f)
>
> As you can see, that is about 1 second worth of logging. I suggest that you
> use "debug=4" to start with. It is a lot less like "drinking from a
> firehose".
>
> Larry
>
[-- Attachment #2: dmesg.log --]
[-- Type: application/octet-stream, Size: 95668 bytes --]
[ 0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x26] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x28] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x2a] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x2c] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x2e] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x30] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0x32] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x34] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x36] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x38] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x3a] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x3c] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x3e] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x20] lapic_id[0x40] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x21] lapic_id[0x42] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x22] lapic_id[0x44] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x23] lapic_id[0x46] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x24] lapic_id[0x48] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x25] lapic_id[0x4a] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x26] lapic_id[0x4c] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x27] lapic_id[0x4e] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x28] lapic_id[0x50] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x29] lapic_id[0x52] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x2a] lapic_id[0x54] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x2b] lapic_id[0x56] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x2c] lapic_id[0x58] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x2d] lapic_id[0x5a] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x2e] lapic_id[0x5c] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x2f] lapic_id[0x5e] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x30] lapic_id[0x60] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x31] lapic_id[0x62] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x32] lapic_id[0x64] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x33] lapic_id[0x66] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x34] lapic_id[0x68] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x35] lapic_id[0x6a] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x36] lapic_id[0x6c] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x37] lapic_id[0x6e] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x38] lapic_id[0x70] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x39] lapic_id[0x72] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x3a] lapic_id[0x74] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x3b] lapic_id[0x76] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x3c] lapic_id[0x78] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x3d] lapic_id[0x7a] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x3e] lapic_id[0x7c] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x3f] lapic_id[0x7e] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x30] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x31] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x32] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x33] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x34] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x35] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x36] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x37] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x38] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x39] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x3a] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x3b] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x3c] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x3d] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x3e] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x3f] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ2 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086af01 base: 0xfed00000
[ 0.000000] 64 Processors exceeds NR_CPUS limit of 8
[ 0.000000] SMP: Allowing 8 CPUs, 4 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 40
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000ca000
[ 0.000000] PM: Registered nosave memory: 00000000000ca000 - 00000000000cc000
[ 0.000000] PM: Registered nosave memory: 00000000000cc000 - 00000000000dc000
[ 0.000000] PM: Registered nosave memory: 00000000000dc000 - 0000000000100000
[ 0.000000] e820: [mem 0x40000000-0xdfffffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 14 pages/cpu @f7386000 s34176 r0 d23168 u57344
[ 0.000000] pcpu-alloc: s34176 r0 d23168 u57344 alloc=14*4096
[ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 259950
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.5.0-19-generic root=UUID=39c87cf7-def0-42e9-b7fc-46ca0e147df9 ro quiet splash
[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 0.000000] __ex_table already sorted, skipping sort
[ 0.000000] Initializing CPU#0
[ 0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
[ 0.000000] allocated 2097024 bytes of page_cgroup
[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[ 0.000000] Initializing HighMem for node 0 (00037bfe:00040000)
[ 0.000000] Memory: 1011140k/1048576k available (5961k kernel code, 36856k reserved, 2932k data, 756k init, 135048k highmem)
[ 0.000000] virtual kernel memory layout:
[ 0.000000] fixmap : 0xfff15000 - 0xfffff000 ( 936 kB)
[ 0.000000] pkmap : 0xffc00000 - 0xffe00000 (2048 kB)
[ 0.000000] vmalloc : 0xf83fe000 - 0xffbfe000 ( 120 MB)
[ 0.000000] lowmem : 0xc0000000 - 0xf7bfe000 ( 891 MB)
[ 0.000000] .init : 0xc18b0000 - 0xc196d000 ( 756 kB)
[ 0.000000] .data : 0xc15d2598 - 0xc18af6c0 (2932 kB)
[ 0.000000] .text : 0xc1000000 - 0xc15d2598 (5961 kB)
[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
[ 0.000000] NR_IRQS:2304 nr_irqs:744 16
[ 0.000000] CPU 0 irqstacks, hard=f5c0a000 soft=f5c0c000
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] hpet clockevent registered
[ 0.000000] TSC freq read from hypervisor : 3300.109 MHz
[ 0.000000] Detected 3300.109 MHz processor.
[ 0.000002] Calibrating delay loop (skipped) preset value.. 6600.21 BogoMIPS (lpj=13200436)
[ 0.000005] pid_max: default: 32768 minimum: 301
[ 0.000029] Security Framework initialized
[ 0.000053] AppArmor: AppArmor initialized
[ 0.000054] Yama: becoming mindful.
[ 0.000092] Mount-cache hash table entries: 512
[ 0.000289] Initializing cgroup subsys cpuacct
[ 0.000291] Initializing cgroup subsys memory
[ 0.000297] Initializing cgroup subsys devices
[ 0.000299] Initializing cgroup subsys freezer
[ 0.000300] Initializing cgroup subsys blkio
[ 0.000302] Initializing cgroup subsys perf_event
[ 0.000375] mce: CPU supports 0 MCE banks
[ 0.005334] ACPI: Core revision 20120320
[ 0.025154] ftrace: allocating 24599 entries in 49 pages
[ 0.062728] Enabling APIC mode: Flat. Using 1 I/O APICs
[ 0.063166] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.109878] CPU0: AMD FX(tm)-6100 Six-Core Processor stepping 02
[ 0.215814] Performance Events: no PMU driver, software events only.
[ 0.215985] NMI watchdog: disabled (cpu0): hardware events not enabled
[ 0.216197] CPU 1 irqstacks, hard=f5cf4000 soft=f5cf6000
[ 0.226361] Initializing CPU#1
[ 0.227349] mce: CPU supports 0 MCE banks
[ 0.216198] Booting Node 0, Processors #1
[ 0.227645] CPU 2 irqstacks, hard=f5d2e000 soft=f5d30000
[ 0.237755] Initializing CPU#2
[ 0.238775] mce: CPU supports 0 MCE banks
[ 0.227648] #2
[ 0.239017] CPU 3 irqstacks, hard=f5d3a000 soft=f5d3c000
[ 0.249158] Initializing CPU#3
[ 0.250164] mce: CPU supports 0 MCE banks
[ 0.239020] #3
[ 0.250349] Brought up 4 CPUs
[ 0.250354] Total of 4 processors activated (26400.87 BogoMIPS).
[ 0.295233] x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106
[ 0.295287] x86 PAT enabled: cpu 1, old 0x0, new 0x7010600070106
[ 0.295342] x86 PAT enabled: cpu 3, old 0x0, new 0x7010600070106
[ 0.295402] x86 PAT enabled: cpu 2, old 0x0, new 0x7010600070106
[ 0.295978] devtmpfs: initialized
[ 0.296126] EVM: security.selinux
[ 0.296128] EVM: security.SMACK64
[ 0.296129] EVM: security.capability
[ 0.296260] PM: Registering ACPI NVS region [mem 0x3feff000-0x3fefffff] (4096 bytes)
[ 0.297221] dummy:
[ 0.297323] RTC time: 19:46:40, date: 12/10/12
[ 0.297363] NET: Registered protocol family 16
[ 0.297552] Trying to unpack rootfs image as initramfs...
[ 0.307122] EISA bus registered
[ 0.308361] ACPI: bus type pci registered
[ 0.308525] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.308528] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[ 0.308529] PCI: Using MMCONFIG for extended config space
[ 0.308530] PCI: Using configuration type 1 for base access
[ 0.308647] mtrr: your CPUs had inconsistent variable MTRR settings
[ 0.308648] mtrr: probably your BIOS does not setup all CPUs.
[ 0.308649] mtrr: corrected configuration.
[ 0.315125] bio: create slab <bio-0> at 0
[ 0.315306] ACPI: Added _OSI(Module Device)
[ 0.315308] ACPI: Added _OSI(Processor Device)
[ 0.315309] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.315311] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.318965] ACPI: EC: Look up EC in DSDT
[ 0.335599] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[ 0.588211] Freeing initrd memory: 14720k freed
[ 0.694773] ACPI: Interpreter enabled
[ 0.694780] ACPI: (supports S0 S1 S4 S5)
[ 0.694795] ACPI: Using IOAPIC for interrupt routing
[ 0.862846] ACPI: No dock devices found.
[ 0.862854] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.863755] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.865264] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
[ 0.865267] pci_root PNP0A03:00: host bridge window [mem 0x000cc000-0x000cffff]
[ 0.865269] pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff]
[ 0.865271] pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff]
[ 0.865273] pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff]
[ 0.865275] pci_root PNP0A03:00: host bridge window [mem 0xc0000000-0xfebfffff]
[ 0.865277] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7]
[ 0.865279] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xfeff]
[ 0.865326] PCI host bridge to bus 0000:00
[ 0.865329] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[ 0.865331] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
[ 0.865333] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
[ 0.865335] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[ 0.865337] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
[ 0.865339] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff]
[ 0.865341] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
[ 0.865343] pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff]
[ 0.865425] pci 0000:00:00.0: [8086:7190] type 00 class 0x060000
[ 0.866038] pci 0000:00:01.0: [8086:7191] type 01 class 0x060400
[ 0.866692] pci 0000:00:07.0: [8086:7110] type 00 class 0x060100
[ 0.867566] pci 0000:00:07.1: [8086:7111] type 00 class 0x01018a
[ 0.870491] pci 0000:00:07.1: reg 20: [io 0x10c0-0x10cf]
[ 0.871863] pci 0000:00:07.3: [8086:7113] type 00 class 0x068000
[ 0.875480] pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI
[ 0.875498] pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB
[ 0.875822] pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000
[ 0.877087] pci 0000:00:07.7: reg 10: [io 0x1080-0x10bf]
[ 0.878848] pci 0000:00:07.7: reg 14: [mem 0xc8000000-0xc8001fff 64bit]
[ 0.884019] pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000
[ 0.905252] pci 0000:00:0f.0: reg 10: [io 0x10d0-0x10df]
[ 0.924000] pci 0000:00:0f.0: reg 14: [mem 0xd0000000-0xd7ffffff pref]
[ 0.942798] pci 0000:00:0f.0: reg 18: [mem 0xc8800000-0xc8ffffff]
[ 1.018072] pci 0000:00:0f.0: reg 30: [mem 0x00000000-0x00007fff pref]
[ 1.018494] pci 0000:00:10.0: [1000:0030] type 00 class 0x010000
[ 1.020238] pci 0000:00:10.0: reg 10: [io 0x1400-0x14ff]
[ 1.022617] pci 0000:00:10.0: reg 14: [mem 0xc8040000-0xc805ffff 64bit]
[ 1.024856] pci 0000:00:10.0: reg 1c: [mem 0xc8020000-0xc803ffff 64bit]
[ 1.027551] pci 0000:00:10.0: reg 30: [mem 0x00000000-0x00003fff pref]
[ 1.027767] pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401
[ 1.028732] pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400
[ 1.029827] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold
[ 1.030180] pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400
[ 1.031198] pci 0000:00:15.1: PME# supported from D0 D3hot D3cold
[ 1.031563] pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400
[ 1.032580] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold
[ 1.032935] pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400
[ 1.033964] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold
[ 1.034327] pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400
[ 1.035341] pci 0000:00:15.4: PME# supported from D0 D3hot D3cold
[ 1.035688] pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400
[ 1.036717] pci 0000:00:15.5: PME# supported from D0 D3hot D3cold
[ 1.037072] pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400
[ 1.038085] pci 0000:00:15.6: PME# supported from D0 D3hot D3cold
[ 1.038431] pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400
[ 1.039463] pci 0000:00:15.7: PME# supported from D0 D3hot D3cold
[ 1.039810] pci 0000:00:16.0: [15ad:07a0] type 01 class 0x060400
[ 1.040831] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 1.041178] pci 0000:00:16.1: [15ad:07a0] type 01 class 0x060400
[ 1.042210] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[ 1.042557] pci 0000:00:16.2: [15ad:07a0] type 01 class 0x060400
[ 1.043571] pci 0000:00:16.2: PME# supported from D0 D3hot D3cold
[ 1.043985] pci 0000:00:16.3: [15ad:07a0] type 01 class 0x060400
[ 1.045015] pci 0000:00:16.3: PME# supported from D0 D3hot D3cold
[ 1.045362] pci 0000:00:16.4: [15ad:07a0] type 01 class 0x060400
[ 1.046392] pci 0000:00:16.4: PME# supported from D0 D3hot D3cold
[ 1.046739] pci 0000:00:16.5: [15ad:07a0] type 01 class 0x060400
[ 1.047753] pci 0000:00:16.5: PME# supported from D0 D3hot D3cold
[ 1.048099] pci 0000:00:16.6: [15ad:07a0] type 01 class 0x060400
[ 1.049136] pci 0000:00:16.6: PME# supported from D0 D3hot D3cold
[ 1.049482] pci 0000:00:16.7: [15ad:07a0] type 01 class 0x060400
[ 1.050494] pci 0000:00:16.7: PME# supported from D0 D3hot D3cold
[ 1.050839] pci 0000:00:17.0: [15ad:07a0] type 01 class 0x060400
[ 1.051869] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold
[ 1.052222] pci 0000:00:17.1: [15ad:07a0] type 01 class 0x060400
[ 1.053242] pci 0000:00:17.1: PME# supported from D0 D3hot D3cold
[ 1.053588] pci 0000:00:17.2: [15ad:07a0] type 01 class 0x060400
[ 1.054669] pci 0000:00:17.2: PME# supported from D0 D3hot D3cold
[ 1.055022] pci 0000:00:17.3: [15ad:07a0] type 01 class 0x060400
[ 1.056039] pci 0000:00:17.3: PME# supported from D0 D3hot D3cold
[ 1.056421] pci 0000:00:17.4: [15ad:07a0] type 01 class 0x060400
[ 1.057448] pci 0000:00:17.4: PME# supported from D0 D3hot D3cold
[ 1.057795] pci 0000:00:17.5: [15ad:07a0] type 01 class 0x060400
[ 1.058866] pci 0000:00:17.5: PME# supported from D0 D3hot D3cold
[ 1.059216] pci 0000:00:17.6: [15ad:07a0] type 01 class 0x060400
[ 1.060228] pci 0000:00:17.6: PME# supported from D0 D3hot D3cold
[ 1.060573] pci 0000:00:17.7: [15ad:07a0] type 01 class 0x060400
[ 1.061610] pci 0000:00:17.7: PME# supported from D0 D3hot D3cold
[ 1.061956] pci 0000:00:18.0: [15ad:07a0] type 01 class 0x060400
[ 1.062967] pci 0000:00:18.0: PME# supported from D0 D3hot D3cold
[ 1.063312] pci 0000:00:18.1: [15ad:07a0] type 01 class 0x060400
[ 1.064332] pci 0000:00:18.1: PME# supported from D0 D3hot D3cold
[ 1.064677] pci 0000:00:18.2: [15ad:07a0] type 01 class 0x060400
[ 1.065697] pci 0000:00:18.2: PME# supported from D0 D3hot D3cold
[ 1.066043] pci 0000:00:18.3: [15ad:07a0] type 01 class 0x060400
[ 1.067065] pci 0000:00:18.3: PME# supported from D0 D3hot D3cold
[ 1.067411] pci 0000:00:18.4: [15ad:07a0] type 01 class 0x060400
[ 1.068423] pci 0000:00:18.4: PME# supported from D0 D3hot D3cold
[ 1.068787] pci 0000:00:18.5: [15ad:07a0] type 01 class 0x060400
[ 1.069806] pci 0000:00:18.5: PME# supported from D0 D3hot D3cold
[ 1.070152] pci 0000:00:18.6: [15ad:07a0] type 01 class 0x060400
[ 1.071165] pci 0000:00:18.6: PME# supported from D0 D3hot D3cold
[ 1.071560] pci 0000:00:18.7: [15ad:07a0] type 01 class 0x060400
[ 1.072572] pci 0000:00:18.7: PME# supported from D0 D3hot D3cold
[ 1.073418] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[ 1.073866] pci 0000:02:00.0: [15ad:0774] type 00 class 0x0c0300
[ 1.076289] pci 0000:02:00.0: reg 20: [io 0x20c0-0x20df]
[ 1.077412] pci 0000:02:01.0: [1022:2000] type 00 class 0x020000
[ 1.077918] pci 0000:02:01.0: reg 10: [io 0x2000-0x207f]
[ 1.080826] pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref]
[ 1.081003] pci 0000:02:02.0: [1274:1371] type 00 class 0x040100
[ 1.081577] pci 0000:02:02.0: reg 10: [io 0x2080-0x20bf]
[ 1.085084] pci 0000:02:03.0: [15ad:0770] type 00 class 0x0c0320
[ 1.085868] pci 0000:02:03.0: reg 10: [mem 0xc9000000-0xc9000fff]
[ 1.090727] pci 0000:00:11.0: PCI bridge to [bus 02-02] (subtractive decode)
[ 1.090758] pci 0000:00:11.0: bridge window [io 0x2000-0x3fff]
[ 1.090789] pci 0000:00:11.0: bridge window [mem 0xc9000000-0xca3fffff]
[ 1.090847] pci 0000:00:11.0: bridge window [mem 0xd8400000-0xd89fffff 64bit pref]
[ 1.090850] pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[ 1.090852] pci 0000:00:11.0: bridge window [mem 0x000cc000-0x000cffff] (subtractive decode)
[ 1.090854] pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
[ 1.090855] pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
[ 1.090857] pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
[ 1.090859] pci 0000:00:11.0: bridge window [mem 0xc0000000-0xfebfffff] (subtractive decode)
[ 1.090861] pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
[ 1.090863] pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff] (subtractive decode)
[ 1.091507] pci 0000:00:15.0: PCI bridge to [bus 03-03]
[ 1.091537] pci 0000:00:15.0: bridge window [io 0x4000-0x4fff]
[ 1.091568] pci 0000:00:15.0: bridge window [mem 0xca400000-0xca4fffff]
[ 1.091625] pci 0000:00:15.0: bridge window [mem 0xd8a00000-0xd8afffff 64bit pref]
[ 1.092257] pci 0000:00:15.1: PCI bridge to [bus 04-04]
[ 1.092287] pci 0000:00:15.1: bridge window [io 0x8000-0x8fff]
[ 1.092318] pci 0000:00:15.1: bridge window [mem 0xca800000-0xca8fffff]
[ 1.092375] pci 0000:00:15.1: bridge window [mem 0xd8e00000-0xd8efffff 64bit pref]
[ 1.093013] pci 0000:00:15.2: PCI bridge to [bus 05-05]
[ 1.093043] pci 0000:00:15.2: bridge window [io 0xc000-0xcfff]
[ 1.093073] pci 0000:00:15.2: bridge window [mem 0xcac00000-0xcacfffff]
[ 1.093131] pci 0000:00:15.2: bridge window [mem 0xd9200000-0xd92fffff 64bit pref]
[ 1.093893] pci 0000:00:15.3: PCI bridge to [bus 06-06]
[ 1.093952] pci 0000:00:15.3: bridge window [mem 0xcb000000-0xcb0fffff]
[ 1.094010] pci 0000:00:15.3: bridge window [mem 0xd9600000-0xd96fffff 64bit pref]
[ 1.094661] pci 0000:00:15.4: PCI bridge to [bus 07-07]
[ 1.094719] pci 0000:00:15.4: bridge window [mem 0xcb400000-0xcb4fffff]
[ 1.094777] pci 0000:00:15.4: bridge window [mem 0xd9a00000-0xd9afffff 64bit pref]
[ 1.095411] pci 0000:00:15.5: PCI bridge to [bus 08-08]
[ 1.095469] pci 0000:00:15.5: bridge window [mem 0xcb800000-0xcb8fffff]
[ 1.095527] pci 0000:00:15.5: bridge window [mem 0xd9e00000-0xd9efffff 64bit pref]
[ 1.096160] pci 0000:00:15.6: PCI bridge to [bus 09-09]
[ 1.096256] pci 0000:00:15.6: bridge window [mem 0xcbc00000-0xcbcfffff]
[ 1.096316] pci 0000:00:15.6: bridge window [mem 0xda200000-0xda2fffff 64bit pref]
[ 1.096978] pci 0000:00:15.7: PCI bridge to [bus 0a-0a]
[ 1.097036] pci 0000:00:15.7: bridge window [mem 0xcc000000-0xcc0fffff]
[ 1.097094] pci 0000:00:15.7: bridge window [mem 0xda600000-0xda6fffff 64bit pref]
[ 1.097725] pci 0000:00:16.0: PCI bridge to [bus 0b-0b]
[ 1.097755] pci 0000:00:16.0: bridge window [io 0x5000-0x5fff]
[ 1.097786] pci 0000:00:16.0: bridge window [mem 0xca500000-0xca5fffff]
[ 1.097844] pci 0000:00:16.0: bridge window [mem 0xd8b00000-0xd8bfffff 64bit pref]
[ 1.098473] pci 0000:00:16.1: PCI bridge to [bus 0c-0c]
[ 1.098503] pci 0000:00:16.1: bridge window [io 0x9000-0x9fff]
[ 1.098534] pci 0000:00:16.1: bridge window [mem 0xca900000-0xca9fffff]
[ 1.098592] pci 0000:00:16.1: bridge window [mem 0xd8f00000-0xd8ffffff 64bit pref]
[ 1.099238] pci 0000:00:16.2: PCI bridge to [bus 0d-0d]
[ 1.099268] pci 0000:00:16.2: bridge window [io 0xd000-0xdfff]
[ 1.099298] pci 0000:00:16.2: bridge window [mem 0xcad00000-0xcadfffff]
[ 1.099356] pci 0000:00:16.2: bridge window [mem 0xd9300000-0xd93fffff 64bit pref]
[ 1.099985] pci 0000:00:16.3: PCI bridge to [bus 0e-0e]
[ 1.100042] pci 0000:00:16.3: bridge window [mem 0xcb100000-0xcb1fffff]
[ 1.100100] pci 0000:00:16.3: bridge window [mem 0xd9700000-0xd97fffff 64bit pref]
[ 1.100729] pci 0000:00:16.4: PCI bridge to [bus 0f-0f]
[ 1.100793] pci 0000:00:16.4: bridge window [mem 0xcb500000-0xcb5fffff]
[ 1.100851] pci 0000:00:16.4: bridge window [mem 0xd9b00000-0xd9bfffff 64bit pref]
[ 1.101500] pci 0000:00:16.5: PCI bridge to [bus 10-10]
[ 1.101558] pci 0000:00:16.5: bridge window [mem 0xcb900000-0xcb9fffff]
[ 1.101615] pci 0000:00:16.5: bridge window [mem 0xd9f00000-0xd9ffffff 64bit pref]
[ 1.102244] pci 0000:00:16.6: PCI bridge to [bus 11-11]
[ 1.102301] pci 0000:00:16.6: bridge window [mem 0xcbd00000-0xcbdfffff]
[ 1.102359] pci 0000:00:16.6: bridge window [mem 0xda300000-0xda3fffff 64bit pref]
[ 1.102986] pci 0000:00:16.7: PCI bridge to [bus 12-12]
[ 1.103044] pci 0000:00:16.7: bridge window [mem 0xcc100000-0xcc1fffff]
[ 1.103101] pci 0000:00:16.7: bridge window [mem 0xda700000-0xda7fffff 64bit pref]
[ 1.103745] pci 0000:00:17.0: PCI bridge to [bus 13-13]
[ 1.103775] pci 0000:00:17.0: bridge window [io 0x6000-0x6fff]
[ 1.103806] pci 0000:00:17.0: bridge window [mem 0xca600000-0xca6fffff]
[ 1.103863] pci 0000:00:17.0: bridge window [mem 0xd8c00000-0xd8cfffff 64bit pref]
[ 1.104491] pci 0000:00:17.1: PCI bridge to [bus 14-14]
[ 1.104521] pci 0000:00:17.1: bridge window [io 0xa000-0xafff]
[ 1.104552] pci 0000:00:17.1: bridge window [mem 0xcaa00000-0xcaafffff]
[ 1.104610] pci 0000:00:17.1: bridge window [mem 0xd9000000-0xd90fffff 64bit pref]
[ 1.105244] pci 0000:00:17.2: PCI bridge to [bus 15-15]
[ 1.105274] pci 0000:00:17.2: bridge window [io 0xe000-0xefff]
[ 1.105305] pci 0000:00:17.2: bridge window [mem 0xcae00000-0xcaefffff]
[ 1.105363] pci 0000:00:17.2: bridge window [mem 0xd9400000-0xd94fffff 64bit pref]
[ 1.105990] pci 0000:00:17.3: PCI bridge to [bus 16-16]
[ 1.106048] pci 0000:00:17.3: bridge window [mem 0xcb200000-0xcb2fffff]
[ 1.106105] pci 0000:00:17.3: bridge window [mem 0xd9800000-0xd98fffff 64bit pref]
[ 1.106793] pci 0000:00:17.4: PCI bridge to [bus 17-17]
[ 1.106852] pci 0000:00:17.4: bridge window [mem 0xcb600000-0xcb6fffff]
[ 1.106911] pci 0000:00:17.4: bridge window [mem 0xd9c00000-0xd9cfffff 64bit pref]
[ 1.107556] pci 0000:00:17.5: PCI bridge to [bus 18-18]
[ 1.107614] pci 0000:00:17.5: bridge window [mem 0xcba00000-0xcbafffff]
[ 1.107672] pci 0000:00:17.5: bridge window [mem 0xda000000-0xda0fffff 64bit pref]
[ 1.108305] pci 0000:00:17.6: PCI bridge to [bus 19-19]
[ 1.108362] pci 0000:00:17.6: bridge window [mem 0xcbe00000-0xcbefffff]
[ 1.108421] pci 0000:00:17.6: bridge window [mem 0xda400000-0xda4fffff 64bit pref]
[ 1.109081] pci 0000:00:17.7: PCI bridge to [bus 1a-1a]
[ 1.109139] pci 0000:00:17.7: bridge window [mem 0xcc200000-0xcc2fffff]
[ 1.109196] pci 0000:00:17.7: bridge window [mem 0xda800000-0xda8fffff 64bit pref]
[ 1.109832] pci 0000:00:18.0: PCI bridge to [bus 1b-1b]
[ 1.109862] pci 0000:00:18.0: bridge window [io 0x7000-0x7fff]
[ 1.109893] pci 0000:00:18.0: bridge window [mem 0xca700000-0xca7fffff]
[ 1.109950] pci 0000:00:18.0: bridge window [mem 0xd8d00000-0xd8dfffff 64bit pref]
[ 1.110582] pci 0000:00:18.1: PCI bridge to [bus 1c-1c]
[ 1.110613] pci 0000:00:18.1: bridge window [io 0xb000-0xbfff]
[ 1.110643] pci 0000:00:18.1: bridge window [mem 0xcab00000-0xcabfffff]
[ 1.110701] pci 0000:00:18.1: bridge window [mem 0xd9100000-0xd91fffff 64bit pref]
[ 1.111376] pci 0000:00:18.2: PCI bridge to [bus 1d-1d]
[ 1.111406] pci 0000:00:18.2: bridge window [io 0xf000-0xffff]
[ 1.111437] pci 0000:00:18.2: bridge window [mem 0xcaf00000-0xcaffffff]
[ 1.111495] pci 0000:00:18.2: bridge window [mem 0xd9500000-0xd95fffff 64bit pref]
[ 1.112126] pci 0000:00:18.3: PCI bridge to [bus 1e-1e]
[ 1.112184] pci 0000:00:18.3: bridge window [mem 0xcb300000-0xcb3fffff]
[ 1.112241] pci 0000:00:18.3: bridge window [mem 0xd9900000-0xd99fffff 64bit pref]
[ 1.112879] pci 0000:00:18.4: PCI bridge to [bus 1f-1f]
[ 1.112936] pci 0000:00:18.4: bridge window [mem 0xcb700000-0xcb7fffff]
[ 1.112994] pci 0000:00:18.4: bridge window [mem 0xd9d00000-0xd9dfffff 64bit pref]
[ 1.113624] pci 0000:00:18.5: PCI bridge to [bus 20-20]
[ 1.113726] pci 0000:00:18.5: bridge window [mem 0xcbb00000-0xcbbfffff]
[ 1.113785] pci 0000:00:18.5: bridge window [mem 0xda100000-0xda1fffff 64bit pref]
[ 1.114427] pci 0000:00:18.6: PCI bridge to [bus 21-21]
[ 1.114485] pci 0000:00:18.6: bridge window [mem 0xcbf00000-0xcbffffff]
[ 1.114542] pci 0000:00:18.6: bridge window [mem 0xda500000-0xda5fffff 64bit pref]
[ 1.115172] pci 0000:00:18.7: PCI bridge to [bus 22-22]
[ 1.115230] pci 0000:00:18.7: bridge window [mem 0xcc300000-0xcc3fffff]
[ 1.115288] pci 0000:00:18.7: bridge window [mem 0xda900000-0xda9fffff 64bit pref]
[ 1.118160] pci_bus 0000:00: on NUMA node 0
[ 1.118165] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 1.118825] pci0000:00: Requesting ACPI _OSC control (0x1d)
[ 1.119092] pci0000:00: ACPI _OSC control (0x15) granted
[ 1.217183] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15)
[ 1.217271] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15)
[ 1.217356] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15)
[ 1.217439] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15)
[ 1.217711] vgaarb: device added: PCI:0000:00:0f.0,decodes=io+mem,owns=io+mem,locks=none
[ 1.217731] vgaarb: loaded
[ 1.217732] vgaarb: bridge control possible 0000:00:0f.0
[ 1.217933] SCSI subsystem initialized
[ 1.218048] libata version 3.00 loaded.
[ 1.218069] ACPI: bus type usb registered
[ 1.218087] usbcore: registered new interface driver usbfs
[ 1.218096] usbcore: registered new interface driver hub
[ 1.218187] usbcore: registered new device driver usb
[ 1.218349] PCI: Using ACPI for IRQ routing
[ 1.312530] PCI: pci_cache_line_size set to 64 bytes
[ 1.312558] pci 0000:00:18.2: no compatible bridge window for [io 0xf000-0xffff]
[ 1.314004] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 1.314007] e820: reserve RAM buffer [mem 0x3fee0000-0x3fffffff]
[ 1.314120] NetLabel: Initializing
[ 1.314122] NetLabel: domain hash size = 128
[ 1.314123] NetLabel: protocols = UNLABELED CIPSOv4
[ 1.314131] NetLabel: unlabeled traffic allowed by default
[ 1.314370] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 1.314380] hpet0: 16 comparators, 64-bit 14.318180 MHz counter
[ 1.316500] Switching to clocksource hpet
[ 1.352859] AppArmor: AppArmor Filesystem Enabled
[ 1.352889] pnp: PnP ACPI init
[ 1.352901] ACPI: bus type pnp registered
[ 1.353736] pnp 00:00: [bus 00-ff]
[ 1.353739] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[ 1.353741] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[ 1.353743] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[ 1.353745] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[ 1.353747] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[ 1.353749] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[ 1.353751] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[ 1.353753] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[ 1.353755] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[ 1.353756] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[ 1.353758] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[ 1.353760] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[ 1.353762] pnp 00:00: [mem 0x000ec000-0x000effff window]
[ 1.353764] pnp 00:00: [mem 0xc0000000-0xfebfffff window]
[ 1.353766] pnp 00:00: [io 0x0cf8-0x0cff]
[ 1.353768] pnp 00:00: [io 0x0000-0x0cf7 window]
[ 1.353770] pnp 00:00: [io 0x0d00-0xfeff window]
[ 1.353822] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 PNP0a08 (active)
[ 1.353901] pnp 00:01: [io 0x0010-0x001f]
[ 1.353904] pnp 00:01: [io 0x0024-0x0025]
[ 1.353905] pnp 00:01: [io 0x0028-0x0029]
[ 1.353907] pnp 00:01: [io 0x002c-0x002d]
[ 1.353909] pnp 00:01: [io 0x002e-0x002f]
[ 1.353915] pnp 00:01: [io 0x0030-0x0031]
[ 1.353917] pnp 00:01: [io 0x0034-0x0035]
[ 1.353919] pnp 00:01: [io 0x0038-0x0039]
[ 1.353920] pnp 00:01: [io 0x003c-0x003d]
[ 1.353922] pnp 00:01: [io 0x0050-0x0053]
[ 1.353924] pnp 00:01: [io 0x0072-0x0077]
[ 1.353925] pnp 00:01: [io 0x0080]
[ 1.353927] pnp 00:01: [io 0x0090-0x009f]
[ 1.353929] pnp 00:01: [io 0x00a4-0x00a5]
[ 1.353931] pnp 00:01: [io 0x00a8-0x00a9]
[ 1.353932] pnp 00:01: [io 0x00ac-0x00ad]
[ 1.353934] pnp 00:01: [io 0x00b0-0x00b5]
[ 1.353936] pnp 00:01: [io 0x00b8-0x00b9]
[ 1.353937] pnp 00:01: [io 0x00bc-0x00bd]
[ 1.353939] pnp 00:01: [io 0x1000-0x103f]
[ 1.353941] pnp 00:01: [io 0x1040-0x104f]
[ 1.353943] pnp 00:01: [io 0x0cf0-0x0cf1]
[ 1.354020] system 00:01: [io 0x1000-0x103f] has been reserved
[ 1.354023] system 00:01: [io 0x1040-0x104f] has been reserved
[ 1.354026] system 00:01: [io 0x0cf0-0x0cf1] has been reserved
[ 1.354029] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 1.354037] pnp 00:02: [io 0x0000-0x000f]
[ 1.354039] pnp 00:02: [io 0x0081-0x008f]
[ 1.354041] pnp 00:02: [io 0x00c0-0x00df]
[ 1.354043] pnp 00:02: [dma 4]
[ 1.354061] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
[ 1.354072] pnp 00:03: [io 0x0020-0x0021]
[ 1.354074] pnp 00:03: [io 0x00a0-0x00a1]
[ 1.354076] pnp 00:03: [io 0x04d0-0x04d1]
[ 1.354078] pnp 00:03: [irq 2 disabled]
[ 1.354095] pnp 00:03: Plug and Play ACPI device, IDs PNP0001 (active)
[ 1.354104] pnp 00:04: [io 0x0070-0x0071]
[ 1.354137] pnp 00:04: [irq 8]
[ 1.354158] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 1.354165] pnp 00:05: [io 0x0061]
[ 1.354184] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
[ 1.354194] pnp 00:06: [io 0x0060]
[ 1.354196] pnp 00:06: [io 0x0064]
[ 1.354203] pnp 00:06: [irq 1]
[ 1.354222] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
[ 1.354242] pnp 00:07: [irq 12]
[ 1.354267] pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active)
[ 1.354496] pnp 00:08: [mem 0xfed00000-0xfed003ff]
[ 1.354556] system 00:08: [mem 0xfed00000-0xfed003ff] has been reserved
[ 1.354559] system 00:08: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[ 1.363365] pnp 00:09: [io 0x0378-0x037f]
[ 1.363374] pnp 00:09: [irq 7]
[ 1.365650] pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active)
[ 1.375371] pnp 00:0a: [io 0x03f8-0x03ff]
[ 1.375380] pnp 00:0a: [irq 4]
[ 1.378540] pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active)
[ 1.385888] pnp 00:0b: [io 0x02f8-0x02ff]
[ 1.385897] pnp 00:0b: [irq 3]
[ 1.387836] pnp 00:0b: Plug and Play ACPI device, IDs PNP0501 (active)
[ 1.399997] pnp 00:0c: [io 0x03f0-0x03f5]
[ 1.399999] pnp 00:0c: [io 0x03f7]
[ 1.400008] pnp 00:0c: [irq 6]
[ 1.400010] pnp 00:0c: [dma 2]
[ 1.401668] pnp 00:0c: Plug and Play ACPI device, IDs PNP0700 (active)
[ 1.401876] pnp 00:0d: [mem 0xe0000000-0xefffffff]
[ 1.401878] pnp 00:0d: [io 0x1060-0x107f]
[ 1.401880] pnp 00:0d: [mem 0xc8200000-0xc83fffff]
[ 1.401938] system 00:0d: [io 0x1060-0x107f] has been reserved
[ 1.401941] system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved
[ 1.401943] system 00:0d: [mem 0xc8200000-0xc83fffff] has been reserved
[ 1.401946] system 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 1.448571] pnp: PnP ACPI: found 14 devices
[ 1.448574] ACPI: ACPI bus type pnp unregistered
[ 1.448576] PnPBIOS: Disabled by ACPI PNP
[ 1.490019] pci 0000:00:15.3: bridge window [io 0x1000-0x0fff] to [bus 06-06] add_size 1000
[ 1.490065] pci 0000:00:15.4: bridge window [io 0x1000-0x0fff] to [bus 07-07] add_size 1000
[ 1.490112] pci 0000:00:15.5: bridge window [io 0x1000-0x0fff] to [bus 08-08] add_size 1000
[ 1.490158] pci 0000:00:15.6: bridge window [io 0x1000-0x0fff] to [bus 09-09] add_size 1000
[ 1.490204] pci 0000:00:15.7: bridge window [io 0x1000-0x0fff] to [bus 0a-0a] add_size 1000
[ 1.490250] pci 0000:00:16.3: bridge window [io 0x1000-0x0fff] to [bus 0e-0e] add_size 1000
[ 1.490297] pci 0000:00:16.4: bridge window [io 0x1000-0x0fff] to [bus 0f-0f] add_size 1000
[ 1.490343] pci 0000:00:16.5: bridge window [io 0x1000-0x0fff] to [bus 10-10] add_size 1000
[ 1.490389] pci 0000:00:16.6: bridge window [io 0x1000-0x0fff] to [bus 11-11] add_size 1000
[ 1.490436] pci 0000:00:16.7: bridge window [io 0x1000-0x0fff] to [bus 12-12] add_size 1000
[ 1.490482] pci 0000:00:17.3: bridge window [io 0x1000-0x0fff] to [bus 16-16] add_size 1000
[ 1.490528] pci 0000:00:17.4: bridge window [io 0x1000-0x0fff] to [bus 17-17] add_size 1000
[ 1.490574] pci 0000:00:17.5: bridge window [io 0x1000-0x0fff] to [bus 18-18] add_size 1000
[ 1.490621] pci 0000:00:17.6: bridge window [io 0x1000-0x0fff] to [bus 19-19] add_size 1000
[ 1.490667] pci 0000:00:17.7: bridge window [io 0x1000-0x0fff] to [bus 1a-1a] add_size 1000
[ 1.490713] pci 0000:00:18.2: bridge window [io 0x1000-0x0fff] to [bus 1d-1d] add_size 1000
[ 1.490759] pci 0000:00:18.3: bridge window [io 0x1000-0x0fff] to [bus 1e-1e] add_size 1000
[ 1.490806] pci 0000:00:18.4: bridge window [io 0x1000-0x0fff] to [bus 1f-1f] add_size 1000
[ 1.490852] pci 0000:00:18.5: bridge window [io 0x1000-0x0fff] to [bus 20-20] add_size 1000
[ 1.490898] pci 0000:00:18.6: bridge window [io 0x1000-0x0fff] to [bus 21-21] add_size 1000
[ 1.490944] pci 0000:00:18.7: bridge window [io 0x1000-0x0fff] to [bus 22-22] add_size 1000
[ 1.490965] pci 0000:00:15.3: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.490968] pci 0000:00:15.4: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.490972] pci 0000:00:15.5: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.490974] pci 0000:00:15.6: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.490977] pci 0000:00:15.7: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.490980] pci 0000:00:16.3: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.490983] pci 0000:00:16.4: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.490985] pci 0000:00:16.5: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.490988] pci 0000:00:16.6: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.490991] pci 0000:00:16.7: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.490993] pci 0000:00:17.3: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.490996] pci 0000:00:17.4: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.490999] pci 0000:00:17.5: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.491001] pci 0000:00:17.6: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.491004] pci 0000:00:17.7: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.491007] pci 0000:00:18.2: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.491010] pci 0000:00:18.3: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.491012] pci 0000:00:18.4: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.491015] pci 0000:00:18.5: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.491018] pci 0000:00:18.6: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.491020] pci 0000:00:18.7: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.491026] pci 0000:00:0f.0: BAR 6: assigned [mem 0xc0000000-0xc0007fff pref]
[ 1.491032] pci 0000:00:10.0: BAR 6: assigned [mem 0xc0008000-0xc000bfff pref]
[ 1.491036] pci 0000:00:15.3: BAR 13: can't assign io (size 0x1000)
[ 1.491041] pci 0000:00:15.4: BAR 13: can't assign io (size 0x1000)
[ 1.491044] pci 0000:00:15.5: BAR 13: can't assign io (size 0x1000)
[ 1.491048] pci 0000:00:15.6: BAR 13: can't assign io (size 0x1000)
[ 1.491052] pci 0000:00:15.7: BAR 13: can't assign io (size 0x1000)
[ 1.491055] pci 0000:00:16.3: BAR 13: can't assign io (size 0x1000)
[ 1.491059] pci 0000:00:16.4: BAR 13: can't assign io (size 0x1000)
[ 1.491063] pci 0000:00:16.5: BAR 13: can't assign io (size 0x1000)
[ 1.491066] pci 0000:00:16.6: BAR 13: can't assign io (size 0x1000)
[ 1.491070] pci 0000:00:16.7: BAR 13: can't assign io (size 0x1000)
[ 1.491074] pci 0000:00:17.3: BAR 13: can't assign io (size 0x1000)
[ 1.491077] pci 0000:00:17.4: BAR 13: can't assign io (size 0x1000)
[ 1.491081] pci 0000:00:17.5: BAR 13: can't assign io (size 0x1000)
[ 1.491085] pci 0000:00:17.6: BAR 13: can't assign io (size 0x1000)
[ 1.491088] pci 0000:00:17.7: BAR 13: can't assign io (size 0x1000)
[ 1.491092] pci 0000:00:18.2: BAR 13: can't assign io (size 0x1000)
[ 1.491096] pci 0000:00:18.3: BAR 13: can't assign io (size 0x1000)
[ 1.491099] pci 0000:00:18.4: BAR 13: can't assign io (size 0x1000)
[ 1.491103] pci 0000:00:18.5: BAR 13: can't assign io (size 0x1000)
[ 1.491107] pci 0000:00:18.6: BAR 13: can't assign io (size 0x1000)
[ 1.491110] pci 0000:00:18.7: BAR 13: can't assign io (size 0x1000)
[ 1.491117] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[ 1.491164] pci 0000:02:01.0: BAR 6: assigned [mem 0xd8400000-0xd840ffff pref]
[ 1.491167] pci 0000:00:11.0: PCI bridge to [bus 02-02]
[ 1.491187] pci 0000:00:11.0: bridge window [io 0x2000-0x3fff]
[ 1.491233] pci 0000:00:11.0: bridge window [mem 0xc9000000-0xca3fffff]
[ 1.491265] pci 0000:00:11.0: bridge window [mem 0xd8400000-0xd89fffff 64bit pref]
[ 1.491312] pci 0000:00:15.0: PCI bridge to [bus 03-03]
[ 1.491330] pci 0000:00:15.0: bridge window [io 0x4000-0x4fff]
[ 1.491375] pci 0000:00:15.0: bridge window [mem 0xca400000-0xca4fffff]
[ 1.491406] pci 0000:00:15.0: bridge window [mem 0xd8a00000-0xd8afffff 64bit pref]
[ 1.491452] pci 0000:00:15.1: PCI bridge to [bus 04-04]
[ 1.491471] pci 0000:00:15.1: bridge window [io 0x8000-0x8fff]
[ 1.491516] pci 0000:00:15.1: bridge window [mem 0xca800000-0xca8fffff]
[ 1.491548] pci 0000:00:15.1: bridge window [mem 0xd8e00000-0xd8efffff 64bit pref]
[ 1.491594] pci 0000:00:15.2: PCI bridge to [bus 05-05]
[ 1.491613] pci 0000:00:15.2: bridge window [io 0xc000-0xcfff]
[ 1.491658] pci 0000:00:15.2: bridge window [mem 0xcac00000-0xcacfffff]
[ 1.491689] pci 0000:00:15.2: bridge window [mem 0xd9200000-0xd92fffff 64bit pref]
[ 1.491736] pci 0000:00:15.3: PCI bridge to [bus 06-06]
[ 1.491782] pci 0000:00:15.3: bridge window [mem 0xcb000000-0xcb0fffff]
[ 1.491813] pci 0000:00:15.3: bridge window [mem 0xd9600000-0xd96fffff 64bit pref]
[ 1.491859] pci 0000:00:15.4: PCI bridge to [bus 07-07]
[ 1.491905] pci 0000:00:15.4: bridge window [mem 0xcb400000-0xcb4fffff]
[ 1.491937] pci 0000:00:15.4: bridge window [mem 0xd9a00000-0xd9afffff 64bit pref]
[ 1.491983] pci 0000:00:15.5: PCI bridge to [bus 08-08]
[ 1.492029] pci 0000:00:15.5: bridge window [mem 0xcb800000-0xcb8fffff]
[ 1.492061] pci 0000:00:15.5: bridge window [mem 0xd9e00000-0xd9efffff 64bit pref]
[ 1.492107] pci 0000:00:15.6: PCI bridge to [bus 09-09]
[ 1.492153] pci 0000:00:15.6: bridge window [mem 0xcbc00000-0xcbcfffff]
[ 1.492184] pci 0000:00:15.6: bridge window [mem 0xda200000-0xda2fffff 64bit pref]
[ 1.492231] pci 0000:00:15.7: PCI bridge to [bus 0a-0a]
[ 1.492276] pci 0000:00:15.7: bridge window [mem 0xcc000000-0xcc0fffff]
[ 1.492308] pci 0000:00:15.7: bridge window [mem 0xda600000-0xda6fffff 64bit pref]
[ 1.492378] pci 0000:00:16.0: PCI bridge to [bus 0b-0b]
[ 1.492414] pci 0000:00:16.0: bridge window [io 0x5000-0x5fff]
[ 1.492459] pci 0000:00:16.0: bridge window [mem 0xca500000-0xca5fffff]
[ 1.492491] pci 0000:00:16.0: bridge window [mem 0xd8b00000-0xd8bfffff 64bit pref]
[ 1.492537] pci 0000:00:16.1: PCI bridge to [bus 0c-0c]
[ 1.492556] pci 0000:00:16.1: bridge window [io 0x9000-0x9fff]
[ 1.492601] pci 0000:00:16.1: bridge window [mem 0xca900000-0xca9fffff]
[ 1.492632] pci 0000:00:16.1: bridge window [mem 0xd8f00000-0xd8ffffff 64bit pref]
[ 1.492678] pci 0000:00:16.2: PCI bridge to [bus 0d-0d]
[ 1.492697] pci 0000:00:16.2: bridge window [io 0xd000-0xdfff]
[ 1.492742] pci 0000:00:16.2: bridge window [mem 0xcad00000-0xcadfffff]
[ 1.492773] pci 0000:00:16.2: bridge window [mem 0xd9300000-0xd93fffff 64bit pref]
[ 1.492820] pci 0000:00:16.3: PCI bridge to [bus 0e-0e]
[ 1.492865] pci 0000:00:16.3: bridge window [mem 0xcb100000-0xcb1fffff]
[ 1.492897] pci 0000:00:16.3: bridge window [mem 0xd9700000-0xd97fffff 64bit pref]
[ 1.492943] pci 0000:00:16.4: PCI bridge to [bus 0f-0f]
[ 1.492989] pci 0000:00:16.4: bridge window [mem 0xcb500000-0xcb5fffff]
[ 1.493020] pci 0000:00:16.4: bridge window [mem 0xd9b00000-0xd9bfffff 64bit pref]
[ 1.493066] pci 0000:00:16.5: PCI bridge to [bus 10-10]
[ 1.493112] pci 0000:00:16.5: bridge window [mem 0xcb900000-0xcb9fffff]
[ 1.493143] pci 0000:00:16.5: bridge window [mem 0xd9f00000-0xd9ffffff 64bit pref]
[ 1.493190] pci 0000:00:16.6: PCI bridge to [bus 11-11]
[ 1.493236] pci 0000:00:16.6: bridge window [mem 0xcbd00000-0xcbdfffff]
[ 1.493267] pci 0000:00:16.6: bridge window [mem 0xda300000-0xda3fffff 64bit pref]
[ 1.493314] pci 0000:00:16.7: PCI bridge to [bus 12-12]
[ 1.493359] pci 0000:00:16.7: bridge window [mem 0xcc100000-0xcc1fffff]
[ 1.493391] pci 0000:00:16.7: bridge window [mem 0xda700000-0xda7fffff 64bit pref]
[ 1.493437] pci 0000:00:17.0: PCI bridge to [bus 13-13]
[ 1.493456] pci 0000:00:17.0: bridge window [io 0x6000-0x6fff]
[ 1.493501] pci 0000:00:17.0: bridge window [mem 0xca600000-0xca6fffff]
[ 1.493532] pci 0000:00:17.0: bridge window [mem 0xd8c00000-0xd8cfffff 64bit pref]
[ 1.493578] pci 0000:00:17.1: PCI bridge to [bus 14-14]
[ 1.493597] pci 0000:00:17.1: bridge window [io 0xa000-0xafff]
[ 1.493643] pci 0000:00:17.1: bridge window [mem 0xcaa00000-0xcaafffff]
[ 1.493675] pci 0000:00:17.1: bridge window [mem 0xd9000000-0xd90fffff 64bit pref]
[ 1.493721] pci 0000:00:17.2: PCI bridge to [bus 15-15]
[ 1.493740] pci 0000:00:17.2: bridge window [io 0xe000-0xefff]
[ 1.493785] pci 0000:00:17.2: bridge window [mem 0xcae00000-0xcaefffff]
[ 1.493816] pci 0000:00:17.2: bridge window [mem 0xd9400000-0xd94fffff 64bit pref]
[ 1.493862] pci 0000:00:17.3: PCI bridge to [bus 16-16]
[ 1.493908] pci 0000:00:17.3: bridge window [mem 0xcb200000-0xcb2fffff]
[ 1.493939] pci 0000:00:17.3: bridge window [mem 0xd9800000-0xd98fffff 64bit pref]
[ 1.493986] pci 0000:00:17.4: PCI bridge to [bus 17-17]
[ 1.494031] pci 0000:00:17.4: bridge window [mem 0xcb600000-0xcb6fffff]
[ 1.494075] pci 0000:00:17.4: bridge window [mem 0xd9c00000-0xd9cfffff 64bit pref]
[ 1.494121] pci 0000:00:17.5: PCI bridge to [bus 18-18]
[ 1.494167] pci 0000:00:17.5: bridge window [mem 0xcba00000-0xcbafffff]
[ 1.494198] pci 0000:00:17.5: bridge window [mem 0xda000000-0xda0fffff 64bit pref]
[ 1.494244] pci 0000:00:17.6: PCI bridge to [bus 19-19]
[ 1.494290] pci 0000:00:17.6: bridge window [mem 0xcbe00000-0xcbefffff]
[ 1.494321] pci 0000:00:17.6: bridge window [mem 0xda400000-0xda4fffff 64bit pref]
[ 1.494367] pci 0000:00:17.7: PCI bridge to [bus 1a-1a]
[ 1.494413] pci 0000:00:17.7: bridge window [mem 0xcc200000-0xcc2fffff]
[ 1.494444] pci 0000:00:17.7: bridge window [mem 0xda800000-0xda8fffff 64bit pref]
[ 1.494491] pci 0000:00:18.0: PCI bridge to [bus 1b-1b]
[ 1.494509] pci 0000:00:18.0: bridge window [io 0x7000-0x7fff]
[ 1.494555] pci 0000:00:18.0: bridge window [mem 0xca700000-0xca7fffff]
[ 1.494586] pci 0000:00:18.0: bridge window [mem 0xd8d00000-0xd8dfffff 64bit pref]
[ 1.494632] pci 0000:00:18.1: PCI bridge to [bus 1c-1c]
[ 1.494651] pci 0000:00:18.1: bridge window [io 0xb000-0xbfff]
[ 1.494696] pci 0000:00:18.1: bridge window [mem 0xcab00000-0xcabfffff]
[ 1.494727] pci 0000:00:18.1: bridge window [mem 0xd9100000-0xd91fffff 64bit pref]
[ 1.494773] pci 0000:00:18.2: PCI bridge to [bus 1d-1d]
[ 1.494819] pci 0000:00:18.2: bridge window [mem 0xcaf00000-0xcaffffff]
[ 1.494851] pci 0000:00:18.2: bridge window [mem 0xd9500000-0xd95fffff 64bit pref]
[ 1.494897] pci 0000:00:18.3: PCI bridge to [bus 1e-1e]
[ 1.494943] pci 0000:00:18.3: bridge window [mem 0xcb300000-0xcb3fffff]
[ 1.494974] pci 0000:00:18.3: bridge window [mem 0xd9900000-0xd99fffff 64bit pref]
[ 1.495020] pci 0000:00:18.4: PCI bridge to [bus 1f-1f]
[ 1.495066] pci 0000:00:18.4: bridge window [mem 0xcb700000-0xcb7fffff]
[ 1.495097] pci 0000:00:18.4: bridge window [mem 0xd9d00000-0xd9dfffff 64bit pref]
[ 1.495144] pci 0000:00:18.5: PCI bridge to [bus 20-20]
[ 1.495189] pci 0000:00:18.5: bridge window [mem 0xcbb00000-0xcbbfffff]
[ 1.495221] pci 0000:00:18.5: bridge window [mem 0xda100000-0xda1fffff 64bit pref]
[ 1.495267] pci 0000:00:18.6: PCI bridge to [bus 21-21]
[ 1.495312] pci 0000:00:18.6: bridge window [mem 0xcbf00000-0xcbffffff]
[ 1.495344] pci 0000:00:18.6: bridge window [mem 0xda500000-0xda5fffff 64bit pref]
[ 1.495390] pci 0000:00:18.7: PCI bridge to [bus 22-22]
[ 1.495436] pci 0000:00:18.7: bridge window [mem 0xcc300000-0xcc3fffff]
[ 1.495467] pci 0000:00:18.7: bridge window [mem 0xda900000-0xda9fffff 64bit pref]
[ 1.495513] pci 0000:00:01.0: setting latency timer to 64
[ 1.496374] pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff]
[ 1.496378] pci_bus 0000:00: resource 5 [mem 0x000cc000-0x000cffff]
[ 1.496380] pci_bus 0000:00: resource 6 [mem 0x000d0000-0x000d3fff]
[ 1.496383] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
[ 1.496386] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
[ 1.496388] pci_bus 0000:00: resource 9 [mem 0xc0000000-0xfebfffff]
[ 1.496391] pci_bus 0000:00: resource 10 [io 0x0000-0x0cf7]
[ 1.496393] pci_bus 0000:00: resource 11 [io 0x0d00-0xfeff]
[ 1.496396] pci_bus 0000:02: resource 0 [io 0x2000-0x3fff]
[ 1.496399] pci_bus 0000:02: resource 1 [mem 0xc9000000-0xca3fffff]
[ 1.496402] pci_bus 0000:02: resource 2 [mem 0xd8400000-0xd89fffff 64bit pref]
[ 1.496405] pci_bus 0000:02: resource 4 [mem 0x000a0000-0x000bffff]
[ 1.496407] pci_bus 0000:02: resource 5 [mem 0x000cc000-0x000cffff]
[ 1.496410] pci_bus 0000:02: resource 6 [mem 0x000d0000-0x000d3fff]
[ 1.496412] pci_bus 0000:02: resource 7 [mem 0x000d4000-0x000d7fff]
[ 1.496415] pci_bus 0000:02: resource 8 [mem 0x000d8000-0x000dbfff]
[ 1.496417] pci_bus 0000:02: resource 9 [mem 0xc0000000-0xfebfffff]
[ 1.496420] pci_bus 0000:02: resource 10 [io 0x0000-0x0cf7]
[ 1.496422] pci_bus 0000:02: resource 11 [io 0x0d00-0xfeff]
[ 1.496425] pci_bus 0000:03: resource 0 [io 0x4000-0x4fff]
[ 1.496428] pci_bus 0000:03: resource 1 [mem 0xca400000-0xca4fffff]
[ 1.496431] pci_bus 0000:03: resource 2 [mem 0xd8a00000-0xd8afffff 64bit pref]
[ 1.496433] pci_bus 0000:04: resource 0 [io 0x8000-0x8fff]
[ 1.496436] pci_bus 0000:04: resource 1 [mem 0xca800000-0xca8fffff]
[ 1.496438] pci_bus 0000:04: resource 2 [mem 0xd8e00000-0xd8efffff 64bit pref]
[ 1.496441] pci_bus 0000:05: resource 0 [io 0xc000-0xcfff]
[ 1.496443] pci_bus 0000:05: resource 1 [mem 0xcac00000-0xcacfffff]
[ 1.496446] pci_bus 0000:05: resource 2 [mem 0xd9200000-0xd92fffff 64bit pref]
[ 1.496449] pci_bus 0000:06: resource 1 [mem 0xcb000000-0xcb0fffff]
[ 1.496451] pci_bus 0000:06: resource 2 [mem 0xd9600000-0xd96fffff 64bit pref]
[ 1.496454] pci_bus 0000:07: resource 1 [mem 0xcb400000-0xcb4fffff]
[ 1.496457] pci_bus 0000:07: resource 2 [mem 0xd9a00000-0xd9afffff 64bit pref]
[ 1.496459] pci_bus 0000:08: resource 1 [mem 0xcb800000-0xcb8fffff]
[ 1.496462] pci_bus 0000:08: resource 2 [mem 0xd9e00000-0xd9efffff 64bit pref]
[ 1.496465] pci_bus 0000:09: resource 1 [mem 0xcbc00000-0xcbcfffff]
[ 1.496467] pci_bus 0000:09: resource 2 [mem 0xda200000-0xda2fffff 64bit pref]
[ 1.496470] pci_bus 0000:0a: resource 1 [mem 0xcc000000-0xcc0fffff]
[ 1.496473] pci_bus 0000:0a: resource 2 [mem 0xda600000-0xda6fffff 64bit pref]
[ 1.496475] pci_bus 0000:0b: resource 0 [io 0x5000-0x5fff]
[ 1.496478] pci_bus 0000:0b: resource 1 [mem 0xca500000-0xca5fffff]
[ 1.496480] pci_bus 0000:0b: resource 2 [mem 0xd8b00000-0xd8bfffff 64bit pref]
[ 1.496483] pci_bus 0000:0c: resource 0 [io 0x9000-0x9fff]
[ 1.496485] pci_bus 0000:0c: resource 1 [mem 0xca900000-0xca9fffff]
[ 1.496488] pci_bus 0000:0c: resource 2 [mem 0xd8f00000-0xd8ffffff 64bit pref]
[ 1.496491] pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff]
[ 1.496493] pci_bus 0000:0d: resource 1 [mem 0xcad00000-0xcadfffff]
[ 1.496496] pci_bus 0000:0d: resource 2 [mem 0xd9300000-0xd93fffff 64bit pref]
[ 1.496499] pci_bus 0000:0e: resource 1 [mem 0xcb100000-0xcb1fffff]
[ 1.496501] pci_bus 0000:0e: resource 2 [mem 0xd9700000-0xd97fffff 64bit pref]
[ 1.496504] pci_bus 0000:0f: resource 1 [mem 0xcb500000-0xcb5fffff]
[ 1.496507] pci_bus 0000:0f: resource 2 [mem 0xd9b00000-0xd9bfffff 64bit pref]
[ 1.496509] pci_bus 0000:10: resource 1 [mem 0xcb900000-0xcb9fffff]
[ 1.496512] pci_bus 0000:10: resource 2 [mem 0xd9f00000-0xd9ffffff 64bit pref]
[ 1.496515] pci_bus 0000:11: resource 1 [mem 0xcbd00000-0xcbdfffff]
[ 1.496517] pci_bus 0000:11: resource 2 [mem 0xda300000-0xda3fffff 64bit pref]
[ 1.496520] pci_bus 0000:12: resource 1 [mem 0xcc100000-0xcc1fffff]
[ 1.496523] pci_bus 0000:12: resource 2 [mem 0xda700000-0xda7fffff 64bit pref]
[ 1.496525] pci_bus 0000:13: resource 0 [io 0x6000-0x6fff]
[ 1.496528] pci_bus 0000:13: resource 1 [mem 0xca600000-0xca6fffff]
[ 1.496530] pci_bus 0000:13: resource 2 [mem 0xd8c00000-0xd8cfffff 64bit pref]
[ 1.496533] pci_bus 0000:14: resource 0 [io 0xa000-0xafff]
[ 1.496536] pci_bus 0000:14: resource 1 [mem 0xcaa00000-0xcaafffff]
[ 1.496538] pci_bus 0000:14: resource 2 [mem 0xd9000000-0xd90fffff 64bit pref]
[ 1.496541] pci_bus 0000:15: resource 0 [io 0xe000-0xefff]
[ 1.496543] pci_bus 0000:15: resource 1 [mem 0xcae00000-0xcaefffff]
[ 1.496546] pci_bus 0000:15: resource 2 [mem 0xd9400000-0xd94fffff 64bit pref]
[ 1.496549] pci_bus 0000:16: resource 1 [mem 0xcb200000-0xcb2fffff]
[ 1.496551] pci_bus 0000:16: resource 2 [mem 0xd9800000-0xd98fffff 64bit pref]
[ 1.496554] pci_bus 0000:17: resource 1 [mem 0xcb600000-0xcb6fffff]
[ 1.496570] pci_bus 0000:17: resource 2 [mem 0xd9c00000-0xd9cfffff 64bit pref]
[ 1.496573] pci_bus 0000:18: resource 1 [mem 0xcba00000-0xcbafffff]
[ 1.496576] pci_bus 0000:18: resource 2 [mem 0xda000000-0xda0fffff 64bit pref]
[ 1.496579] pci_bus 0000:19: resource 1 [mem 0xcbe00000-0xcbefffff]
[ 1.496581] pci_bus 0000:19: resource 2 [mem 0xda400000-0xda4fffff 64bit pref]
[ 1.496584] pci_bus 0000:1a: resource 1 [mem 0xcc200000-0xcc2fffff]
[ 1.496587] pci_bus 0000:1a: resource 2 [mem 0xda800000-0xda8fffff 64bit pref]
[ 1.496589] pci_bus 0000:1b: resource 0 [io 0x7000-0x7fff]
[ 1.496592] pci_bus 0000:1b: resource 1 [mem 0xca700000-0xca7fffff]
[ 1.496594] pci_bus 0000:1b: resource 2 [mem 0xd8d00000-0xd8dfffff 64bit pref]
[ 1.496597] pci_bus 0000:1c: resource 0 [io 0xb000-0xbfff]
[ 1.496599] pci_bus 0000:1c: resource 1 [mem 0xcab00000-0xcabfffff]
[ 1.496602] pci_bus 0000:1c: resource 2 [mem 0xd9100000-0xd91fffff 64bit pref]
[ 1.496605] pci_bus 0000:1d: resource 1 [mem 0xcaf00000-0xcaffffff]
[ 1.496607] pci_bus 0000:1d: resource 2 [mem 0xd9500000-0xd95fffff 64bit pref]
[ 1.496610] pci_bus 0000:1e: resource 1 [mem 0xcb300000-0xcb3fffff]
[ 1.496613] pci_bus 0000:1e: resource 2 [mem 0xd9900000-0xd99fffff 64bit pref]
[ 1.496615] pci_bus 0000:1f: resource 1 [mem 0xcb700000-0xcb7fffff]
[ 1.496618] pci_bus 0000:1f: resource 2 [mem 0xd9d00000-0xd9dfffff 64bit pref]
[ 1.496621] pci_bus 0000:20: resource 1 [mem 0xcbb00000-0xcbbfffff]
[ 1.496623] pci_bus 0000:20: resource 2 [mem 0xda100000-0xda1fffff 64bit pref]
[ 1.496626] pci_bus 0000:21: resource 1 [mem 0xcbf00000-0xcbffffff]
[ 1.496629] pci_bus 0000:21: resource 2 [mem 0xda500000-0xda5fffff 64bit pref]
[ 1.496631] pci_bus 0000:22: resource 1 [mem 0xcc300000-0xcc3fffff]
[ 1.496634] pci_bus 0000:22: resource 2 [mem 0xda900000-0xda9fffff 64bit pref]
[ 1.496675] NET: Registered protocol family 2
[ 1.496721] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[ 1.496768] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[ 1.496814] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[ 1.496860] TCP: Hash tables configured (established 131072 bind 65536)
[ 1.496863] TCP: reno registered
[ 1.496866] UDP hash table entries: 512 (order: 2, 16384 bytes)
[ 1.496880] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[ 1.496926] NET: Registered protocol family 1
[ 1.496958] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[ 1.497004] pci 0000:00:0f.0: Boot video device
[ 1.497102] PCI: CLS 32 bytes, default 64
[ 1.497148] Simple Boot Flag at 0x36 set to 0x1
[ 1.497167] Switching to clocksource tsc
[ 1.498013] audit: initializing netlink socket (disabled)
[ 1.498059] type=2000 audit(1355168800.184:1): initialized
[ 1.512845] highmem bounce pool size: 64 pages
[ 1.512866] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 1.513462] VFS: Disk quotas dquot_6.5.2
[ 1.513508] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 1.513830] fuse init (API version 7.19)
[ 1.513972] msgmni has been set to 1739
[ 1.515905] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[ 1.516051] io scheduler noop registered
[ 1.516054] io scheduler deadline registered (default)
[ 1.516063] io scheduler cfq registered
[ 1.516403] pcieport 0000:00:15.0: irq 40 for MSI/MSI-X
[ 1.516449] pcieport 0000:00:15.1: irq 41 for MSI/MSI-X
[ 1.516495] pcieport 0000:00:15.2: irq 42 for MSI/MSI-X
[ 1.516542] pcieport 0000:00:15.3: irq 43 for MSI/MSI-X
[ 1.516588] pcieport 0000:00:15.4: irq 44 for MSI/MSI-X
[ 1.516634] pcieport 0000:00:15.5: irq 45 for MSI/MSI-X
[ 1.516680] pcieport 0000:00:15.6: irq 46 for MSI/MSI-X
[ 1.516727] pcieport 0000:00:15.7: irq 47 for MSI/MSI-X
[ 1.516773] pcieport 0000:00:16.0: irq 48 for MSI/MSI-X
[ 1.516819] pcieport 0000:00:16.1: irq 49 for MSI/MSI-X
[ 1.516865] pcieport 0000:00:16.2: irq 50 for MSI/MSI-X
[ 1.516912] pcieport 0000:00:16.3: irq 51 for MSI/MSI-X
[ 1.516958] pcieport 0000:00:16.4: irq 52 for MSI/MSI-X
[ 1.517004] pcieport 0000:00:16.5: irq 53 for MSI/MSI-X
[ 1.517051] pcieport 0000:00:16.6: irq 54 for MSI/MSI-X
[ 1.517097] pcieport 0000:00:16.7: irq 55 for MSI/MSI-X
[ 1.517143] pcieport 0000:00:17.0: irq 56 for MSI/MSI-X
[ 1.517189] pcieport 0000:00:17.1: irq 57 for MSI/MSI-X
[ 1.517236] pcieport 0000:00:17.2: irq 58 for MSI/MSI-X
[ 1.517282] pcieport 0000:00:17.3: irq 59 for MSI/MSI-X
[ 1.517328] pcieport 0000:00:17.4: irq 60 for MSI/MSI-X
[ 1.517374] pcieport 0000:00:17.5: irq 61 for MSI/MSI-X
[ 1.517421] pcieport 0000:00:17.6: irq 62 for MSI/MSI-X
[ 1.517467] pcieport 0000:00:17.7: irq 63 for MSI/MSI-X
[ 1.517513] pcieport 0000:00:18.0: irq 64 for MSI/MSI-X
[ 1.517559] pcieport 0000:00:18.1: irq 65 for MSI/MSI-X
[ 1.517606] pcieport 0000:00:18.2: irq 66 for MSI/MSI-X
[ 1.517652] pcieport 0000:00:18.3: irq 67 for MSI/MSI-X
[ 1.517698] pcieport 0000:00:18.4: irq 68 for MSI/MSI-X
[ 1.517744] pcieport 0000:00:18.5: irq 69 for MSI/MSI-X
[ 1.517791] pcieport 0000:00:18.6: irq 70 for MSI/MSI-X
[ 1.517837] pcieport 0000:00:18.7: irq 71 for MSI/MSI-X
[ 1.517883] pcieport 0000:00:15.0: Signaling PME through PCIe PME interrupt
[ 1.517916] pcie_pme 0000:00:15.0:pcie01: service driver pcie_pme loaded
[ 1.517962] pcieport 0000:00:15.1: Signaling PME through PCIe PME interrupt
[ 1.517995] pcie_pme 0000:00:15.1:pcie01: service driver pcie_pme loaded
[ 1.518041] pcieport 0000:00:15.2: Signaling PME through PCIe PME interrupt
[ 1.518073] pcie_pme 0000:00:15.2:pcie01: service driver pcie_pme loaded
[ 1.518120] pcieport 0000:00:15.3: Signaling PME through PCIe PME interrupt
[ 1.518152] pcie_pme 0000:00:15.3:pcie01: service driver pcie_pme loaded
[ 1.518198] pcieport 0000:00:15.4: Signaling PME through PCIe PME interrupt
[ 1.518231] pcie_pme 0000:00:15.4:pcie01: service driver pcie_pme loaded
[ 1.518277] pcieport 0000:00:15.5: Signaling PME through PCIe PME interrupt
[ 1.518309] pcie_pme 0000:00:15.5:pcie01: service driver pcie_pme loaded
[ 1.518356] pcieport 0000:00:15.6: Signaling PME through PCIe PME interrupt
[ 1.518388] pcie_pme 0000:00:15.6:pcie01: service driver pcie_pme loaded
[ 1.518434] pcieport 0000:00:15.7: Signaling PME through PCIe PME interrupt
[ 1.518467] pcie_pme 0000:00:15.7:pcie01: service driver pcie_pme loaded
[ 1.518513] pcieport 0000:00:16.0: Signaling PME through PCIe PME interrupt
[ 1.518545] pcie_pme 0000:00:16.0:pcie01: service driver pcie_pme loaded
[ 1.518592] pcieport 0000:00:16.1: Signaling PME through PCIe PME interrupt
[ 1.518624] pcie_pme 0000:00:16.1:pcie01: service driver pcie_pme loaded
[ 1.518670] pcieport 0000:00:16.2: Signaling PME through PCIe PME interrupt
[ 1.518702] pcie_pme 0000:00:16.2:pcie01: service driver pcie_pme loaded
[ 1.518749] pcieport 0000:00:16.3: Signaling PME through PCIe PME interrupt
[ 1.518781] pcie_pme 0000:00:16.3:pcie01: service driver pcie_pme loaded
[ 1.518827] pcieport 0000:00:16.4: Signaling PME through PCIe PME interrupt
[ 1.518860] pcie_pme 0000:00:16.4:pcie01: service driver pcie_pme loaded
[ 1.518906] pcieport 0000:00:16.5: Signaling PME through PCIe PME interrupt
[ 1.518938] pcie_pme 0000:00:16.5:pcie01: service driver pcie_pme loaded
[ 1.518984] pcieport 0000:00:16.6: Signaling PME through PCIe PME interrupt
[ 1.519017] pcie_pme 0000:00:16.6:pcie01: service driver pcie_pme loaded
[ 1.519063] pcieport 0000:00:16.7: Signaling PME through PCIe PME interrupt
[ 1.519095] pcie_pme 0000:00:16.7:pcie01: service driver pcie_pme loaded
[ 1.519141] pcieport 0000:00:17.0: Signaling PME through PCIe PME interrupt
[ 1.519174] pcie_pme 0000:00:17.0:pcie01: service driver pcie_pme loaded
[ 1.519220] pcieport 0000:00:17.1: Signaling PME through PCIe PME interrupt
[ 1.519252] pcie_pme 0000:00:17.1:pcie01: service driver pcie_pme loaded
[ 1.519298] pcieport 0000:00:17.2: Signaling PME through PCIe PME interrupt
[ 1.519330] pcie_pme 0000:00:17.2:pcie01: service driver pcie_pme loaded
[ 1.519377] pcieport 0000:00:17.3: Signaling PME through PCIe PME interrupt
[ 1.519409] pcie_pme 0000:00:17.3:pcie01: service driver pcie_pme loaded
[ 1.519455] pcieport 0000:00:17.4: Signaling PME through PCIe PME interrupt
[ 1.519490] pcie_pme 0000:00:17.4:pcie01: service driver pcie_pme loaded
[ 1.519536] pcieport 0000:00:17.5: Signaling PME through PCIe PME interrupt
[ 1.519569] pcie_pme 0000:00:17.5:pcie01: service driver pcie_pme loaded
[ 1.519615] pcieport 0000:00:17.6: Signaling PME through PCIe PME interrupt
[ 1.519647] pcie_pme 0000:00:17.6:pcie01: service driver pcie_pme loaded
[ 1.519693] pcieport 0000:00:17.7: Signaling PME through PCIe PME interrupt
[ 1.519726] pcie_pme 0000:00:17.7:pcie01: service driver pcie_pme loaded
[ 1.519772] pcieport 0000:00:18.0: Signaling PME through PCIe PME interrupt
[ 1.519804] pcie_pme 0000:00:18.0:pcie01: service driver pcie_pme loaded
[ 1.519850] pcieport 0000:00:18.1: Signaling PME through PCIe PME interrupt
[ 1.519883] pcie_pme 0000:00:18.1:pcie01: service driver pcie_pme loaded
[ 1.519929] pcieport 0000:00:18.2: Signaling PME through PCIe PME interrupt
[ 1.519961] pcie_pme 0000:00:18.2:pcie01: service driver pcie_pme loaded
[ 1.520007] pcieport 0000:00:18.3: Signaling PME through PCIe PME interrupt
[ 1.520040] pcie_pme 0000:00:18.3:pcie01: service driver pcie_pme loaded
[ 1.520086] pcieport 0000:00:18.4: Signaling PME through PCIe PME interrupt
[ 1.520118] pcie_pme 0000:00:18.4:pcie01: service driver pcie_pme loaded
[ 1.520164] pcieport 0000:00:18.5: Signaling PME through PCIe PME interrupt
[ 1.520197] pcie_pme 0000:00:18.5:pcie01: service driver pcie_pme loaded
[ 1.520383] pcieport 0000:00:18.6: Signaling PME through PCIe PME interrupt
[ 1.520416] pcie_pme 0000:00:18.6:pcie01: service driver pcie_pme loaded
[ 1.520462] pcieport 0000:00:18.7: Signaling PME through PCIe PME interrupt
[ 1.520495] pcie_pme 0000:00:18.7:pcie01: service driver pcie_pme loaded
[ 1.520518] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 1.520564] pciehp 0000:00:15.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.520610] pciehp 0000:00:15.0:pcie04: service driver pciehp loaded
[ 1.520656] pciehp 0000:00:15.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.520703] pciehp 0000:00:15.1:pcie04: service driver pciehp loaded
[ 1.520749] pciehp 0000:00:15.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.520795] pciehp 0000:00:15.2:pcie04: service driver pciehp loaded
[ 1.520842] pciehp 0000:00:15.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.520888] pciehp 0000:00:15.3:pcie04: service driver pciehp loaded
[ 1.520934] pciehp 0000:00:15.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.520980] pciehp 0000:00:15.4:pcie04: service driver pciehp loaded
[ 1.521027] pciehp 0000:00:15.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.521073] pciehp 0000:00:15.5:pcie04: service driver pciehp loaded
[ 1.521119] pciehp 0000:00:15.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.521165] pciehp 0000:00:15.6:pcie04: service driver pciehp loaded
[ 1.521212] pciehp 0000:00:15.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.521258] pciehp 0000:00:15.7:pcie04: service driver pciehp loaded
[ 1.521304] pciehp 0000:00:16.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.521350] pciehp 0000:00:16.0:pcie04: service driver pciehp loaded
[ 1.521397] pciehp 0000:00:16.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.521443] pciehp 0000:00:16.1:pcie04: service driver pciehp loaded
[ 1.521489] pciehp 0000:00:16.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.521535] pciehp 0000:00:16.2:pcie04: service driver pciehp loaded
[ 1.521582] pciehp 0000:00:16.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.521628] pciehp 0000:00:16.3:pcie04: service driver pciehp loaded
[ 1.521674] pciehp 0000:00:16.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.521720] pciehp 0000:00:16.4:pcie04: service driver pciehp loaded
[ 1.521767] pciehp 0000:00:16.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.521813] pciehp 0000:00:16.5:pcie04: service driver pciehp loaded
[ 1.521859] pciehp 0000:00:16.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.521905] pciehp 0000:00:16.6:pcie04: service driver pciehp loaded
[ 1.521952] pciehp 0000:00:16.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.521998] pciehp 0000:00:16.7:pcie04: service driver pciehp loaded
[ 1.522044] pciehp 0000:00:17.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.522090] pciehp 0000:00:17.0:pcie04: service driver pciehp loaded
[ 1.522137] pciehp 0000:00:17.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.522183] pciehp 0000:00:17.1:pcie04: service driver pciehp loaded
[ 1.522229] pciehp 0000:00:17.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.522275] pciehp 0000:00:17.2:pcie04: service driver pciehp loaded
[ 1.522322] pciehp 0000:00:17.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.522368] pciehp 0000:00:17.3:pcie04: service driver pciehp loaded
[ 1.522414] pciehp 0000:00:17.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.522460] pciehp 0000:00:17.4:pcie04: service driver pciehp loaded
[ 1.522507] pciehp 0000:00:17.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.522553] pciehp 0000:00:17.5:pcie04: service driver pciehp loaded
[ 1.522599] pciehp 0000:00:17.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.522645] pciehp 0000:00:17.6:pcie04: service driver pciehp loaded
[ 1.522692] pciehp 0000:00:17.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.522738] pciehp 0000:00:17.7:pcie04: service driver pciehp loaded
[ 1.522784] pciehp 0000:00:18.0:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.522830] pciehp 0000:00:18.0:pcie04: service driver pciehp loaded
[ 1.522877] pciehp 0000:00:18.1:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.522923] pciehp 0000:00:18.1:pcie04: service driver pciehp loaded
[ 1.522969] pciehp 0000:00:18.2:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.523015] pciehp 0000:00:18.2:pcie04: service driver pciehp loaded
[ 1.523062] pciehp 0000:00:18.3:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.523108] pciehp 0000:00:18.3:pcie04: service driver pciehp loaded
[ 1.523154] pciehp 0000:00:18.4:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.523200] pciehp 0000:00:18.4:pcie04: service driver pciehp loaded
[ 1.523247] pciehp 0000:00:18.5:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.523293] pciehp 0000:00:18.5:pcie04: service driver pciehp loaded
[ 1.523339] pciehp 0000:00:18.6:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.523385] pciehp 0000:00:18.6:pcie04: service driver pciehp loaded
[ 1.523432] pciehp 0000:00:18.7:pcie04: HPC vendor_id 15ad device_id 7a0 ss_vid 15ad ss_did 7a0
[ 1.523478] pciehp 0000:00:18.7:pcie04: service driver pciehp loaded
[ 1.523486] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 1.523536] ACPI: AC Adapter [ACAD] (on-line)
[ 1.523625] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 1.523630] ACPI: Power Button [PWRF]
[ 1.652356] GHES: HEST is not enabled!
[ 1.652448] isapnp: Scanning for PnP cards...
[ 1.652476] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 1.682893] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 1.710217] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[ 1.740980] 00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 1.768086] 00:0b: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[ 1.768398] Linux agpgart interface v0.103
[ 1.768867] agpgart-intel 0000:00:00.0: Intel 440BX Chipset
[ 1.769698] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0
[ 1.770928] brd: module loaded
[ 1.771523] loop: module loaded
[ 1.771667] ata_piix 0000:00:07.1: version 2.13
[ 1.772220] scsi0 : ata_piix
[ 1.772382] scsi1 : ata_piix
[ 1.772435] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x10c0 irq 14
[ 1.772438] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x10c8 irq 15
[ 1.772928] Fixed MDIO Bus: probed
[ 1.772969] tun: Universal TUN/TAP device driver, 1.6
[ 1.772971] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 1.773005] PPP generic driver version 2.4.2
[ 1.773039] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.773172] ehci_hcd 0000:02:03.0: EHCI Host Controller
[ 1.773180] ehci_hcd 0000:02:03.0: new USB bus registered, assigned bus number 1
[ 1.773433] ehci_hcd 0000:02:03.0: cache line size of 32 is not supported
[ 1.773454] ehci_hcd 0000:02:03.0: irq 17, io mem 0xc9000000
[ 1.784136] ehci_hcd 0000:02:03.0: USB 2.0 started, EHCI 1.00
[ 1.784188] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.784204] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.784207] usb usb1: Product: EHCI Host Controller
[ 1.784209] usb usb1: Manufacturer: Linux 3.5.0-19-generic ehci_hcd
[ 1.784212] usb usb1: SerialNumber: 0000:02:03.0
[ 1.784310] hub 1-0:1.0: USB hub found
[ 1.784328] hub 1-0:1.0: 6 ports detected
[ 1.784425] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.784463] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.784566] uhci_hcd 0000:02:00.0: UHCI Host Controller
[ 1.784584] uhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
[ 1.784880] uhci_hcd 0000:02:00.0: irq 18, io base 0x000020c0
[ 1.785029] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.785044] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.785047] usb usb2: Product: UHCI Host Controller
[ 1.785049] usb usb2: Manufacturer: Linux 3.5.0-19-generic uhci_hcd
[ 1.785052] usb usb2: SerialNumber: 0000:02:00.0
[ 1.785132] hub 2-0:1.0: USB hub found
[ 1.785149] hub 2-0:1.0: 2 ports detected
[ 1.785335] usbcore: registered new interface driver libusual
[ 1.785387] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12
[ 1.786285] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.786293] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.786390] mousedev: PS/2 mouse device common for all mice
[ 1.786933] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[ 1.786964] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 1.787015] device-mapper: uevent: version 1.0.3
[ 1.787120] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[ 1.787153] EISA: Probing bus 0 at eisa.0
[ 1.787156] EISA: Cannot allocate resource for mainboard
[ 1.787159] Cannot allocate resource for EISA slot 1
[ 1.787162] Cannot allocate resource for EISA slot 2
[ 1.787164] Cannot allocate resource for EISA slot 3
[ 1.787167] Cannot allocate resource for EISA slot 4
[ 1.787169] Cannot allocate resource for EISA slot 5
[ 1.787171] Cannot allocate resource for EISA slot 6
[ 1.787174] Cannot allocate resource for EISA slot 7
[ 1.787177] Cannot allocate resource for EISA slot 8
[ 1.787179] EISA: Detected 0 cards.
[ 1.787186] cpuidle: using governor ladder
[ 1.787188] cpuidle: using governor menu
[ 1.787191] EFI Variables Facility v0.08 2004-May-17
[ 1.787460] ashmem: initialized
[ 1.787640] TCP: cubic registered
[ 1.787731] NET: Registered protocol family 10
[ 1.787883] NET: Registered protocol family 17
[ 1.787898] Key type dns_resolver registered
[ 1.787942] Using IPI No-Shortcut mode
[ 1.788030] PM: Hibernation image not present or could not be loaded.
[ 1.788050] registered taskstats version 1
[ 1.788644] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[ 1.791690] Key type trusted registered
[ 1.795498] Key type encrypted registered
[ 1.804558] Magic number: 8:41:799
[ 1.804772] rtc_cmos 00:04: setting system clock to 2012-12-10 19:46:41 UTC (1355168801)
[ 1.804916] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 1.804930] EDD information not available.
[ 1.966272] ata2.00: ATAPI: VMware Virtual IDE CDROM Drive, 00000001, max UDMA/33
[ 1.966688] ata2.00: configured for UDMA/33
[ 2.009273] isapnp: No Plug & Play device found
[ 2.009678] scsi 1:0:0:0: CD-ROM NECVMWar VMware IDE CDR10 1.00 PQ: 0 ANSI: 5
[ 2.010131] sr0: scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray
[ 2.010134] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 2.010306] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 2.010426] sr 1:0:0:0: Attached scsi generic sg0 type 5
[ 2.010767] Freeing unused kernel memory: 756k freed
[ 2.010904] Write protecting the kernel text: 5964k
[ 2.010955] Write protecting the kernel read-only data: 2424k
[ 2.010957] NX-protecting the kernel data: 4276k
[ 2.030867] udevd[103]: starting version 175
[ 2.042868] VMware vmxnet3 virtual NIC driver - version 1.1.29.0-k-NAPI
[ 2.046990] VMware PVSCSI driver - version 1.0.2.0-k
[ 2.052576] VMware vmxnet virtual NIC driver
[ 2.053364] Found vmxnet/PCI at 0x2024, irq 19.
[ 2.053456] features:
[ 2.053475] numRxBuffers = 100, numRxBuffers2 = 1
[ 2.053801] vmxnet 0000:02:01.0: eth0: set_features() failed (-1); wanted 0x0000000000004000, left 0x0000000000004800
[ 2.056768] Fusion MPT base driver 3.04.20
[ 2.056771] Copyright (c) 1999-2008 LSI Corporation
[ 2.058908] Fusion MPT SPI Host driver 3.04.20
[ 2.061919] mptbase: ioc0: Initiating bringup
[ 2.085268] Floppy drive(s): fd0 is 1.44M
[ 2.101515] FDC 0 is a post-1991 82077
[ 2.107780] usb 1-1: new high-speed USB device number 2 using ehci_hcd
[ 2.139843] ioc0: LSI53C1030 B0: Capabilities={Initiator}
[ 2.240871] usb 1-1: New USB device found, idVendor=0bda, idProduct=817f
[ 2.240875] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2.240878] usb 1-1: Product: ALFA AWUS036NHR
[ 2.240881] usb 1-1: SerialNumber: 00e04c000001
[ 2.304558] scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17
[ 2.359586] usb 2-1: new full-speed USB device number 2 using uhci_hcd
[ 2.416052] scsi 2:0:0:0: Direct-Access VMware, VMware Virtual S 1.0 PQ: 0 ANSI: 2
[ 2.416065] scsi target2:0:0: Beginning Domain Validation
[ 2.416797] scsi target2:0:0: Domain Validation skipping write tests
[ 2.416800] scsi target2:0:0: Ending Domain Validation
[ 2.416838] scsi target2:0:0: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127)
[ 2.418585] sd 2:0:0:0: [sda] 41943040 512-byte logical blocks: (21.4 GB/20.0 GiB)
[ 2.418631] sd 2:0:0:0: [sda] Write Protect is off
[ 2.418635] sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00
[ 2.418709] sd 2:0:0:0: [sda] Cache data unavailable
[ 2.418711] sd 2:0:0:0: [sda] Assuming drive cache: write through
[ 2.419079] sd 2:0:0:0: [sda] Cache data unavailable
[ 2.419082] sd 2:0:0:0: [sda] Assuming drive cache: write through
[ 2.419220] sd 2:0:0:0: Attached scsi generic sg1 type 0
[ 2.428013] sda: sda1 sda2 < sda5 >
[ 2.428441] sd 2:0:0:0: [sda] Cache data unavailable
[ 2.428445] sd 2:0:0:0: [sda] Assuming drive cache: write through
[ 2.428447] sd 2:0:0:0: [sda] Attached SCSI disk
[ 2.486825] EXT4-fs (sda1): INFO: recovery required on readonly filesystem
[ 2.486842] EXT4-fs (sda1): write access will be enabled during recovery
[ 2.489905] usb 2-1: New USB device found, idVendor=0e0f, idProduct=0003
[ 2.489909] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.489912] usb 2-1: Product: VMware Virtual USB Mouse
[ 2.489915] usb 2-1: Manufacturer: VMware
[ 2.497181] usbcore: registered new interface driver usbhid
[ 2.497184] usbhid: USB HID core driver
[ 2.500369] input: VMware VMware Virtual USB Mouse as /devices/pci0000:00/0000:00:11.0/0000:02:00.0/usb2/2-1/2-1:1.0/input/input2
[ 2.500769] hid-generic 0003:0E0F:0003.0001: input,hidraw0: USB HID v1.10 Mouse [VMware VMware Virtual USB Mouse] on usb-0000:02:00.0-1/input0
[ 2.501613] input: VMware VMware Virtual USB Mouse as /devices/pci0000:00/0000:00:11.0/0000:02:00.0/usb2/2-1/2-1:1.1/input/input3
[ 2.502681] hid-generic 0003:0E0F:0003.0002: input,hidraw1: USB HID v1.10 Mouse [VMware VMware Virtual USB Mouse] on usb-0000:02:00.0-1/input1
[ 2.533156] EXT4-fs (sda1): recovery complete
[ 2.533456] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[ 2.603342] usb 2-2: new full-speed USB device number 3 using uhci_hcd
[ 2.732751] usb 2-2: New USB device found, idVendor=0e0f, idProduct=0002
[ 2.732755] usb 2-2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 2.732759] usb 2-2: Product: VMware Virtual USB Hub
[ 2.735295] hub 2-2:1.0: USB hub found
[ 2.735715] hub 2-2:1.0: 7 ports detected
[ 6.609470] Adding 1046524k swap on /dev/sda5. Priority:-1 extents:1 across:1046524k
[ 6.617244] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 6.669610] udevd[362]: starting version 175
[ 6.724877] [drm] Initialized drm 1.1.0 20060810
[ 6.726462] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 6.728882] lp: driver loaded but no devices found
[ 6.730149] [drm] Capabilities:
[ 6.730152] [drm] Rect copy.
[ 6.730154] [drm] Cursor.
[ 6.730155] [drm] Cursor bypass.
[ 6.730157] [drm] Cursor bypass 2.
[ 6.730158] [drm] 8bit emulation.
[ 6.730160] [drm] Alpha cursor.
[ 6.730161] [drm] 3D.
[ 6.730163] [drm] Extended Fifo.
[ 6.730165] [drm] Multimon.
[ 6.730166] [drm] Pitchlock.
[ 6.730168] [drm] Irq mask.
[ 6.730169] [drm] Display Topology.
[ 6.730171] [drm] GMR.
[ 6.730172] [drm] Traces.
[ 6.730173] [drm] GMR2.
[ 6.730175] [drm] Screen Object 2.
[ 6.730177] [drm] Max GMR ids is 64
[ 6.730178] [drm] Max GMR descriptors is 4096
[ 6.730180] [drm] Max number of GMR pages is 196608
[ 6.730182] [drm] Max dedicated hypervisor surface memory is 786432 kiB
[ 6.730184] [drm] VRAM at 0xd0000000 size is 131072 kiB
[ 6.730186] [drm] MMIO at 0xc8800000 size is 2048 kiB
[ 6.730189] [drm] global init.
[ 6.734516] [TTM] Zone kernel: Available graphics memory: 445784 kiB
[ 6.734520] [TTM] Zone highmem: Available graphics memory: 513308 kiB
[ 6.734522] [TTM] Initializing pool allocator
[ 6.734528] [TTM] Initializing DMA pool allocator
[ 6.735128] [drm] width 640
[ 6.735147] [drm] height 480
[ 6.735165] [drm] bpp 32
[ 6.735998] [drm] Fifo max 0x00200000 min 0x00001000 cap 0x0000077f
[ 6.739765] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[ 6.739770] [drm] No driver support for vblank timestamp query.
[ 6.739954] [drm] Screen objects system initialized
[ 6.739960] [drm] Detected device 3D availability.
[ 6.747466] fbcon: svgadrmfb (fb0) is primary device
[ 6.750915] Console: switching to colour frame buffer device 100x37
[ 6.752454] [drm] Initialized vmwgfx 2.4.0 20120209 for 0000:00:0f.0 on minor 0
[ 6.752538] piix4_smbus 0000:00:07.3: Host SMBus controller not enabled!
[ 6.773277] [456]: VMCI: shared components initialized.
[ 6.773305] Probing for vmci/PCI.
[ 6.773404] Found vmci/PCI at 0x1080, irq 16.
[ 6.773452] VMCI: using capabilities 0xc.
[ 6.773565] [456]: VMCI: Host capability check passed.
[ 6.774056] vmci 0000:00:07.7: irq 72 for MSI/MSI-X
[ 6.774150] vmci 0000:00:07.7: irq 73 for MSI/MSI-X
[ 6.774683] Registered vmci device.
[ 6.774817] [456]: VMCI: Using guest personality
[ 6.774821] [456]: VMCI: host components initialized.
[ 6.774957] [456]: VMCI: Module registered (name=vmci,major=10,minor=54).
[ 6.774962] [456]: VMCI: Using host personality
[ 6.774965] [456]: VMCI: Module (name=vmci) is initialized
[ 6.780265] parport_pc 00:09: reported by Plug and Play ACPI
[ 6.780490] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
[ 7.293848] type=1400 audit(1355168806.991:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=543 comm="apparmor_parser"
[ 7.294278] type=1400 audit(1355168806.991:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=543 comm="apparmor_parser"
[ 7.294521] type=1400 audit(1355168806.991:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=543 comm="apparmor_parser"
[ 7.298912] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input4
[ 7.339255] lp0: using parport0 (interrupt-driven).
[ 7.392279] microcode: CPU0: patch_level=0x06000626
[ 7.543093] Compat-wireless backport release: compat-wireless-v3.6.8-1
[ 7.543096] Backport based on linux-stable.git v3.6.8
[ 7.543098] compat.git: linux-stable.git
[ 7.689056] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[ 7.738440] ppdev: user-space parallel port driver
[ 7.784846] cfg80211: Calling CRDA to update world regulatory domain
[ 7.792947] microcode: failed to load file amd-ucode/microcode_amd_fam15h.bin
[ 7.793009] microcode: CPU1: patch_level=0x06000626
[ 7.795658] microcode: failed to load file amd-ucode/microcode_amd_fam15h.bin
[ 7.795748] microcode: CPU2: patch_level=0x06000626
[ 7.798021] microcode: failed to load file amd-ucode/microcode_amd_fam15h.bin
[ 7.798137] microcode: CPU3: patch_level=0x06000626
[ 7.800865] microcode: failed to load file amd-ucode/microcode_amd_fam15h.bin
[ 7.834628] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 7.839695] cfg80211: World regulatory domain updated:
[ 7.839699] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 7.839702] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 7.839705] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 7.839707] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 7.839710] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 7.839712] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 8.146167] init: failsafe main process (785) killed by TERM signal
[ 8.436414] rtl8192cu: Chip version 0x10
[ 8.441012] type=1400 audit(1355168808.139:5): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=847 comm="apparmor_parser"
[ 8.441586] type=1400 audit(1355168808.139:6): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=847 comm="apparmor_parser"
[ 8.684949] type=1400 audit(1355168808.351:7): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=881 comm="apparmor_parser"
[ 8.685219] type=1400 audit(1355168808.351:8): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm/lightdm-guest-session-wrapper" pid=878 comm="apparmor_parser"
[ 8.685402] type=1400 audit(1355168808.351:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=881 comm="apparmor_parser"
[ 8.685509] type=1400 audit(1355168808.351:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/i386-linux-gnu/lightdm-remote-session-uccsconfigure/uccsconfigure-session-wrapper" pid=880 comm="apparmor_parser"
[ 8.685535] type=1400 audit(1355168808.351:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm/lightdm-guest-session-wrapper//chromium_browser" pid=878 comm="apparmor_parser"
[ 8.744331] Bluetooth: Core ver 2.16
[ 8.744398] NET: Registered protocol family 31
[ 8.744401] Bluetooth: HCI device and connection manager initialized
[ 8.744404] Bluetooth: HCI socket layer initialized
[ 8.744406] Bluetooth: L2CAP socket layer initialized
[ 8.744411] Bluetooth: SCO socket layer initialized
[ 8.886162] Bluetooth: RFCOMM TTY layer initialized
[ 8.886167] Bluetooth: RFCOMM socket layer initialized
[ 8.886170] Bluetooth: RFCOMM ver 1.11
[ 8.988303] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 8.988307] Bluetooth: BNEP filters: protocol multicast
[ 10.432591] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 10.433026] acpiphp: Slot [32] registered
[ 10.433054] acpiphp: Slot [33] registered
[ 10.433082] acpiphp: Slot [34] registered
[ 10.433109] acpiphp: Slot [35] registered
[ 10.433136] acpiphp: Slot [36] registered
[ 10.433164] acpiphp: Slot [37] registered
[ 10.433194] acpiphp: Slot [38] registered
[ 10.433222] acpiphp: Slot [39] registered
[ 10.433248] acpiphp: Slot [40] registered
[ 10.433277] acpiphp: Slot [41] registered
[ 10.433307] acpiphp: Slot [42] registered
[ 10.433335] acpiphp: Slot [43] registered
[ 10.433361] acpiphp: Slot [44] registered
[ 10.433391] acpiphp: Slot [45] registered
[ 10.433416] acpiphp: Slot [46] registered
[ 10.433444] acpiphp: Slot [47] registered
[ 10.433476] acpiphp: Slot [48] registered
[ 10.433504] acpiphp: Slot [49] registered
[ 10.433529] acpiphp: Slot [50] registered
[ 10.433560] acpiphp: Slot [51] registered
[ 10.433588] acpiphp: Slot [52] registered
[ 10.433616] acpiphp: Slot [53] registered
[ 10.433646] acpiphp: Slot [54] registered
[ 10.433673] acpiphp: Slot [55] registered
[ 10.433699] acpiphp: Slot [56] registered
[ 10.433731] acpiphp: Slot [57] registered
[ 10.433758] acpiphp: Slot [58] registered
[ 10.433786] acpiphp: Slot [59] registered
[ 10.433813] acpiphp: Slot [60] registered
[ 10.433838] acpiphp: Slot [61] registered
[ 10.433870] acpiphp: Slot [62] registered
[ 10.433900] acpiphp: Slot [63] registered
[ 10.993304] init: plymouth-stop pre-start process (1269) terminated with status 1
[ 19.124548] end_request: I/O error, dev fd0, sector 0
[ 19.178102] end_request: I/O error, dev fd0, sector 0
[ 66.908924] rtl8192cu: MAC address: 00:c0:ca:6a:e2:38
[ 66.908929] rtl8192cu: Board Type 1
[ 66.913923] rtlwifi: rx_max_size 15360, rx_urb_num 8, in_ep 1
[ 66.913928] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[ 66.913930] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[ 66.913932] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[ 66.913934] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[ 66.913935] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[ 66.913936] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[ 66.913938] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[ 66.913939] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[ 66.913940] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[ 66.913942] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[ 66.913943] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[ 66.913944] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[ 66.913945] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[ 66.913947] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[ 66.913948] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[ 66.913949] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[ 66.913951] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[ 66.913952] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[ 66.913953] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[ 66.913954] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[ 66.913956] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[ 66.913957] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[ 66.913958] cfg80211: Disabling freq 2467 MHz as custom regd has no rule that fits a 20 MHz wide channel
[ 66.913959] cfg80211: Disabling freq 2472 MHz as custom regd has no rule that fits a 20 MHz wide channel
[ 66.913961] cfg80211: Disabling freq 2484 MHz as custom regd has no rule that fits a 20 MHz wide channel
[ 66.914006] rtl8192cu: Loading firmware rtlwifi/rtl8192cufw.bin
[ 66.915006] usbcore: registered new interface driver rtl8192cu
[ 66.916699] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain
[ 66.952236] ieee80211 phy0: Selected rate control algorithm 'rtl_rc'
[ 66.956448] rtlwifi: wireless switch is on
[ 66.978843] rtl8192cu: MAC auto ON okay!
[ 67.643325] rtl8192cu: Tx queue select: 0x05
[ 69.391154] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 69.392163] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: 8192cu misbehaviours with RTL8188RU chipset
2012-12-10 21:05 ` Alessandro Lannocca
@ 2012-12-10 21:06 ` Alessandro Lannocca
2012-12-10 21:12 ` Larry Finger
0 siblings, 1 reply; 9+ messages in thread
From: Alessandro Lannocca @ 2012-12-10 21:06 UTC (permalink / raw)
To: linux-wireless
P.S. I also tested a clean tree (no patches) with the same results.
2012/12/10 Alessandro Lannocca <alessandro.lannocca@gmail.com>:
> Thank you Larry for your suggestion, however I can't get any debug log
> out of my machine, it's probably an ubuntu fault (or I'm missing
> something); I even tried switching from rsyslogd to sysklogd and all
> debug=[1...5] combintations, all to no avail.
>
> This is my actual <modprobe -v rtl8192cu debug=4> output:
>
> <snip>
> insmod /lib/modules/3.5.0-19-generic/updates/net/wireless/cfg80211.ko
> insmod /lib/modules/3.5.0-19-generic/updates/net/mac80211/mac80211.ko
> insmod /lib/modules/3.5.0-19-generic/updates/drivers/net/wireless/rtlwifi/rtlwifi.ko
> insmod /lib/modules/3.5.0-19-generic/updates/drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common.ko
> insmod /lib/modules/3.5.0-19-generic/updates/drivers/net/wireless/rtlwifi/rtl8192cu/rtl8192cu.ko
> debug=4
> </snip>
>
> Attached you can find dmesg i grepped from my (now virtualized) test
> system. kern.log/syslog don't offer any more info.
>
> After some more testing this is the situation:
>
> - Card goes mute some seconds after a succesfull disconnection
> (interval between disconnection and muting seems random, some seconds
> however)
> - Card doesn't correctly see associated clients in monitor mode (wpa
> networks, don't know if this applies to wep aswell), it corretly sees
> itself associated and only get its own 4-way wpa handshake, not
> others.
> - Led is fixed all the time, it should blink during rx/tx
> - regd.c has only a bunch of countries coded, if I set my regdom to IT
> I can't get chans 12-13 to work, while if I set it to EC (Italy is an
> ETSI member) I get proper channel list.
> - maximum txpower is hardcorded to 20dBm in regd.c, it isn't possible
> to modify it accordingly to regdom.
>
> As a side note, commit 4f03c1ed8901a01ad4abcef95c02c007a2d481c2 is
> giving some headaches in monitor mode, due to the fact that it renders
> impossible to switch channels while a mon* and a wlan* interface
> coexist (however this is not a bug, just my 2 cents)
>
> If you're willing to tell me which distribution/version combo you're
> using I would be very happy to virtualize it and get some useful debug
> info out of it, also I'm currently targeting compat-wireless 3.6.8-1;
> although these issues remains in daily snapshots until at least last
> week, feel free to tell me which version should I be targeting.
>
> Thank you all for your time .
>
> Alex
>
> 2012/12/10 Larry Finger <Larry.Finger@lwfinger.net>:
>
>> Are you sure your patches are correct? The location that you used affects
>> *every* driver that uses mac80211, not just rtl8192cu.
>>
>> I just tested by having rtl8192cu unloaded, then I loaded it with 'sudo
>> modprobe -v rtl8192cu debug=5'. When I did that and plugged in the device,
>> my log was immediately "flooded" with the following:
>>
>> [ 3269.706508] rtl8192cu: Chip version 0x10
>> [ 3270.130396] rtl8192cu: MAC address: 00:1f:1f:c8:8e:cb
>> [ 3270.130423] rtl8192cu: Board Type 0
>> [ 3270.131246] rtlwifi: rx_max_size 15360, rx_urb_num 8, in_ep 1
>> [ 3270.131827] rtl8192cu: Loading firmware rtlwifi/rtl8192cufw.bin
>> [ 3270.132914] rtlwifi:rtl_fw_cb():<0-0> Firmware callback routine entered!
>> [ 3270.137746] ieee80211 phy2: Selected rate control algorithm 'rtl_rc'
>> [ 3270.150347] rtl8192cu:rtl92cu_gpio_radio_on_off_checking():<0-0>
>> GPIO_IN=0b
>> [ 3270.150366] rtl8192cu:rtl92cu_gpio_radio_on_off_checking():<0-0> N-SS RF
>> =0
>> [ 3270.150373] rtl8192cu:rtl92cu_gpio_radio_on_off_checking():<0-0>
>> pHalData->bHwRadioOff and eRfPowerStateToSet do not match:
>> pHalData->bHwRadioOff 0, eRfPowerStateToSet 0
>> [ 3270.150379] rtlwifi: wireless switch is on
>> [ 3270.150977] rtl8192cu:rtl92cu_gpio_radio_on_off_checking():<0-0>
>> GPIO_IN=0b
>> [ 3270.150984] rtl8192cu:rtl92cu_gpio_radio_on_off_checking():<0-0> N-SS RF
>> =0
>> [ 3270.150990] rtl8192cu:rtl92cu_gpio_radio_on_off_checking():<0-0>
>> pHalData->bHwRadioOff and eRfPowerStateToSet do not match:
>> pHalData->bHwRadioOff 0, eRfPowerStateToSet 0
>> [ 3270.608096] rtl8192cu:_rtl92cu_init_power_on():<0-0> Autoload Done!
>> [ 3270.617855] rtl8192cu: MAC auto ON okay!
>> [ 3270.723379] rtl8192cu: Tx queue select: 0x05
>> [ 3270.723591] rtl8192cu:rtl92c_set_network_type():<0-0> Set Network type to
>> NO LINK!
>> [ 3270.726441] rtl8192c_common:rtl92c_phy_set_bw_mode():<0-0> FALSE driver
>> sleep or unload
>> [ 3270.727029] rtl8192c_common:rtl92c_download_fw():<0-0> Firmware
>> Version(63), Signature(0x88c1),Size(32)
>> [ 3270.727251] rtl8192c_common:_rtl92c_write_fw():<0-0> FW size is 15982
>> bytes
>> [ 3270.745940] rtl8192c_common:_rtl92c_fw_free_to_go():<0-0> Checksum report
>> OK ! REG_MCUFWDL:0x00030004
>> [ 3270.751440] rtl8192c_common:_rtl92c_fw_free_to_go():<0-0> Polling FW
>> ready success!! REG_MCUFWDL:0x000300c6
>> [ 3270.751443] rtl8192c_common:rtl92c_download_fw():<0-0> Firmware is ready
>> to run!
>> [ 3270.751446] rtl8192cu:_rtl92cu_phy_config_mac_with_headerfile():<0-0>
>> Read Rtl819XMACPHY_Array
>> [ 3270.751448] rtl8192cu:_rtl92cu_phy_config_mac_with_headerfile():<0-0>
>> Img:RTL8192CEMAC_2T_ARRAY
>> [ 3270.757884] rtl8192c_common:_rtl92c_phy_bb8192c_config_parafile():<0-0>
>> ==>
>> [ 3270.757889] rtl8192c_common:rtl92c_phy_set_bb_reg():<0-0> regaddr(0x24),
>> bitmask(0xffffffff), data(0x11800f)
>> [ 3270.757968] rtl8192c_common:rtl92c_phy_set_bb_reg():<0-0> regaddr(0x24),
>> bitmask(0xffffffff), data(0x11800f)
>>
>> As you can see, that is about 1 second worth of logging. I suggest that you
>> use "debug=4" to start with. It is a lot less like "drinking from a
>> firehose".
>>
>> Larry
>>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: 8192cu misbehaviours with RTL8188RU chipset
2012-12-10 21:06 ` Alessandro Lannocca
@ 2012-12-10 21:12 ` Larry Finger
2012-12-10 21:16 ` Alessandro Lannocca
0 siblings, 1 reply; 9+ messages in thread
From: Larry Finger @ 2012-12-10 21:12 UTC (permalink / raw)
To: Alessandro Lannocca; +Cc: linux-wireless
On 12/10/2012 03:06 PM, Alessandro Lannocca wrote:
> P.S. I also tested a clean tree (no patches) with the same results.
Please post the output of 'modinfo rtl8172cu | grep -v alias'
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: 8192cu misbehaviours with RTL8188RU chipset
2012-12-10 21:12 ` Larry Finger
@ 2012-12-10 21:16 ` Alessandro Lannocca
2012-12-10 21:36 ` Larry Finger
0 siblings, 1 reply; 9+ messages in thread
From: Alessandro Lannocca @ 2012-12-10 21:16 UTC (permalink / raw)
To: Larry Finger, linux-wireless
2012/12/10 Larry Finger <Larry.Finger@lwfinger.net>:
> modinfo rtl8172cu | grep -v alias
Here you are:
<snip>
filename:
/lib/modules/3.5.0-19-generic/updates/drivers/net/wireless/rtlwifi/rtl8192cu/rtl8192cu.ko
firmware: rtlwifi/rtl8192cufw.bin
description: Realtek 8192C/8188C 802.11n USB wireless
license: GPL
author: Larry Finger <Larry.Finger@lwfinger.net>
author: Ziv Huang <ziv_huang@realtek.com>
author: Georgia <georgia@realtek.com>
srcversion: DB3CA4D8CA86F098980FA95
depends: rtlwifi,mac80211,rtl8192c-common,compat
vermagic: 3.5.0-19-generic SMP mod_unload modversions 686
parm: swenc:Set to 1 for software crypto (default 0)
(bool)
parm: debug:Set debug level (0-5) (default 0) (int)
</snip>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: 8192cu misbehaviours with RTL8188RU chipset
2012-12-10 21:16 ` Alessandro Lannocca
@ 2012-12-10 21:36 ` Larry Finger
2012-12-10 22:07 ` Alessandro Lannocca
0 siblings, 1 reply; 9+ messages in thread
From: Larry Finger @ 2012-12-10 21:36 UTC (permalink / raw)
To: Alessandro Lannocca; +Cc: linux-wireless
On 12/10/2012 03:16 PM, Alessandro Lannocca wrote:
> 2012/12/10 Larry Finger <Larry.Finger@lwfinger.net>:
>> modinfo rtl8172cu | grep -v alias
>
> Here you are:
>
> <snip>
>
> filename:
> /lib/modules/3.5.0-19-generic/updates/drivers/net/wireless/rtlwifi/rtl8192cu/rtl8192cu.ko
> firmware: rtlwifi/rtl8192cufw.bin
> description: Realtek 8192C/8188C 802.11n USB wireless
> license: GPL
> author: Larry Finger <Larry.Finger@lwfinger.net>
> author: Ziv Huang <ziv_huang@realtek.com>
> author: Georgia <georgia@realtek.com>
> srcversion: DB3CA4D8CA86F098980FA95
> depends: rtlwifi,mac80211,rtl8192c-common,compat
> vermagic: 3.5.0-19-generic SMP mod_unload modversions 686
> parm: swenc:Set to 1 for software crypto (default 0)
> (bool)
> parm: debug:Set debug level (0-5) (default 0) (int)
Your configuration probably does not include "CONFIG_RTLWIFI_DEBUG=y". Without
that parameter being set, *ALL* the debug statements compile away.
Larry
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: 8192cu misbehaviours with RTL8188RU chipset
2012-12-10 21:36 ` Larry Finger
@ 2012-12-10 22:07 ` Alessandro Lannocca
2012-12-14 1:21 ` Alessandro Lannocca
0 siblings, 1 reply; 9+ messages in thread
From: Alessandro Lannocca @ 2012-12-10 22:07 UTC (permalink / raw)
To: Larry Finger; +Cc: linux-wireless
[-- Attachment #1: Type: text/plain, Size: 484 bytes --]
You are completely right, and I feel a little bit idiot =), by the
way, I enabled the debug option and now I'm attaching dmesg &
debug.log and 2 pcap captures aswell, one with an handshake (from the
alfa card) and one without; I was able to connect 2 times in a row
(hitting the button really quick), after 2nd disconnection, I was
unable to reconnect.
In the pcap files, my other 2 clients (phone & tablet) are completely invisible.
Attached debug=4 logs, zipped to save bandwidth
[-- Attachment #2: debug.zip --]
[-- Type: application/zip, Size: 66115 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: 8192cu misbehaviours with RTL8188RU chipset
2012-12-10 22:07 ` Alessandro Lannocca
@ 2012-12-14 1:21 ` Alessandro Lannocca
0 siblings, 0 replies; 9+ messages in thread
From: Alessandro Lannocca @ 2012-12-14 1:21 UTC (permalink / raw)
To: Larry Finger; +Cc: linux-wireless
[-- Attachment #1: Type: text/plain, Size: 737 bytes --]
After some more testing I can confirm the card going mute even after
changing mac address, attaching debug=4 kernel log; only
unplugging/replugging brings it back alive.
2012/12/10 Alessandro Lannocca <alessandro.lannocca@gmail.com>:
> You are completely right, and I feel a little bit idiot =), by the
> way, I enabled the debug option and now I'm attaching dmesg &
> debug.log and 2 pcap captures aswell, one with an handshake (from the
> alfa card) and one without; I was able to connect 2 times in a row
> (hitting the button really quick), after 2nd disconnection, I was
> unable to reconnect.
>
> In the pcap files, my other 2 clients (phone & tablet) are completely invisible.
>
> Attached debug=4 logs, zipped to save bandwidth
[-- Attachment #2: kern.log.zip --]
[-- Type: application/zip, Size: 35917 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2012-12-14 1:21 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-10 0:34 8192cu misbehaviours with RTL8188RU chipset Alessandro Lannocca
2012-12-10 17:01 ` Larry Finger
2012-12-10 21:05 ` Alessandro Lannocca
2012-12-10 21:06 ` Alessandro Lannocca
2012-12-10 21:12 ` Larry Finger
2012-12-10 21:16 ` Alessandro Lannocca
2012-12-10 21:36 ` Larry Finger
2012-12-10 22:07 ` Alessandro Lannocca
2012-12-14 1:21 ` Alessandro Lannocca
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).