* Re: bugreport upstream: 0bda:819a RTL8188CUS WLAN doesn't work out of the box
@ 2013-01-26 22:07 Xose Vazquez Perez
2013-02-06 19:05 ` Larry Finger
0 siblings, 1 reply; 8+ messages in thread
From: Xose Vazquez Perez @ 2013-01-26 22:07 UTC (permalink / raw)
To: linux-usb, linux-wireless, tom.rosary
Thomas Rosenkranz wrote:
> 0bda:819a RTL8188CUS WLAN doesn't work out of the box in downstream
> and upstreamkernel
> https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1102179
This should go to <linux-wireless@vger.kernel.org>
Try:
# modprobe rtl8192cu
# echo "0bda 819a" > /sys/bus/usb/drivers/rtl8192cu/new_id
# dmesg (see output)
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: bugreport upstream: 0bda:819a RTL8188CUS WLAN doesn't work out of the box
2013-01-26 22:07 bugreport upstream: 0bda:819a RTL8188CUS WLAN doesn't work out of the box Xose Vazquez Perez
@ 2013-02-06 19:05 ` Larry Finger
2013-02-06 20:03 ` Thomas Rosenkranz
2013-02-06 23:03 ` Xose Vazquez Perez
0 siblings, 2 replies; 8+ messages in thread
From: Larry Finger @ 2013-02-06 19:05 UTC (permalink / raw)
To: tom.rosary; +Cc: Xose Vazquez Perez, linux-usb, linux-wireless
[-- Attachment #1: Type: text/plain, Size: 783 bytes --]
On 01/26/2013 04:07 PM, Xose Vazquez Perez wrote:
> Thomas Rosenkranz wrote:
>
>> 0bda:819a RTL8188CUS WLAN doesn't work out of the box in downstream
>> and upstreamkernel
>> https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1102179
>
> This should go to <linux-wireless@vger.kernel.org>
>
> Try:
> # modprobe rtl8192cu
> # echo "0bda 819a" > /sys/bus/usb/drivers/rtl8192cu/new_id
> # dmesg (see output)
Please install the attached patch, and retry the above method. I fixed the probe
function to get rid of the oops. If the device is really foreign, the process
that writes new_id will not finish until the device is unplugged; however, the
rest of the system is chugging along.
If 0bda:819a works with rtl8192cu, let me know, and I'll update the USB device
table.
Larry
[-- Attachment #2: 0001-rtlwifi-rtl8192cu-Fix-NULL-dereference-BUG-when-usin.patch --]
[-- Type: text/x-patch, Size: 3001 bytes --]
>From 2bd60bf2a4b91c9ae4e552568c4b76e238fc01a9 Mon Sep 17 00:00:00 2001
From: Larry Finger <Larry.Finger@lwfinger.net>
Date: Wed, 6 Feb 2013 12:41:36 -0600
Subject: [PATCH V2] rtlwifi: rtl8192cu: Fix NULL dereference BUG when using
new_id
To: linville@tuxdriver.com
Cc: netdev@vger.kernel.org
When the new_id entry in /sysfs is used for a foreign USB device, rtlwifi
BUGS with a NULL pointer dereference because the per-driver configuration
data is not available. The probe function has been restructured as
suggested by Ben Hutchings <bhutchings@solarflare.com>.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Cc: Stable <stable@vger.kernel.org>
---
drivers/net/wireless/rtlwifi/rtl8192cu/sw.c | 8 +++++++-
drivers/net/wireless/rtlwifi/usb.c | 5 +++--
drivers/net/wireless/rtlwifi/usb.h | 3 ++-
3 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/sw.c b/drivers/net/wireless/rtlwifi/rtl8192cu/sw.c
index d9e659f..577c0dc 100644
--- a/drivers/net/wireless/rtlwifi/rtl8192cu/sw.c
+++ b/drivers/net/wireless/rtlwifi/rtl8192cu/sw.c
@@ -363,9 +363,15 @@ static struct usb_device_id rtl8192c_usb_ids[] = {
MODULE_DEVICE_TABLE(usb, rtl8192c_usb_ids);
+static int rtl8192cu_probe(struct usb_interface *intf,
+ const struct usb_device_id *id)
+{
+ return rtl_usb_probe(intf, id, &rtl92cu_hal_cfg);
+}
+
static struct usb_driver rtl8192cu_driver = {
.name = "rtl8192cu",
- .probe = rtl_usb_probe,
+ .probe = rtl8192cu_probe,
.disconnect = rtl_usb_disconnect,
.id_table = rtl8192c_usb_ids,
diff --git a/drivers/net/wireless/rtlwifi/usb.c b/drivers/net/wireless/rtlwifi/usb.c
index d42bbe2..476eaef 100644
--- a/drivers/net/wireless/rtlwifi/usb.c
+++ b/drivers/net/wireless/rtlwifi/usb.c
@@ -937,7 +937,8 @@ static struct rtl_intf_ops rtl_usb_ops = {
};
int rtl_usb_probe(struct usb_interface *intf,
- const struct usb_device_id *id)
+ const struct usb_device_id *id,
+ struct rtl_hal_cfg *rtl_hal_cfg)
{
int err;
struct ieee80211_hw *hw = NULL;
@@ -972,7 +973,7 @@ int rtl_usb_probe(struct usb_interface *intf,
usb_set_intfdata(intf, hw);
/* init cfg & intf_ops */
rtlpriv->rtlhal.interface = INTF_USB;
- rtlpriv->cfg = (struct rtl_hal_cfg *)(id->driver_info);
+ rtlpriv->cfg = rtl_hal_cfg;
rtlpriv->intf_ops = &rtl_usb_ops;
rtl_dbgp_flag_init(hw);
/* Init IO handler */
diff --git a/drivers/net/wireless/rtlwifi/usb.h b/drivers/net/wireless/rtlwifi/usb.h
index 5235136..fb986f9 100644
--- a/drivers/net/wireless/rtlwifi/usb.h
+++ b/drivers/net/wireless/rtlwifi/usb.h
@@ -157,7 +157,8 @@ struct rtl_usb_priv {
int rtl_usb_probe(struct usb_interface *intf,
- const struct usb_device_id *id);
+ const struct usb_device_id *id,
+ struct rtl_hal_cfg *rtl92cu_hal_cfg);
void rtl_usb_disconnect(struct usb_interface *intf);
int rtl_usb_suspend(struct usb_interface *pusb_intf, pm_message_t message);
int rtl_usb_resume(struct usb_interface *pusb_intf);
--
1.8.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: bugreport upstream: 0bda:819a RTL8188CUS WLAN doesn't work out of the box
2013-02-06 19:05 ` Larry Finger
@ 2013-02-06 20:03 ` Thomas Rosenkranz
2013-02-06 23:56 ` Larry Finger
2013-02-06 23:03 ` Xose Vazquez Perez
1 sibling, 1 reply; 8+ messages in thread
From: Thomas Rosenkranz @ 2013-02-06 20:03 UTC (permalink / raw)
To: Larry Finger; +Cc: Xose Vazquez Perez, linux-usb, linux-wireless
Sorry for aksing back.
1. You mean I should get the kernel clean of the realtek driver first
to prevent a crash during patching? Cause unplugging is no option for
a onboard device.
2. I have no idea what to do with the patching file and couldn't find
any good instructions with google. "man patch" doesn't make me smarter
at all
2013/2/6 Larry Finger <Larry.Finger@lwfinger.net>:
> On 01/26/2013 04:07 PM, Xose Vazquez Perez wrote:
>>
>> Thomas Rosenkranz wrote:
>>
>>> 0bda:819a RTL8188CUS WLAN doesn't work out of the box in downstream
>>> and upstreamkernel
>>> https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1102179
>>
>>
>> This should go to <linux-wireless@vger.kernel.org>
>>
>> Try:
>> # modprobe rtl8192cu
>> # echo "0bda 819a" > /sys/bus/usb/drivers/rtl8192cu/new_id
>> # dmesg (see output)
>
>
> Please install the attached patch, and retry the above method. I fixed the
> probe function to get rid of the oops. If the device is really foreign, the
> process that writes new_id will not finish until the device is unplugged;
> however, the rest of the system is chugging along.
>
> If 0bda:819a works with rtl8192cu, let me know, and I'll update the USB
> device table.
>
> Larry
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: bugreport upstream: 0bda:819a RTL8188CUS WLAN doesn't work out of the box
2013-02-06 19:05 ` Larry Finger
2013-02-06 20:03 ` Thomas Rosenkranz
@ 2013-02-06 23:03 ` Xose Vazquez Perez
2013-02-06 23:50 ` Larry Finger
1 sibling, 1 reply; 8+ messages in thread
From: Xose Vazquez Perez @ 2013-02-06 23:03 UTC (permalink / raw)
To: Larry Finger; +Cc: linux-wireless
On 02/06/2013 08:05 PM, Larry Finger wrote:
> Please install the attached patch, and retry the above method. I fixed the probe function to get rid of the oops. If the device is really foreign, the process that writes new_id will not finish until
> the device is unplugged; however, the rest of the system is chugging along.
I tried the patch. And now, rtl8192cu doesn't break the kernel.
But it should go out when an unknown chip/rf is detected,
instead of trying to configure the unknown_device.
rtlwifi: reg 0xf0, usbctrl_vendorreq TimeOut! status:0xffffffe0 value=0x0
rtl8192cu: Chip version 0x10 <<<<<------WTF???
rtlwifi: reg 0xa, usbctrl_vendorreq TimeOut! status:0xffffffe0 value=0x0
rtlwifi: reg 0xfe66, usbctrl_vendorreq TimeOut! status:0xffffffe0 value=0x0
rtlwifi: reg 0xfe67, usbctrl_vendorreq TimeOut! status:0xffffffe0 value=0x0
rtlwifi: rx_max_size 15360, rx_urb_num 8, in_ep 1
Tested-by: Xose Vazquez Perez <xose.vazquez@gmail.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: bugreport upstream: 0bda:819a RTL8188CUS WLAN doesn't work out of the box
2013-02-06 23:03 ` Xose Vazquez Perez
@ 2013-02-06 23:50 ` Larry Finger
0 siblings, 0 replies; 8+ messages in thread
From: Larry Finger @ 2013-02-06 23:50 UTC (permalink / raw)
To: Xose Vazquez Perez; +Cc: linux-wireless
On 02/06/2013 05:03 PM, Xose Vazquez Perez wrote:
> On 02/06/2013 08:05 PM, Larry Finger wrote:
>
>> Please install the attached patch, and retry the above method. I fixed the probe function to get rid of the oops. If the device is really foreign, the process that writes new_id will not finish until
>> the device is unplugged; however, the rest of the system is chugging along.
>
> I tried the patch. And now, rtl8192cu doesn't break the kernel.
>
> But it should go out when an unknown chip/rf is detected,
> instead of trying to configure the unknown_device.
No fooling; however, the only way it can tell if the device is known is by
seeing those USB timeouts. It took a very long time before the probe routine
gets control again. I don't know any way to fix that.
Larry
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: bugreport upstream: 0bda:819a RTL8188CUS WLAN doesn't work out of the box
2013-02-06 20:03 ` Thomas Rosenkranz
@ 2013-02-06 23:56 ` Larry Finger
[not found] ` <CAOAX8-=_D9PncnaCGkfFKBkenxppQ-EksEQk5UwFKtBY+toRaQ@mail.gmail.com>
0 siblings, 1 reply; 8+ messages in thread
From: Larry Finger @ 2013-02-06 23:56 UTC (permalink / raw)
To: Thomas Rosenkranz; +Cc: Xose Vazquez Perez, linux-usb, linux-wireless
On 02/06/2013 02:03 PM, Thomas Rosenkranz wrote:
> Sorry for aksing back.
> 1. You mean I should get the kernel clean of the realtek driver first
> to prevent a crash during patching? Cause unplugging is no option for
> a onboard device.
> 2. I have no idea what to do with the patching file and couldn't find
> any good instructions with google. "man patch" doesn't make me smarter
> at all
Put the patch in the directory where the arch, block, crypto, drivers, and so
forth directories are located. Then run the command
patch -p1 < 0001-......patch
After that, run "make" followed by "sudo make modules_install install". If your
distro is reasonable, that will give you a new entry in your boot menu.
Larry
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Fwd: bugreport upstream: 0bda:819a RTL8188CUS WLAN doesn't work out of the box
[not found] ` <5113DCC2.3070306@gmail.com>
@ 2013-02-07 17:01 ` Thomas Rosenkranz
2013-02-07 17:38 ` Larry Finger
0 siblings, 1 reply; 8+ messages in thread
From: Thomas Rosenkranz @ 2013-02-07 17:01 UTC (permalink / raw)
To: Xose Vazquez Perez; +Cc: Larry Finger, linux-wireless
[-- Attachment #1: Type: text/plain, Size: 567 bytes --]
I know thats why i wanted to remove it before.
Sorry I didn't saw the last two commands they were shown as citation.
Finally rtl8192cu works with the patch
2013/2/7 Xose Vazquez Perez <xose.vazquez@gmail.com>:
> On 02/07/2013 05:50 PM, Thomas Rosenkranz wrote:
>
>> forget to say, I removed all entrys in /etc/modprobe.d/* relating to
>> 8192cu to prevent problems with realtek driver and after the reboot I
>> did sudo modprobe 8192cu. Was this wrong?
>
> Do a rmmod 8192cu before loading rtl8192cu
>
> 8192cu is the realtek driver and
> rtl8192cu is kernel driver
[-- Attachment #2: dmesg.txt --]
[-- Type: text/plain, Size: 64786 bytes --]
[ 0.000000] BIOS-e820: 000000000009d800 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 00000000de814000 (usable)
[ 0.000000] BIOS-e820: 00000000de814000 - 00000000dee13000 (reserved)
[ 0.000000] BIOS-e820: 00000000dee13000 - 00000000df093000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000df093000 - 00000000df098000 (ACPI data)
[ 0.000000] BIOS-e820: 00000000df098000 - 00000000df0db000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000df0db000 - 00000000df4ba000 (usable)
[ 0.000000] BIOS-e820: 00000000df4ba000 - 00000000df7f4000 (reserved)
[ 0.000000] BIOS-e820: 00000000df7f4000 - 00000000df800000 (usable)
[ 0.000000] BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed04000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
[ 0.000000] BIOS-e820: 0000000100000000 - 000000021f000000 (usable)
[ 0.000000] PAT support disabled.
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] DMI 2.7 present.
[ 0.000000] DMI: LENOVO Lenovo A720/ChiefRiver, BIOS E5KT20AUS 03/26/2012
[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[ 0.000000] No AGP bridge found
[ 0.000000] last_pfn = 0x21f000 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-CFFFF write-protect
[ 0.000000] D0000-E7FFF uncachable
[ 0.000000] E8000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000000000 mask E00000000 write-back
[ 0.000000] 1 base 200000000 mask FF0000000 write-back
[ 0.000000] 2 base 210000000 mask FF8000000 write-back
[ 0.000000] 3 base 218000000 mask FFC000000 write-back
[ 0.000000] 4 base 21C000000 mask FFE000000 write-back
[ 0.000000] 5 base 21E000000 mask FFF000000 write-back
[ 0.000000] 6 base 0E0000000 mask FE0000000 uncachable
[ 0.000000] 7 disabled
[ 0.000000] 8 disabled
[ 0.000000] 9 disabled
[ 0.000000] original variable MTRRs
[ 0.000000] reg 0, base: 0GB, range: 8GB, type WB
[ 0.000000] reg 1, base: 8GB, range: 256MB, type WB
[ 0.000000] reg 2, base: 8448MB, range: 128MB, type WB
[ 0.000000] reg 3, base: 8576MB, range: 64MB, type WB
[ 0.000000] reg 4, base: 8640MB, range: 32MB, type WB
[ 0.000000] reg 5, base: 8672MB, range: 16MB, type WB
[ 0.000000] reg 6, base: 3584MB, range: 512MB, type UC
[ 0.000000] total RAM covered: 8176M
[ 0.000000] Found optimal setting for mtrr clean up
[ 0.000000] gran_size: 64K chunk_size: 32M num_reg: 6 lose cover RAM: 0G
[ 0.000000] New variable MTRRs
[ 0.000000] reg 0, base: 0GB, range: 2GB, type WB
[ 0.000000] reg 1, base: 2GB, range: 1GB, type WB
[ 0.000000] reg 2, base: 3GB, range: 512MB, type WB
[ 0.000000] reg 3, base: 4GB, range: 4GB, type WB
[ 0.000000] reg 4, base: 8GB, range: 512MB, type WB
[ 0.000000] reg 5, base: 8688MB, range: 16MB, type UC
[ 0.000000] e820 update range: 00000000e0000000 - 0000000100000000 (usable) ==> (reserved)
[ 0.000000] last_pfn = 0xdf800 max_arch_pfn = 0x400000000
[ 0.000000] found SMP MP-table at [ffff8800000fcca0] fcca0
[ 0.000000] initial memory mapped : 0 - 20000000
[ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 20480
[ 0.000000] init_memory_mapping: 0000000000000000-00000000df800000
[ 0.000000] 0000000000 - 00df800000 page 2M
[ 0.000000] kernel direct mapping tables up to df800000 @ 1fffb000-20000000
[ 0.000000] init_memory_mapping: 0000000100000000-000000021f000000
[ 0.000000] 0100000000 - 021f000000 page 2M
[ 0.000000] kernel direct mapping tables up to 21f000000 @ df7fa000-df800000
[ 0.000000] RAMDISK: 358aa000 - 36c4d000
[ 0.000000] Reserving 128MB of memory at 720MB for crashkernel (System RAM: 8688MB)
[ 0.000000] ACPI: RSDP 00000000000f0450 00024 (v02 LENOVO)
[ 0.000000] ACPI: XSDT 00000000df047078 00074 (v01 LENOVO TC-03 00000120 AMI 00010013)
[ 0.000000] ACPI: FACP 00000000df04ff10 000F4 (v04 LENOVO TC-03 00000120 AMI 00010013)
[ 0.000000] ACPI: DSDT 00000000df047188 08D85 (v02 LENOVO TC-03 00000120 INTL 20051117)
[ 0.000000] ACPI: FACS 00000000df091f80 00040
[ 0.000000] ACPI: APIC 00000000df050008 00092 (v03 LENOVO TC-03 00000120 AMI 00010013)
[ 0.000000] ACPI: ASF! 00000000df0500a0 000A5 (v32 LENOVO TC-03 00000120 TFSM 000F4240)
[ 0.000000] ACPI: MCFG 00000000df050148 0003C (v01 LENOVO TC-03 00000120 MSFT 00000097)
[ 0.000000] ACPI: SLIC 00000000df050188 00176 (v01 LENOVO TC-03 00000120 AMI 00010013)
[ 0.000000] ACPI: HPET 00000000df050300 00038 (v01 LENOVO TC-03 00000120 AMI. 00000005)
[ 0.000000] ACPI: SSDT 00000000df050338 0036D (v01 LENOVO TC-03 00000120 INTL 20091112)
[ 0.000000] ACPI: SSDT 00000000df0506a8 008E4 (v01 LENOVO TC-03 00000120 INTL 20051117)
[ 0.000000] ACPI: SSDT 00000000df050f90 00A92 (v01 LENOVO TC-03 00000120 INTL 20051117)
[ 0.000000] ACPI: SSDT 00000000df051a28 01392 (v01 LENOVO TC-03 00000120 INTL 20091112)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at 0000000000000000-000000021f000000
[ 0.000000] Initmem setup node 0 0000000000000000-000000021f000000
[ 0.000000] NODE_DATA [000000021effb000 - 000000021effffff]
[ 0.000000] [ffffea0000000000-ffffea00087fffff] PMD -> [ffff880216600000-ffff88021e5fffff] on node 0
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000010 -> 0x00001000
[ 0.000000] DMA32 0x00001000 -> 0x00100000
[ 0.000000] Normal 0x00100000 -> 0x0021f000
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[5] active PFN ranges
[ 0.000000] 0: 0x00000010 -> 0x0000009d
[ 0.000000] 0: 0x00000100 -> 0x000de814
[ 0.000000] 0: 0x000df0db -> 0x000df4ba
[ 0.000000] 0: 0x000df7f4 -> 0x000df800
[ 0.000000] 0: 0x00100000 -> 0x0021f000
[ 0.000000] On node 0 totalpages: 2087820
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 5 pages reserved
[ 0.000000] DMA zone: 3912 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 16320 pages used for memmap
[ 0.000000] DMA32 zone: 891967 pages, LIFO batch:31
[ 0.000000] Normal zone: 18368 pages used for memmap
[ 0.000000] Normal zone: 1157184 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x408
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 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: 0x8086a701 base: 0xfed00000
[ 0.000000] SMP: Allowing 8 CPUs, 0 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 40
[ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
[ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[ 0.000000] PM: Registered nosave memory: 00000000de814000 - 00000000dee13000
[ 0.000000] PM: Registered nosave memory: 00000000dee13000 - 00000000df093000
[ 0.000000] PM: Registered nosave memory: 00000000df093000 - 00000000df098000
[ 0.000000] PM: Registered nosave memory: 00000000df098000 - 00000000df0db000
[ 0.000000] PM: Registered nosave memory: 00000000df4ba000 - 00000000df7f4000
[ 0.000000] PM: Registered nosave memory: 00000000df800000 - 00000000f8000000
[ 0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000
[ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000
[ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed00000
[ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed04000
[ 0.000000] PM: Registered nosave memory: 00000000fed04000 - 00000000fed1c000
[ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
[ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ff000000
[ 0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
[ 0.000000] Allocating PCI resources starting at df800000 (gap: df800000:18800000)
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88021ec00000 s83136 r8192 d23360 u262144
[ 0.000000] pcpu-alloc: s83136 r8192 d23360 u262144 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2053063
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-37-generic root=UUID=ea1671bb-6d90-4e88-8808-5a5fc1bff71c ro nopat crashkernel=384M-2G:64M,2G-:128M resume=UUID=e4918e2d-1704-43a6-93c0-93235d39768e
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
[ 0.000000] Checking aperture...
[ 0.000000] No AGP bridge found
[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[ 0.000000] Memory: 7986224k/8896512k available (6569k kernel code, 545232k absent, 365056k reserved, 6634k data, 924k init)
[ 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:16640 nr_irqs:744 16
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] allocated 67108864 bytes of page_cgroup
[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[ 0.000000] hpet clockevent registered
[ 0.000000] Fast TSC calibration using PIT
[ 0.004000] Detected 2294.936 MHz processor.
[ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4589.87 BogoMIPS (lpj=9179744)
[ 0.000166] pid_max: default: 32768 minimum: 301
[ 0.000272] Security Framework initialized
[ 0.000362] AppArmor: AppArmor initialized
[ 0.000439] Yama: becoming mindful.
[ 0.001024] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[ 0.003214] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.004239] Mount-cache hash table entries: 256
[ 0.004410] Initializing cgroup subsys cpuacct
[ 0.004492] Initializing cgroup subsys memory
[ 0.004575] Initializing cgroup subsys devices
[ 0.004656] Initializing cgroup subsys freezer
[ 0.004734] Initializing cgroup subsys blkio
[ 0.004816] Initializing cgroup subsys perf_event
[ 0.004920] CPU: Physical Processor ID: 0
[ 0.004997] CPU: Processor Core ID: 0
[ 0.005076] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.005077] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.005627] mce: CPU supports 9 MCE banks
[ 0.005716] CPU0: Thermal monitoring enabled (TM1)
[ 0.005804] using mwait in idle threads.
[ 0.007919] ACPI: Core revision 20110623
[ 0.013700] ftrace: allocating 27033 entries in 107 pages
[ 0.022745] x2apic not enabled, IRQ remapping init failed
[ 0.023229] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.062976] CPU0: Intel(R) Core(TM) i7-3610QM CPU @ 2.30GHz stepping 09
[ 0.168126] Performance Events: PEBS fmt1+, generic architected perfmon, Intel PMU driver.
[ 0.168379] ... version: 3
[ 0.168458] ... bit width: 48
[ 0.168535] ... generic registers: 4
[ 0.168611] ... value mask: 0000ffffffffffff
[ 0.168693] ... max period: 000000007fffffff
[ 0.168774] ... fixed-purpose events: 3
[ 0.168850] ... event mask: 000000070000000f
[ 0.169061] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.169209] Booting Node 0, Processors #1
[ 0.169313] smpboot cpu 1: start_ip = 98000
[ 0.280592] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.280746] #2
[ 0.280796] smpboot cpu 2: start_ip = 98000
[ 0.388492] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.388643] #3
[ 0.388694] smpboot cpu 3: start_ip = 98000
[ 0.496490] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.496637] #4
[ 0.496688] smpboot cpu 4: start_ip = 98000
[ 0.604390] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.604555] #5
[ 0.604608] smpboot cpu 5: start_ip = 98000
[ 0.720315] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.720467] #6
[ 0.720520] smpboot cpu 6: start_ip = 98000
[ 0.828317] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.828468] #7 Ok.
[ 0.828542] smpboot cpu 7: start_ip = 98000
[ 0.936271] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.936380] Brought up 8 CPUs
[ 0.936454] Total of 8 processors activated (36716.75 BogoMIPS).
[ 0.944750] devtmpfs: initialized
[ 0.945601] EVM: security.selinux
[ 0.945677] EVM: security.SMACK64
[ 0.945752] EVM: security.capability
[ 0.945846] PM: Registering ACPI NVS region at dee13000 (2621440 bytes)
[ 0.945963] PM: Registering ACPI NVS region at df098000 (274432 bytes)
[ 0.946769] print_constraints: dummy:
[ 0.946875] RTC time: 17:53:12, date: 02/07/13
[ 0.946980] NET: Registered protocol family 16
[ 0.947143] Trying to unpack rootfs image as initramfs...
[ 0.947146] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.947148] ACPI: bus type pci registered
[ 0.947210] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 0.947212] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[ 0.953653] PCI: Using configuration type 1 for base access
[ 0.954528] bio: create slab <bio-0> at 0
[ 0.954668] ACPI: Added _OSI(Module Device)
[ 0.954746] ACPI: Added _OSI(Processor Device)
[ 0.954825] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.954906] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.956385] ACPI: EC: Look up EC in DSDT
[ 0.957722] ACPI: Executed 1 blocks of module-level executable AML code
[ 1.024623] ACPI: SSDT 00000000dedbf018 0083B (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
[ 1.025174] ACPI: Dynamic OEM Table Load:
[ 1.025345] ACPI: SSDT (null) 0083B (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
[ 1.051866] ACPI: SSDT 00000000dedc0a98 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
[ 1.052446] ACPI: Dynamic OEM Table Load:
[ 1.052619] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
[ 1.075735] ACPI: SSDT 00000000dedc2c18 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
[ 1.076279] ACPI: Dynamic OEM Table Load:
[ 1.076452] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
[ 1.100678] ACPI: Interpreter enabled
[ 1.100757] ACPI: (supports S0 S3 S4 S5)
[ 1.101040] ACPI: Using IOAPIC for interrupt routing
[ 1.106117] ACPI: EC: GPE = 0x16, I/O: command/status = 0x66, data = 0x62
[ 1.106369] ACPI: No dock devices found.
[ 1.106448] HEST: Table not found.
[ 1.106525] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 1.106898] \_SB_.PCI0:_OSC invalid UUID
[ 1.106900] _OSC request data:1 8 1f
[ 1.106904] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[ 1.107427] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
[ 1.107513] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
[ 1.107598] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[ 1.107709] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
[ 1.107815] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
[ 1.107922] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
[ 1.108028] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff]
[ 1.108134] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
[ 1.108240] pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff]
[ 1.108347] pci_root PNP0A08:00: host bridge window [mem 0xe0000000-0xfeafffff]
[ 1.108462] pci 0000:00:00.0: [8086:0154] type 0 class 0x000600
[ 1.108499] pci 0000:00:01.0: [8086:0151] type 1 class 0x000604
[ 1.108530] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 1.108533] pci 0000:00:01.0: PME# disabled
[ 1.108575] pci 0000:00:14.0: [8086:1e31] type 0 class 0x000c03
[ 1.108599] pci 0000:00:14.0: reg 10: [mem 0xf7d00000-0xf7d0ffff 64bit]
[ 1.108672] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 1.108676] pci 0000:00:14.0: PME# disabled
[ 1.108699] pci 0000:00:16.0: [8086:1e3a] type 0 class 0x000780
[ 1.108723] pci 0000:00:16.0: reg 10: [mem 0xf7d1a000-0xf7d1a00f 64bit]
[ 1.108801] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 1.108805] pci 0000:00:16.0: PME# disabled
[ 1.108838] pci 0000:00:1a.0: [8086:1e2d] type 0 class 0x000c03
[ 1.108859] pci 0000:00:1a.0: reg 10: [mem 0xf7d18000-0xf7d183ff]
[ 1.108952] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 1.108956] pci 0000:00:1a.0: PME# disabled
[ 1.108981] pci 0000:00:1b.0: [8086:1e20] type 0 class 0x000403
[ 1.108997] pci 0000:00:1b.0: reg 10: [mem 0xf7d10000-0xf7d13fff 64bit]
[ 1.109066] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 1.109070] pci 0000:00:1b.0: PME# disabled
[ 1.109092] pci 0000:00:1c.0: [8086:1e10] type 1 class 0x000604
[ 1.109173] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 1.109177] pci 0000:00:1c.0: PME# disabled
[ 1.109200] pci 0000:00:1c.1: [8086:1e12] type 1 class 0x000604
[ 1.109282] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 1.109286] pci 0000:00:1c.1: PME# disabled
[ 1.109312] pci 0000:00:1c.2: [8086:1e14] type 1 class 0x000604
[ 1.109393] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 1.109397] pci 0000:00:1c.2: PME# disabled
[ 1.109430] pci 0000:00:1d.0: [8086:1e26] type 0 class 0x000c03
[ 1.109452] pci 0000:00:1d.0: reg 10: [mem 0xf7d17000-0xf7d173ff]
[ 1.109544] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 1.109549] pci 0000:00:1d.0: PME# disabled
[ 1.109573] pci 0000:00:1f.0: [8086:1e59] type 0 class 0x000601
[ 1.109699] pci 0000:00:1f.2: [8086:1e03] type 0 class 0x000106
[ 1.109718] pci 0000:00:1f.2: reg 10: [io 0xf070-0xf077]
[ 1.109727] pci 0000:00:1f.2: reg 14: [io 0xf060-0xf063]
[ 1.109735] pci 0000:00:1f.2: reg 18: [io 0xf050-0xf057]
[ 1.109743] pci 0000:00:1f.2: reg 1c: [io 0xf040-0xf043]
[ 1.109751] pci 0000:00:1f.2: reg 20: [io 0xf020-0xf03f]
[ 1.109760] pci 0000:00:1f.2: reg 24: [mem 0xf7d16000-0xf7d167ff]
[ 1.109807] pci 0000:00:1f.2: PME# supported from D3hot
[ 1.109811] pci 0000:00:1f.2: PME# disabled
[ 1.109830] pci 0000:00:1f.3: [8086:1e22] type 0 class 0x000c05
[ 1.109846] pci 0000:00:1f.3: reg 10: [mem 0xf7d15000-0xf7d150ff 64bit]
[ 1.109868] pci 0000:00:1f.3: reg 20: [io 0xf000-0xf01f]
[ 1.109928] pci 0000:01:00.0: [10de:0de9] type 0 class 0x000300
[ 1.109938] pci 0000:01:00.0: reg 10: [mem 0xf6000000-0xf6ffffff]
[ 1.109949] pci 0000:01:00.0: reg 14: [mem 0xe0000000-0xefffffff 64bit pref]
[ 1.109960] pci 0000:01:00.0: reg 1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
[ 1.109967] pci 0000:01:00.0: reg 24: [io 0xe000-0xe07f]
[ 1.109975] pci 0000:01:00.0: reg 30: [mem 0xf7000000-0xf707ffff pref]
[ 1.110032] pci 0000:01:00.1: [10de:0bea] type 0 class 0x000403
[ 1.110041] pci 0000:01:00.1: reg 10: [mem 0xf7080000-0xf7083fff]
[ 1.115642] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[ 1.115725] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
[ 1.115728] pci 0000:00:01.0: bridge window [mem 0xf6000000-0xf70fffff]
[ 1.115731] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
[ 1.115804] pci 0000:02:00.0: [1131:7231] type 0 class 0x000480
[ 1.115843] pci 0000:02:00.0: reg 10: [mem 0xf7800000-0xf7bfffff 64bit]
[ 1.115873] pci 0000:02:00.0: reg 18: [mem 0xf7400000-0xf77fffff 64bit]
[ 1.116039] pci 0000:02:00.0: supports D1 D2
[ 1.116041] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot
[ 1.116047] pci 0000:02:00.0: PME# disabled
[ 1.123642] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
[ 1.123727] pci 0000:00:1c.0: bridge window [mem 0xf7400000-0xf7bfffff]
[ 1.123803] pci 0000:03:00.0: [10ec:8168] type 0 class 0x000200
[ 1.123823] pci 0000:03:00.0: reg 10: [io 0xd000-0xd0ff]
[ 1.123858] pci 0000:03:00.0: reg 18: [mem 0xf2104000-0xf2104fff 64bit pref]
[ 1.123881] pci 0000:03:00.0: reg 20: [mem 0xf2100000-0xf2103fff 64bit pref]
[ 1.123975] pci 0000:03:00.0: supports D1 D2
[ 1.123977] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1.123982] pci 0000:03:00.0: PME# disabled
[ 1.131636] pci 0000:00:1c.1: PCI bridge to [bus 03-03]
[ 1.131721] pci 0000:00:1c.1: bridge window [io 0xd000-0xdfff]
[ 1.131729] pci 0000:00:1c.1: bridge window [mem 0xf2100000-0xf21fffff 64bit pref]
[ 1.131854] pci 0000:04:00.0: [10ec:5229] type 0 class 0x00ff00
[ 1.131921] pci 0000:04:00.0: reg 10: [mem 0xf7c00000-0xf7c00fff]
[ 1.132408] pci 0000:04:00.0: supports D1 D2
[ 1.132410] pci 0000:04:00.0: PME# supported from D1 D2 D3hot
[ 1.132421] pci 0000:04:00.0: PME# disabled
[ 1.139657] pci 0000:00:1c.2: PCI bridge to [bus 04-04]
[ 1.139742] pci 0000:00:1c.2: bridge window [mem 0xf7c00000-0xf7cfffff]
[ 1.139768] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 1.139874] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[ 1.139903] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT]
[ 1.139938] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG0._PRT]
[ 1.139974] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[ 1.140060] \_SB_.PCI0:_OSC invalid UUID
[ 1.140061] _OSC request data:1 1f 1f
[ 1.140065] pci0000:00: Requesting ACPI _OSC control (0x1d)
[ 1.140185] \_SB_.PCI0:_OSC invalid UUID
[ 1.140186] _OSC request data:1 0 1d
[ 1.140189] pci0000:00: ACPI _OSC request failed (AE_ERROR), returned control mask: 0x1d
[ 1.140297] ACPI _OSC control for PCIe not granted, disabling ASPM
[ 1.143741] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 1.144385] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
[ 1.145019] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 *4 5 6 10 11 12 14 15)
[ 1.145654] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 10 11 12 14 15)
[ 1.146293] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 1.147045] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 1.147802] ACPI: PCI Interrupt Link [LNKG] (IRQs *3 4 5 6 10 11 12 14 15)
[ 1.148440] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 1.149126] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[ 1.149235] vgaarb: loaded
[ 1.149309] vgaarb: bridge control possible 0000:01:00.0
[ 1.149469] i2c-core: driver [aat2870] using legacy suspend method
[ 1.149552] i2c-core: driver [aat2870] using legacy resume method
[ 1.149685] SCSI subsystem initialized
[ 1.149793] libata version 3.00 loaded.
[ 1.149828] usbcore: registered new interface driver usbfs
[ 1.149914] usbcore: registered new interface driver hub
[ 1.150010] usbcore: registered new device driver usb
[ 1.150151] PCI: Using ACPI for IRQ routing
[ 1.151757] PCI: pci_cache_line_size set to 64 bytes
[ 1.151848] reserve RAM buffer: 000000000009d800 - 000000000009ffff
[ 1.151851] reserve RAM buffer: 00000000de814000 - 00000000dfffffff
[ 1.151853] reserve RAM buffer: 00000000df4ba000 - 00000000dfffffff
[ 1.151855] reserve RAM buffer: 00000000df800000 - 00000000dfffffff
[ 1.151857] reserve RAM buffer: 000000021f000000 - 000000021fffffff
[ 1.151935] NetLabel: Initializing
[ 1.152011] NetLabel: domain hash size = 128
[ 1.152088] NetLabel: protocols = UNLABELED CIPSOv4
[ 1.152178] NetLabel: unlabeled traffic allowed by default
[ 1.152297] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 1.152801] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 1.154894] Switching to clocksource hpet
[ 1.159864] AppArmor: AppArmor Filesystem Enabled
[ 1.159960] pnp: PnP ACPI init
[ 1.160044] ACPI: bus type pnp registered
[ 1.160340] pnp 00:00: [bus 00-3e]
[ 1.160342] pnp 00:00: [io 0x0000-0x0cf7 window]
[ 1.160344] pnp 00:00: [io 0x0cf8-0x0cff]
[ 1.160346] pnp 00:00: [io 0x0d00-0xffff window]
[ 1.160348] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[ 1.160350] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[ 1.160351] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[ 1.160353] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[ 1.160355] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[ 1.160356] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[ 1.160358] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[ 1.160360] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[ 1.160361] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[ 1.160363] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[ 1.160365] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[ 1.160366] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[ 1.160368] pnp 00:00: [mem 0x000ec000-0x000effff window]
[ 1.160370] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[ 1.160373] pnp 00:00: [mem 0xe0000000-0xfeafffff window]
[ 1.160375] pnp 00:00: [mem 0x00010000-0x0001ffff window]
[ 1.160426] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[ 1.160445] pnp 00:01: [mem 0xfed40000-0xfed44fff]
[ 1.160476] system 00:01: [mem 0xfed40000-0xfed44fff] has been reserved
[ 1.160563] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 1.160572] pnp 00:02: [io 0x0000-0x001f]
[ 1.160573] pnp 00:02: [io 0x0081-0x0091]
[ 1.160575] pnp 00:02: [io 0x0093-0x009f]
[ 1.160576] pnp 00:02: [io 0x00c0-0x00df]
[ 1.160578] pnp 00:02: [dma 4]
[ 1.160596] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
[ 1.160602] pnp 00:03: [mem 0xff000000-0xffffffff]
[ 1.160619] pnp 00:03: Plug and Play ACPI device, IDs INT0800 (active)
[ 1.160683] pnp 00:04: [mem 0xfed00000-0xfed003ff]
[ 1.160700] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
[ 1.160710] pnp 00:05: [io 0x002e-0x002f]
[ 1.160711] pnp 00:05: [io 0x004e-0x004f]
[ 1.160712] pnp 00:05: [io 0x0061]
[ 1.160714] pnp 00:05: [io 0x0063]
[ 1.160715] pnp 00:05: [io 0x0065]
[ 1.160716] pnp 00:05: [io 0x0067]
[ 1.160718] pnp 00:05: [io 0x0070]
[ 1.160719] pnp 00:05: [io 0x0080]
[ 1.160720] pnp 00:05: [io 0x0092]
[ 1.160722] pnp 00:05: [io 0x00b2-0x00b3]
[ 1.160723] pnp 00:05: [io 0x0680-0x069f]
[ 1.160724] pnp 00:05: [io 0x0200-0x020f]
[ 1.160726] pnp 00:05: [io 0xffff]
[ 1.160727] pnp 00:05: [io 0xffff]
[ 1.160729] pnp 00:05: [io 0x0400-0x0453]
[ 1.160730] pnp 00:05: [io 0x0458-0x047f]
[ 1.160731] pnp 00:05: [io 0x0500-0x057f]
[ 1.160733] pnp 00:05: [io 0x164e-0x164f]
[ 1.160766] system 00:05: [io 0x0680-0x069f] has been reserved
[ 1.160848] system 00:05: [io 0x0200-0x020f] has been reserved
[ 1.160932] system 00:05: [io 0xffff] has been reserved
[ 1.161013] system 00:05: [io 0xffff] has been reserved
[ 1.161094] system 00:05: [io 0x0400-0x0453] has been reserved
[ 1.161177] system 00:05: [io 0x0458-0x047f] has been reserved
[ 1.161261] system 00:05: [io 0x0500-0x057f] has been reserved
[ 1.161344] system 00:05: [io 0x164e-0x164f] has been reserved
[ 1.161428] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 1.161435] pnp 00:06: [io 0x0070-0x0077]
[ 1.161443] pnp 00:06: [irq 8]
[ 1.161462] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 1.161483] pnp 00:07: [io 0x0454-0x0457]
[ 1.161512] system 00:07: [io 0x0454-0x0457] has been reserved
[ 1.161596] system 00:07: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[ 1.161614] pnp 00:08: [io 0x0010-0x001f]
[ 1.161615] pnp 00:08: [io 0x0022-0x003f]
[ 1.161617] pnp 00:08: [io 0x0044-0x005f]
[ 1.161618] pnp 00:08: [io 0x0072-0x007f]
[ 1.161620] pnp 00:08: [io 0x0080]
[ 1.161621] pnp 00:08: [io 0x0084-0x0086]
[ 1.161622] pnp 00:08: [io 0x0088]
[ 1.161624] pnp 00:08: [io 0x008c-0x008e]
[ 1.161625] pnp 00:08: [io 0x0090-0x009f]
[ 1.161626] pnp 00:08: [io 0x00a2-0x00bf]
[ 1.161628] pnp 00:08: [io 0x00e0-0x00ef]
[ 1.161631] pnp 00:08: [io 0x04d0-0x04d1]
[ 1.161660] system 00:08: [io 0x04d0-0x04d1] has been reserved
[ 1.161744] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 1.161751] pnp 00:09: [io 0x00f0-0x00ff]
[ 1.161756] pnp 00:09: [irq 13]
[ 1.161775] pnp 00:09: Plug and Play ACPI device, IDs PNP0c04 (active)
[ 1.161964] pnp 00:0a: [mem 0xfed1c000-0xfed1ffff]
[ 1.161966] pnp 00:0a: [mem 0xfed10000-0xfed17fff]
[ 1.161968] pnp 00:0a: [mem 0xfed18000-0xfed18fff]
[ 1.161969] pnp 00:0a: [mem 0xfed19000-0xfed19fff]
[ 1.161971] pnp 00:0a: [mem 0xf8000000-0xfbffffff]
[ 1.161972] pnp 00:0a: [mem 0xfed20000-0xfed3ffff]
[ 1.161974] pnp 00:0a: [mem 0xfed90000-0xfed93fff]
[ 1.161975] pnp 00:0a: [mem 0xfed45000-0xfed8ffff]
[ 1.161977] pnp 00:0a: [mem 0xff000000-0xffffffff]
[ 1.161978] pnp 00:0a: [mem 0xfee00000-0xfeefffff]
[ 1.161980] pnp 00:0a: [mem 0xf2200000-0xf2200fff]
[ 1.162031] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 1.162116] system 00:0a: [mem 0xfed10000-0xfed17fff] has been reserved
[ 1.162200] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
[ 1.162285] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
[ 1.162370] system 00:0a: [mem 0xf8000000-0xfbffffff] has been reserved
[ 1.162454] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 1.162539] system 00:0a: [mem 0xfed90000-0xfed93fff] has been reserved
[ 1.162625] system 00:0a: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 1.162709] system 00:0a: [mem 0xff000000-0xffffffff] has been reserved
[ 1.162794] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 1.162880] system 00:0a: [mem 0xf2200000-0xf2200fff] has been reserved
[ 1.162973] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 1.163090] pnp: PnP ACPI: found 11 devices
[ 1.163168] ACPI: ACPI bus type pnp unregistered
[ 1.169484] PCI: max bus depth: 1 pci_try_num: 2
[ 1.169515] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[ 1.169597] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
[ 1.169682] pci 0000:00:01.0: bridge window [mem 0xf6000000-0xf70fffff]
[ 1.169767] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
[ 1.169876] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
[ 1.169960] pci 0000:00:1c.0: bridge window [mem 0xf7400000-0xf7bfffff]
[ 1.170051] pci 0000:00:1c.1: PCI bridge to [bus 03-03]
[ 1.170134] pci 0000:00:1c.1: bridge window [io 0xd000-0xdfff]
[ 1.170222] pci 0000:00:1c.1: bridge window [mem 0xf2100000-0xf21fffff 64bit pref]
[ 1.170334] pci 0000:00:1c.2: PCI bridge to [bus 04-04]
[ 1.170419] pci 0000:00:1c.2: bridge window [mem 0xf7c00000-0xf7cfffff]
[ 1.170521] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 1.170608] pci 0000:00:01.0: setting latency timer to 64
[ 1.170614] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 1.170702] pci 0000:00:1c.0: setting latency timer to 64
[ 1.170712] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 1.170798] pci 0000:00:1c.1: setting latency timer to 64
[ 1.170808] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 1.170895] pci 0000:00:1c.2: setting latency timer to 64
[ 1.170899] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 1.170901] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 1.170903] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 1.170905] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
[ 1.170907] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
[ 1.170908] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
[ 1.170910] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
[ 1.170912] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
[ 1.170914] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
[ 1.170924] pci_bus 0000:00: resource 13 [mem 0xe0000000-0xfeafffff]
[ 1.170926] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
[ 1.170927] pci_bus 0000:01: resource 1 [mem 0xf6000000-0xf70fffff]
[ 1.170929] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xf1ffffff 64bit pref]
[ 1.170931] pci_bus 0000:02: resource 1 [mem 0xf7400000-0xf7bfffff]
[ 1.170933] pci_bus 0000:03: resource 0 [io 0xd000-0xdfff]
[ 1.170935] pci_bus 0000:03: resource 2 [mem 0xf2100000-0xf21fffff 64bit pref]
[ 1.170937] pci_bus 0000:04: resource 1 [mem 0xf7c00000-0xf7cfffff]
[ 1.170963] NET: Registered protocol family 2
[ 1.171195] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 1.171942] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[ 1.173075] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 1.173272] TCP: Hash tables configured (established 524288 bind 65536)
[ 1.173358] TCP reno registered
[ 1.173444] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[ 1.173552] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[ 1.173710] NET: Registered protocol family 1
[ 1.173807] pci 0000:00:14.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 1.176187] pci 0000:00:14.0: PCI INT A disabled
[ 1.176275] pci 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 1.194925] pci 0000:00:1a.0: PCI INT A disabled
[ 1.195027] pci 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 1.214911] pci 0000:00:1d.0: PCI INT A disabled
[ 1.215012] pci 0000:01:00.0: Boot video device
[ 1.215037] PCI: CLS 64 bytes, default 64
[ 1.215039] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 1.215123] Placing 64MB software IO TLB between ffff8800da814000 - ffff8800de814000
[ 1.215231] software IO TLB at phys 0xda814000 - 0xde814000
[ 1.215851] audit: initializing netlink socket (disabled)
[ 1.215938] type=2000 audit(1360259591.988:1): initialized
[ 1.238818] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 1.240619] VFS: Disk quotas dquot_6.5.2
[ 1.240735] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 1.241187] fuse init (API version 7.17)
[ 1.241330] msgmni has been set to 15598
[ 1.246823] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[ 1.246960] io scheduler noop registered
[ 1.247040] io scheduler deadline registered
[ 1.247142] io scheduler cfq registered (default)
[ 1.247289] pcieport 0000:00:01.0: setting latency timer to 64
[ 1.247312] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[ 1.247487] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 1.247585] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 1.247707] intel_idle: MWAIT substates: 0x21120
[ 1.247708] intel_idle: v0.4 model 0x3A
[ 1.247709] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 1.247801] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[ 1.247913] ACPI: Power Button [PWRB]
[ 1.248021] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[ 1.248128] ACPI: Power Button [PWRF]
[ 1.250097] thermal LNXTHERM:00: registered as thermal_zone0
[ 1.250180] ACPI: Thermal Zone [TZ00] (46 C)
[ 1.251638] thermal LNXTHERM:01: registered as thermal_zone1
[ 1.251721] ACPI: Thermal Zone [TZ01] (46 C)
[ 1.251833] ERST: Table is not found!
[ 1.251910] GHES: HEST is not enabled!
[ 1.252042] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 1.288895] Freeing initrd memory: 20108k freed
[ 1.471244] Linux agpgart interface v0.103
[ 1.472444] brd: module loaded
[ 1.473068] loop: module loaded
[ 1.473234] ahci 0000:00:1f.2: version 3.0
[ 1.473252] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 1.473383] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[ 1.486802] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[ 1.486912] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst
[ 1.487021] ahci 0000:00:1f.2: setting latency timer to 64
[ 1.503144] scsi0 : ahci
[ 1.503287] scsi1 : ahci
[ 1.503415] scsi2 : ahci
[ 1.503543] scsi3 : ahci
[ 1.503672] scsi4 : ahci
[ 1.503799] scsi5 : ahci
[ 1.504125] ata1: SATA max UDMA/133 abar m2048@0xf7d16000 port 0xf7d16100 irq 41
[ 1.504231] ata2: SATA max UDMA/133 abar m2048@0xf7d16000 port 0xf7d16180 irq 41
[ 1.504339] ata3: SATA max UDMA/133 abar m2048@0xf7d16000 port 0xf7d16200 irq 41
[ 1.504445] ata4: DUMMY
[ 1.504519] ata5: DUMMY
[ 1.504591] ata6: DUMMY
[ 1.504920] Fixed MDIO Bus: probed
[ 1.505009] tun: Universal TUN/TAP device driver, 1.6
[ 1.505090] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 1.505208] PPP generic driver version 2.4.2
[ 1.505358] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.505454] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 1.505553] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[ 1.505557] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[ 1.505670] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 1.505799] ehci_hcd 0000:00:1a.0: debug port 2
[ 1.509759] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[ 1.509773] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xf7d18000
[ 1.522757] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 1.522946] hub 1-0:1.0: USB hub found
[ 1.523027] hub 1-0:1.0: 2 ports detected
[ 1.523152] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 1.523249] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[ 1.523252] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[ 1.523365] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 1.523489] ehci_hcd 0000:00:1d.0: debug port 2
[ 1.527451] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[ 1.527463] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xf7d17000
[ 1.542745] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 1.542925] hub 2-0:1.0: USB hub found
[ 1.543004] hub 2-0:1.0: 2 ports detected
[ 1.543126] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.543217] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.543321] xhci_hcd 0000:00:14.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 1.543425] xhci_hcd 0000:00:14.0: setting latency timer to 64
[ 1.543428] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.543544] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[ 1.543733] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 1.543737] xhci_hcd 0000:00:14.0: irq 16, io mem 0xf7d00000
[ 1.543859] xhci_hcd 0000:00:14.0: irq 42 for MSI/MSI-X
[ 1.543951] xHCI xhci_add_endpoint called for root hub
[ 1.543952] xHCI xhci_check_bandwidth called for root hub
[ 1.543971] hub 3-0:1.0: USB hub found
[ 1.544054] hub 3-0:1.0: 4 ports detected
[ 1.544173] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.544285] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[ 1.544454] xHCI xhci_add_endpoint called for root hub
[ 1.544456] xHCI xhci_check_bandwidth called for root hub
[ 1.544474] hub 4-0:1.0: USB hub found
[ 1.544557] hub 4-0:1.0: 4 ports detected
[ 1.606754] usbcore: registered new interface driver libusual
[ 1.606864] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 1.610790] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.610876] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.611054] mousedev: PS/2 mouse device common for all mice
[ 1.611247] rtc_cmos 00:06: RTC can wake from S4
[ 1.611422] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[ 1.611533] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 1.611676] device-mapper: uevent: version 1.0.3
[ 1.611809] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[ 1.612101] cpuidle: using governor ladder
[ 1.612466] cpuidle: using governor menu
[ 1.612544] EFI Variables Facility v0.08 2004-May-17
[ 1.612782] TCP cubic registered
[ 1.612929] NET: Registered protocol family 10
[ 1.613322] NET: Registered protocol family 17
[ 1.613403] Registering the dns_resolver key type
[ 1.613587] PM: Checking hibernation image partition UUID=e4918e2d-1704-43a6-93c0-93235d39768e
[ 1.617727] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[ 1.822639] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.822743] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 1.826725] ata1.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[ 1.826729] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 1.826840] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 1.830626] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.831017] ata1.00: ATA-8: WDC WD7500BPVT-24HXZT3, 03.01A03, max UDMA/133
[ 1.831108] ata1.00: 1465149168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 1.831461] ata2.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[ 1.831465] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 1.831575] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 1.832135] ata2.00: ATA-9: M4-CT128M4SSD3, 04MH, max UDMA/100
[ 1.832221] ata2.00: 250069680 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 1.832965] ata2.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[ 1.832969] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 1.833079] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 1.833625] ata2.00: configured for UDMA/100
[ 1.834623] usb 1-1: new high-speed USB device number 2 using ehci_hcd
[ 1.834845] ata3.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[ 1.834849] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 1.834958] ata3.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 1.835617] ata1.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[ 1.835620] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 1.835725] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 1.837771] ata3.00: ATAPI: HL-DT-ST BDDVDRW CA30N, QD01, max UDMA/133
[ 1.840849] ata1.00: configured for UDMA/133
[ 1.841078] scsi 0:0:0:0: Direct-Access ATA WDC WD7500BPVT-2 03.0 PQ: 0 ANSI: 5
[ 1.841330] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 1.841452] sd 0:0:0:0: [sda] 1465149168 512-byte logical blocks: (750 GB/698 GiB)
[ 1.841571] sd 0:0:0:0: [sda] 4096-byte physical blocks
[ 1.841694] scsi 1:0:0:0: Direct-Access ATA M4-CT128M4SSD3 04MH PQ: 0 ANSI: 5
[ 1.841893] sd 0:0:0:0: [sda] Write Protect is off
[ 1.841958] sd 1:0:0:0: [sdb] 250069680 512-byte logical blocks: (128 GB/119 GiB)
[ 1.841986] sd 1:0:0:0: Attached scsi generic sg1 type 0
[ 1.842010] sd 1:0:0:0: [sdb] Write Protect is off
[ 1.842013] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 1.842027] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.842362] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.842452] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.842611] sdb: sdb1 sdb2 sdb3
[ 1.842800] ata3.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[ 1.842806] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 1.842922] ata3.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 1.843173] sd 1:0:0:0: [sdb] Attached SCSI disk
[ 1.845771] ata3.00: configured for UDMA/133
[ 1.849181] scsi 2:0:0:0: CD-ROM HL-DT-ST BDDVDRW CA30N QD01 PQ: 0 ANSI: 5
[ 1.852802] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 1.852920] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 1.853147] sr 2:0:0:0: Attached scsi CD-ROM sr0
[ 1.853246] sr 2:0:0:0: Attached scsi generic sg2 type 5
[ 1.868828] sda: sda1 sda2 sda3
[ 1.869696] sd 0:0:0:0: [sda] Attached SCSI disk
[ 1.869808] PM: Hibernation image not present or could not be loaded.
[ 1.869827] registered taskstats version 1
[ 1.877432] Magic number: 1:642:895
[ 1.877611] rtc_cmos 00:06: setting system clock to 2013-02-07 17:53:13 UTC (1360259593)
[ 1.878826] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 1.878908] EDD information not available.
[ 1.880057] Freeing unused kernel memory: 924k freed
[ 1.880212] Write protecting the kernel read-only data: 12288k
[ 1.883394] Freeing unused kernel memory: 1604k freed
[ 1.885813] Freeing unused kernel memory: 1196k freed
[ 1.897495] udevd[126]: starting version 175
[ 1.914394] acpi device:1a: registered as cooling_device8
[ 1.914563] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:18/LNXVIDEO:00/input/input3
[ 1.921605] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[ 1.921709] r8169 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 1.921829] r8169 0000:03:00.0: setting latency timer to 64
[ 1.921915] Initializing Realtek PCIE storage driver...
[ 1.921929] r8169 0000:03:00.0: irq 43 for MSI/MSI-X
[ 1.922070] --- Feb 5 2013, 19:18:00 ---
[ 1.922172] rts5229 0000:04:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[ 1.922203] ACPI: Video Device [VGA] (multi-head: yes rom: yes post: no)
[ 1.922251] r8169 0000:03:00.0: eth0: RTL8168evl/8111evl at 0xffffc90000c7e000, 04:7d:7b:b5:bd:c0, XID 0c900800 IRQ 43
[ 1.922253] r8169 0000:03:00.0: eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[ 1.922851] Resource length: 0x1000
[ 1.922971] Original address: 0xf7c00000, remapped address: 0xffffc90005784000
[ 1.923100] pci->irq = 18
[ 1.923180] rtsx_acquire_irq: chip->msi_en = 0, pci->irq = 18
[ 1.923309] rts5229 0000:04:00.0: setting latency timer to 64
[ 1.927201] scsi6 : SCSI emulation for RTS5229
[ 1.927409] rts5229: waiting for device to settle before scanning
[ 1.967314] hub 1-1:1.0: USB hub found
[ 1.967527] hub 1-1:1.0: 6 ports detected
[ 2.078485] usb 2-1: new high-speed USB device number 2 using ehci_hcd
[ 2.211082] hub 2-1:1.0: USB hub found
[ 2.211277] hub 2-1:1.0: 6 ports detected
[ 2.214408] Refined TSC clocksource calibration: 2294.785 MHz.
[ 2.214505] Switching to clocksource tsc
[ 2.378337] usb 3-3: new full-speed USB device number 2 using xhci_hcd
[ 2.401267] usbcore: registered new interface driver usbhid
[ 2.401345] usbhid: USB HID core driver
[ 2.406830] logitech-djreceiver 0003:046D:C52B.0003: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-3/input2
[ 2.410604] input: Logitech Unifying Device. Wireless PID:4017 as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3:1.2/0003:046D:C52B.0003/input/input4
[ 2.410917] logitech-djdevice 0003:046D:C52B.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech Unifying Device. Wireless PID:4017] on usb-0000:00:14.0-3:1
[ 2.470429] usb 1-1.1: new full-speed USB device number 3 using ehci_hcd
[ 2.564501] hub 1-1.1:1.0: USB hub found
[ 2.564725] hub 1-1.1:1.0: 3 ports detected
[ 2.634342] usb 1-1.2: new full-speed USB device number 4 using ehci_hcd
[ 2.733111] generic-usb 0003:2619:5610.0006: hiddev0,hidraw2: USB HID v1.10 Device [Advanced Silicon S.A. CoolTouch(TM) System ] on usb-0000:00:1a.0-1.2/input1
[ 2.802253] usb 1-1.4: new high-speed USB device number 5 using ehci_hcd
[ 2.926192] rts5229: device scan complete
[ 2.926366] scsi 6:0:0:0: Direct-Access Generic- SD/M.S. 1.00 PQ: 0 ANSI: 0 CCS
[ 2.926533] Bad LUN (0:1)
[ 2.926715] Bad target number (1:0)
[ 2.926897] Bad target number (2:0)
[ 2.927057] Bad target number (3:0)
[ 2.927229] Bad target number (4:0)
[ 2.927437] Bad target number (5:0)
[ 2.927602] Bad target number (6:0)
[ 2.927740] Bad target number (7:0)
[ 2.927967] sd 6:0:0:0: Attached scsi generic sg3 type 0
[ 2.928160] sd 6:0:0:0: [sdc] Attached SCSI removable disk
[ 2.966172] usb 1-1.5: new high-speed USB device number 6 using ehci_hcd
[ 3.130090] usb 2-1.5: new full-speed USB device number 3 using ehci_hcd
[ 3.229835] input: Lite-On Technology Corp. Lenovo silver silk (wireless) 2.4G K&M kit as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0/input/input5
[ 3.230192] generic-usb 0003:17EF:6032.0007: input,hidraw3: USB HID v1.11 Keyboard [Lite-On Technology Corp. Lenovo silver silk (wireless) 2.4G K&M kit] on usb-0000:00:1d.0-1.5/input0
[ 3.235249] input: Lite-On Technology Corp. Lenovo silver silk (wireless) 2.4G K&M kit as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.1/input/input6
[ 3.235707] generic-usb 0003:17EF:6032.0008: input,hiddev0,hidraw4: USB HID v1.11 Device [Lite-On Technology Corp. Lenovo silver silk (wireless) 2.4G K&M kit] on usb-0000:00:1d.0-1.5/input1
[ 3.237514] input: Lite-On Technology Corp. Lenovo silver silk (wireless) 2.4G K&M kit as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.2/input/input7
[ 3.237748] generic-usb 0003:17EF:6032.0009: input,hidraw5: USB HID v1.11 Mouse [Lite-On Technology Corp. Lenovo silver silk (wireless) 2.4G K&M kit] on usb-0000:00:1d.0-1.5/input2
[ 3.309988] usb 1-1.1.1: new full-speed USB device number 7 using ehci_hcd
[ 3.406859] input: HID 0a5c:4502 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1.1/1-1.1.1:1.0/input/input8
[ 3.407195] generic-usb 0003:0A5C:4502.000A: input,hidraw6: USB HID v1.11 Keyboard [HID 0a5c:4502] on usb-0000:00:1a.0-1.1.1/input0
[ 3.477926] usb 1-1.1.2: new full-speed USB device number 8 using ehci_hcd
[ 3.576025] input: HID 0a5c:4503 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1.2/1-1.1.2:1.0/input/input9
[ 3.576394] generic-usb 0003:0A5C:4503.000B: input,hidraw7: USB HID v1.11 Mouse [HID 0a5c:4503] on usb-0000:00:1a.0-1.1.2/input0
[ 3.645798] usb 1-1.1.3: new full-speed USB device number 9 using ehci_hcd
[ 3.739961] EXT4-fs (sdb3): mounted filesystem with ordered data mode. Opts: (null)
[ 6.238351] Adding 8396796k swap on /dev/sdb2. Priority:-1 extents:1 across:8396796k SS
[ 6.245924] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 6.248108] udevd[428]: starting version 175
[ 6.257653] lp: driver loaded but no devices found
[ 6.260753] rtw driver version=v3.4.4_4749.20121105
[ 6.260756] Build at: Feb 5 2013 19:22:17
[ 6.260799] usbcore: registered new interface driver rtl8192cu
[ 6.269990] EXT4-fs (sdb3): re-mounted. Opts: errors=remount-ro
[ 6.270004] wmi: Mapper loaded
[ 6.277190] nvidia: module license 'NVIDIA' taints kernel.
[ 6.277193] Disabling lock debugging due to kernel taint
[ 6.300071] mei: module is from the staging directory, the quality is unknown, you have been warned.
[ 6.300336] mei 0000:00:16.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 6.300342] mei 0000:00:16.0: setting latency timer to 64
[ 6.300399] mei 0000:00:16.0: irq 44 for MSI/MSI-X
[ 6.304789] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 6.304841] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
[ 6.304866] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[ 6.309066] nvidia 0000:01:00.0: power state changed by ACPI to D0
[ 6.309069] nvidia 0000:01:00.0: power state changed by ACPI to D0
[ 6.309075] nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 6.309081] nvidia 0000:01:00.0: setting latency timer to 64
[ 6.309084] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
[ 6.309147] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 310.14 Tue Oct 9 11:52:41 PDT 2012
[ 6.311873] input: Advanced Silicon S.A. CoolTouch(TM) System as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input10
[ 6.312041] hid-multitouch 0003:2619:5610.0005: input,hidraw8: USB HID v1.10 Device [Advanced Silicon S.A. CoolTouch(TM) System ] on usb-0000:00:1a.0-1.2/input0
[ 6.314411] Bluetooth: Core ver 2.16
[ 6.314427] NET: Registered protocol family 31
[ 6.314429] Bluetooth: HCI device and connection manager initialized
[ 6.314431] Bluetooth: HCI socket layer initialized
[ 6.314432] Bluetooth: L2CAP socket layer initialized
[ 6.314437] Bluetooth: SCO socket layer initialized
[ 6.315172] Linux video capture interface: v2.00
[ 6.315624] uvcvideo: Found UVC 1.00 device Lenovo H264 720P Camera (17ef:4820)
[ 6.316575] uvcvideo: No streaming interface found for terminal 9.
[ 6.316638] input: Lenovo H264 720P Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input11
[ 6.316711] usbcore: registered new interface driver uvcvideo
[ 6.316713] USB Video Class driver (1.1.1)
[ 6.317161] Bluetooth: Generic Bluetooth USB driver ver 0.6
[ 6.318414] usbcore: registered new interface driver btusb
[ 6.352173] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[ 6.352262] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[ 6.352528] snd_hda_intel 0000:01:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 6.352532] hda_intel: Disabling MSI
[ 6.352578] snd_hda_intel 0000:01:00.1: setting latency timer to 64
[ 7.167883] HDMI status: Codec=0 Pin=5 Presence_Detect=0 ELD_Valid=0
[ 7.191871] HDMI status: Codec=1 Pin=5 Presence_Detect=0 ELD_Valid=0
[ 7.215851] HDMI status: Codec=2 Pin=5 Presence_Detect=0 ELD_Valid=0
[ 7.239840] HDMI status: Codec=3 Pin=5 Presence_Detect=0 ELD_Valid=0
[ 7.239941] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input14
[ 7.240097] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input15
[ 7.240258] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input16
[ 7.240389] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input17
[ 7.652233] init: udev-fallback-graphics main process (997) terminated with status 1
[ 8.595751] init: failsafe main process (1017) killed by TERM signal
[ 8.613372] ppdev: user-space parallel port driver
[ 8.614553] Bluetooth: RFCOMM TTY layer initialized
[ 8.614557] Bluetooth: RFCOMM socket layer initialized
[ 8.614558] Bluetooth: RFCOMM ver 1.11
[ 8.623062] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 8.623066] Bluetooth: BNEP filters: protocol multicast
[ 8.651510] init: gdm main process (1147) killed by TERM signal
[ 8.653949] init: kdm main process (1129) killed by TERM signal
[ 8.755975] r8169 0000:03:00.0: eth0: link down
[ 8.756396] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 8.756603] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 9.198313] NVRM: GPU at 0000:01:00: GPU-01a21cf4-41d4-a898-dee1-10943c5d4112
[ 13.215212] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[ 224.244233] register rtw_netdev_ops to netdev_ops
[ 224.244239] CHIP TYPE: RTL8188C_8192C
[ 224.244244]
[ 224.244245] usb_endpoint_descriptor(0):
[ 224.244248] bLength=7
[ 224.244249] bDescriptorType=5
[ 224.244251] bEndpointAddress=81
[ 224.244253] wMaxPacketSize=200
[ 224.244255] bInterval=0
[ 224.244257] RT_usb_endpoint_is_bulk_in = 1
[ 224.244259]
[ 224.244260] usb_endpoint_descriptor(1):
[ 224.244262] bLength=7
[ 224.244264] bDescriptorType=5
[ 224.244265] bEndpointAddress=2
[ 224.244267] wMaxPacketSize=200
[ 224.244269] bInterval=0
[ 224.244270] RT_usb_endpoint_is_bulk_out = 2
[ 224.244273]
[ 224.244273] usb_endpoint_descriptor(2):
[ 224.244275] bLength=7
[ 224.244277] bDescriptorType=5
[ 224.244279] bEndpointAddress=3
[ 224.244280] wMaxPacketSize=200
[ 224.244282] bInterval=0
[ 224.244284] RT_usb_endpoint_is_bulk_out = 3
[ 224.244304]
[ 224.244305] usb_endpoint_descriptor(3):
[ 224.244308] bLength=7
[ 224.244311] bDescriptorType=5
[ 224.244315] bEndpointAddress=84
[ 224.244319] wMaxPacketSize=40
[ 224.244324] bInterval=1
[ 224.244329] RT_usb_endpoint_is_int_in = 4, Interval = 1
[ 224.244336] nr_endpoint=4, in_num=2, out_num=2
[ 224.244338]
[ 224.244342] USB_SPEED_HIGH
[ 224.244540] Chip Version ID: VERSION_NORMAL_TSMC_CHIP_88C.
[ 224.244548] RF_Type is 3!!
[ 224.245012] EEPROM type is E-FUSE
[ 224.245018] ====> ReadAdapterInfo8192C
[ 224.245136] Boot from EFUSE, Autoload OK !
[ 224.434521] EEPROMVID = 0x0bda
[ 224.434525] EEPROMPID = 0x819a
[ 224.434527] EEPROMCustomerID : 0x00
[ 224.434530] EEPROMSubCustomerID: 0x00
[ 224.434532] RT_CustomerID: 0x00
[ 224.434535] _ReadMACAddress MAC Address from EFUSE = 00:1c:7b:a8:a8:f3
[ 224.434539] EEPROMRegulatory = 0x1
[ 224.434541] _ReadBoardType(3)
[ 224.434543] BT Coexistance = disable
[ 224.434546] RT_ChannelPlan: 0x0a
[ 224.434548] _ReadPSSetting...bHWPwrPindetect(0)-bHWPowerdown(10) ,bSupportRemoteWakeup(0)
[ 224.434552] ### PS params=> power_mgnt(1),usbss_enable(0) ###
[ 224.434554] ### AntDivCfg(0)
[ 224.434556] readAdapterInfo_8192CU(): REPLACEMENT = 1
[ 224.434560] <==== ReadAdapterInfo8192C in 188 ms
[ 224.434810] rtw_macaddr_cfg MAC Address = 00:1c:7b:a8:a8:f3
[ 224.434813] MAC Address from pnetdev->dev_addr= 00:1c:7b:a8:a8:f3
[ 224.435407] bDriverStopped:1, bSurpriseRemoved:0, bup:0, hw_init_completed:0
[ 224.446018] bDriverStopped=1
[ 224.446760] +871x_drv - drv_open, bup=0
[ 224.451015] ===> FirmwareDownload91C() fw:Rtl819XFwImageArray_TSMC
[ 224.451021] FirmwareDownload92C accquire FW from embedded image
[ 224.451025] fw_ver=v80, fw_subver=0, sig=0x88c0
[ 224.480086] fw download ok!
[ 224.480091] Set RF Chip ID to RF_6052 and RF type to 1T1R.
[ 224.856055] IQK:Start!!!
[ 224.867168] Path A IQK Success!!
[ 224.875040] Path A IQK Success!!
[ 224.879789] IQK: final_candidate is 0
[ 224.879793] IQK: RegE94=ff RegE9C=e RegEA4=fd RegEAC=3fd RegEB4=0 RegEBC=0 RegEC4=0 RegECC=0
[ 224.879795] Path A IQ Calibration Success !
[ 224.993132] pdmpriv->TxPowerTrackControl = 1
[ 224.998101] MAC Address from REG_MACID = 00:1c:7b:a8:a8:f3
[ 224.998105] rtl8192cu_hal_init in 552ms
[ 224.998109] MAC Address = 00:1c:7b:a8:a8:f3
[ 225.003166] -871x_drv - drv_open, bup=1
[ 225.004517] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 225.005068] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 225.005099] set_mode = IW_MODE_INFRA
[ 225.016246] [rtw_wx_set_pmkid] IW_PMKSA_FLUSH!
[ 225.016257] set_mode = IW_MODE_INFRA
[ 225.056067] [rtw_wx_set_pmkid] IW_PMKSA_FLUSH!
[ 226.410383] survey done event(21)
[ 226.441582] IW_SCAN_THIS_ESSID, ssid=nicht dein WLAN, len=15
[ 227.797021] survey done event(26)
[ 227.799065] wpa_set_auth_algs, AUTH_ALG_OPEN_SYSTEM
[ 227.799073] set_mode = IW_MODE_INFRA
[ 227.799089]
[ 227.799090] wpa_ie(length:22):
[ 227.799094] 0x30 0x14 0x01 0x00 0x00 0x0f 0xac 0x02
[ 227.799098] 0x01 0x00 0x00 0x0f 0xac 0x04 0x01 0x00
[ 227.799101] 0x00 0x0f 0xac 0x02 0x00 0x00 0x00 0x00
[ 227.799115] =>rtw_wx_set_essid
[ 227.799118] ssid=nicht dein WLAN, len=15
[ 227.799122] Set SSID under fw_state=0x00000008
[ 227.799129] [by_bssid:0][assoc_ssid:nicht dein WLAN][to_roaming:0] new candidate: nicht dein WLAN(00:15:0c:f1:0d:d0) rssi:-38
[ 227.799135] rtw_select_and_join_from_scanned_queue: candidate: nicht dein WLAN(00:15:0c:f1:0d:d0)
[ 227.799142] link to new AP
[ 227.799146] <=rtw_wx_set_essid, ret 0
[ 227.799153] Set BSSID under fw_state=0x00000088
[ 227.931502] link to new AP
[ 227.931509] issue_deauth to 00:15:0c:f1:0d:d0
[ 227.935996] OnAuthClient
[ 227.936010] network.SupportedRates[0]=82
[ 227.936015] network.SupportedRates[1]=84
[ 227.936018] network.SupportedRates[2]=8B
[ 227.936022] network.SupportedRates[3]=96
[ 227.936025] network.SupportedRates[4]=2C
[ 227.936029] network.SupportedRates[5]=0C
[ 227.936033] network.SupportedRates[6]=12
[ 227.936036] network.SupportedRates[7]=18
[ 227.936040] network.SupportedRates[8]=24
[ 227.936043] network.SupportedRates[9]=30
[ 227.936047] network.SupportedRates[10]=48
[ 227.936051] network.SupportedRates[11]=60
[ 227.936054] network.SupportedRates[12]=6C
[ 227.936059] issue_assocreq(): the rate[4]=2C is not supported by STA!
[ 227.936063] bssrate_len = 12
[ 227.942603] OnAssocRsp
[ 227.942612] report_join_res(1)
[ 227.942617] rtw_joinbss_update_network
[ 227.942627] rtw_joinbss_update_stainfo
[ 227.942695] HW_VAR_BASIC_RATE: BrateCfg(0x15d)
[ 227.943828] HTOnAssocRsp
[ 227.944031] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 227.948860] update raid entry, mask=0x40000fff, arg=0x80
[ 227.950436] rtl8192c_set_FwJoinBssReport_cmd mstatus(1)
[ 227.951343] SetFwRsvdPagePkt
[ 227.951361] Set RSVD page location to Fw.
[ 227.952695] =>mlmeext_joinbss_event_callback
[ 227.954276]
[ 227.954279] ~~~~stastakey:unicastkey
[ 227.954367]
[ 227.954369] ~~~~stastakey:groupkey
[ 227.954373] ==> rtw_set_key algorithm(2),keyid(2),key_mask(4)
[ 229.012889] rtl8192c_dm_RF_Saving(): RF_Save
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Fwd: bugreport upstream: 0bda:819a RTL8188CUS WLAN doesn't work out of the box
2013-02-07 17:01 ` Fwd: " Thomas Rosenkranz
@ 2013-02-07 17:38 ` Larry Finger
0 siblings, 0 replies; 8+ messages in thread
From: Larry Finger @ 2013-02-07 17:38 UTC (permalink / raw)
To: Thomas Rosenkranz; +Cc: Xose Vazquez Perez, linux-wireless
On 02/07/2013 11:01 AM, Thomas Rosenkranz wrote:
> I know thats why i wanted to remove it before.
> Sorry I didn't saw the last two commands they were shown as citation.
> Finally rtl8192cu works with the patch
Good. I'll submit a patch adding this USB ID to the standard kernels. I'll also
send it to you so that you can patch your kernel and do away with the writing of
new_id.
Larry
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2013-02-07 17:38 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-26 22:07 bugreport upstream: 0bda:819a RTL8188CUS WLAN doesn't work out of the box Xose Vazquez Perez
2013-02-06 19:05 ` Larry Finger
2013-02-06 20:03 ` Thomas Rosenkranz
2013-02-06 23:56 ` Larry Finger
[not found] ` <CAOAX8-=_D9PncnaCGkfFKBkenxppQ-EksEQk5UwFKtBY+toRaQ@mail.gmail.com>
[not found] ` <CAOAX8-nafHZiCYYP2-ApLMKJ-d3HKcbkENeztpPjLKv39EEzig@mail.gmail.com>
[not found] ` <CAOAX8-nCRm2S0OX8TeNmZ9HGe0MB8UmA-huWE_QctgDhtFrZEA@mail.gmail.com>
[not found] ` <5113D9C0.1080501@gmail.com>
[not found] ` <CAOAX8-k28rV4mx3D9U_jLHbVPmphEd0ZsfwPp4TatVxkdts=_w@mail.gmail.com>
[not found] ` <CAOAX8-m-nOLtSXAnWGHia8U2qsp_QPnJ-O0cqUy2FWwoLFh-_g@mail.gmail.com>
[not found] ` <5113DCC2.3070306@gmail.com>
2013-02-07 17:01 ` Fwd: " Thomas Rosenkranz
2013-02-07 17:38 ` Larry Finger
2013-02-06 23:03 ` Xose Vazquez Perez
2013-02-06 23:50 ` Larry Finger
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).