* Re: BUG: All network processes hang (brcmsmac/wpa_supplicant)
From: Nico Schottelius @ 2011-10-19 13:09 UTC (permalink / raw)
To: Eric Dumazet
Cc: Arend van Spriel, Nico Schottelius, LKML,
linux-wireless@vger.kernel.org, netdev
In-Reply-To: <1319029529.8416.3.camel@edumazet-laptop>
Eric Dumazet [Wed, Oct 19, 2011 at 03:05:29PM +0200]:
> [...]
> make menuconfig
> -> Kernel hacking
> -> Lock debugging: prove locking correctness
Alright, rebuilding.
Nico
--
PGP key: 7ED9 F7D3 6B10 81D7 0EC5 5C09 D7DC C8E4 3187 7DF0
^ permalink raw reply
* Re: BUG: All network processes hang (brcmsmac/wpa_supplicant)
From: Nico Schottelius @ 2011-10-19 13:07 UTC (permalink / raw)
To: Eric Dumazet
Cc: Nico Schottelius, Arend van Spriel, LKML,
linux-wireless@vger.kernel.org, netdev
In-Reply-To: <1319028563.8416.1.camel@edumazet-laptop>
Hey Eric,
Eric Dumazet [Wed, Oct 19, 2011 at 02:49:23PM +0200]:
>
> Sorry, no CONFIG_LOCKDEP in your config or dmesg. Maybe you sent a
> previous dmesg/config file ?
>
> Note that you have "CONFIG_LOCKDEP_SUPPORT=y", not "CONFIG_LOCKDEP=y"
Right, make all told me to setup CONFIG_LOCKDEP_SUPPORT=y, but I've
setup CONFIG_LOCKDEP=y manually in .config as I haven't found the entry
in menuconfig.
It seems that this option was removed from .config in the build process,
though.
Should I set it up via
make -j5 CONFIG_LOCKDEP=y CONFIG_LOCKDEP_SUPPORT=y
?
Cheers,
Nico
--
PGP key: 7ED9 F7D3 6B10 81D7 0EC5 5C09 D7DC C8E4 3187 7DF0
^ permalink raw reply
* Re: BUG: All network processes hang (brcmsmac/wpa_supplicant)
From: Eric Dumazet @ 2011-10-19 13:05 UTC (permalink / raw)
To: Arend van Spriel
Cc: Nico Schottelius, LKML, linux-wireless@vger.kernel.org, netdev
In-Reply-To: <4E9EC96E.8020303@broadcom.com>
Le mercredi 19 octobre 2011 à 14:58 +0200, Arend van Spriel a écrit :
> On 10/19/2011 02:49 PM, Eric Dumazet wrote:
> > Le mercredi 19 octobre 2011 à 14:36 +0200, Nico Schottelius a écrit :
> >> Hello,
> >>
> >> I've
> >>
> >> Eric Dumazet [Tue, Oct 18, 2011 at 02:24:25PM +0200]:
> >>> Must be a mutex_unlock(some_mltex) missing somewhere.
> >>>
> >>> Then later, a process holding RTNL is blocking on mutex_lock(some_mutex)
> >>>
> >>> Try a "CONFIG_LOCKDEP=y" enabled build
> >>
> >> Did so, attached is the dmesg output after 3x suspend.
> >>
> >> It also seems this bug gets more / only triggered when I loose the
> >> connection to a wpa2-eap network that is defined like this:
> >>
> >> network={
> >> ssid="eth"
> >> id_str="eth-802.2x"
> >> key_mgmt=WPA-EAP
> >> proto=WPA2
> >> eap=TTLS
> >> pairwise=CCMP TKIP
> >> group=CCMP TKIP
> >> phase2="auth=MSCHAPV2"
> >> identity="MYNAME"
> >> password="forgottoremoveit"
> >> }
> >>
> >> Hope the dmesg output helps and we can remove the problem soon
> >> and making the mba finally almost completly usable :-)
> >>
> >
> > Sorry, no CONFIG_LOCKDEP in your config or dmesg. Maybe you sent a
> > previous dmesg/config file ?
> >
> > Note that you have "CONFIG_LOCKDEP_SUPPORT=y", not "CONFIG_LOCKDEP=y"
> >
>
> Hi Eric,
>
> Are there any configuration setting needed that CONFIG_LOCKDEP depends on?
config LOCKDEP
bool
depends on DEBUG_KERNEL && TRACE_IRQFLAGS_SUPPORT && STACKTRACE_SUPPORT && LOCKDEP_SUPPORT
select STACKTRACE
select FRAME_POINTER if !MIPS && !PPC && !ARM_UNWIND && !S390 && !MICROBLAZE
select KALLSYMS
select KALLSYMS_ALL
make menuconfig
-> Kernel hacking
-> Lock debugging: prove locking correctness
^ permalink raw reply
* Re: Ralink RT3070: absolute transmit power information
From: Ivo Van Doorn @ 2011-10-19 12:59 UTC (permalink / raw)
To: raghunathan.kailasanathan; +Cc: linux-wireless
In-Reply-To: <F099D0EF3989304DBA09D2E81781FF0B049E41F9@BLR-SJP-MBX4.wipro.com>
On Wed, Oct 19, 2011 at 2:40 PM, <raghunathan.kailasanathan@wipro.com> wrote:
> Hi all,
> On my ubuntu machine I can view transmit power used by RT3070 driver using "iwpriv ra0 show TxPower".
> It looks like this returns results in percentage - I got 75 (implying 75%).
>
> How do I get the absolute transmit power used (in dBm or mW) ?
You are using a driver not supported by this project,
so you have to manually change the Ralink driver source code yourself.
When you use the rt2x00 drivers, you automatically get the dBm/mW value.
Ivo
^ permalink raw reply
* Re: BUG: All network processes hang (brcmsmac/wpa_supplicant)
From: Arend van Spriel @ 2011-10-19 12:58 UTC (permalink / raw)
To: Eric Dumazet
Cc: Nico Schottelius, LKML, linux-wireless@vger.kernel.org, netdev
In-Reply-To: <1319028563.8416.1.camel@edumazet-laptop>
On 10/19/2011 02:49 PM, Eric Dumazet wrote:
> Le mercredi 19 octobre 2011 à 14:36 +0200, Nico Schottelius a écrit :
>> Hello,
>>
>> I've
>>
>> Eric Dumazet [Tue, Oct 18, 2011 at 02:24:25PM +0200]:
>>> Must be a mutex_unlock(some_mltex) missing somewhere.
>>>
>>> Then later, a process holding RTNL is blocking on mutex_lock(some_mutex)
>>>
>>> Try a "CONFIG_LOCKDEP=y" enabled build
>>
>> Did so, attached is the dmesg output after 3x suspend.
>>
>> It also seems this bug gets more / only triggered when I loose the
>> connection to a wpa2-eap network that is defined like this:
>>
>> network={
>> ssid="eth"
>> id_str="eth-802.2x"
>> key_mgmt=WPA-EAP
>> proto=WPA2
>> eap=TTLS
>> pairwise=CCMP TKIP
>> group=CCMP TKIP
>> phase2="auth=MSCHAPV2"
>> identity="MYNAME"
>> password="forgottoremoveit"
>> }
>>
>> Hope the dmesg output helps and we can remove the problem soon
>> and making the mba finally almost completly usable :-)
>>
>
> Sorry, no CONFIG_LOCKDEP in your config or dmesg. Maybe you sent a
> previous dmesg/config file ?
>
> Note that you have "CONFIG_LOCKDEP_SUPPORT=y", not "CONFIG_LOCKDEP=y"
>
Hi Eric,
Are there any configuration setting needed that CONFIG_LOCKDEP depends on?
Gr. AvS
^ permalink raw reply
* Ralink RT3070: absolute transmit power information
From: raghunathan.kailasanathan @ 2011-10-19 12:40 UTC (permalink / raw)
To: linux-wireless
Hi all,
On my ubuntu machine I can view transmit power used by RT3070 driver using "iwpriv ra0 show TxPower".
It looks like this returns results in percentage - I got 75 (implying 75%).
How do I get the absolute transmit power used (in dBm or mW) ?
Regards
Raghu
^ permalink raw reply
* Re: iwlagn is getting very shaky
From: Norbert Preining @ 2011-10-19 12:49 UTC (permalink / raw)
To: Guy, Wey-Yi
Cc: David Rientjes, linux-kernel@vger.kernel.org,
ipw3945-devel@lists.sourceforge.net, ilw@linux.intel.com,
linux-wireless@vger.kernel.org, Pekka Enberg
In-Reply-To: <1319004836.31823.57.camel@wwguy-huron>
Hi Wey,
On Di, 18 Okt 2011, Guy, Wey-Yi wrote:
> Could you please let me know the brand/model of the AP which having
> problem. Also the configuration of your NIC also help.
I will try to find out as many information as possible tomorrow
when I am back at university. I think the routers are hanging on
the ceiling, so I can somehow check what they are.
> also, when you say you don't have problem with other router, could you
> please be more clear, are those APs having the similar functions as the
> one you have in university, or different?
Well, at home I have a normal WLAN router, one where you plug on
the one side some upstream cable and then you have several downstream
cable (eth) and wlan.
On the university there is probably much more system since there are many
APs and one can easily wander around. I will try to find out as
much as possible.
Anything one can to wiht iwconfig, ethercap or similar tools?
> just got a idea, could you try to revert
> commit#68b993118f715cc631b62b6a50574e4701fe9ace
I try it tomorrow and let you know. I tried for now to revert it
directly without success, but I will try to do it by hand. If
I have problems I let you know. Tomorrow, now is break time ;-)
Best wishes
Norbert
------------------------------------------------------------------------
Norbert Preining preining@{jaist.ac.jp, logic.at, debian.org}
JAIST, Japan TeX Live & Debian Developer
DSA: 0x09C5B094 fp: 14DF 2E6C 0307 BE6D AD76 A9C0 D2BF 4AA3 09C5 B094
------------------------------------------------------------------------
DES MOINES (pl.n.)
The two little lines which come down from your nose.
--- Douglas Adams, The Meaning of Liff
^ permalink raw reply
* Re: BUG: All network processes hang (brcmsmac/wpa_supplicant)
From: Eric Dumazet @ 2011-10-19 12:49 UTC (permalink / raw)
To: Nico Schottelius
Cc: Arend van Spriel, LKML, linux-wireless@vger.kernel.org, netdev
In-Reply-To: <20111019123602.GA11883@schottelius.org>
Le mercredi 19 octobre 2011 à 14:36 +0200, Nico Schottelius a écrit :
> Hello,
>
> I've
>
> Eric Dumazet [Tue, Oct 18, 2011 at 02:24:25PM +0200]:
> > Must be a mutex_unlock(some_mltex) missing somewhere.
> >
> > Then later, a process holding RTNL is blocking on mutex_lock(some_mutex)
> >
> > Try a "CONFIG_LOCKDEP=y" enabled build
>
> Did so, attached is the dmesg output after 3x suspend.
>
> It also seems this bug gets more / only triggered when I loose the
> connection to a wpa2-eap network that is defined like this:
>
> network={
> ssid="eth"
> id_str="eth-802.2x"
> key_mgmt=WPA-EAP
> proto=WPA2
> eap=TTLS
> pairwise=CCMP TKIP
> group=CCMP TKIP
> phase2="auth=MSCHAPV2"
> identity="MYNAME"
> password="forgottoremoveit"
> }
>
> Hope the dmesg output helps and we can remove the problem soon
> and making the mba finally almost completly usable :-)
>
Sorry, no CONFIG_LOCKDEP in your config or dmesg. Maybe you sent a
previous dmesg/config file ?
Note that you have "CONFIG_LOCKDEP_SUPPORT=y", not "CONFIG_LOCKDEP=y"
^ permalink raw reply
* Re: BUG: All network processes hang (brcmsmac/wpa_supplicant)
From: Nico Schottelius @ 2011-10-19 12:36 UTC (permalink / raw)
To: Eric Dumazet, Arend van Spriel, Nico Schottelius, LKML,
linux-wireless@vger.kernel.org
Cc: netdev
In-Reply-To: <1318940665.2657.60.camel@edumazet-HP-Compaq-6005-Pro-SFF-PC>
[-- Attachment #1: Type: text/plain, Size: 843 bytes --]
Hello,
I've
Eric Dumazet [Tue, Oct 18, 2011 at 02:24:25PM +0200]:
> Must be a mutex_unlock(some_mltex) missing somewhere.
>
> Then later, a process holding RTNL is blocking on mutex_lock(some_mutex)
>
> Try a "CONFIG_LOCKDEP=y" enabled build
Did so, attached is the dmesg output after 3x suspend.
It also seems this bug gets more / only triggered when I loose the
connection to a wpa2-eap network that is defined like this:
network={
ssid="eth"
id_str="eth-802.2x"
key_mgmt=WPA-EAP
proto=WPA2
eap=TTLS
pairwise=CCMP TKIP
group=CCMP TKIP
phase2="auth=MSCHAPV2"
identity="MYNAME"
password="forgottoremoveit"
}
Hope the dmesg output helps and we can remove the problem soon
and making the mba finally almost completly usable :-)
Cheers,
Nico
--
PGP key: 7ED9 F7D3 6B10 81D7 0EC5 5C09 D7DC C8E4 3187 7DF0
[-- Attachment #2: 3.1.0-rc6-gbee709a.config.gz --]
[-- Type: application/octet-stream, Size: 32180 bytes --]
[-- Attachment #3: 3.1.0-rc6-gbee709a.dmesg --]
[-- Type: text/plain, Size: 130038 bytes --]
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 3.1.0-rc6-gbee709a (nico@brief) (gcc version 4.6.1 20110819 (prerelease) (GCC) ) #2 SMP PREEMPT Tue Oct 18 15:55:28 CEST 2011
[ 0.000000] Command line: root=/dev/mapper/root cryptdevice=/dev/sda5:root ro initrd=../initramfs-nico.img BOOT_IMAGE=../vmlinuz-nico
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000008f000 (usable)
[ 0.000000] BIOS-e820: 000000000008f000 - 0000000000090000 (reserved)
[ 0.000000] BIOS-e820: 0000000000090000 - 000000000009fc00 (usable)
[ 0.000000] BIOS-e820: 000000000009fc00 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 0000000020000000 (usable)
[ 0.000000] BIOS-e820: 0000000020000000 - 0000000020200000 (reserved)
[ 0.000000] BIOS-e820: 0000000020200000 - 0000000040000000 (usable)
[ 0.000000] BIOS-e820: 0000000040000000 - 0000000040200000 (reserved)
[ 0.000000] BIOS-e820: 0000000040200000 - 000000008ad36000 (usable)
[ 0.000000] BIOS-e820: 000000008ad36000 - 000000008ad5f000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000008ad5f000 - 000000008afa2000 (ACPI data)
[ 0.000000] BIOS-e820: 000000008afa2000 - 000000008afff000 (reserved)
[ 0.000000] BIOS-e820: 000000008afff000 - 000000008b000000 (ACPI data)
[ 0.000000] BIOS-e820: 000000008b000000 - 000000008fa00000 (reserved)
[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed04000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed10000 - 00000000fed14000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed18000 - 00000000fed1a000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] BIOS-e820: 00000000ff800000 - 0000000100000000 (reserved)
[ 0.000000] BIOS-e820: 0000000100000000 - 000000016fe00000 (usable)
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] DMI 2.4 present.
[ 0.000000] DMI: Apple Inc. MacBookAir4,2/Mac-742912EFDBEE19B3, BIOS MBA41.88Z.0077.B08.1109011050 09/01/2011
[ 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 = 0x16fe00 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: write-back
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-DFFFF write-protect
[ 0.000000] E0000-FFFFF uncachable
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 0C0000000 mask FC0000000 uncachable
[ 0.000000] 1 base 0A0000000 mask FE0000000 uncachable
[ 0.000000] 2 base 090000000 mask FF0000000 uncachable
[ 0.000000] 3 base 08C000000 mask FFC000000 uncachable
[ 0.000000] 4 base 08B800000 mask FFF800000 uncachable
[ 0.000000] 5 disabled
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] 8 disabled
[ 0.000000] 9 disabled
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] last_pfn = 0x8ad36 max_arch_pfn = 0x400000000
[ 0.000000] initial memory mapped : 0 - 20000000
[ 0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480
[ 0.000000] init_memory_mapping: 0000000000000000-000000008ad36000
[ 0.000000] 0000000000 - 008ac00000 page 2M
[ 0.000000] 008ac00000 - 008ad36000 page 4k
[ 0.000000] kernel direct mapping tables up to 8ad36000 @ 8ad31000-8ad36000
[ 0.000000] init_memory_mapping: 0000000100000000-000000016fe00000
[ 0.000000] 0100000000 - 016fe00000 page 2M
[ 0.000000] kernel direct mapping tables up to 16fe00000 @ 16fdf9000-16fe00000
[ 0.000000] RAMDISK: 1fd29000 - 1ffff000
[ 0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 APPLE )
[ 0.000000] ACPI: XSDT 000000008ad8e1c0 000AC (v01 APPLE Apple00 00000060 01000013)
[ 0.000000] ACPI: FACP 000000008ad8c000 000F4 (v04 APPLE Apple00 00000060 Loki 0000005F)
[ 0.000000] ACPI: DSDT 000000008ad81000 05050 (v01 APPLE MacBookA 00040001 INTL 20100915)
[ 0.000000] ACPI: FACS 000000008ad40000 00040
[ 0.000000] ACPI: HPET 000000008ad8b000 00038 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: APIC 000000008ad8a000 000BC (v02 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: SBST 000000008ad88000 00030 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: ECDT 000000008ad87000 00053 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: SSDT 000000008ad7d000 00024 (v01 APPLE SmcDppt 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 000000008ad7b000 006CA (v01 APPLE UsbSD 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 000000008ad77000 00159 (v02 APPLE IGHda 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 000000008ad73000 015EB (v02 APPLE SsdtIGPU 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 000000008ad72000 00506 (v01 PmRef Cpu0Ist 00003000 INTL 20100915)
[ 0.000000] ACPI: SSDT 000000008ad71000 009B1 (v01 PmRef CpuPm 00003000 INTL 20100915)
[ 0.000000] ACPI: SSDT 000000008ad70000 00315 (v01 PmRef Cpu0Tst 00003000 INTL 20100915)
[ 0.000000] ACPI: SSDT 000000008ad6f000 0037A (v01 PmRef ApTst 00003000 INTL 20100915)
[ 0.000000] ACPI: MCFG 000000008ad89000 0003C (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: SSDT 000000008ad80000 000FA (v01 SataRe SataPri 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 000000008ad7f000 000D0 (v01 SataRe SataSec 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 000000008ad7e000 00032 (v01 Apple SsdtS3 00001000 INTL 20100915)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at 0000000000000000-000000016fe00000
[ 0.000000] Initmem setup node 0 0000000000000000-000000016fe00000
[ 0.000000] NODE_DATA [000000016fdfb000 - 000000016fdfffff]
[ 0.000000] [ffffea0000000000-ffffea0005bfffff] PMD -> [ffff88016b400000-ffff88016f3fffff] on node 0
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000010 -> 0x00001000
[ 0.000000] DMA32 0x00001000 -> 0x00100000
[ 0.000000] Normal 0x00100000 -> 0x0016fe00
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[6] active PFN ranges
[ 0.000000] 0: 0x00000010 -> 0x0000008f
[ 0.000000] 0: 0x00000090 -> 0x0000009f
[ 0.000000] 0: 0x00000100 -> 0x00020000
[ 0.000000] 0: 0x00020200 -> 0x00040000
[ 0.000000] 0: 0x00040200 -> 0x0008ad36
[ 0.000000] 0: 0x00100000 -> 0x0016fe00
[ 0.000000] On node 0 totalpages: 1025732
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 5 pages reserved
[ 0.000000] DMA zone: 3913 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 16320 pages used for memmap
[ 0.000000] DMA32 zone: 547190 pages, LIFO batch:31
[ 0.000000] Normal zone: 7160 pages used for memmap
[ 0.000000] Normal zone: 451080 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[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0xff] disabled)
[ 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: 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: 0x8086a201 base: 0xfed00000
[ 0.000000] SMP: Allowing 8 CPUs, 4 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 40
[ 0.000000] PM: Registered nosave memory: 000000000008f000 - 0000000000090000
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
[ 0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
[ 0.000000] PM: Registered nosave memory: 0000000040000000 - 0000000040200000
[ 0.000000] PM: Registered nosave memory: 000000008ad36000 - 000000008ad5f000
[ 0.000000] PM: Registered nosave memory: 000000008ad5f000 - 000000008afa2000
[ 0.000000] PM: Registered nosave memory: 000000008afa2000 - 000000008afff000
[ 0.000000] PM: Registered nosave memory: 000000008afff000 - 000000008b000000
[ 0.000000] PM: Registered nosave memory: 000000008b000000 - 000000008fa00000
[ 0.000000] PM: Registered nosave memory: 000000008fa00000 - 00000000e0000000
[ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
[ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 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 - 00000000fed10000
[ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed14000
[ 0.000000] PM: Registered nosave memory: 00000000fed14000 - 00000000fed18000
[ 0.000000] PM: Registered nosave memory: 00000000fed18000 - 00000000fed1a000
[ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 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 - 00000000ff800000
[ 0.000000] PM: Registered nosave memory: 00000000ff800000 - 0000000100000000
[ 0.000000] Allocating PCI resources starting at 8fa00000 (gap: 8fa00000:50600000)
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 27 pages/cpu @ffff88016fa00000 s80448 r8192 d21952 u262144
[ 0.000000] pcpu-alloc: s80448 r8192 d21952 u262144 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1002183
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: root=/dev/mapper/root cryptdevice=/dev/sda5:root ro initrd=../initramfs-nico.img BOOT_IMAGE=../vmlinuz-nico
[ 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: 3955764k/6027264k available (4209k kernel code, 1924336k absent, 147164k reserved, 5235k data, 724k init)
[ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.000000] Preemptible hierarchical RCU implementation.
[ 0.000000] Verbose stalled-CPUs detection is disabled.
[ 0.000000] NR_IRQS:2304
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] allocated 33554432 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.003333] Detected 1699.961 MHz processor.
[ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 3401.58 BogoMIPS (lpj=5666536)
[ 0.000136] pid_max: default: 32768 minimum: 301
[ 0.000343] Security Framework initialized
[ 0.000909] AppArmor: AppArmor disabled by boot time parameter
[ 0.001480] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.002799] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.003361] Mount-cache hash table entries: 256
[ 0.003857] Initializing cgroup subsys cpuacct
[ 0.003954] Initializing cgroup subsys memory
[ 0.004036] Initializing cgroup subsys devices
[ 0.004100] Initializing cgroup subsys freezer
[ 0.004165] Initializing cgroup subsys net_cls
[ 0.004229] Initializing cgroup subsys blkio
[ 0.004371] CPU: Physical Processor ID: 0
[ 0.004434] CPU: Processor Core ID: 0
[ 0.004501] mce: CPU supports 7 MCE banks
[ 0.004578] CPU0: Thermal monitoring enabled (TM1)
[ 0.004652] using mwait in idle threads.
[ 0.006261] ACPI: Core revision 20110623
[ 0.015049] ftrace: allocating 17949 entries in 71 pages
[ 0.024976] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.058028] CPU0: Intel(R) Core(TM) i5-2557M CPU @ 1.70GHz stepping 07
[ 0.164179] Performance Events: PEBS fmt1+, SandyBridge events, Intel PMU driver.
[ 0.164390] ... version: 3
[ 0.164452] ... bit width: 48
[ 0.164515] ... generic registers: 4
[ 0.164578] ... value mask: 0000ffffffffffff
[ 0.164643] ... max period: 000000007fffffff
[ 0.164708] ... fixed-purpose events: 3
[ 0.164771] ... event mask: 000000070000000f
[ 0.184633] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.210843] Booting Node 0, Processors #1
[ 0.210948] smpboot cpu 1: start_ip = 9a000
[ 0.324200] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.344129] #2
[ 0.344175] smpboot cpu 2: start_ip = 9a000
[ 0.457454] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.477367] #3
[ 0.477423] smpboot cpu 3: start_ip = 9a000
[ 0.590718] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.597263] Brought up 4 CPUs
[ 0.597342] Total of 4 processors activated (13605.51 BogoMIPS).
[ 0.601219] devtmpfs: initialized
[ 0.602291] PM: Registering ACPI NVS region at 8ad36000 (167936 bytes)
[ 0.603319] print_constraints: dummy:
[ 0.603470] NET: Registered protocol family 16
[ 0.603646] ACPI: bus type pci registered
[ 0.603880] PCI: MMCONFIG for domain 0000 [bus 00-97] at [mem 0xe0000000-0xe97fffff] (base 0xe0000000)
[ 0.603974] PCI: MMCONFIG at [mem 0xe0000000-0xe97fffff] reserved in E820
[ 0.645673] PCI: Using configuration type 1 for base access
[ 0.646329] bio: create slab <bio-0> at 0
[ 0.646519] ACPI: Added _OSI(Module Device)
[ 0.646582] ACPI: Added _OSI(Processor Device)
[ 0.646645] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.646710] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.648395] ACPI: EC: EC description table is found, configuring boot EC
[ 0.655149] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[ 0.655761] ACPI: SSDT 000000008ad3b190 00781 (v01 PmRef Cpu0Cst 00003001 INTL 20100915)
[ 0.656343] ACPI: Dynamic OEM Table Load:
[ 0.656488] ACPI: SSDT (null) 00781 (v01 PmRef Cpu0Cst 00003001 INTL 20100915)
[ 0.664190] ACPI: SSDT 000000008ad3c710 003A4 (v01 PmRef ApIst 00003000 INTL 20100915)
[ 0.664821] ACPI: Dynamic OEM Table Load:
[ 0.664966] ACPI: SSDT (null) 003A4 (v01 PmRef ApIst 00003000 INTL 20100915)
[ 0.674011] ACPI: SSDT 000000008ad3ad90 00119 (v01 PmRef ApCst 00003000 INTL 20100915)
[ 0.674585] ACPI: Dynamic OEM Table Load:
[ 0.674729] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20100915)
[ 0.684465] ACPI: Interpreter enabled
[ 0.684529] ACPI: (supports S0 S3 S4 S5)
[ 0.684776] ACPI: Using IOAPIC for interrupt routing
[ 0.705167] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[ 0.705419] ACPI: No dock devices found.
[ 0.705483] HEST: Table not found.
[ 0.705546] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.706008] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.706657] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
[ 0.706726] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
[ 0.706795] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[ 0.706879] pci_root PNP0A08:00: host bridge window [mem 0x8fa00000-0xfeafffff]
[ 0.706962] pci_root PNP0A08:00: host bridge window [mem 0xfed40000-0xfed44fff]
[ 0.707055] pci 0000:00:00.0: [8086:0104] type 0 class 0x000600
[ 0.707097] pci 0000:00:01.0: [8086:0101] type 1 class 0x000604
[ 0.707129] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.707132] pci 0000:00:01.0: PME# disabled
[ 0.707160] pci 0000:00:02.0: [8086:0116] type 0 class 0x000300
[ 0.707174] pci 0000:00:02.0: reg 10: [mem 0xa0000000-0xa03fffff 64bit]
[ 0.707182] pci 0000:00:02.0: reg 18: [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.707194] pci 0000:00:02.0: reg 20: [io 0x2000-0x203f]
[ 0.707267] pci 0000:00:16.0: [8086:1c3a] type 0 class 0x000780
[ 0.707298] pci 0000:00:16.0: reg 10: [mem 0xa0607100-0xa060710f 64bit]
[ 0.707374] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.707380] pci 0000:00:16.0: PME# disabled
[ 0.707421] pci 0000:00:1a.0: [8086:1c2c] type 0 class 0x000c03
[ 0.707471] pci 0000:00:1a.0: reg 20: [io 0x2140-0x215f]
[ 0.707542] pci 0000:00:1a.7: [8086:1c2d] type 0 class 0x000c03
[ 0.707568] pci 0000:00:1a.7: reg 10: [mem 0xa0606c00-0xa0606fff]
[ 0.707657] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[ 0.707663] pci 0000:00:1a.7: PME# disabled
[ 0.707693] pci 0000:00:1b.0: [8086:1c20] type 0 class 0x000403
[ 0.707715] pci 0000:00:1b.0: reg 10: [mem 0xa0600000-0xa0603fff 64bit]
[ 0.707785] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.707789] pci 0000:00:1b.0: PME# disabled
[ 0.707818] pci 0000:00:1c.0: [8086:1c10] type 1 class 0x000604
[ 0.707920] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.707926] pci 0000:00:1c.0: PME# disabled
[ 0.707967] pci 0000:00:1c.1: [8086:1c12] type 1 class 0x000604
[ 0.708070] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.708076] pci 0000:00:1c.1: PME# disabled
[ 0.708119] pci 0000:00:1d.0: [8086:1c27] type 0 class 0x000c03
[ 0.708169] pci 0000:00:1d.0: reg 20: [io 0x20e0-0x20ff]
[ 0.708240] pci 0000:00:1d.7: [8086:1c26] type 0 class 0x000c03
[ 0.708266] pci 0000:00:1d.7: reg 10: [mem 0xa0606800-0xa0606bff]
[ 0.708353] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.708359] pci 0000:00:1d.7: PME# disabled
[ 0.708387] pci 0000:00:1f.0: [8086:1c4d] type 0 class 0x000601
[ 0.708518] pci 0000:00:1f.2: [8086:1c01] type 0 class 0x000101
[ 0.708539] pci 0000:00:1f.2: reg 10: [io 0x2168-0x216f]
[ 0.708551] pci 0000:00:1f.2: reg 14: [io 0x217c-0x217f]
[ 0.708565] pci 0000:00:1f.2: reg 18: [io 0x2160-0x2167]
[ 0.708576] pci 0000:00:1f.2: reg 1c: [io 0x2178-0x217b]
[ 0.708587] pci 0000:00:1f.2: reg 20: [io 0x2060-0x206f]
[ 0.708597] pci 0000:00:1f.2: reg 24: [io 0xffe0-0xffef]
[ 0.708646] pci 0000:00:1f.3: [8086:1c22] type 0 class 0x000c05
[ 0.708666] pci 0000:00:1f.3: reg 10: [mem 0xa0607000-0xa06070ff 64bit]
[ 0.708691] pci 0000:00:1f.3: reg 20: [io 0xefa0-0xefbf]
[ 0.708764] pci 0000:03:00.0: [8086:151a] type 1 class 0x000604
[ 0.708815] pci 0000:03:00.0: supports D1 D2
[ 0.708817] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.708821] pci 0000:03:00.0: PME# disabled
[ 0.713873] pci 0000:00:01.0: PCI bridge to [bus 03-97]
[ 0.713953] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
[ 0.713956] pci 0000:00:01.0: bridge window [mem 0xa0700000-0xa49fffff]
[ 0.713962] pci 0000:00:01.0: bridge window [mem 0xa4a00000-0xa89fffff 64bit pref]
[ 0.714013] pci 0000:04:00.0: [8086:151a] type 1 class 0x000604
[ 0.714067] pci 0000:04:00.0: supports D1 D2
[ 0.714069] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.714073] pci 0000:04:00.0: PME# disabled
[ 0.714108] pci 0000:04:03.0: [8086:151a] type 1 class 0x000604
[ 0.714162] pci 0000:04:03.0: supports D1 D2
[ 0.714164] pci 0000:04:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.714168] pci 0000:04:03.0: PME# disabled
[ 0.714197] pci 0000:04:04.0: [8086:151a] type 1 class 0x000604
[ 0.714251] pci 0000:04:04.0: supports D1 D2
[ 0.714253] pci 0000:04:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.714257] pci 0000:04:04.0: PME# disabled
[ 0.714302] pci 0000:03:00.0: PCI bridge to [bus 04-67]
[ 0.714372] pci 0000:03:00.0: bridge window [mem 0xa0700000-0xa09fffff]
[ 0.714437] pci 0000:05:00.0: [8086:151a] type 0 class 0x000880
[ 0.714453] pci 0000:05:00.0: reg 10: [mem 0xa0700000-0xa073ffff]
[ 0.714465] pci 0000:05:00.0: reg 14: [mem 0xa0740000-0xa0740fff]
[ 0.714544] pci 0000:05:00.0: supports D1 D2
[ 0.714546] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.714551] pci 0000:05:00.0: PME# disabled
[ 0.720536] pci 0000:04:00.0: PCI bridge to [bus 05-05]
[ 0.720621] pci 0000:04:00.0: bridge window [mem 0xa0700000-0xa07fffff]
[ 0.720668] pci 0000:04:03.0: PCI bridge to [bus 06-36]
[ 0.720738] pci 0000:04:03.0: bridge window [mem 0xa0800000-0xa08fffff]
[ 0.720783] pci 0000:04:04.0: PCI bridge to [bus 37-67]
[ 0.720855] pci 0000:04:04.0: bridge window [mem 0xa0900000-0xa09fffff]
[ 0.720950] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
[ 0.721022] pci 0000:00:1c.0: bridge window [mem 0xa0500000-0xa05fffff]
[ 0.721184] pci 0000:02:00.0: [14e4:4353] type 0 class 0x000280
[ 0.721236] pci 0000:02:00.0: reg 10: [mem 0xa0400000-0xa0403fff 64bit]
[ 0.721445] pci 0000:02:00.0: supports D1 D2
[ 0.721447] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.721457] pci 0000:02:00.0: PME# disabled
[ 0.727247] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
[ 0.727318] pci 0000:00:1c.1: bridge window [mem 0xa0400000-0xa04fffff]
[ 0.727359] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.727471] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2._PRT]
[ 0.727571] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[ 0.727684] pci0000:00: Requesting ACPI _OSC control (0x1d)
[ 0.727892] pci0000:00: ACPI _OSC control (0x19) granted
[ 0.731347] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[ 0.732006] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
[ 0.732609] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[ 0.733263] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15)
[ 0.733868] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 0.734566] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
[ 0.735220] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[ 0.735873] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15)
[ 0.736531] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.736622] vgaarb: loaded
[ 0.736682] vgaarb: bridge control possible 0000:00:02.0
[ 0.736831] PCI: Using ACPI for IRQ routing
[ 0.741159] PCI: pci_cache_line_size set to 64 bytes
[ 0.741281] reserve RAM buffer: 000000000008f000 - 000000000008ffff
[ 0.741284] reserve RAM buffer: 000000000009fc00 - 000000000009ffff
[ 0.741287] reserve RAM buffer: 000000008ad36000 - 000000008bffffff
[ 0.741290] reserve RAM buffer: 000000016fe00000 - 000000016fffffff
[ 0.741411] NetLabel: Initializing
[ 0.741472] NetLabel: domain hash size = 128
[ 0.741535] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.741613] NetLabel: unlabeled traffic allowed by default
[ 0.741696] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.742133] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.744216] Switching to clocksource hpet
[ 0.747179] Switched to NOHz mode on CPU #0
[ 0.747280] Switched to NOHz mode on CPU #1
[ 0.747284] Switched to NOHz mode on CPU #2
[ 0.747295] Switched to NOHz mode on CPU #3
[ 0.750842] pnp: PnP ACPI init
[ 0.750921] ACPI: bus type pnp registered
[ 0.751330] pnp 00:00: [bus 00-ff]
[ 0.751333] pnp 00:00: [io 0x0000-0x0cf7 window]
[ 0.751338] pnp 00:00: [io 0x0cf8-0x0cff]
[ 0.751340] pnp 00:00: [io 0x0d00-0xffff window]
[ 0.751342] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[ 0.751345] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[ 0.751347] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[ 0.751350] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[ 0.751352] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[ 0.751354] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[ 0.751357] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[ 0.751359] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[ 0.751361] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[ 0.751364] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[ 0.751366] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[ 0.751368] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[ 0.751371] pnp 00:00: [mem 0x000ec000-0x000effff window]
[ 0.751373] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[ 0.751376] pnp 00:00: [mem 0x8fa00000-0xfeafffff window]
[ 0.751378] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
[ 0.751449] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[ 0.751540] pnp 00:01: [io 0x0000-0x001f]
[ 0.751542] pnp 00:01: [io 0x0081-0x0091]
[ 0.751544] pnp 00:01: [io 0x0093-0x009f]
[ 0.751546] pnp 00:01: [io 0x00c0-0x00df]
[ 0.751549] pnp 00:01: [dma 4]
[ 0.751583] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[ 0.751592] pnp 00:02: [mem 0xff000000-0xffffffff]
[ 0.751621] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
[ 0.751703] pnp 00:03: [irq 0 disabled]
[ 0.751712] pnp 00:03: [irq 8]
[ 0.751715] pnp 00:03: [mem 0xfed00000-0xfed003ff]
[ 0.751768] system 00:03: [mem 0xfed00000-0xfed003ff] has been reserved
[ 0.751838] system 00:03: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[ 0.751849] pnp 00:04: [io 0x00f0]
[ 0.751855] pnp 00:04: [irq 13]
[ 0.751888] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
[ 0.751898] pnp 00:05: [io 0x002e-0x002f]
[ 0.751900] pnp 00:05: [io 0x004e-0x004f]
[ 0.751902] pnp 00:05: [io 0x0061]
[ 0.751904] pnp 00:05: [io 0x0063]
[ 0.751906] pnp 00:05: [io 0x0065]
[ 0.751908] pnp 00:05: [io 0x0067]
[ 0.751910] pnp 00:05: [io 0x0080]
[ 0.751911] pnp 00:05: [io 0x0092]
[ 0.751913] pnp 00:05: [io 0x00b2-0x00b3]
[ 0.751915] pnp 00:05: [io 0x1000-0x100f]
[ 0.751918] pnp 00:05: [io 0x0400-0x047f]
[ 0.751920] pnp 00:05: [io 0x0500-0x057f]
[ 0.751967] system 00:05: [io 0x1000-0x100f] has been reserved
[ 0.752035] system 00:05: [io 0x0400-0x047f] has been reserved
[ 0.752102] system 00:05: [io 0x0500-0x057f] has been reserved
[ 0.752170] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.752179] pnp 00:06: [io 0x0070-0x0077]
[ 0.752211] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.752225] pnp 00:07: [io 0x0300-0x031f]
[ 0.752231] pnp 00:07: [irq 6]
[ 0.752261] pnp 00:07: Plug and Play ACPI device, IDs APP0001 (active)
[ 0.752431] pnp 00:08: [mem 0xfed1c000-0xfed1ffff]
[ 0.752433] pnp 00:08: [mem 0xfed10000-0xfed17fff]
[ 0.752435] pnp 00:08: [mem 0xfed18000-0xfed18fff]
[ 0.752437] pnp 00:08: [mem 0xfed19000-0xfed19fff]
[ 0.752440] pnp 00:08: [mem 0xe0000000-0xefffffff]
[ 0.752442] pnp 00:08: [mem 0xfed20000-0xfed3ffff]
[ 0.752444] pnp 00:08: [mem 0xfed90000-0xfed93fff]
[ 0.752446] pnp 00:08: [mem 0xfed45000-0xfed8ffff]
[ 0.752448] pnp 00:08: [mem 0xff000000-0xffffffff]
[ 0.752450] pnp 00:08: [mem 0xfee00000-0xfeefffff]
[ 0.752453] pnp 00:08: [mem 0x00000000-0xffffffffffffffff disabled]
[ 0.752507] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.752577] system 00:08: [mem 0xfed10000-0xfed17fff] could not be reserved
[ 0.752648] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.752716] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.752785] system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.752854] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.752924] system 00:08: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.752992] system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.753061] system 00:08: [mem 0xff000000-0xffffffff] could not be reserved
[ 0.753130] system 00:08: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.753200] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.759128] pnp 00:09: [mem 0x20000000-0x201fffff]
[ 0.759130] pnp 00:09: [mem 0x40000000-0x401fffff]
[ 0.759194] system 00:09: [mem 0x20000000-0x201fffff] has been reserved
[ 0.759263] system 00:09: [mem 0x40000000-0x401fffff] has been reserved
[ 0.759333] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.759343] pnp: PnP ACPI: found 10 devices
[ 0.759406] ACPI: ACPI bus type pnp unregistered
[ 0.766451] PCI: max bus depth: 3 pci_try_num: 4
[ 0.766511] pci 0000:04:00.0: PCI bridge to [bus 05-05]
[ 0.766580] pci 0000:04:00.0: bridge window [mem 0xa0700000-0xa07fffff]
[ 0.766656] pci 0000:04:03.0: PCI bridge to [bus 06-36]
[ 0.766724] pci 0000:04:03.0: bridge window [mem 0xa0800000-0xa08fffff]
[ 0.766798] pci 0000:04:04.0: PCI bridge to [bus 37-67]
[ 0.766867] pci 0000:04:04.0: bridge window [mem 0xa0900000-0xa09fffff]
[ 0.766942] pci 0000:03:00.0: PCI bridge to [bus 04-67]
[ 0.767010] pci 0000:03:00.0: bridge window [mem 0xa0700000-0xa09fffff]
[ 0.767084] pci 0000:00:01.0: PCI bridge to [bus 03-97]
[ 0.767150] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
[ 0.767219] pci 0000:00:01.0: bridge window [mem 0xa0700000-0xa49fffff]
[ 0.767289] pci 0000:00:01.0: bridge window [mem 0xa4a00000-0xa89fffff 64bit pref]
[ 0.767374] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
[ 0.767445] pci 0000:00:1c.0: bridge window [mem 0xa0500000-0xa05fffff]
[ 0.767525] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
[ 0.767595] pci 0000:00:1c.1: bridge window [mem 0xa0400000-0xa04fffff]
[ 0.767692] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.767763] pci 0000:00:01.0: setting latency timer to 64
[ 0.767769] pci 0000:03:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.767839] pci 0000:03:00.0: setting latency timer to 64
[ 0.767845] pci 0000:04:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.767916] pci 0000:04:00.0: setting latency timer to 64
[ 0.767922] pci 0000:04:03.0: enabling device (0000 -> 0002)
[ 0.767992] pci 0000:04:03.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[ 0.768063] pci 0000:04:03.0: setting latency timer to 64
[ 0.768069] pci 0000:04:04.0: enabling device (0000 -> 0002)
[ 0.768138] pci 0000:04:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.768209] pci 0000:04:04.0: setting latency timer to 64
[ 0.768217] pci 0000:00:1c.0: enabling device (0000 -> 0002)
[ 0.768286] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.768360] pci 0000:00:1c.0: setting latency timer to 64
[ 0.768419] pci 0000:00:1c.1: power state changed by ACPI to D0
[ 0.768489] pci 0000:00:1c.1: power state changed by ACPI to D0
[ 0.768563] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 0.768635] pci 0000:00:1c.1: setting latency timer to 64
[ 0.768640] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 0.768643] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 0.768645] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 0.768648] pci_bus 0000:00: resource 7 [mem 0x8fa00000-0xfeafffff]
[ 0.768651] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
[ 0.768653] pci_bus 0000:03: resource 0 [io 0x3000-0x3fff]
[ 0.768656] pci_bus 0000:03: resource 1 [mem 0xa0700000-0xa49fffff]
[ 0.768659] pci_bus 0000:03: resource 2 [mem 0xa4a00000-0xa89fffff 64bit pref]
[ 0.768661] pci_bus 0000:04: resource 1 [mem 0xa0700000-0xa09fffff]
[ 0.768664] pci_bus 0000:05: resource 1 [mem 0xa0700000-0xa07fffff]
[ 0.768667] pci_bus 0000:06: resource 1 [mem 0xa0800000-0xa08fffff]
[ 0.768669] pci_bus 0000:37: resource 1 [mem 0xa0900000-0xa09fffff]
[ 0.768672] pci_bus 0000:01: resource 1 [mem 0xa0500000-0xa05fffff]
[ 0.768675] pci_bus 0000:02: resource 1 [mem 0xa0400000-0xa04fffff]
[ 0.768743] NET: Registered protocol family 2
[ 0.769019] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.770253] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[ 0.772055] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.772283] TCP: Hash tables configured (established 524288 bind 65536)
[ 0.772852] TCP reno registered
[ 0.772925] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.773014] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.773260] NET: Registered protocol family 1
[ 0.773339] pci 0000:00:02.0: Boot video device
[ 0.773712] PCI: CLS 256 bytes, default 64
[ 0.773766] Unpacking initramfs...
[ 0.842833] Freeing initrd memory: 2904k freed
[ 0.843363] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.843436] Placing 64MB software IO TLB between ffff880086d31000 - ffff88008ad31000
[ 0.843520] software IO TLB at phys 0x86d31000 - 0x8ad31000
[ 0.844109] audit: initializing netlink socket (disabled)
[ 0.844184] type=2000 audit(1318950394.683:1): initialized
[ 0.850087] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.863017] VFS: Disk quotas dquot_6.5.2
[ 0.863224] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.863475] msgmni has been set to 7731
[ 0.863773] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[ 0.863894] io scheduler noop registered
[ 0.863958] io scheduler deadline registered
[ 0.864072] io scheduler cfq registered (default)
[ 0.864242] pcieport 0000:00:01.0: setting latency timer to 64
[ 0.864286] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[ 0.864490] pcieport 0000:03:00.0: setting latency timer to 64
[ 0.864525] pcieport 0000:03:00.0: irq 41 for MSI/MSI-X
[ 0.864604] pcieport 0000:04:00.0: setting latency timer to 64
[ 0.864641] pcieport 0000:04:00.0: irq 42 for MSI/MSI-X
[ 0.864720] pcieport 0000:04:03.0: setting latency timer to 64
[ 0.864757] pcieport 0000:04:03.0: irq 43 for MSI/MSI-X
[ 0.864833] pcieport 0000:04:04.0: setting latency timer to 64
[ 0.864869] pcieport 0000:04:04.0: irq 44 for MSI/MSI-X
[ 0.865040] intel_idle: MWAIT substates: 0x21120
[ 0.865042] intel_idle: v0.4 model 0x2A
[ 0.865044] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 0.865098] ERST: Table is not found!
[ 0.865161] GHES: HEST is not enabled!
[ 0.865286] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 1.067777] Linux agpgart interface v0.103
[ 1.067923] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 1.068874] i8042: No controller found
[ 1.069007] mousedev: PS/2 mouse device common for all mice
[ 1.069122] rtc_cmos 00:06: RTC can wake from S4
[ 1.069292] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[ 1.069390] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 1.069595] cpuidle: using governor ladder
[ 1.069864] cpuidle: using governor menu
[ 1.070123] TCP cubic registered
[ 1.070185] NET: Registered protocol family 17
[ 1.070254] Registering the dns_resolver key type
[ 1.070457] PM: Hibernation image not present or could not be loaded.
[ 1.070462] registered taskstats version 1
[ 1.076651] rtc_cmos 00:06: setting system clock to 2011-10-18 15:06:35 UTC (1318950395)
[ 1.076809] Initializing network drop monitor service
[ 1.078459] Freeing unused kernel memory: 724k freed
[ 1.078633] Write protecting the kernel read-only data: 8192k
[ 1.085761] Freeing unused kernel memory: 1916k freed
[ 1.088728] Freeing unused kernel memory: 704k freed
[ 1.109635] udevd[86]: starting version 173
[ 1.159593] usbcore: registered new interface driver usbfs
[ 1.159734] usbcore: registered new interface driver hub
[ 1.159862] usbcore: registered new device driver usb
[ 1.160348] SCSI subsystem initialized
[ 1.162674] libata version 3.00 loaded.
[ 1.163069] ata_piix 0000:00:1f.2: version 2.13
[ 1.163089] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 1.163177] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[ 1.163885] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.314121] ata_piix 0000:00:1f.2: setting latency timer to 64
[ 1.314533] scsi0 : ata_piix
[ 1.314763] scsi1 : ata_piix
[ 1.315042] ata1: SATA max UDMA/133 cmd 0x2168 ctl 0x217c bmdma 0x2060 irq 19
[ 1.315116] ata2: SATA max UDMA/133 cmd 0x2160 ctl 0x2178 bmdma 0x2068 irq 19
[ 1.315234] ehci_hcd 0000:00:1a.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 1.315371] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[ 1.315376] ehci_hcd 0000:00:1a.7: EHCI Host Controller
[ 1.315489] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
[ 1.315600] ehci_hcd 0000:00:1a.7: debug port 2
[ 1.319556] ehci_hcd 0000:00:1a.7: cache line size of 256 is not supported
[ 1.319572] ehci_hcd 0000:00:1a.7: irq 23, io mem 0xa0606c00
[ 1.330741] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[ 1.331009] hub 1-0:1.0: USB hub found
[ 1.331075] hub 1-0:1.0: 6 ports detected
[ 1.331236] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 1.331333] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[ 1.331337] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[ 1.331411] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
[ 1.331520] ehci_hcd 0000:00:1d.7: debug port 2
[ 1.335475] ehci_hcd 0000:00:1d.7: cache line size of 256 is not supported
[ 1.335494] ehci_hcd 0000:00:1d.7: irq 22, io mem 0xa0606800
[ 1.347410] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 1.347673] hub 2-0:1.0: USB hub found
[ 1.347740] hub 2-0:1.0: 8 ports detected
[ 1.359293] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.359434] uhci_hcd 0000:00:1a.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[ 1.359520] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[ 1.359525] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[ 1.359602] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[ 1.359729] uhci_hcd 0000:00:1a.0: irq 21, io base 0x00002140
[ 1.360013] hub 3-0:1.0: USB hub found
[ 1.360082] hub 3-0:1.0: 2 ports detected
[ 1.360235] uhci_hcd 0000:00:1d.0: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 1.360317] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[ 1.360323] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 1.360404] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
[ 1.360527] uhci_hcd 0000:00:1d.0: irq 19, io base 0x000020e0
[ 1.360798] hub 4-0:1.0: USB hub found
[ 1.360867] hub 4-0:1.0: 2 ports detected
[ 1.640576] usb 1-1: new high speed USB device number 2 using ehci_hcd
[ 1.764724] hub 1-1:1.0: USB hub found
[ 1.764927] hub 1-1:1.0: 3 ports detected
[ 1.843785] Refined TSC clocksource calibration: 1700.013 MHz.
[ 1.843860] Switching to clocksource tsc
[ 1.870439] usb 1-2: new high speed USB device number 3 using ehci_hcd
[ 2.116961] usb 2-1: new high speed USB device number 2 using ehci_hcd
[ 2.240821] hub 2-1:1.0: USB hub found
[ 2.241020] hub 2-1:1.0: 2 ports detected
[ 2.320303] usb 1-1.1: new full speed USB device number 4 using ehci_hcd
[ 2.336838] ata2.00: failed to resume link (SControl 0)
[ 2.419732] hub 1-1.1:1.0: USB hub found
[ 2.420050] hub 1-1.1:1.0: 3 ports detected
[ 2.500196] usb 1-1.2: new full speed USB device number 5 using ehci_hcd
[ 2.620823] usbcore: registered new interface driver usbhid
[ 2.620900] usbhid: USB HID core driver
[ 2.632491] input: Apple Inc. Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.2/1-1.2:1.0/input/input0
[ 2.632724] apple 0003:05AC:024D.0001: input,hidraw0: USB HID v1.11 Keyboard [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:1a.7-1.2/input0
[ 2.656641] ata1.01: failed to resume link (SControl 0)
[ 2.686861] usb 2-1.1: new high speed USB device number 3 using ehci_hcd
[ 2.728721] apple 0003:05AC:024D.0002: hidraw1: USB HID v1.11 Device [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:1a.7-1.2/input1
[ 2.809969] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 2.810053] ata1.01: SATA link down (SStatus 0 SControl 0)
[ 2.816795] ata1.00: ATA-8: APPLE SSD SM256C, AXM09A1Q, max UDMA/133
[ 2.816869] ata1.00: 490234752 sectors, multi 16: LBA48 NCQ (depth 0/32)
[ 2.823478] ata1.00: configured for UDMA/133
[ 2.823739] scsi 0:0:0:0: Direct-Access ATA APPLE SSD SM256C AXM0 PQ: 0 ANSI: 5
[ 2.853377] usb 1-1.1.1: new full speed USB device number 6 using ehci_hcd
[ 2.941035] input: HID 05ac:820a as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.1/1-1.1.1:1.0/input/input1
[ 2.941237] generic-usb 0003:05AC:820A.0003: input,hidraw2: USB HID v1.11 Keyboard [HID 05ac:820a] on usb-0000:00:1a.7-1.1.1/input0
[ 3.006663] usb 1-1.1.2: new full speed USB device number 7 using ehci_hcd
[ 3.094503] input: HID 05ac:820b as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.2/1-1.1.2:1.0/input/input2
[ 3.094741] generic-usb 0003:05AC:820B.0004: input,hidraw3: USB HID v1.11 Mouse [HID 05ac:820b] on usb-0000:00:1a.7-1.1.2/input0
[ 3.159978] usb 1-1.1.3: new full speed USB device number 8 using ehci_hcd
[ 3.359569] ata2.01: failed to resume link (SControl 0)
[ 3.371239] ata2.00: SATA link down (SStatus 0 SControl 0)
[ 3.371318] ata2.01: SATA link down (SStatus 0 SControl 0)
[ 3.377767] sd 0:0:0:0: [sda] 490234752 512-byte logical blocks: (251 GB/233 GiB)
[ 3.377961] sd 0:0:0:0: [sda] Write Protect is off
[ 3.378030] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 3.378066] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 3.382624] sda: sda1 sda2 sda3 sda4 sda5
[ 3.383346] sd 0:0:0:0: [sda] Attached SCSI disk
[ 3.588152] device-mapper: uevent: version 1.0.3
[ 3.588462] device-mapper: ioctl: 4.21.0-ioctl (2011-07-06) initialised: dm-devel@redhat.com
[ 9.129187] padlock_aes: VIA PadLock not detected.
[ 9.351889] JFS: nTxBlock = 8192, nTxLock = 65536
[ 9.791077] udevd[360]: starting version 173
[ 9.852265] ACPI: acpi_idle yielding to intel_idle
[ 9.854273] agpgart-intel 0000:00:00.0: Intel Sandybridge Chipset
[ 9.854648] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
[ 9.857288] agpgart-intel 0000:00:00.0: detected 65536K stolen memory
[ 9.873917] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x90000000
[ 9.875008] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input3
[ 9.875143] ACPI: Lid Switch [LID0]
[ 9.883851] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4
[ 9.883946] ACPI: Power Button [PWRB]
[ 9.884106] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input5
[ 9.884199] ACPI: Sleep Button [SLPB]
[ 9.884336] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input6
[ 9.884429] ACPI: Power Button [PWRF]
[ 9.888945] ACPI: AC Adapter [ADP1] (off-line)
[ 9.890959] i801_smbus 0000:00:1f.3: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 9.893464] mei: module is from the staging directory, the quality is unknown, you have been warned.
[ 9.895157] iTCO_vendor_support: vendor-support=0
[ 9.896818] mei 0000:00:16.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 9.896903] mei 0000:00:16.0: setting latency timer to 64
[ 9.897270] input: PC Speaker as /devices/platform/pcspkr/input/input7
[ 9.922946] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 10.008629] ACPI: Battery Slot [BAT0] (battery present)
[ 10.024116] cfg80211: Calling CRDA to update world regulatory domain
[ 10.024259] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
[ 10.026446] [drm] Initialized drm 1.1.0 20060810
[ 10.032233] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[ 10.032420] brcmutil: module is from the staging directory, the quality is unknown, you have been warned.
[ 10.036086] usbcore: registered new interface driver uas
[ 10.036616] input: bcm5974 as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.2/1-1.2:1.2/input/input8
[ 10.036904] Linux media interface: v0.10
[ 10.038259] usbcore: registered new interface driver bcm5974
[ 10.052045] Initializing USB Mass Storage driver...
[ 10.053717] scsi2 : usb-storage 2-1.1:1.0
[ 10.055312] Linux video capture interface: v2.00
[ 10.059425] usbcore: registered new interface driver usb-storage
[ 10.059504] USB Mass Storage support registered.
[ 10.062543] brcmsmac: module is from the staging directory, the quality is unknown, you have been warned.
[ 10.064859] brcmsmac 0000:02:00.0: bus 2 slot 0 func 0 irq 11
[ 10.064978] brcmsmac 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 10.065050] brcmsmac 0000:02:00.0: setting latency timer to 64
[ 10.076105] uvcvideo: Found UVC 1.00 device FaceTime Camera (Built-in) (05ac:850a)
[ 10.081524] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 10.081722] i915 0000:00:02.0: setting latency timer to 64
[ 10.083202] input: FaceTime Camera (Built-in) as /devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2:1.0/input/input9
[ 10.083556] usbcore: registered new interface driver uvcvideo
[ 10.083631] USB Video Class driver (1.1.1)
[ 10.133864] applesmc: B0AC!: read arg fail
[ 10.165141] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[ 10.234364] i915 0000:00:02.0: irq 45 for MSI/MSI-X
[ 10.234371] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[ 10.234453] [drm] Driver supports precise vblank timestamp query.
[ 10.234580] [drm:intel_dsm_platform_mux_info] *ERROR* MUX INFO call failed
[ 10.234663] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 10.238282] applesmc: AUPO!: read arg fail
[ 10.312933] applesmc: key=349 fan=1 temp=25 acc=0 lux=2 kbd=1
[ 10.313005] applesmc: init_smcreg() took 100 ms
[ 10.313311] Registered led device: smc::kbd_backlight
[ 11.080833] scsi 2:0:0:0: Direct-Access APPLE SD Card Reader 2.00 PQ: 0 ANSI: 0
[ 11.081138] sd 2:0:0:0: Attached scsi generic sg1 type 0
[ 11.082719] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[ 11.412052] fbcon: inteldrmfb (fb0) is primary device
[ 12.401899] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[ 12.428479] Console: switching to colour frame buffer device 180x56
[ 12.432500] fb0: inteldrmfb frame buffer device
[ 12.432526] drm: registered panic notifier
[ 12.462003] acpi device:0d: registered as cooling_device4
[ 12.462282] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input10
[ 12.462392] ACPI: Video Device [IGPU] (multi-head: yes rom: no post: no)
[ 12.462490] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[ 12.462588] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 12.462755] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
[ 12.462797] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[ 13.007433] HDMI status: Codec=3 Pin=5 Presence_Detect=0 ELD_Valid=0
[ 13.007806] HDMI status: Codec=3 Pin=6 Presence_Detect=0 ELD_Valid=0
[ 13.008182] HDMI status: Codec=3 Pin=7 Presence_Detect=0 ELD_Valid=0
[ 13.012100] input: HDA Intel PCH HDMI/DP as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[ 13.012225] input: HDA Intel PCH HDMI/DP as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[ 13.012342] input: HDA Intel PCH HDMI/DP as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[ 13.272528] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
[ 77.579537] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[ 77.579542] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[ 77.591982] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 79.628614] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[ 79.628620] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[ 79.640999] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 83.806603] wlan0: direct probe to 00:0f:61:4f:b7:50 (try 1/3)
[ 84.006218] wlan0: direct probe to 00:0f:61:4f:b7:50 (try 2/3)
[ 84.206102] wlan0: direct probe to 00:0f:61:4f:b7:50 (try 3/3)
[ 84.405979] wlan0: direct probe to 00:0f:61:4f:b7:50 timed out
[ 91.372241] wlan0: direct probe to 00:0f:61:4f:b7:50 (try 1/3)
[ 91.571834] wlan0: direct probe to 00:0f:61:4f:b7:50 (try 2/3)
[ 91.771718] wlan0: direct probe to 00:0f:61:4f:b7:50 (try 3/3)
[ 91.971602] wlan0: direct probe to 00:0f:61:4f:b7:50 timed out
[ 102.787270] NET: Registered protocol family 10
[ 363.540476] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[ 363.540482] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[ 363.552855] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 363.553236] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 365.651976] wlan0: direct probe to 00:0f:61:5a:59:a0 (try 1/3)
[ 365.849747] wlan0: direct probe to 00:0f:61:5a:59:a0 (try 2/3)
[ 366.049628] wlan0: direct probe to 00:0f:61:5a:59:a0 (try 3/3)
[ 366.249516] wlan0: direct probe to 00:0f:61:5a:59:a0 timed out
[ 377.596680] wlan0: authenticate with 00:0f:61:b4:b5:70 (try 1)
[ 377.599951] wlan0: authenticated
[ 377.599978] wlan0: associate with 00:0f:61:b4:b5:70 (try 1)
[ 377.600885] wlan0: RX AssocResp from 00:0f:61:b4:b5:70 (capab=0x811 status=0 aid=3)
[ 377.600890] wlan0: associated
[ 377.601368] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: true (implement)
[ 377.601379] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[ 377.601399] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[ 377.601754] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 385.968229] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[ 388.429970] wlan0: no IPv6 routers present
[ 3009.828537] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.828545] ieee80211 phy0: AMPDU status: BA Timeout, seq 3564, in_transit 0
[ 3009.828796] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.828802] ieee80211 phy0: AMPDU status: BA Timeout, seq 3565, in_transit 3
[ 3009.828811] ieee80211 phy0: AMPDU status: BA Timeout, seq 3566, in_transit 2
[ 3009.828820] ieee80211 phy0: AMPDU status: BA Timeout, seq 3567, in_transit 1
[ 3009.828829] ieee80211 phy0: AMPDU status: BA Timeout, seq 3568, in_transit 0
[ 3009.828894] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.828899] ieee80211 phy0: AMPDU status: BA Timeout, seq 3569, in_transit 0
[ 3009.830973] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.830980] ieee80211 phy0: AMPDU status: BA Timeout, seq 3570, in_transit 0
[ 3009.831027] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.831032] ieee80211 phy0: AMPDU status: BA Timeout, seq 3571, in_transit 0
[ 3009.831110] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.831115] ieee80211 phy0: AMPDU status: BA Timeout, seq 3572, in_transit 0
[ 3009.831157] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.831162] ieee80211 phy0: AMPDU status: BA Timeout, seq 3573, in_transit 0
[ 3009.831250] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.831255] ieee80211 phy0: AMPDU status: BA Timeout, seq 3574, in_transit 0
[ 3009.831322] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.831327] ieee80211 phy0: AMPDU status: BA Timeout, seq 3575, in_transit 0
[ 3009.831390] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.831395] ieee80211 phy0: AMPDU status: BA Timeout, seq 3576, in_transit 0
[ 3009.831598] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.831604] ieee80211 phy0: AMPDU status: BA Timeout, seq 3577, in_transit 0
[ 3009.831650] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.831656] ieee80211 phy0: AMPDU status: BA Timeout, seq 3578, in_transit 0
[ 3009.831707] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.831712] ieee80211 phy0: AMPDU status: BA Timeout, seq 3579, in_transit 0
[ 3009.841861] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.841867] ieee80211 phy0: AMPDU status: BA Timeout, seq 3580, in_transit 0
[ 3009.844862] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.844867] ieee80211 phy0: AMPDU status: BA Timeout, seq 3581, in_transit 0
[ 3009.867638] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.867644] ieee80211 phy0: AMPDU status: BA Timeout, seq 3582, in_transit 0
[ 3009.868131] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.868137] ieee80211 phy0: AMPDU status: BA Timeout, seq 3583, in_transit 0
[ 3009.868317] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.868322] ieee80211 phy0: AMPDU status: BA Timeout, seq 3584, in_transit 0
[ 3009.869349] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.869355] ieee80211 phy0: AMPDU status: BA Timeout, seq 3585, in_transit 0
[ 3009.878734] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.878740] ieee80211 phy0: AMPDU status: BA Timeout, seq 3586, in_transit 0
[ 3009.917538] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.917544] ieee80211 phy0: AMPDU status: BA Timeout, seq 3587, in_transit 0
[ 3009.917928] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.917934] ieee80211 phy0: AMPDU status: BA Timeout, seq 3588, in_transit 0
[ 3009.918122] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3009.918127] ieee80211 phy0: AMPDU status: BA Timeout, seq 3589, in_transit 0
[ 3125.145422] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3125.145428] ieee80211 phy0: AMPDU status: BA Timeout, seq 1097, in_transit 0
[ 3984.518315] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 3984.518321] ieee80211 phy0: AMPDU status: BA Timeout, seq 4083, in_transit 0
[ 4215.122808] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 4215.122817] ieee80211 phy0: AMPDU status: BA Timeout, seq 3587, in_transit 0
[ 4215.123863] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 4215.123870] ieee80211 phy0: AMPDU status: BA Timeout, seq 3588, in_transit 0
[ 4215.124672] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 4215.124678] ieee80211 phy0: AMPDU status: BA Timeout, seq 3589, in_transit 0
[ 4215.128443] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 4215.128452] ieee80211 phy0: AMPDU status: BA Timeout, seq 3590, in_transit 0
[ 4215.128657] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 4215.128663] ieee80211 phy0: AMPDU status: BA Timeout, seq 3591, in_transit 0
[ 4215.128916] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 4215.128922] ieee80211 phy0: AMPDU status: BA Timeout, seq 3592, in_transit 0
[ 5571.961603] hfs: write access to a journaled filesystem is not supported, use the force option at your own risk, mounting read-only.
[ 5656.109474] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 5656.109482] ieee80211 phy0: AMPDU status: BA Timeout, seq 4059, in_transit 0
[ 5656.109877] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 5656.109883] ieee80211 phy0: AMPDU status: BA Timeout, seq 4060, in_transit 0
[ 5656.109934] ieee80211 phy0: brcms_c_ampdu_dotxstatus_complete: Pkt tx suppressed, illegal channel possibly 48
[ 5656.109939] ieee80211 phy0: AMPDU status: BA Timeout, seq 4061, in_transit 0
[ 8108.278594] PM: Syncing filesystems ... done.
[ 8108.298813] PM: Preparing system for mem sleep
[ 8109.424991] Freezing user space processes ... (elapsed 0.01 seconds) done.
[ 8109.437626] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[ 8109.450953] PM: Entering mem sleep
[ 8109.450985] Suspending console(s) (use no_console_suspend to debug)
[ 8109.459624] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[ 8109.460157] uhci_hcd 0000:00:1d.0: PCI INT B disabled
[ 8109.460192] brcmsmac 0000:02:00.0: PCI INT A disabled
[ 8109.460251] uhci_hcd 0000:00:1a.0: PCI INT B disabled
[ 8109.460883] sd 0:0:0:0: [sda] Stopping disk
[ 8109.497593] ehci_hcd 0000:00:1d.7: PCI INT A disabled
[ 8109.510916] ehci_hcd 0000:00:1a.7: PCI INT A disabled
[ 8109.664268] snd_hda_intel 0000:00:1b.0: PCI INT A disabled
[ 8110.950405] ata_piix 0000:00:1f.2: PCI INT B disabled
[ 8110.963472] PM: suspend of devices complete after 1513.020 msecs
[ 8111.003422] PM: late suspend of devices complete after 39.973 msecs
[ 8111.003735] ACPI: Preparing to enter system sleep state S3
[ 8111.030105] PM: Saving platform NVS memory
[ 8111.030563] Disabling non-boot CPUs ...
[ 8111.133302] CPU 1 is now offline
[ 8111.236552] CPU 2 is now offline
[ 8111.339844] CPU 3 is now offline
[ 8111.340227] Extended CMOS year: 2000
[ 8111.340623] ACPI: Low-level resume complete
[ 8111.340668] PM: Restoring platform NVS memory
[ 8111.340976] Extended CMOS year: 2000
[ 8111.340990] Enabling non-boot CPUs ...
[ 8111.347828] Booting Node 0 Processor 1 APIC 0x2
[ 8111.347830] smpboot cpu 1: start_ip = 9a000
[ 8111.359016] Calibrating delay loop (skipped) already calibrated this CPU
[ 8111.380608] Switched to NOHz mode on CPU #1
[ 8111.381304] NMI watchdog enabled, takes one hw-pmu counter.
[ 8111.381534] CPU1 is up
[ 8111.389017] Booting Node 0 Processor 2 APIC 0x1
[ 8111.389019] smpboot cpu 2: start_ip = 9a000
[ 8111.400128] Calibrating delay loop (skipped) already calibrated this CPU
[ 8111.420490] Switched to NOHz mode on CPU #2
[ 8111.420567] NMI watchdog enabled, takes one hw-pmu counter.
[ 8111.421141] CPU2 is up
[ 8111.422512] Booting Node 0 Processor 3 APIC 0x3
[ 8111.422514] smpboot cpu 3: start_ip = 9a000
[ 8111.433703] Calibrating delay loop (skipped) already calibrated this CPU
[ 8111.455836] NMI watchdog enabled, takes one hw-pmu counter.
[ 8111.456572] CPU3 is up
[ 8111.460122] Switched to NOHz mode on CPU #3
[ 8111.460247] ACPI: Waking up from system sleep state S3
[ 8111.960382] pcieport 0000:00:01.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[ 8111.960390] pcieport 0000:00:01.0: restoring config space at offset 0x9 (was 0x1fff1, writing 0xa891a4a1)
[ 8111.960394] pcieport 0000:00:01.0: restoring config space at offset 0x8 (was 0xfff0, writing 0xa490a070)
[ 8111.960398] pcieport 0000:00:01.0: restoring config space at offset 0x7 (was 0x200000f0, writing 0x3030)
[ 8111.960403] pcieport 0000:00:01.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[ 8111.960407] pcieport 0000:00:01.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[ 8111.960428] i915 0000:00:02.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 8111.960438] i915 0000:00:02.0: restoring config space at offset 0x2 (was 0x3800009, writing 0x3000009)
[ 8111.960441] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[ 8111.960465] mei 0000:00:16.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 8111.960482] mei 0000:00:16.0: restoring config space at offset 0x4 (was 0xfed1b004, writing 0xa0607104)
[ 8111.960506] uhci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x200, writing 0x20a)
[ 8111.960518] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x8 (was 0x1, writing 0x2141)
[ 8111.960530] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[ 8111.960557] ehci_hcd 0000:00:1a.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 8111.960575] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606c00)
[ 8111.960583] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[ 8111.960616] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 8111.960632] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0600004)
[ 8111.960638] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[ 8111.960644] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100002)
[ 8111.960684] pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[ 8111.960699] pcieport 0000:00:1c.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 8111.960705] pcieport 0000:00:1c.0: restoring config space at offset 0x8 (was 0x0, writing 0xa050a050)
[ 8111.960711] pcieport 0000:00:1c.0: restoring config space at offset 0x7 (was 0x20000000, writing 0x200000f0)
[ 8111.960718] pcieport 0000:00:1c.0: restoring config space at offset 0x6 (was 0x0, writing 0x10100)
[ 8111.960728] pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[ 8111.960736] pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[ 8111.960787] pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x200, writing 0x2ff)
[ 8111.960802] pcieport 0000:00:1c.1: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 8111.960808] pcieport 0000:00:1c.1: restoring config space at offset 0x8 (was 0x0, writing 0xa040a040)
[ 8111.960814] pcieport 0000:00:1c.1: restoring config space at offset 0x7 (was 0x20000000, writing 0x200000f0)
[ 8111.960820] pcieport 0000:00:1c.1: restoring config space at offset 0x6 (was 0x0, writing 0x20200)
[ 8111.960830] pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[ 8111.960838] pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[ 8111.960874] uhci_hcd 0000:00:1d.0: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[ 8111.960886] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x8 (was 0x1, writing 0x20e1)
[ 8111.960898] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[ 8111.960924] ehci_hcd 0000:00:1d.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 8111.960942] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606800)
[ 8111.960950] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[ 8111.961016] ata_piix 0000:00:1f.2: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[ 8111.961027] ata_piix 0000:00:1f.2: restoring config space at offset 0x8 (was 0x1, writing 0x2061)
[ 8111.961032] ata_piix 0000:00:1f.2: restoring config space at offset 0x7 (was 0x1, writing 0x2179)
[ 8111.961038] ata_piix 0000:00:1f.2: restoring config space at offset 0x6 (was 0x1, writing 0x2161)
[ 8111.961043] ata_piix 0000:00:1f.2: restoring config space at offset 0x5 (was 0x1, writing 0x217d)
[ 8111.961049] ata_piix 0000:00:1f.2: restoring config space at offset 0x4 (was 0x1, writing 0x2169)
[ 8111.961056] ata_piix 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00007)
[ 8111.961075] i801_smbus 0000:00:1f.3: restoring config space at offset 0xf (was 0x300, writing 0x30b)
[ 8111.961091] i801_smbus 0000:00:1f.3: restoring config space at offset 0x4 (was 0x4, writing 0xa0607004)
[ 8111.961098] i801_smbus 0000:00:1f.3: restoring config space at offset 0x1 (was 0x2800001, writing 0x2800003)
[ 8111.961128] pcieport 0000:03:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 8111.961132] pcieport 0000:03:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a070)
[ 8111.961136] pcieport 0000:03:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[ 8111.961141] pcieport 0000:03:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x670403)
[ 8111.961147] pcieport 0000:03:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[ 8111.961153] pcieport 0000:03:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[ 8111.961197] pcieport 0000:04:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 8111.961202] pcieport 0000:04:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa070a070)
[ 8111.961206] pcieport 0000:04:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[ 8111.961211] pcieport 0000:04:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x50504)
[ 8111.961217] pcieport 0000:04:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[ 8111.961223] pcieport 0000:04:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[ 8111.961268] pcieport 0000:04:03.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 8111.961273] pcieport 0000:04:03.0: restoring config space at offset 0x8 (was 0x0, writing 0xa080a080)
[ 8111.961277] pcieport 0000:04:03.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[ 8111.961282] pcieport 0000:04:03.0: restoring config space at offset 0x6 (was 0x0, writing 0x360604)
[ 8111.961288] pcieport 0000:04:03.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[ 8111.961294] pcieport 0000:04:03.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[ 8111.961339] pcieport 0000:04:04.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 8111.961344] pcieport 0000:04:04.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a090)
[ 8111.961348] pcieport 0000:04:04.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[ 8111.961353] pcieport 0000:04:04.0: restoring config space at offset 0x6 (was 0x0, writing 0x673704)
[ 8111.961359] pcieport 0000:04:04.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[ 8111.961365] pcieport 0000:04:04.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[ 8111.961411] pci 0000:05:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10b)
[ 8111.961428] pci 0000:05:00.0: restoring config space at offset 0x5 (was 0x0, writing 0xa0740000)
[ 8111.961433] pci 0000:05:00.0: restoring config space at offset 0x4 (was 0x0, writing 0xa0700000)
[ 8111.961438] pci 0000:05:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[ 8111.961445] pci 0000:05:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[ 8111.961547] brcmsmac 0000:02:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 8111.961591] brcmsmac 0000:02:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0400004)
[ 8111.961602] brcmsmac 0000:02:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[ 8111.961616] brcmsmac 0000:02:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[ 8111.961820] PM: early resume of devices complete after 1.510 msecs
[ 8111.961996] i915 0000:00:02.0: setting latency timer to 64
[ 8111.962043] uhci_hcd 0000:00:1a.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[ 8111.962057] ehci_hcd 0000:00:1a.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 8111.962061] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[ 8111.962069] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[ 8111.962093] usb usb3: root hub lost power or was reset
[ 8111.962115] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 8111.962126] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[ 8111.962140] uhci_hcd 0000:00:1d.0: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 8111.962151] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[ 8111.962185] usb usb4: root hub lost power or was reset
[ 8111.962190] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
[ 8111.962203] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 8111.962214] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[ 8111.962302] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 8111.962309] ata_piix 0000:00:1f.2: setting latency timer to 64
[ 8111.962339] brcmsmac 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 8111.962350] brcmsmac 0000:02:00.0: setting latency timer to 64
[ 8111.963237] sd 0:0:0:0: [sda] Starting disk
[ 8111.990592] bcm5974: bad trackpad package, length: 8
[ 8111.992589] bcm5974: bad trackpad package, length: 8
[ 8111.993588] bcm5974: bad trackpad package, length: 8
[ 8111.994587] bcm5974: bad trackpad package, length: 8
[ 8111.995587] bcm5974: bad trackpad package, length: 8
[ 8111.997588] bcm5974: bad trackpad package, length: 8
[ 8112.029575] bcm5974: bad trackpad package, length: 8
[ 8112.030458] bcm5974: bad trackpad package, length: 8
[ 8112.031448] bcm5974: bad trackpad package, length: 8
[ 8112.033578] bcm5974: bad trackpad package, length: 8
[ 8112.098665] Extended CMOS year: 2000
[ 8112.982983] ata2.00: failed to resume link (SControl 0)
[ 8113.302805] ata1.01: failed to resume link (SControl 0)
[ 8113.456099] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 8113.456112] ata1.01: SATA link down (SStatus 0 SControl 0)
[ 8113.462839] ata1.00: ACPI cmd ef/03:46:00:00:00:a0 (SET FEATURES) filtered out
[ 8113.469630] ata1.00: configured for UDMA/133
[ 8113.683472] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[ 8113.721837] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[ 8113.721841] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[ 8113.733750] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[ 8113.733771] ieee80211 phy0: brcms_ops_bss_info_changed: cqm change: threshold 0, hys 0 (implement)
[ 8113.733773] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: true (implement)
[ 8113.734199] PM: resume of devices complete after 1773.264 msecs
[ 8113.734669] PM: Finishing wakeup.
[ 8113.734671] Restarting tasks ... done.
[ 8113.740352] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 8113.740381] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[ 8113.740401] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[ 8113.770093] video LNXVIDEO:00: Restoring backlight state
[ 8113.819178] cfg80211: Calling CRDA for country: X3
[ 8114.009021] ata2.01: failed to resume link (SControl 0)
[ 8114.020652] ata2.00: SATA link down (SStatus 4 SControl 0)
[ 8114.020670] ata2.01: SATA link down (SStatus 0 SControl 0)
[ 8115.866498] wlan0: authenticate with 00:0f:61:b4:b5:70 (try 1)
[ 8115.869797] wlan0: authenticated
[ 8115.869822] wlan0: associate with 00:0f:61:b4:b5:70 (try 1)
[ 8115.870737] wlan0: RX AssocResp from 00:0f:61:b4:b5:70 (capab=0x811 status=0 aid=4)
[ 8115.870741] wlan0: associated
[ 8115.871219] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: true (implement)
[ 8115.871231] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[ 8115.871263] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[ 8121.568114] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[ 8446.426191] PM: Syncing filesystems ... done.
[ 8446.467038] PM: Preparing system for mem sleep
[ 8447.590036] Freezing user space processes ... (elapsed 0.01 seconds) done.
[ 8447.602645] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[ 8447.615979] PM: Entering mem sleep
[ 8447.616008] Suspending console(s) (use no_console_suspend to debug)
[ 8447.624604] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[ 8447.625324] uhci_hcd 0000:00:1d.0: PCI INT B disabled
[ 8447.625343] brcmsmac 0000:02:00.0: PCI INT A disabled
[ 8447.625375] snd_hda_intel 0000:00:1b.0: PCI INT A disabled
[ 8447.625441] uhci_hcd 0000:00:1a.0: PCI INT B disabled
[ 8447.625853] sd 0:0:0:0: [sda] Stopping disk
[ 8447.662604] ehci_hcd 0000:00:1d.7: PCI INT A disabled
[ 8447.675924] ehci_hcd 0000:00:1a.7: PCI INT A disabled
[ 8449.268660] ata_piix 0000:00:1f.2: PCI INT B disabled
[ 8449.281724] PM: suspend of devices complete after 1666.356 msecs
[ 8449.321695] PM: late suspend of devices complete after 39.986 msecs
[ 8449.322008] ACPI: Preparing to enter system sleep state S3
[ 8449.348363] PM: Saving platform NVS memory
[ 8449.348727] Disabling non-boot CPUs ...
[ 8449.451563] CPU 1 is now offline
[ 8449.554829] CPU 2 is now offline
[ 8449.658087] CPU 3 is now offline
[ 8449.658453] Extended CMOS year: 2000
[ 8449.658848] ACPI: Low-level resume complete
[ 8449.658895] PM: Restoring platform NVS memory
[ 8449.659204] Extended CMOS year: 2000
[ 8449.659219] Enabling non-boot CPUs ...
[ 8449.666059] Booting Node 0 Processor 1 APIC 0x2
[ 8449.666061] smpboot cpu 1: start_ip = 9a000
[ 8449.677248] Calibrating delay loop (skipped) already calibrated this CPU
[ 8449.698872] Switched to NOHz mode on CPU #1
[ 8449.699471] NMI watchdog enabled, takes one hw-pmu counter.
[ 8449.699704] CPU1 is up
[ 8449.707223] Booting Node 0 Processor 2 APIC 0x1
[ 8449.707225] smpboot cpu 2: start_ip = 9a000
[ 8449.718335] Calibrating delay loop (skipped) already calibrated this CPU
[ 8449.738751] Switched to NOHz mode on CPU #2
[ 8449.738805] NMI watchdog enabled, takes one hw-pmu counter.
[ 8449.739367] CPU2 is up
[ 8449.740536] Booting Node 0 Processor 3 APIC 0x3
[ 8449.740538] smpboot cpu 3: start_ip = 9a000
[ 8449.751726] Calibrating delay loop (skipped) already calibrated this CPU
[ 8449.773475] NMI watchdog enabled, takes one hw-pmu counter.
[ 8449.774327] CPU3 is up
[ 8449.777635] Switched to NOHz mode on CPU #3
[ 8449.777740] ACPI: Waking up from system sleep state S3
[ 8450.278645] pcieport 0000:00:01.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[ 8450.278653] pcieport 0000:00:01.0: restoring config space at offset 0x9 (was 0x1fff1, writing 0xa891a4a1)
[ 8450.278657] pcieport 0000:00:01.0: restoring config space at offset 0x8 (was 0xfff0, writing 0xa490a070)
[ 8450.278660] pcieport 0000:00:01.0: restoring config space at offset 0x7 (was 0x200000f0, writing 0x20003030)
[ 8450.278666] pcieport 0000:00:01.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[ 8450.278670] pcieport 0000:00:01.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[ 8450.278691] i915 0000:00:02.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 8450.278700] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[ 8450.278724] mei 0000:00:16.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 8450.278742] mei 0000:00:16.0: restoring config space at offset 0x4 (was 0xfed1b004, writing 0xa0607104)
[ 8450.278767] uhci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x200, writing 0x20a)
[ 8450.278779] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x8 (was 0x1, writing 0x2141)
[ 8450.278791] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[ 8450.278818] ehci_hcd 0000:00:1a.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 8450.278835] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606c00)
[ 8450.278843] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[ 8450.278876] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 8450.278891] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0600004)
[ 8450.278897] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[ 8450.278903] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100002)
[ 8450.278943] pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[ 8450.278958] pcieport 0000:00:1c.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 8450.278964] pcieport 0000:00:1c.0: restoring config space at offset 0x8 (was 0x0, writing 0xa050a050)
[ 8450.278970] pcieport 0000:00:1c.0: restoring config space at offset 0x7 (was 0x20000000, writing 0xf0)
[ 8450.278977] pcieport 0000:00:1c.0: restoring config space at offset 0x6 (was 0x0, writing 0x10100)
[ 8450.278987] pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[ 8450.278995] pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[ 8450.279045] pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x200, writing 0x2ff)
[ 8450.279060] pcieport 0000:00:1c.1: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 8450.279066] pcieport 0000:00:1c.1: restoring config space at offset 0x8 (was 0x0, writing 0xa040a040)
[ 8450.279072] pcieport 0000:00:1c.1: restoring config space at offset 0x7 (was 0x20000000, writing 0xf0)
[ 8450.279079] pcieport 0000:00:1c.1: restoring config space at offset 0x6 (was 0x0, writing 0x20200)
[ 8450.279089] pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[ 8450.279096] pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[ 8450.279132] uhci_hcd 0000:00:1d.0: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[ 8450.279144] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x8 (was 0x1, writing 0x20e1)
[ 8450.279156] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[ 8450.279183] ehci_hcd 0000:00:1d.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 8450.279200] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606800)
[ 8450.279208] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[ 8450.279273] ata_piix 0000:00:1f.2: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[ 8450.279285] ata_piix 0000:00:1f.2: restoring config space at offset 0x8 (was 0x1, writing 0x2061)
[ 8450.279290] ata_piix 0000:00:1f.2: restoring config space at offset 0x7 (was 0x1, writing 0x2179)
[ 8450.279295] ata_piix 0000:00:1f.2: restoring config space at offset 0x6 (was 0x1, writing 0x2161)
[ 8450.279301] ata_piix 0000:00:1f.2: restoring config space at offset 0x5 (was 0x1, writing 0x217d)
[ 8450.279306] ata_piix 0000:00:1f.2: restoring config space at offset 0x4 (was 0x1, writing 0x2169)
[ 8450.279313] ata_piix 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00007)
[ 8450.279333] i801_smbus 0000:00:1f.3: restoring config space at offset 0xf (was 0x300, writing 0x30b)
[ 8450.279348] i801_smbus 0000:00:1f.3: restoring config space at offset 0x4 (was 0x4, writing 0xa0607004)
[ 8450.279356] i801_smbus 0000:00:1f.3: restoring config space at offset 0x1 (was 0x2800001, writing 0x2800003)
[ 8450.279385] pcieport 0000:03:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 8450.279390] pcieport 0000:03:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a070)
[ 8450.279394] pcieport 0000:03:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[ 8450.279399] pcieport 0000:03:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x670403)
[ 8450.279405] pcieport 0000:03:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[ 8450.279410] pcieport 0000:03:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[ 8450.279455] pcieport 0000:04:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 8450.279460] pcieport 0000:04:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa070a070)
[ 8450.279464] pcieport 0000:04:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[ 8450.279469] pcieport 0000:04:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x50504)
[ 8450.279475] pcieport 0000:04:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[ 8450.279481] pcieport 0000:04:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[ 8450.279527] pcieport 0000:04:03.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 8450.279531] pcieport 0000:04:03.0: restoring config space at offset 0x8 (was 0x0, writing 0xa080a080)
[ 8450.279536] pcieport 0000:04:03.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[ 8450.279540] pcieport 0000:04:03.0: restoring config space at offset 0x6 (was 0x0, writing 0x360604)
[ 8450.279547] pcieport 0000:04:03.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[ 8450.279552] pcieport 0000:04:03.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[ 8450.279598] pcieport 0000:04:04.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 8450.279603] pcieport 0000:04:04.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a090)
[ 8450.279607] pcieport 0000:04:04.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[ 8450.279612] pcieport 0000:04:04.0: restoring config space at offset 0x6 (was 0x0, writing 0x673704)
[ 8450.279618] pcieport 0000:04:04.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[ 8450.279624] pcieport 0000:04:04.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[ 8450.279670] pci 0000:05:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10b)
[ 8450.279687] pci 0000:05:00.0: restoring config space at offset 0x5 (was 0x0, writing 0xa0740000)
[ 8450.279692] pci 0000:05:00.0: restoring config space at offset 0x4 (was 0x0, writing 0xa0700000)
[ 8450.279697] pci 0000:05:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[ 8450.279703] pci 0000:05:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[ 8450.279800] brcmsmac 0000:02:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 8450.279845] brcmsmac 0000:02:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0400004)
[ 8450.279855] brcmsmac 0000:02:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[ 8450.279868] brcmsmac 0000:02:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[ 8450.280072] PM: early resume of devices complete after 1.499 msecs
[ 8450.280249] i915 0000:00:02.0: setting latency timer to 64
[ 8450.280490] uhci_hcd 0000:00:1a.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[ 8450.280500] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[ 8450.280528] usb usb3: root hub lost power or was reset
[ 8450.280544] ehci_hcd 0000:00:1a.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 8450.280550] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 8450.280557] uhci_hcd 0000:00:1d.0: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 8450.280561] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[ 8450.280564] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[ 8450.280569] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[ 8450.280621] usb usb4: root hub lost power or was reset
[ 8450.280634] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 8450.280650] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
[ 8450.280654] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 8450.280657] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[ 8450.280665] ata_piix 0000:00:1f.2: setting latency timer to 64
[ 8450.280705] brcmsmac 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 8450.280715] brcmsmac 0000:02:00.0: setting latency timer to 64
[ 8450.281571] sd 0:0:0:0: [sda] Starting disk
[ 8450.433710] Extended CMOS year: 2000
[ 8451.301247] ata2.00: failed to resume link (SControl 0)
[ 8451.621055] ata1.01: failed to resume link (SControl 0)
[ 8451.774366] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 8451.774380] ata1.01: SATA link down (SStatus 0 SControl 0)
[ 8451.784380] ata1.00: ACPI cmd ef/03:46:00:00:00:a0 (SET FEATURES) filtered out
[ 8451.791200] ata1.00: configured for UDMA/133
[ 8451.958444] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[ 8451.996806] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[ 8451.996810] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[ 8452.008723] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[ 8452.008742] ieee80211 phy0: brcms_ops_bss_info_changed: cqm change: threshold 0, hys 0 (implement)
[ 8452.008744] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: true (implement)
[ 8452.009174] PM: resume of devices complete after 1729.950 msecs
[ 8452.009726] PM: Finishing wakeup.
[ 8452.009728] Restarting tasks ... done.
[ 8452.015187] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 8452.015220] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[ 8452.015244] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[ 8452.043777] video LNXVIDEO:00: Restoring backlight state
[ 8452.097450] cfg80211: Calling CRDA to update world regulatory domain
[ 8452.323990] ata2.01: failed to resume link (SControl 0)
[ 8452.335409] ata2.00: SATA link down (SStatus 4 SControl 0)
[ 8452.335428] ata2.01: SATA link down (SStatus 0 SControl 0)
[ 8454.161589] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[ 8454.177671] wlan0: authenticated
[ 8454.177697] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[ 8454.184935] wlan0: RX AssocResp from 00:14:6c:67:9c:32 (capab=0x611 status=0 aid=8)
[ 8454.184939] wlan0: associated
[ 8454.185641] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 8454.185646] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[ 8454.185665] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[ 8462.951304] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[10115.270623] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: dd:6a:c0:1c:d3:c7
[10323.931565] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[10389.426177] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.426316] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.426330] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.426508] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.426664] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.426677] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.426874] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.426888] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.427030] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.427044] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.427182] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.427195] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.427326] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.427340] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.427480] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.427493] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.427689] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.427703] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.427837] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.427850] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.427987] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.428001] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.428134] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.428148] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.428281] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.428294] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[10389.429985] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[11616.619977] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[14921.525350] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 95:ad:ac:9b:ff:08
[15475.219209] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 29:da:b0:4f:cf:23
[19665.587785] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[19686.391698] usb 2-1.2: new high speed USB device number 4 using ehci_hcd
[19686.490474] usb-storage 2-1.2:1.0: Quirks match for vid 1058 pid 0704: 8000
[19686.490504] scsi3 : usb-storage 2-1.2:1.0
[19687.488455] scsi 3:0:0:0: Direct-Access WD 5000BMV External 1.75 PQ: 0 ANSI: 4
[19687.488719] sd 3:0:0:0: Attached scsi generic sg2 type 0
[19687.489226] sd 3:0:0:0: [sdc] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[19687.489733] sd 3:0:0:0: [sdc] Write Protect is off
[19687.489741] sd 3:0:0:0: [sdc] Mode Sense: 23 00 00 00
[19687.490234] sd 3:0:0:0: [sdc] No Caching mode page present
[19687.490239] sd 3:0:0:0: [sdc] Assuming drive cache: write through
[19687.492109] sd 3:0:0:0: [sdc] No Caching mode page present
[19687.492116] sd 3:0:0:0: [sdc] Assuming drive cache: write through
[19687.522275] sdc: unknown partition table
[19687.524261] sd 3:0:0:0: [sdc] No Caching mode page present
[19687.524265] sd 3:0:0:0: [sdc] Assuming drive cache: write through
[19687.524268] sd 3:0:0:0: [sdc] Attached SCSI disk
[19691.108143] padlock_sha: VIA PadLock Hash Engine not detected.
[20313.739591] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 47:42:f9:47:12:c8
[24890.762875] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 05:6a:61:79:1e:8e
[33934.363449] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: f1:d2:bc:34:d0:ff
[35760.827376] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: ad:a9:c5:5e:af:20
[44829.893891] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: c3:c5:e3:b6:76:f2
[53542.159433] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[55236.734680] PM: Syncing filesystems ... done.
[55236.779293] PM: Preparing system for mem sleep
[55237.877729] Freezing user space processes ... (elapsed 0.01 seconds) done.
[55237.890369] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[55237.903697] PM: Entering mem sleep
[55237.903730] Suspending console(s) (use no_console_suspend to debug)
[55237.906235] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[55237.907071] brcmsmac 0000:02:00.0: PCI INT A disabled
[55237.907118] uhci_hcd 0000:00:1d.0: PCI INT B disabled
[55237.907154] snd_hda_intel 0000:00:1b.0: PCI INT A disabled
[55237.907242] uhci_hcd 0000:00:1a.0: PCI INT B disabled
[55237.907477] sd 0:0:0:0: [sda] Stopping disk
[55237.943676] ehci_hcd 0000:00:1d.7: PCI INT A disabled
[55237.956988] ehci_hcd 0000:00:1a.7: PCI INT A disabled
[55239.435112] ata_piix 0000:00:1f.2: PCI INT B disabled
[55239.446148] PM: suspend of devices complete after 1542.971 msecs
[55239.486154] PM: late suspend of devices complete after 40.024 msecs
[55239.486468] ACPI: Preparing to enter system sleep state S3
[55239.512821] PM: Saving platform NVS memory
[55239.513309] Disabling non-boot CPUs ...
[55239.616024] CPU 1 is now offline
[55239.719291] CPU 2 is now offline
[55239.822546] CPU 3 is now offline
[55239.822928] Extended CMOS year: 2000
[55239.823323] ACPI: Low-level resume complete
[55239.823370] PM: Restoring platform NVS memory
[55239.823678] Extended CMOS year: 2000
[55239.823692] Enabling non-boot CPUs ...
[55239.830554] Booting Node 0 Processor 1 APIC 0x2
[55239.830557] smpboot cpu 1: start_ip = 9a000
[55239.841743] Calibrating delay loop (skipped) already calibrated this CPU
[55239.863365] Switched to NOHz mode on CPU #1
[55239.864105] NMI watchdog enabled, takes one hw-pmu counter.
[55239.867687] CPU1 is up
[55239.872035] Booting Node 0 Processor 2 APIC 0x1
[55239.872037] smpboot cpu 2: start_ip = 9a000
[55239.883147] Calibrating delay loop (skipped) already calibrated this CPU
[55239.903630] NMI watchdog enabled, takes one hw-pmu counter.
[55239.904164] CPU2 is up
[55239.905530] Booting Node 0 Processor 3 APIC 0x3
[55239.905532] smpboot cpu 3: start_ip = 9a000
[55239.906539] Switched to NOHz mode on CPU #2
[55239.916721] Calibrating delay loop (skipped) already calibrated this CPU
[55239.938943] NMI watchdog enabled, takes one hw-pmu counter.
[55239.939706] CPU3 is up
[55239.943035] Switched to NOHz mode on CPU #3
[55239.943142] ACPI: Waking up from system sleep state S3
[55240.446433] pcieport 0000:00:01.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[55240.446441] pcieport 0000:00:01.0: restoring config space at offset 0x9 (was 0x1fff1, writing 0xa891a4a1)
[55240.446445] pcieport 0000:00:01.0: restoring config space at offset 0x8 (was 0xfff0, writing 0xa490a070)
[55240.446449] pcieport 0000:00:01.0: restoring config space at offset 0x7 (was 0x200000f0, writing 0x3030)
[55240.446454] pcieport 0000:00:01.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[55240.446458] pcieport 0000:00:01.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[55240.446479] i915 0000:00:02.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[55240.446489] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[55240.446513] mei 0000:00:16.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[55240.446531] mei 0000:00:16.0: restoring config space at offset 0x4 (was 0xfed1b004, writing 0xa0607104)
[55240.446555] uhci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x200, writing 0x20a)
[55240.446568] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x8 (was 0x1, writing 0x2141)
[55240.446580] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[55240.446607] ehci_hcd 0000:00:1a.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[55240.446625] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606c00)
[55240.446633] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[55240.446665] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[55240.446682] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0600004)
[55240.446687] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[55240.446694] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100002)
[55240.446734] pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[55240.446749] pcieport 0000:00:1c.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[55240.446755] pcieport 0000:00:1c.0: restoring config space at offset 0x8 (was 0x0, writing 0xa050a050)
[55240.446761] pcieport 0000:00:1c.0: restoring config space at offset 0x7 (was 0x20000000, writing 0x200000f0)
[55240.446767] pcieport 0000:00:1c.0: restoring config space at offset 0x6 (was 0x0, writing 0x10100)
[55240.446777] pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[55240.446786] pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[55240.446836] pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x200, writing 0x2ff)
[55240.446850] pcieport 0000:00:1c.1: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[55240.446857] pcieport 0000:00:1c.1: restoring config space at offset 0x8 (was 0x0, writing 0xa040a040)
[55240.446863] pcieport 0000:00:1c.1: restoring config space at offset 0x7 (was 0x20000000, writing 0x200000f0)
[55240.446869] pcieport 0000:00:1c.1: restoring config space at offset 0x6 (was 0x0, writing 0x20200)
[55240.446879] pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[55240.446887] pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[55240.446922] uhci_hcd 0000:00:1d.0: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[55240.446934] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x8 (was 0x1, writing 0x20e1)
[55240.446946] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[55240.446972] ehci_hcd 0000:00:1d.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[55240.446990] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606800)
[55240.446999] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[55240.447064] ata_piix 0000:00:1f.2: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[55240.447075] ata_piix 0000:00:1f.2: restoring config space at offset 0x8 (was 0x1, writing 0x2061)
[55240.447081] ata_piix 0000:00:1f.2: restoring config space at offset 0x7 (was 0x1, writing 0x2179)
[55240.447086] ata_piix 0000:00:1f.2: restoring config space at offset 0x6 (was 0x1, writing 0x2161)
[55240.447091] ata_piix 0000:00:1f.2: restoring config space at offset 0x5 (was 0x1, writing 0x217d)
[55240.447097] ata_piix 0000:00:1f.2: restoring config space at offset 0x4 (was 0x1, writing 0x2169)
[55240.447105] ata_piix 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00007)
[55240.447124] i801_smbus 0000:00:1f.3: restoring config space at offset 0xf (was 0x300, writing 0x30b)
[55240.447140] i801_smbus 0000:00:1f.3: restoring config space at offset 0x4 (was 0x4, writing 0xa0607004)
[55240.447148] i801_smbus 0000:00:1f.3: restoring config space at offset 0x1 (was 0x2800001, writing 0x2800003)
[55240.447177] pcieport 0000:03:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[55240.447182] pcieport 0000:03:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a070)
[55240.447186] pcieport 0000:03:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[55240.447190] pcieport 0000:03:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x670403)
[55240.447197] pcieport 0000:03:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[55240.447202] pcieport 0000:03:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[55240.447247] pcieport 0000:04:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[55240.447251] pcieport 0000:04:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa070a070)
[55240.447256] pcieport 0000:04:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[55240.447260] pcieport 0000:04:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x50504)
[55240.447267] pcieport 0000:04:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[55240.447272] pcieport 0000:04:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[55240.447318] pcieport 0000:04:03.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[55240.447323] pcieport 0000:04:03.0: restoring config space at offset 0x8 (was 0x0, writing 0xa080a080)
[55240.447327] pcieport 0000:04:03.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[55240.447332] pcieport 0000:04:03.0: restoring config space at offset 0x6 (was 0x0, writing 0x360604)
[55240.447338] pcieport 0000:04:03.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[55240.447344] pcieport 0000:04:03.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[55240.447389] pcieport 0000:04:04.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[55240.447394] pcieport 0000:04:04.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a090)
[55240.447398] pcieport 0000:04:04.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[55240.447403] pcieport 0000:04:04.0: restoring config space at offset 0x6 (was 0x0, writing 0x673704)
[55240.447409] pcieport 0000:04:04.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[55240.447415] pcieport 0000:04:04.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[55240.447460] pci 0000:05:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10b)
[55240.447477] pci 0000:05:00.0: restoring config space at offset 0x5 (was 0x0, writing 0xa0740000)
[55240.447483] pci 0000:05:00.0: restoring config space at offset 0x4 (was 0x0, writing 0xa0700000)
[55240.447488] pci 0000:05:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[55240.447494] pci 0000:05:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[55240.447595] brcmsmac 0000:02:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[55240.447640] brcmsmac 0000:02:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0400004)
[55240.447651] brcmsmac 0000:02:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[55240.447664] brcmsmac 0000:02:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[55240.447880] PM: early resume of devices complete after 1.519 msecs
[55240.448097] i915 0000:00:02.0: setting latency timer to 64
[55240.448355] uhci_hcd 0000:00:1a.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[55240.448363] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[55240.448391] usb usb3: root hub lost power or was reset
[55240.448408] ehci_hcd 0000:00:1a.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[55240.448416] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[55240.448433] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[55240.448443] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[55240.448447] uhci_hcd 0000:00:1d.0: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[55240.448459] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[55240.448463] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[55240.448474] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[55240.448502] usb usb4: root hub lost power or was reset
[55240.448508] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[55240.448517] ata_piix 0000:00:1f.2: setting latency timer to 64
[55240.448522] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
[55240.448544] brcmsmac 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[55240.448558] brcmsmac 0000:02:00.0: setting latency timer to 64
[55240.449657] sd 0:0:0:0: [sda] Starting disk
[55240.476816] bcm5974: bad trackpad package, length: 8
[55240.477813] bcm5974: bad trackpad package, length: 8
[55240.479812] bcm5974: bad trackpad package, length: 8
[55240.581363] Extended CMOS year: 2000
[55241.469034] ata2.00: failed to resume link (SControl 0)
[55241.788843] ata1.01: failed to resume link (SControl 0)
[55241.942155] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[55241.942170] ata1.01: SATA link down (SStatus 0 SControl 0)
[55241.955498] ata1.00: ACPI cmd ef/03:46:00:00:00:a0 (SET FEATURES) filtered out
[55241.962308] ata1.00: configured for UDMA/133
[55242.129546] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[55242.168167] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[55242.168171] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[55242.180072] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[55242.180092] ieee80211 phy0: brcms_ops_bss_info_changed: cqm change: threshold 0, hys 0 (implement)
[55242.180094] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[55242.180415] PM: resume of devices complete after 1733.383 msecs
[55242.180955] PM: Finishing wakeup.
[55242.180957] Restarting tasks ...
[55242.181868] usb 2-1.2: USB disconnect, device number 4
[55242.184585] done.
[55242.229167] video LNXVIDEO:00: Restoring backlight state
[55242.475737] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[55242.475744] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[55242.475754] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[55242.491779] ata2.01: failed to resume link (SControl 0)
[55242.503382] ata2.00: SATA link down (SStatus 4 SControl 0)
[55242.503399] ata2.01: SATA link down (SStatus 0 SControl 0)
[55242.668377] cfg80211: Calling CRDA to update world regulatory domain
[55244.717627] wlan0: direct probe to 00:03:52:e3:0e:10 (try 1/3)
[55244.718367] wlan0: direct probe responded
[55244.747132] wlan0: authenticate with 00:03:52:e3:0e:10 (try 1)
[55244.747764] wlan0: authenticated
[55244.747790] wlan0: associate with 00:03:52:e3:0e:10 (try 1)
[55244.748453] wlan0: RX AssocResp from 00:03:52:e3:0e:10 (capab=0x11 status=0 aid=2)
[55244.748456] wlan0: associated
[55244.749094] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[55244.749099] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[55244.749118] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[55244.757154] ------------[ cut here ]------------
[55244.757171] WARNING: at net/mac80211/rx.c:2922 ieee80211_rx+0x125/0x1d0 [mac80211]()
[55244.757173] Hardware name: MacBookAir4,2
[55244.757175] Modules linked in: sha256_generic nls_utf8 hfsplus ipv6 ext4 mbcache jbd2 crc16 snd_hda_codec_hdmi snd_hda_codec_cirrus arc4 snd_hda_intel i915 uvcvideo joydev snd_hda_codec brcmsmac(C) usb_storage snd_hwdep videodev snd_pcm mac80211 media bcm5974 v4l2_compat_ioctl32 brcmutil(C) snd_timer drm_kms_helper uas snd drm applesmc iTCO_wdt cfg80211 soundcore i2c_algo_bit evdev input_polldev sg rfkill iTCO_vendor_support pcspkr mei(C) snd_page_alloc i2c_i801 battery apple_bl i2c_core ac video button intel_agp intel_gtt processor jfs aesni_intel cryptd aes_x86_64 aes_generic xts gf128mul dm_crypt dm_mod sd_mod pata_acpi hid_multitouch hid_apple usbhid hid uhci_hcd ehci_hcd ata_piix libata scsi_mod usbcore
[55244.757237] Pid: 0, comm: swapper Tainted: G C 3.1.0-rc6-gbee709a #2
[55244.757239] Call Trace:
[55244.757242] <IRQ> [<ffffffff810625ef>] warn_slowpath_common+0x7f/0xc0
[55244.757254] [<ffffffff8106264a>] warn_slowpath_null+0x1a/0x20
[55244.757261] [<ffffffffa02864c5>] ieee80211_rx+0x125/0x1d0 [mac80211]
[55244.757268] [<ffffffffa026bd31>] ieee80211_tasklet_handler+0xd1/0xe0 [mac80211]
[55244.757272] [<ffffffff81068e02>] tasklet_action+0x92/0x180
[55244.757276] [<ffffffff81069e40>] __do_softirq+0xb0/0x270
[55244.757281] [<ffffffff81097618>] ? tick_dev_program_event+0x48/0x110
[55244.757285] [<ffffffff810976ff>] ? tick_program_event+0x1f/0x30
[55244.757290] [<ffffffff81419b2c>] call_softirq+0x1c/0x30
[55244.757295] [<ffffffff81016b35>] do_softirq+0x65/0xa0
[55244.757299] [<ffffffff8106a34e>] irq_exit+0x9e/0xc0
[55244.757304] [<ffffffff8141a4ce>] smp_apic_timer_interrupt+0x6e/0x99
[55244.757308] [<ffffffff8141839e>] apic_timer_interrupt+0x6e/0x80
[55244.757310] <EOI> [<ffffffff810893c9>] ? enqueue_hrtimer+0x39/0xf0
[55244.757319] [<ffffffff8127e7cb>] ? intel_idle+0xcb/0x120
[55244.757322] [<ffffffff8127e7ad>] ? intel_idle+0xad/0x120
[55244.757328] [<ffffffff813220a6>] cpuidle_idle_call+0xc6/0x350
[55244.757332] [<ffffffff81013229>] cpu_idle+0xc9/0x120
[55244.757336] [<ffffffff813ece97>] rest_init+0x9b/0xa4
[55244.757340] [<ffffffff8194fc30>] start_kernel+0x3bf/0x3cc
[55244.757345] [<ffffffff8194f388>] x86_64_start_reservations+0x132/0x136
[55244.757349] [<ffffffff8194f140>] ? early_idt_handlers+0x140/0x140
[55244.757354] [<ffffffff8194f459>] x86_64_start_kernel+0xcd/0xdc
[55244.757357] ---[ end trace 0c36ea94c55692bf ]---
[55245.752355] ------------[ cut here ]------------
[55245.752375] WARNING: at net/mac80211/rx.c:2922 ieee80211_rx+0x125/0x1d0 [mac80211]()
[55245.752378] Hardware name: MacBookAir4,2
[55245.752379] Modules linked in: sha256_generic nls_utf8 hfsplus ipv6 ext4 mbcache jbd2 crc16 snd_hda_codec_hdmi snd_hda_codec_cirrus arc4 snd_hda_intel i915 uvcvideo joydev snd_hda_codec brcmsmac(C) usb_storage snd_hwdep videodev snd_pcm mac80211 media bcm5974 v4l2_compat_ioctl32 brcmutil(C) snd_timer drm_kms_helper uas snd drm applesmc iTCO_wdt cfg80211 soundcore i2c_algo_bit evdev input_polldev sg rfkill iTCO_vendor_support pcspkr mei(C) snd_page_alloc i2c_i801 battery apple_bl i2c_core ac video button intel_agp intel_gtt processor jfs aesni_intel cryptd aes_x86_64 aes_generic xts gf128mul dm_crypt dm_mod sd_mod pata_acpi hid_multitouch hid_apple usbhid hid uhci_hcd ehci_hcd ata_piix libata scsi_mod usbcore
[55245.752441] Pid: 0, comm: swapper Tainted: G WC 3.1.0-rc6-gbee709a #2
[55245.752443] Call Trace:
[55245.752445] <IRQ> [<ffffffff810625ef>] warn_slowpath_common+0x7f/0xc0
[55245.752458] [<ffffffff8106264a>] warn_slowpath_null+0x1a/0x20
[55245.752465] [<ffffffffa02864c5>] ieee80211_rx+0x125/0x1d0 [mac80211]
[55245.752472] [<ffffffffa026bd31>] ieee80211_tasklet_handler+0xd1/0xe0 [mac80211]
[55245.752476] [<ffffffff81068e02>] tasklet_action+0x92/0x180
[55245.752480] [<ffffffff81069e40>] __do_softirq+0xb0/0x270
[55245.752485] [<ffffffff8103463a>] ? ack_apic_level+0x7a/0x240
[55245.752491] [<ffffffff81419b2c>] call_softirq+0x1c/0x30
[55245.752496] [<ffffffff81016b35>] do_softirq+0x65/0xa0
[55245.752499] [<ffffffff8106a34e>] irq_exit+0x9e/0xc0
[55245.752504] [<ffffffff8141a3e3>] do_IRQ+0x63/0xe0
[55245.752508] [<ffffffff8141702e>] common_interrupt+0x6e/0x6e
[55245.752510] <EOI> [<ffffffff8127e7cb>] ? intel_idle+0xcb/0x120
[55245.752517] [<ffffffff8127e7ad>] ? intel_idle+0xad/0x120
[55245.752523] [<ffffffff813220a6>] cpuidle_idle_call+0xc6/0x350
[55245.752527] [<ffffffff81013229>] cpu_idle+0xc9/0x120
[55245.752531] [<ffffffff813ece97>] rest_init+0x9b/0xa4
[55245.752535] [<ffffffff8194fc30>] start_kernel+0x3bf/0x3cc
[55245.752540] [<ffffffff8194f388>] x86_64_start_reservations+0x132/0x136
[55245.752545] [<ffffffff8194f140>] ? early_idt_handlers+0x140/0x140
[55245.752549] [<ffffffff8194f459>] x86_64_start_kernel+0xcd/0xdc
[55245.752552] ---[ end trace 0c36ea94c55692c0 ]---
[55254.745380] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[55254.745388] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[55254.745397] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[55254.745401] wlan0: deauthenticating from 00:03:52:e3:0e:10 by local choice (reason=3)
[55254.774687] cfg80211: Calling CRDA to update world regulatory domain
[55256.652352] wlan0: authenticate with 00:03:52:e3:0e:10 (try 1)
[55256.652842] wlan0: authenticated
[55256.652873] wlan0: associate with 00:03:52:e3:0e:10 (try 1)
[55256.653431] wlan0: RX AssocResp from 00:03:52:e3:0e:10 (capab=0x11 status=0 aid=2)
[55256.653436] wlan0: associated
[55256.654076] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[55256.654081] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[55256.654102] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[55256.660352] ------------[ cut here ]------------
[55256.660370] WARNING: at net/mac80211/rx.c:2922 ieee80211_rx+0x125/0x1d0 [mac80211]()
[55256.660373] Hardware name: MacBookAir4,2
[55256.660375] Modules linked in: sha256_generic nls_utf8 hfsplus ipv6 ext4 mbcache jbd2 crc16 snd_hda_codec_hdmi snd_hda_codec_cirrus arc4 snd_hda_intel i915 uvcvideo joydev snd_hda_codec brcmsmac(C) usb_storage snd_hwdep videodev snd_pcm mac80211 media bcm5974 v4l2_compat_ioctl32 brcmutil(C) snd_timer drm_kms_helper uas snd drm applesmc iTCO_wdt cfg80211 soundcore i2c_algo_bit evdev input_polldev sg rfkill iTCO_vendor_support pcspkr mei(C) snd_page_alloc i2c_i801 battery apple_bl i2c_core ac video button intel_agp intel_gtt processor jfs aesni_intel cryptd aes_x86_64 aes_generic xts gf128mul dm_crypt dm_mod sd_mod pata_acpi hid_multitouch hid_apple usbhid hid uhci_hcd ehci_hcd ata_piix libata scsi_mod usbcore
[55256.660437] Pid: 0, comm: swapper Tainted: G WC 3.1.0-rc6-gbee709a #2
[55256.660440] Call Trace:
[55256.660442] <IRQ> [<ffffffff810625ef>] warn_slowpath_common+0x7f/0xc0
[55256.660454] [<ffffffff8106264a>] warn_slowpath_null+0x1a/0x20
[55256.660462] [<ffffffffa02864c5>] ieee80211_rx+0x125/0x1d0 [mac80211]
[55256.660468] [<ffffffffa026bd31>] ieee80211_tasklet_handler+0xd1/0xe0 [mac80211]
[55256.660473] [<ffffffff81068e02>] tasklet_action+0x92/0x180
[55256.660476] [<ffffffff81069e40>] __do_softirq+0xb0/0x270
[55256.660482] [<ffffffff8103463a>] ? ack_apic_level+0x7a/0x240
[55256.660488] [<ffffffff81419b2c>] call_softirq+0x1c/0x30
[55256.660493] [<ffffffff81016b35>] do_softirq+0x65/0xa0
[55256.660496] [<ffffffff8106a34e>] irq_exit+0x9e/0xc0
[55256.660501] [<ffffffff8141a3e3>] do_IRQ+0x63/0xe0
[55256.660504] [<ffffffff8141702e>] common_interrupt+0x6e/0x6e
[55256.660506] <EOI> [<ffffffff810893c9>] ? enqueue_hrtimer+0x39/0xf0
[55256.660517] [<ffffffff8127e7cb>] ? intel_idle+0xcb/0x120
[55256.660520] [<ffffffff8127e7ad>] ? intel_idle+0xad/0x120
[55256.660526] [<ffffffff813220a6>] cpuidle_idle_call+0xc6/0x350
[55256.660530] [<ffffffff81013229>] cpu_idle+0xc9/0x120
[55256.660534] [<ffffffff813ece97>] rest_init+0x9b/0xa4
[55256.660539] [<ffffffff8194fc30>] start_kernel+0x3bf/0x3cc
[55256.660543] [<ffffffff8194f388>] x86_64_start_reservations+0x132/0x136
[55256.660548] [<ffffffff8194f140>] ? early_idt_handlers+0x140/0x140
[55256.660552] [<ffffffff8194f459>] x86_64_start_kernel+0xcd/0xdc
[55256.660555] ---[ end trace 0c36ea94c55692c1 ]---
[55256.776180] ------------[ cut here ]------------
[55256.776193] WARNING: at net/mac80211/rx.c:2922 ieee80211_rx+0x125/0x1d0 [mac80211]()
[55256.776196] Hardware name: MacBookAir4,2
[55256.776197] Modules linked in: sha256_generic nls_utf8 hfsplus ipv6 ext4 mbcache jbd2 crc16 snd_hda_codec_hdmi snd_hda_codec_cirrus arc4 snd_hda_intel i915 uvcvideo joydev snd_hda_codec brcmsmac(C) usb_storage snd_hwdep videodev snd_pcm mac80211 media bcm5974 v4l2_compat_ioctl32 brcmutil(C) snd_timer drm_kms_helper uas snd drm applesmc iTCO_wdt cfg80211 soundcore i2c_algo_bit evdev input_polldev sg rfkill iTCO_vendor_support pcspkr mei(C) snd_page_alloc i2c_i801 battery apple_bl i2c_core ac video button intel_agp intel_gtt processor jfs aesni_intel cryptd aes_x86_64 aes_generic xts gf128mul dm_crypt dm_mod sd_mod pata_acpi hid_multitouch hid_apple usbhid hid uhci_hcd ehci_hcd ata_piix libata scsi_mod usbcore
[55256.776253] Pid: 0, comm: swapper Tainted: G WC 3.1.0-rc6-gbee709a #2
[55256.776255] Call Trace:
[55256.776257] <IRQ> [<ffffffff810625ef>] warn_slowpath_common+0x7f/0xc0
[55256.776267] [<ffffffff8106264a>] warn_slowpath_null+0x1a/0x20
[55256.776274] [<ffffffffa02864c5>] ieee80211_rx+0x125/0x1d0 [mac80211]
[55256.776281] [<ffffffffa026bd31>] ieee80211_tasklet_handler+0xd1/0xe0 [mac80211]
[55256.776285] [<ffffffff81068e02>] tasklet_action+0x92/0x180
[55256.776288] [<ffffffff81069e40>] __do_softirq+0xb0/0x270
[55256.776293] [<ffffffff8103463a>] ? ack_apic_level+0x7a/0x240
[55256.776297] [<ffffffff81419b2c>] call_softirq+0x1c/0x30
[55256.776301] [<ffffffff81016b35>] do_softirq+0x65/0xa0
[55256.776304] [<ffffffff8106a34e>] irq_exit+0x9e/0xc0
[55256.776308] [<ffffffff8141a3e3>] do_IRQ+0x63/0xe0
[55256.776311] [<ffffffff8141702e>] common_interrupt+0x6e/0x6e
[55256.776313] <EOI> [<ffffffff8127e7cb>] ? intel_idle+0xcb/0x120
[55256.776320] [<ffffffff8127e7ad>] ? intel_idle+0xad/0x120
[55256.776324] [<ffffffff813220a6>] cpuidle_idle_call+0xc6/0x350
[55256.776328] [<ffffffff81013229>] cpu_idle+0xc9/0x120
[55256.776331] [<ffffffff813ece97>] rest_init+0x9b/0xa4
[55256.776336] [<ffffffff8194fc30>] start_kernel+0x3bf/0x3cc
[55256.776340] [<ffffffff8194f388>] x86_64_start_reservations+0x132/0x136
[55256.776345] [<ffffffff8194f140>] ? early_idt_handlers+0x140/0x140
[55256.776349] [<ffffffff8194f459>] x86_64_start_kernel+0xcd/0xdc
[55256.776352] ---[ end trace 0c36ea94c55692c2 ]---
[55266.650220] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[55266.650228] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[55266.650237] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[55266.650241] wlan0: deauthenticating from 00:03:52:e3:0e:10 by local choice (reason=3)
[55266.677804] cfg80211: Calling CRDA to update world regulatory domain
[55268.567346] wlan0: direct probe to 00:03:52:2c:01:00 (try 1/3)
[55268.766566] wlan0: direct probe to 00:03:52:2c:01:00 (try 2/3)
[55268.966450] wlan0: direct probe to 00:03:52:2c:01:00 (try 3/3)
[55269.166336] wlan0: direct probe to 00:03:52:2c:01:00 timed out
[55280.441969] wlan0: direct probe to 00:0f:61:1a:1d:30 (try 1/3)
[55280.639700] wlan0: direct probe to 00:0f:61:1a:1d:30 (try 2/3)
[55280.839580] wlan0: direct probe to 00:0f:61:1a:1d:30 (try 3/3)
[55281.039466] wlan0: direct probe to 00:0f:61:1a:1d:30 timed out
[55528.706118] INFO: task wpa_supplicant:3883 blocked for more than 120 seconds.
[55528.706123] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[55528.706126] wpa_supplicant D ffff8801670d9150 0 3883 1 0x00000000
[55528.706132] ffff88015b3ddb28 0000000000000082 ffff8801670d8e60 0000000000000000
[55528.706137] ffff88015b3ddfd8 ffff88015b3ddfd8 ffff88015b3ddfd8 ffff88015b3ddfd8
[55528.706142] ffffffff8189d020 ffff8801670d8e60 ffff88015b3dddc0 ffff88015b3ddea8
[55528.706146] Call Trace:
[55528.706157] [<ffffffff811734d0>] ? poll_freewait+0xe0/0xe0
[55528.706162] [<ffffffff8105cc6f>] schedule+0x3f/0x60
[55528.706169] [<ffffffff814157d9>] __mutex_lock_slowpath+0x139/0x330
[55528.706177] [<ffffffff814159e6>] mutex_lock+0x16/0x30
[55528.706187] [<ffffffffa027130e>] ieee80211_request_scan+0x2e/0x60 [mac80211]
[55528.706196] [<ffffffffa028062c>] ieee80211_scan+0x6c/0x90 [mac80211]
[55528.706206] [<ffffffffa01e78b0>] cfg80211_wext_siwscan+0x2f0/0x370 [cfg80211]
[55528.706212] [<ffffffff813e2c1c>] ioctl_standard_iw_point+0x26c/0x3a0
[55528.706218] [<ffffffffa01e75c0>] ? cfg80211_find_ie+0x60/0x60 [cfg80211]
[55528.706223] [<ffffffff813351be>] ? sock_sendmsg+0x10e/0x130
[55528.706227] [<ffffffff813e2f20>] ? call_commit_handler+0x40/0x40
[55528.706230] [<ffffffff813e2fd1>] ioctl_standard_call+0xb1/0xd0
[55528.706236] [<ffffffff8134b284>] ? __dev_get_by_name+0xa4/0xe0
[55528.706240] [<ffffffff813e3b20>] ? iw_handler_get_private+0x60/0x60
[55528.706244] [<ffffffff813e23e4>] wireless_process_ioctl+0x164/0x1b0
[55528.706247] [<ffffffff813e2f20>] ? call_commit_handler+0x40/0x40
[55528.706251] [<ffffffff813e2dc1>] wext_ioctl_dispatch+0x71/0xb0
[55528.706255] [<ffffffff813e3b20>] ? iw_handler_get_private+0x60/0x60
[55528.706259] [<ffffffff813e30d6>] wext_handle_ioctl+0x46/0x90
[55528.706263] [<ffffffff8134f635>] dev_ioctl+0xd5/0x2d0
[55528.706267] [<ffffffff813345ba>] sock_ioctl+0xfa/0x2c0
[55528.706271] [<ffffffff81172888>] do_vfs_ioctl+0x88/0x300
[55528.706275] [<ffffffff81172b91>] sys_ioctl+0x91/0xa0
[55528.706279] [<ffffffff814178c2>] system_call_fastpath+0x16/0x1b
[55528.706299] INFO: task fetchmail:26117 blocked for more than 120 seconds.
[55528.706301] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[55528.706303] fetchmail D ffff8801359a5200 0 26117 15899 0x00000000
[55528.706308] ffff880117dbdb18 0000000000000086 0000007ff7dc9a09 ffffffff818f1a44
[55528.706313] ffff880117dbdfd8 ffff880117dbdfd8 ffff880117dbdfd8 ffff880117dbdfd8
[55528.706317] ffff880168ecf300 ffff8801359a4f10 ffff880117dbda88 ffffffff81127564
[55528.706322] Call Trace:
[55528.706327] [<ffffffff81127564>] ? handle_mm_fault+0x1b4/0x350
[55528.706332] [<ffffffff811076e5>] ? prep_new_page+0x145/0x1f0
[55528.706336] [<ffffffff81107966>] ? get_page_from_freelist+0x1d6/0x550
[55528.706340] [<ffffffff8105cc6f>] schedule+0x3f/0x60
[55528.706344] [<ffffffff814157d9>] __mutex_lock_slowpath+0x139/0x330
[55528.706349] [<ffffffff814159e6>] mutex_lock+0x16/0x30
[55528.706354] [<ffffffff8135b6a5>] rtnl_lock+0x15/0x20
[55528.706358] [<ffffffff8135b6c6>] rtnetlink_rcv+0x16/0x40
[55528.706363] [<ffffffff813749fe>] netlink_unicast+0x1ee/0x240
[55528.706368] [<ffffffff8133ea03>] ? __alloc_skb+0x83/0x230
[55528.706372] [<ffffffff81374dea>] netlink_sendmsg+0x2da/0x370
[55528.706375] [<ffffffff813351be>] sock_sendmsg+0x10e/0x130
[55528.706380] [<ffffffff8110cbdd>] ? lru_cache_add_lru+0x2d/0x50
[55528.706384] [<ffffffff81126231>] ? handle_pte_fault+0x1e1/0x200
[55528.706388] [<ffffffff8104c7c3>] ? __wake_up+0x53/0x70
[55528.706392] [<ffffffff81127564>] ? handle_mm_fault+0x1b4/0x350
[55528.706396] [<ffffffff81373999>] ? netlink_insert+0xe9/0x170
[55528.706400] [<ffffffff813377fd>] sys_sendto+0x13d/0x190
[55528.706405] [<ffffffff8115e9e2>] ? fd_install+0x62/0x80
[55528.706408] [<ffffffff8133583a>] ? sock_map_fd+0x2a/0x40
[55528.706412] [<ffffffff814178c2>] system_call_fastpath+0x16/0x1b
[55648.636698] INFO: task wpa_supplicant:3883 blocked for more than 120 seconds.
[55648.636702] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[55648.636705] wpa_supplicant D ffff8801670d9150 0 3883 1 0x00000000
[55648.636711] ffff88015b3ddb28 0000000000000082 ffff8801670d8e60 0000000000000000
[55648.636716] ffff88015b3ddfd8 ffff88015b3ddfd8 ffff88015b3ddfd8 ffff88015b3ddfd8
[55648.636721] ffffffff8189d020 ffff8801670d8e60 ffff88015b3dddc0 ffff88015b3ddea8
[55648.636726] Call Trace:
[55648.636736] [<ffffffff811734d0>] ? poll_freewait+0xe0/0xe0
[55648.636741] [<ffffffff8105cc6f>] schedule+0x3f/0x60
[55648.636748] [<ffffffff814157d9>] __mutex_lock_slowpath+0x139/0x330
[55648.636756] [<ffffffff814159e6>] mutex_lock+0x16/0x30
[55648.636767] [<ffffffffa027130e>] ieee80211_request_scan+0x2e/0x60 [mac80211]
[55648.636775] [<ffffffffa028062c>] ieee80211_scan+0x6c/0x90 [mac80211]
[55648.636785] [<ffffffffa01e78b0>] cfg80211_wext_siwscan+0x2f0/0x370 [cfg80211]
[55648.636790] [<ffffffff813e2c1c>] ioctl_standard_iw_point+0x26c/0x3a0
[55648.636797] [<ffffffffa01e75c0>] ? cfg80211_find_ie+0x60/0x60 [cfg80211]
[55648.636801] [<ffffffff813351be>] ? sock_sendmsg+0x10e/0x130
[55648.636805] [<ffffffff813e2f20>] ? call_commit_handler+0x40/0x40
[55648.636808] [<ffffffff813e2fd1>] ioctl_standard_call+0xb1/0xd0
[55648.636813] [<ffffffff8134b284>] ? __dev_get_by_name+0xa4/0xe0
[55648.636817] [<ffffffff813e3b20>] ? iw_handler_get_private+0x60/0x60
[55648.636821] [<ffffffff813e23e4>] wireless_process_ioctl+0x164/0x1b0
[55648.636825] [<ffffffff813e2f20>] ? call_commit_handler+0x40/0x40
[55648.636828] [<ffffffff813e2dc1>] wext_ioctl_dispatch+0x71/0xb0
[55648.636832] [<ffffffff813e3b20>] ? iw_handler_get_private+0x60/0x60
[55648.636836] [<ffffffff813e30d6>] wext_handle_ioctl+0x46/0x90
[55648.636841] [<ffffffff8134f635>] dev_ioctl+0xd5/0x2d0
[55648.636844] [<ffffffff813345ba>] sock_ioctl+0xfa/0x2c0
[55648.636848] [<ffffffff81172888>] do_vfs_ioctl+0x88/0x300
[55648.636852] [<ffffffff81172b91>] sys_ioctl+0x91/0xa0
[55648.636856] [<ffffffff814178c2>] system_call_fastpath+0x16/0x1b
[55648.636867] INFO: task fetchmail:26117 blocked for more than 120 seconds.
[55648.636869] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[55648.636871] fetchmail D ffff8801359a5200 0 26117 15899 0x00000000
[55648.636876] ffff880117dbdb18 0000000000000086 0000007ff7dc9a09 ffffffff818f1a44
[55648.636880] ffff880117dbdfd8 ffff880117dbdfd8 ffff880117dbdfd8 ffff880117dbdfd8
[55648.636885] ffff880168ecf300 ffff8801359a4f10 ffff880117dbda88 ffffffff81127564
[55648.636889] Call Trace:
[55648.636895] [<ffffffff81127564>] ? handle_mm_fault+0x1b4/0x350
[55648.636900] [<ffffffff811076e5>] ? prep_new_page+0x145/0x1f0
[55648.636904] [<ffffffff81107966>] ? get_page_from_freelist+0x1d6/0x550
[55648.636907] [<ffffffff8105cc6f>] schedule+0x3f/0x60
[55648.636912] [<ffffffff814157d9>] __mutex_lock_slowpath+0x139/0x330
[55648.636916] [<ffffffff814159e6>] mutex_lock+0x16/0x30
[55648.636921] [<ffffffff8135b6a5>] rtnl_lock+0x15/0x20
[55648.636925] [<ffffffff8135b6c6>] rtnetlink_rcv+0x16/0x40
[55648.636931] [<ffffffff813749fe>] netlink_unicast+0x1ee/0x240
[55648.636936] [<ffffffff8133ea03>] ? __alloc_skb+0x83/0x230
[55648.636940] [<ffffffff81374dea>] netlink_sendmsg+0x2da/0x370
[55648.636943] [<ffffffff813351be>] sock_sendmsg+0x10e/0x130
[55648.636948] [<ffffffff8110cbdd>] ? lru_cache_add_lru+0x2d/0x50
[55648.636953] [<ffffffff81126231>] ? handle_pte_fault+0x1e1/0x200
[55648.636957] [<ffffffff8104c7c3>] ? __wake_up+0x53/0x70
[55648.636960] [<ffffffff81127564>] ? handle_mm_fault+0x1b4/0x350
[55648.636965] [<ffffffff81373999>] ? netlink_insert+0xe9/0x170
[55648.636969] [<ffffffff813377fd>] sys_sendto+0x13d/0x190
[55648.636973] [<ffffffff8115e9e2>] ? fd_install+0x62/0x80
[55648.636977] [<ffffffff8133583a>] ? sock_map_fd+0x2a/0x40
[55648.636980] [<ffffffff814178c2>] system_call_fastpath+0x16/0x1b
[55659.848926] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 07:b8:b2:99:ff:1c
[55659.860736] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 79:5f:19:66:e8:9d
^ permalink raw reply
* mac80211: ROC timeout and back to oper channel when associated
From: Janusz Dziedzic @ 2011-10-19 12:18 UTC (permalink / raw)
To: linux-wireless
Hello,
I am doing such test with wpa_supplicant:
1) p2p_connect to GO (GO oper channel different than our listen
channel) - connected state
2) p2p_find
3) p2p_stop_find (we left on listen channel and didn't back oper channel).
Seems in case we have empty work queue in mac80211 we will not back to
oper channel (we are connected with GO).
In case after step 3 I will trigger some action, eg. scan we will
back to oper channel correctly.
My driver don't have HW_ROC callbacks.
I don't know ieee80211_work_work() code well and all flags we have
inside, so probably this patch don't cover all cases but generally
works.
Could you help with fix for that problem?
--- a/net/mac80211/work.c
+++ b/net/mac80211/work.c
@@ -1089,6 +1089,8 @@ static void ieee80211_work_work(struct work_struct *work)
list_del_rcu(&wk->list);
synchronize_rcu();
list_add(&wk->list, &free_work);
+ if (!ieee80211_cfg_on_oper_channel(local))
+ ieee80211_hw_config(local, 0);
break;
default:
BR
Janusz
^ permalink raw reply
* Re: Alfa AWUS036NHR with RTL8188RU chipset
From: Larry Finger @ 2011-10-19 12:08 UTC (permalink / raw)
To: v4mp; +Cc: linux-wireless
In-Reply-To: <loom.20111019T101621-921@post.gmane.org>
On 10/19/2011 03:17 AM, v4mp wrote:
>
> i don't know why you are saying this, i was just kidding....
> you take me too seriously...
> i think i'm doing a favour to you too debugging this..
>
> however with the rtl8192cu the hardware doesn't work with
> the ep error related to xhci_hcd..
> it is the point that we are now
>
> there is something more can i do now?
> i don't have any other usb port that works with other controller like ehci..
You can set up usbmon and dump the starting USB traffic for rtl8192cu and for
the Alfa driver, but please do not let it run for a long time. Those dumps get
very long. Load the driver you want with the device unplugged, then plug in the
device, and dump the buffer 3-4 seconds later. The instructions for using usbmon
are at http://www.mjmwired.net/kernel/Documentation/usb/usbmon.txt or in
Documentation/usb/usbmon.txt in the source tree.
The other thing you could do is to plug in the device with rtl8192cu as the
driver and after 1 second dump the dmesg log with 'dmesg > dmesg.out'. In your
previous attempt, you let the buffer wrap around and important info was lost.
These logs should be posted at Pastebin.
I sent a request for info regarding this to the Chinese group that wrote the
driver, but I have not heard back.
Larry
^ permalink raw reply
* Re: [ath5k-devel] Performance regression between Madwifi/net80211 and ath5k/mac80211
From: Adrian Chadd @ 2011-10-19 11:33 UTC (permalink / raw)
To: Joerg Pommnitz
Cc: Bob Copeland, linux-wireless@vger.kernel.org,
ath5k-devel@lists.ath5k.org
In-Reply-To: <1319018802.31281.YahooMailNeo@web161205.mail.bf1.yahoo.com>
.. does madwifi have that net80211 "aggressive mode" by default, where
it overrides the best-effort WME queue parameters to allow for
bursting?
I see exactly that difference in FreeBSD (33mbit vs 22mbit) when I
disable that aggressive mode code.
Thanks,
Adrian
^ permalink raw reply
* Re: 3.1.0-rc9+ : wlan stops working w/o any error messages
From: Toralf Förster @ 2011-10-19 11:01 UTC (permalink / raw)
To: wwguy
Cc: David Rientjes, werner, ilw@linux.intel.com,
linux-wireless@vger.kernel.org
In-Reply-To: <1318879847.17584.3.camel@wwguy-ubuntu>
wwguy wrote at 21:30:47
> When the problem happen, could you please dump the tx_queue status in
> debugfs and send us the information
>
> In order to dump the the tx_queue, please do the following
> 1. make sure you compile your kernel with CONFIG_IWLWIFI_DEBUGFS=y
> 2. unload and reload the "iwlagn" module
> 3. cd to /sys/kernel/debug/ieee80211/phyX/iwlwifi/debug (phX: "X" based
> on your system)
> 4. "$sudo cat tx_queue" to show the current tx queue status
There was an outage 15 min ago, however the network was automatically restarted, therefore not sure whether it is related to the initial reported problem
or not :
tfoerste@n22 ~/tmp $ sudo cat /sys/kernel/debug/ieee80211/phy0/iwlagn/debug/tx_queue
hwq 00: read=182 write=182 stop=0 swq_id=0x00 (ac 0/hwq 0)
stop-count: 0
hwq 01: read=0 write=0 stop=0 swq_id=0x05 (ac 1/hwq 1)
stop-count: 0
hwq 02: read=137 write=137 stop=0 swq_id=0x0a (ac 2/hwq 2)
stop-count: 0
hwq 03: read=7 write=7 stop=0 swq_id=0x0f (ac 3/hwq 3)
stop-count: 0
hwq 04: read=116 write=116 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 05: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 06: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 07: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 08: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 09: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 10: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 11: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 12: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 13: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 14: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 15: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 16: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 17: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 18: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 19: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
/var/log/messages gave :
2011-10-19T12:30:01.000+02:00 n22 cron[8068]: (root) CMD (/usr/lib/sa/sa2 -A >/dev/null)
2011-10-19T12:33:31.000+02:00 n22 dhcpcd[2755]: wlan0: carrier lost
2011-10-19T12:33:31.494+02:00 n22 kernel: cfg80211: Calling CRDA for country: DE
2011-10-19T12:33:31.000+02:00 n22 wpa_cli: interface wlan0 DISCONNECTED
2011-10-19T12:33:31.000+02:00 n22 wpa_cli: executing 'false /etc/init.d/net.wlan0 --quiet stop' failed
2011-10-19T12:33:33.000+02:00 n22 ntpd[2924]: Deleting interface #2 wlan0, 9.155.188.41#123, interface stats: received=103, sent=123,
dropped=0, active_time=2813 secs
2011-10-19T12:33:33.000+02:00 n22 ntpd[2924]: 213.154.229.24 interface 9.155.188.41 -> (none)
2011-10-19T12:33:33.000+02:00 n22 ntpd[2924]: 193.110.251.50 interface 9.155.188.41 -> (none)
2011-10-19T12:33:33.000+02:00 n22 ntpd[2924]: 95.140.150.140 interface 9.155.188.41 -> (none)
2011-10-19T12:33:33.000+02:00 n22 ntpd[2924]: 109.75.190.27 interface 9.155.188.41 -> (none)
2011-10-19T12:33:33.000+02:00 n22 ntpd[2924]: peers refreshed
2011-10-19T12:33:34.636+02:00 n22 kernel: wlan0: authenticate with 00:21:55:ac:8b:80 (try 1)
2011-10-19T12:33:34.637+02:00 n22 kernel: wlan0: authenticated
2011-10-19T12:33:34.639+02:00 n22 kernel: wlan0: waiting for beacon from 00:21:55:ac:8b:80
2011-10-19T12:33:34.685+02:00 n22 kernel: wlan0: beacon received
2011-10-19T12:33:34.689+02:00 n22 kernel: wlan0: associate with 00:21:55:ac:8b:80 (try 1)
2011-10-19T12:33:34.691+02:00 n22 kernel: wlan0: RX AssocResp from 00:21:55:ac:8b:80 (capab=0x431 status=0 aid=3)
2011-10-19T12:33:34.691+02:00 n22 kernel: wlan0: associated
2011-10-19T12:33:34.000+02:00 n22 dhcpcd[2755]: wlan0: carrier acquired
2011-10-19T12:33:34.000+02:00 n22 wpa_cli: interface wlan0 CONNECTED
2011-10-19T12:33:34.000+02:00 n22 wpa_cli: executing '/etc/init.d/net.wlan0 --quiet start' failed
2011-10-19T12:33:34.000+02:00 n22 dhcpcd[2755]: wlan0: rebinding lease of 9.155.188.41
2011-10-19T12:33:39.000+02:00 n22 dhcpcd[2755]: wlan0: acknowledged 9.155.188.41 from 9.64.163.10
2011-10-19T12:33:39.000+02:00 n22 dhcpcd[2755]: wlan0: checking for 9.155.188.41
2011-10-19T12:33:44.000+02:00 n22 dhcpcd[2755]: wlan0: leased 9.155.188.41 for 14400 seconds
2011-10-19T12:33:44.000+02:00 n22 dnsmasq[2334]: reading /etc/resolv.conf
2011-10-19T12:33:44.000+02:00 n22 dnsmasq[2334]: ignoring nameserver 127.0.0.1 - local interface
2011-10-19T12:33:46.000+02:00 n22 ntpd[2924]: Listen normally on 4 wlan0 9.155.188.41 UDP 123
2011-10-19T12:33:46.000+02:00 n22 ntpd[2924]: peers refreshed
2011-10-19T12:35:01.000+02:00 n22 cron[8662]: (root) CMD (/usr/lib/sa/sa1 60 5 >/dev/null)
2011-10-19T12:40:01.000+02:00 n22 cron[9141]: (root) CMD (test -x /usr/sbin/run-crons && /usr/sbin/run-crons )
2011-10-19T12:40:01.000+02:00 n22 cron[9142]: (root) CMD (/usr/lib/sa/sa1 60 5 >/dev/null)
2011-10-19T12:43:01.000+02:00 n22 dnsmasq[2334]: reading /etc/resolv.conf
2011-10-19T12:43:01.000+02:00 n22 dnsmasq[2334]: using nameserver 9.64.162.21#53
2011-10-19T12:43:01.000+02:00 n22 dnsmasq[2334]: using nameserver 9.64.163.21#53
2011-10-19T12:43:01.000+02:00 n22 dnsmasq[2334]: ignoring nameserver 127.0.0.1 - local interface
2011-10-19T12:45:01.000+02:00 n22 cron[9671]: (root) CMD (/usr/lib/sa/sa2 -A >/dev/null)
2011-10-19T12:45:01.000+02:00 n22 cron[9672]: (root) CMD (/usr/lib/sa/sa1 60 5 >/dev/null)
After rmmod and modprobe I restarted the network again, here's the output :
n22 ~ # cat /sys/kernel/debug/ieee80211/phy1/iwlagn/debug/tx_queue
hwq 00: read=2 write=2 stop=0 swq_id=0x00 (ac 0/hwq 0)
stop-count: 0
hwq 01: read=0 write=0 stop=0 swq_id=0x05 (ac 1/hwq 1)
stop-count: 0
hwq 02: read=6 write=6 stop=0 swq_id=0x0a (ac 2/hwq 2)
stop-count: 0
hwq 03: read=0 write=0 stop=0 swq_id=0x0f (ac 3/hwq 3)
stop-count: 0
hwq 04: read=76 write=76 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 05: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 06: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 07: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 08: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 09: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 10: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 11: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 12: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 13: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 14: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 15: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 16: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 17: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 18: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 19: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
--
MfG/Sincerely
Toralf Förster
pgp finger print: 7B1A 07F4 EC82 0F90 D4C2 8936 872A E508 7DB6 9DA3
^ permalink raw reply
* [PATCH v2 15/15] brcm80211: fmac: use sk_buff list for handling frames in receive path
From: Arend van Spriel @ 2011-10-19 10:51 UTC (permalink / raw)
To: linville; +Cc: linux-wireless, Arend van Spriel
The functions in the receive patch of the fullmac now use sk_buff
list and skb_queue_xx() functions instead of dealing with list pointers
in the sk_buff directly.
Reported-by: Johannes Berg <johannes@sipsolutions.net>
Reviewed-by: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Reviewed-by: Roland Vossen <rvossen@broadcom.com>
Signed-off-by: Arend van Spriel <arend@broadcom.com>
---
John,
An issue popped up in our nightly testing. This has been fixed in this
patch replacing the orginal patch sent yesterday with message id:
Message-ID: <1318939391-19495-16-git-send-email-arend@broadcom.com>
Gr. AvS
---
drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c | 62 ++++++++++---------
1 files changed, 33 insertions(+), 29 deletions(-)
diff --git a/drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c b/drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c
index 5ca7ae2..c6825f2 100644
--- a/drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c
+++ b/drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c
@@ -574,7 +574,7 @@ struct brcmf_bus {
uint txminmax;
struct sk_buff *glomd; /* Packet containing glomming descriptor */
- struct sk_buff *glom; /* Packet chain for glommed superframe */
+ struct sk_buff_head glom; /* Packet list for glommed superframe */
uint glomerr; /* Glom packet read errors */
u8 *rxbuf; /* Buffer for receiving control packets */
@@ -1229,16 +1229,17 @@ static uint brcmf_sdbrcm_glom_from_buf(struct brcmf_bus *bus, uint len)
struct sk_buff *p;
u8 *buf;
- p = bus->glom;
buf = bus->dataptr;
/* copy the data */
- for (; p && len; p = p->next) {
+ skb_queue_walk(&bus->glom, p) {
n = min_t(uint, p->len, len);
memcpy(p->data, buf, n);
buf += n;
len -= n;
ret += n;
+ if (!len)
+ break;
}
return ret;
@@ -1262,7 +1263,8 @@ static u8 brcmf_sdbrcm_rxglom(struct brcmf_bus *bus, u8 rxseq)
/* If packets, issue read(s) and send up packet chain */
/* Return sequence numbers consumed? */
- brcmf_dbg(TRACE, "start: glomd %p glom %p\n", bus->glomd, bus->glom);
+ brcmf_dbg(TRACE, "start: glomd %p glom %p\n",
+ bus->glomd, skb_peek(&bus->glom));
/* If there's a descriptor, generate the packet chain */
if (bus->glomd) {
@@ -1309,12 +1311,7 @@ static u8 brcmf_sdbrcm_rxglom(struct brcmf_bus *bus, u8 rxseq)
num, sublen);
break;
}
- if (!pfirst) {
- pfirst = plast = pnext;
- } else {
- plast->next = pnext;
- plast = pnext;
- }
+ skb_queue_tail(&bus->glom, pnext);
/* Adhere to start alignment requirements */
pkt_align(pnext, sublen, BRCMF_SDALIGN);
@@ -1330,12 +1327,13 @@ static u8 brcmf_sdbrcm_rxglom(struct brcmf_bus *bus, u8 rxseq)
brcmf_dbg(GLOM, "glomdesc mismatch: nextlen %d glomdesc %d rxseq %d\n",
bus->nextlen, totlen, rxseq);
}
- bus->glom = pfirst;
pfirst = pnext = NULL;
} else {
- if (pfirst)
- brcmu_pkt_buf_free_skb(pfirst);
- bus->glom = NULL;
+ if (!skb_queue_empty(&bus->glom))
+ skb_queue_walk_safe(&bus->glom, pfirst, pnext) {
+ skb_unlink(pfirst, &bus->glom);
+ brcmu_pkt_buf_free_skb(pfirst);
+ }
num = 0;
}
@@ -1347,17 +1345,17 @@ static u8 brcmf_sdbrcm_rxglom(struct brcmf_bus *bus, u8 rxseq)
/* Ok -- either we just generated a packet chain,
or had one from before */
- if (bus->glom) {
+ if (!skb_queue_empty(&bus->glom)) {
if (BRCMF_GLOM_ON()) {
brcmf_dbg(GLOM, "try superframe read, packet chain:\n");
- for (pnext = bus->glom; pnext; pnext = pnext->next) {
+ skb_queue_walk(&bus->glom, pnext) {
brcmf_dbg(GLOM, " %p: %p len 0x%04x (%d)\n",
pnext, (u8 *) (pnext->data),
pnext->len, pnext->len);
}
}
- pfirst = bus->glom;
+ pfirst = skb_peek(&bus->glom);
dlen = (u16) brcmu_pkttotlen(pfirst);
/* Do an SDIO read for the superframe. Configurable iovar to
@@ -1401,9 +1399,11 @@ static u8 brcmf_sdbrcm_rxglom(struct brcmf_bus *bus, u8 rxseq)
} else {
bus->glomerr = 0;
brcmf_sdbrcm_rxfail(bus, true, false);
- brcmu_pkt_buf_free_skb(bus->glom);
bus->rxglomfail++;
- bus->glom = NULL;
+ skb_queue_walk_safe(&bus->glom, pfirst, pnext) {
+ skb_unlink(pfirst, &bus->glom);
+ brcmu_pkt_buf_free_skb(pfirst);
+ }
}
return 0;
}
@@ -1524,9 +1524,11 @@ static u8 brcmf_sdbrcm_rxglom(struct brcmf_bus *bus, u8 rxseq)
} else {
bus->glomerr = 0;
brcmf_sdbrcm_rxfail(bus, true, false);
- brcmu_pkt_buf_free_skb(bus->glom);
bus->rxglomfail++;
- bus->glom = NULL;
+ skb_queue_walk_safe(&bus->glom, pfirst, pnext) {
+ skb_unlink(pfirst, &bus->glom);
+ brcmu_pkt_buf_free_skb(pfirst);
+ }
}
bus->nextlen = 0;
return 0;
@@ -1534,7 +1536,6 @@ static u8 brcmf_sdbrcm_rxglom(struct brcmf_bus *bus, u8 rxseq)
/* Basic SD framing looks ok - process each packet (header) */
save_pfirst = pfirst;
- bus->glom = NULL;
plast = NULL;
for (num = 0; pfirst; rxseq++, pfirst = pnext) {
@@ -1871,10 +1872,10 @@ brcmf_sdbrcm_readframes(struct brcmf_bus *bus, uint maxframes, bool *finished)
rxseq++, rxleft--) {
/* Handle glomming separately */
- if (bus->glom || bus->glomd) {
+ if (bus->glomd || !skb_queue_empty(&bus->glom)) {
u8 cnt;
brcmf_dbg(GLOM, "calling rxglom: glomd %p, glom %p\n",
- bus->glomd, bus->glom);
+ bus->glomd, skb_peek(&bus->glom));
cnt = brcmf_sdbrcm_rxglom(bus, rxseq);
brcmf_dbg(GLOM, "rxglom returned %d\n", cnt);
rxseq += cnt - 1;
@@ -3623,6 +3624,8 @@ void brcmf_sdbrcm_bus_stop(struct brcmf_bus *bus)
u8 saveclk;
uint retries;
int err;
+ struct sk_buff *cur;
+ struct sk_buff *next;
brcmf_dbg(TRACE, "Enter\n");
@@ -3682,11 +3685,11 @@ void brcmf_sdbrcm_bus_stop(struct brcmf_bus *bus)
/* Clear any held glomming stuff */
if (bus->glomd)
brcmu_pkt_buf_free_skb(bus->glomd);
-
- if (bus->glom)
- brcmu_pkt_buf_free_skb(bus->glom);
-
- bus->glom = bus->glomd = NULL;
+ if (!skb_queue_empty(&bus->glom))
+ skb_queue_walk_safe(&bus->glom, cur, next) {
+ skb_unlink(cur, &bus->glom);
+ brcmu_pkt_buf_free_skb(cur);
+ }
/* Clear rx control and wake any waiters */
bus->rxlen = 0;
@@ -4461,6 +4464,7 @@ void *brcmf_sdbrcm_probe(u16 bus_no, u16 slot, u16 func, uint bustype,
bus->sdiodev = sdiodev;
sdiodev->bus = bus;
+ skb_queue_head_init(&bus->glom);
bus->txbound = BRCMF_TXBOUND;
bus->rxbound = BRCMF_RXBOUND;
bus->txminmax = BRCMF_TXMINMAX;
--
1.7.4.1
^ permalink raw reply related
* Re: [ath5k-devel] Performance regression between Madwifi/net80211 and ath5k/mac80211
From: Joerg Pommnitz @ 2011-10-19 10:06 UTC (permalink / raw)
To: Bob Copeland; +Cc: linux-wireless@vger.kernel.org, ath5k-devel@lists.ath5k.org
In-Reply-To: <BANLkTi=Ob1H7XdG5-21SnjkuyVF9xw+xBA@mail.gmail.com>
Bob,
real world work interfered back in June but now I have a few more data points.
I made a cross test with ath5k on Fedora 2.6.40 (e.g. 3.0) and Madwifi-0.9.4 on
2.6.23. The interesting observation is, that the ath5k bottleneck seems to be
on the transmission end, e.g if the iperf client is attached to ath5k, the
performance is consistently lower.
Here is a table:
ath5k-ath5k = iperf server attached to ath5k, iperf client attached to ath5k
madwifi-ath5k = iperf server attached to madwifi, iperf client attached to ath5k
ath5k-madwifi = iperf server attached to ath5k, iperf client attached to madwifi
madwifi-madwifi = iperf server attached to madwifi, iperf client attached to madwifi
Note that on iperf the server is the traffic sink (and the measurement point) and
the client is the traffic source. Measured traffic was UDP as generated by
iperf -c <ip of server> -u -b 54M -t 15
The test setup was as followed:
* 59db attenuation between the two boxes (calibrated HF cable)
* Frequency 5200MHz (eg. 802.11a channel 40)
* txpower 10dBm on both sides
* ANI disabled on Madwifi
*SLOW* *SLOW* *FAST* *FAST*
ath5k-ath5k madwifi-ath5k ath5k-madwifi madwifi-madwifi
27553680 27553680 7426440 33998160
28082880 28135800 24866520 33851160
28212240 28212240 32281200 33615960
28323960 28112280 33033840 34027560
28300440 28259280 32363520 34303920
28088760 28276920 34739040 34021680
28112280 28212240 34874280 34415640
28247520 28088760 34298040 33886440
28247520 28235760 34004040 34292160
28176960 28141680 34944840 34409760
27930000 28224000 35015400 34174560
28206360 28159320 35085960 34403880
28135800 28082880 33574800 33951120
28135800 28041720 34986000 34045200
28147560 27965280 35133000 34174560
I will run with tcpdump on a monitoring interface for the combination
ath5k sender and madwifi sender shortly. Where should I capture the trace?
--
Regards
Joerg
----- Ursprüngliche Message -----
> Von: Bob Copeland <me@bobcopeland.com>
> An: Joerg Pommnitz <pommnitz@yahoo.com>
> Cc: linux-wireless@vger.kernel.org; ath5k-devel@lists.ath5k.org
> Gesendet: 13:02 Donnerstag, 30.Juni 2011
> Betreff: Re: [ath5k-devel] Performance regression between Madwifi/net80211 and ath5k/mac80211
>
> On Wed, Jun 22, 2011 at 11:07 AM, Joerg Pommnitz <pommnitz@yahoo.com>
> wrote:
>>> I guess you'll need more help from the HW people here.
>>
>> Bob, Bruno, Felix, Luis, Nick: Do you read?
>
> I guess I would be interested to know if there are any obvious
> differences in the streams. E.g. taking a monitor mode capture
> near the receiver should show whether the received power is similar,
> whether the # of retransmissions is significantly higher in ath5k
> vs madwifi, whether packets are sent at the same bitrates, if there
> are any pauses where ath5k doesn't seem to be doing anything, etc.
>
> Would it be possible to do a few captures with your setup?
> --
> Bob Copeland %% www.bobcopeland.com
>
^ permalink raw reply
* Re: Alfa AWUS036NHR with RTL8188RU chipset
From: v4mp @ 2011-10-19 8:17 UTC (permalink / raw)
To: linux-wireless
In-Reply-To: <4E9E052F.8090705@lwfinger.net>
i don't know why you are saying this, i was just kidding....
you take me too seriously...
i think i'm doing a favour to you too debugging this..
however with the rtl8192cu the hardware doesn't work with
the ep error related to xhci_hcd..
it is the point that we are now
there is something more can i do now?
i don't have any other usb port that works with other controller like ehci..
^ permalink raw reply
* [patch 3/4 v2] mwifiex: prevent corruption instead of just warning
From: Dan Carpenter @ 2011-10-19 7:32 UTC (permalink / raw)
To: Bing Zhao
Cc: John W. Linville, linux-wireless@vger.kernel.org,
kernel-janitors@vger.kernel.org
In-Reply-To: <477F20668A386D41ADCC57781B1F70430817F59764@SC-VEXCH1.marvell.com>
Probably we never hit this condition, but in case we do, we may as
well put a return here instead of just printing a warning message and
then corrupting memory. The caller doesn't check the return code.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
v2: Use the error handling code to free the skb before returning.
diff --git a/drivers/net/wireless/mwifiex/pcie.c b/drivers/net/wireless/mwifiex/pcie.c
index d12d440..a2f3200 100644
--- a/drivers/net/wireless/mwifiex/pcie.c
+++ b/drivers/net/wireless/mwifiex/pcie.c
@@ -1228,9 +1228,12 @@ static int mwifiex_pcie_event_complete(struct mwifiex_adapter *adapter,
if (!skb)
return 0;
- if (rdptr >= MWIFIEX_MAX_EVT_BD)
+ if (rdptr >= MWIFIEX_MAX_EVT_BD) {
dev_err(adapter->dev, "event_complete: Invalid rdptr 0x%x\n",
rdptr);
+ ret = -EINVAL;
+ goto done;
+ }
/* Read the event ring write pointer set by firmware */
if (mwifiex_read_reg(adapter, REG_EVTBD_WRPTR, &wrptr)) {
^ permalink raw reply related
* Re: iwlagn is getting very shaky
From: Guy, Wey-Yi @ 2011-10-19 6:44 UTC (permalink / raw)
To: Pekka Enberg
Cc: Norbert Preining, David Rientjes, linux-kernel@vger.kernel.org,
ipw3945-devel@lists.sourceforge.net, ilw@linux.intel.com,
linux-wireless@vger.kernel.org
In-Reply-To: <CAOJsxLHLmtYAR1c34Kkn+hzGeOSwhU646PP04pvTFx2e5M0NfA@mail.gmail.com>
On Wed, 2011-10-19 at 00:19 -0700, Pekka Enberg wrote:
> Hi Wey,
>
> On Wed, Oct 19, 2011 at 9:15 AM, Guy, Wey-Yi <wey-yi.w.guy@intel.com> wrote:
> > Sorry, I was thinking ask Pekka to use the officialfirmware. But more
> > important, I will like to find out is Pekka has the same issue as you
> > have which is tx queue stopped.
>
> I'm happy to help but I have no idea what you want me to do :-). When
> my internet connection dies the next time, what do you want me to
> capture for you? What's official firmware? I'm using Fedora 15 with
> 3.1-rc9 built from sources here. Do you want to see my lspci, .config,
> dmesg, something else?
I don't think it is firmware problem, so please ignore :-)
>
> As for the problems, I'm using iPhone 3G internet via WiFi sharing and
> connection seems to die few times a day or if I take the phone far
> enough from the laptop. I usually turn off the AP for a while and use
> NetworkManager on the laptop to disable/enable networking to make it
> come back up.
>
> I haven't tested anything but 3.1-rcX kernels on this machine but I
> can do git bisect too if it comes to that.
>
I am just try to understand if you encounter the same problem as
Norbert. if you can dump the tx_queue
in /sys/kernel/debug/ieee80211/phX/iwlagn/debug folder and send me the
log, thsat will be great.
p.s. you will need to enable CONFIG_IWLWIFI_DEBUGFS option in
your .config
Thanks
Wey
> Pekka
^ permalink raw reply
* Re: iwlagn is getting very shaky
From: Guy, Wey-Yi @ 2011-10-19 6:39 UTC (permalink / raw)
To: Norbert Preining
Cc: Pekka Enberg, David Rientjes, linux-kernel@vger.kernel.org,
ipw3945-devel@lists.sourceforge.net, ilw@linux.intel.com,
linux-wireless@vger.kernel.org
In-Reply-To: <20111019064818.GB14817@gamma.logic.tuwien.ac.at>
On Tue, 2011-10-18 at 23:48 -0700, Norbert Preining wrote:
> On Di, 18 Okt 2011, Guy, Wey-Yi wrote:
> > > >> loaded firmware version 8.83.5.1 build 33692 (EXP)
> > > >>
> >
> > looks like you are using experimental version of uCode, but by saying
> > that, I don't think i will make much differences
> >
> > so could you dump the tx queue to see if it is the similar problem what
> > Norbert point out
>
> Not sure what you mean Wey, should *I* Norbert use the default firmware
> and try to reproduce it? Ir should Pekka try to reproduce it with
> normal firmware? Or with both?
>
just got a idea, could you try to revert
commit#68b993118f715cc631b62b6a50574e4701fe9ace
not sure you can cleanly revert it, please let me know if you got
problem
Thanks
Wey
>
> Norbert
> ------------------------------------------------------------------------
> Norbert Preining preining@{jaist.ac.jp, logic.at, debian.org}
> JAIST, Japan TeX Liot sure yu ve & Debian Developer
> DSA: 0x09C5B094 fp: 14DF 2E6C 0307 BE6D AD76 A9C0 D2BF 4AA3 09C5 B094
> ------------------------------------------------------------------------
> WROOT (n.)
> A short little berk who thinks that by pulling on his pipe and gazing
> shrewdly at you he will give the impression that he is infinitely wise
> and 5 ft 11 in.
> --- Douglas Adams, The Meaning of Liff
^ permalink raw reply
* Re: iwlagn is getting very shaky
From: Pekka Enberg @ 2011-10-19 7:19 UTC (permalink / raw)
To: Guy, Wey-Yi
Cc: Norbert Preining, David Rientjes, linux-kernel@vger.kernel.org,
ipw3945-devel@lists.sourceforge.net, ilw@linux.intel.com,
linux-wireless@vger.kernel.org
In-Reply-To: <1319004938.31823.59.camel@wwguy-huron>
Hi Wey,
On Wed, Oct 19, 2011 at 9:15 AM, Guy, Wey-Yi <wey-yi.w.guy@intel.com> wrote:
> Sorry, I was thinking ask Pekka to use the officialfirmware. But more
> important, I will like to find out is Pekka has the same issue as you
> have which is tx queue stopped.
I'm happy to help but I have no idea what you want me to do :-). When
my internet connection dies the next time, what do you want me to
capture for you? What's official firmware? I'm using Fedora 15 with
3.1-rc9 built from sources here. Do you want to see my lspci, .config,
dmesg, something else?
As for the problems, I'm using iPhone 3G internet via WiFi sharing and
connection seems to die few times a day or if I take the phone far
enough from the laptop. I usually turn off the AP for a while and use
NetworkManager on the laptop to disable/enable networking to make it
come back up.
I haven't tested anything but 3.1-rcX kernels on this machine but I
can do git bisect too if it comes to that.
Pekka
^ permalink raw reply
* Re: iwlagn is getting very shaky
From: Guy, Wey-Yi @ 2011-10-19 6:15 UTC (permalink / raw)
To: Norbert Preining
Cc: Pekka Enberg, David Rientjes, linux-kernel@vger.kernel.org,
ipw3945-devel@lists.sourceforge.net, ilw@linux.intel.com,
linux-wireless@vger.kernel.org
In-Reply-To: <20111019064818.GB14817@gamma.logic.tuwien.ac.at>
On Tue, 2011-10-18 at 23:48 -0700, Norbert Preining wrote:
> On Di, 18 Okt 2011, Guy, Wey-Yi wrote:
> > > >> loaded firmware version 8.83.5.1 build 33692 (EXP)
> > > >>
> >
> > looks like you are using experimental version of uCode, but by saying
> > that, I don't think i will make much differences
> >
> > so could you dump the tx queue to see if it is the similar problem what
> > Norbert point out
>
> Not sure what you mean Wey, should *I* Norbert use the default firmware
> and try to reproduce it? Ir should Pekka try to reproduce it with
> normal firmware? Or with both?
>
Sorry, I was thinking ask Pekka to use the officialfirmware. But more
important, I will like to find out is Pekka has the same issue as you
have which is tx queue stopped.
Thanks
Wey
> Best wishes
>
> Norbert
> ------------------------------------------------------------------------
> Norbert Preining preining@{jaist.ac.jp, logic.at, debian.org}
> JAIST, Japan TeX Live & Debian Developer
> DSA: 0x09C5B094 fp: 14DF 2E6C 0307 BE6D AD76 A9C0 D2BF 4AA3 09C5 B094
> ------------------------------------------------------------------------
> WROOT (n.)
> A short little berk who thinks that by pulling on his pipe and gazing
> shrewdly at you he will give the impression that he is infinitely wise
> and 5 ft 11 in.
> --- Douglas Adams, The Meaning of Liff
^ permalink raw reply
* Re: iwlagn is getting very shaky
From: Guy, Wey-Yi @ 2011-10-19 6:13 UTC (permalink / raw)
To: Norbert Preining
Cc: David Rientjes, linux-kernel@vger.kernel.org,
ipw3945-devel@lists.sourceforge.net, ilw@linux.intel.com,
linux-wireless@vger.kernel.org
In-Reply-To: <20111019064628.GA14817@gamma.logic.tuwien.ac.at>
On Tue, 2011-10-18 at 23:46 -0700, Norbert Preining wrote:
> On Di, 18 Okt 2011, Guy, Wey-Yi wrote:
> > it is very interesting, for sure there is a bug here which cause NIC
> > stop working, if you look at the tx queue, hwq 0 is stop, which mean
> > nothing go out. I am not sure how we get into this? yes, most likely
>
> Yes, that is my obervation, too. Nothing goes out, so reassociation
> does not succeed.
>
> > Could you help me how to repro this problem?
>
> Not really, besides you come here to my university ;-)
> I have this problem currently only with the routers here at
> the university, not with other routers.
>
> Any other way I can provide you help?
Could you please let me know the brand/model of the AP which having
problem. Also the configuration of your NIC also help.
also, when you say you don't have problem with other router, could you
please be more clear, are those APs having the similar functions as the
one you have in university, or different?
Thanks
Wey
>
> Best wishes
>
> Norbert
> ------------------------------------------------------------------------
> Norbert Preining preining@{jaist.ac.jp, logic.at, debian.org}
> JAIST, Japan TeX Live & Debian Developer
> DSA: 0x09C5B094 fp: 14DF 2E6C 0307 BE6D AD76 A9C0 D2BF 4AA3 09C5 B094
> ------------------------------------------------------------------------
> SKENFRITH (n.)
> The flakes of athlete's foot found inside socks.
> --- Douglas Adams, The Meaning of Liff
^ permalink raw reply
* Re: iwlagn is getting very shaky
From: Norbert Preining @ 2011-10-19 6:25 UTC (permalink / raw)
To: David Rientjes
Cc: linux-kernel, ipw3945-devel, Wey-Yi Guy, ilw, linux-wireless
In-Reply-To: <alpine.DEB.2.00.1110182305110.7719@chino.kir.corp.google.com>
Hi David, hi all
On Di, 18 Okt 2011, David Rientjes wrote:
> There have been recent issues in 3.1-rc9 reported with iwlagn, see the
> thread at https://lkml.org/lkml/2011/10/15/107 even though you have
Interesting. I read through the thread and activated the debugfs
option.
I could get my hardware back by
echo 1 > /sys/kernel/debug/ieee80211/phy0/iwlagn/debug/force_reset
[ 2761.352629] ieee80211 phy0: Hardware restart was requested
[ 2761.352714] iwlagn 0000:06:00.0: L1 Enabled; Disabling L0S
[ 2761.355763] iwlagn 0000:06:00.0: Radio type=0x1-0x2-0x0
[ 2779.484308] wlan0: direct probe to 00:24:c4:ab:bd:e0 (try 1/3)
[ 2779.684128] wlan0: direct probe to 00:24:c4:ab:bd:e0 (try 2/3)
[ 2779.884087] wlan0: direct probe to 00:24:c4:ab:bd:e0 (try 3/3)
[ 2780.084079] wlan0: direct probe to 00:24:c4:ab:bd:e0 timed out
[ 2788.051381] wlan0: direct probe to 00:24:c4:ab:bd:e0 (try 1/3)
[ 2788.248079] wlan0: direct probe to 00:24:c4:ab:bd:e0 (try 2/3)
[ 2788.448083] wlan0: direct probe to 00:24:c4:ab:bd:e0 (try 3/3)
[ 2788.648140] wlan0: direct probe to 00:24:c4:ab:bd:e0 timed out
[ 2796.614710] wlan0: authenticate with 00:24:c4:ab:bd:ef (try 1)
[ 2796.615623] wlan0: authenticated
[ 2796.618046] wlan0: associate with 00:24:c4:ab:bd:ef (try 1)
[ 2796.622748] wlan0: RX AssocResp from 00:24:c4:ab:bd:ef (capab=0x1 status=0 aid=1)
[ 2796.622751] wlan0: associated
[ 2871.224192] e1000e: eth0 NIC Link is Down
I unplugged the cable and could ping the world still, nice....
After a short time I got:
[ 2895.575964] wlan0: direct probe to 00:24:c4:ab:bd:e0 (try 1/3)
[ 2895.772067] wlan0: direct probe to 00:24:c4:ab:bd:e0 (try 2/3)
[ 2895.972101] wlan0: direct probe to 00:24:c4:ab:bd:e0 (try 3/3)
[ 2896.172054] wlan0: direct probe to 00:24:c4:ab:bd:e0 timed out
[ 2905.316968] wlan0: deauthenticating from 00:24:c4:ab:bd:ef by local choice (reason=2)
[ 2905.356316] cfg80211: Calling CRDA to update world regulatory domain
[ 2905.361965] wlan0: authenticate with 00:24:c4:ab:bd:e0 (try 1)
[ 2905.560063] wlan0: authenticate with 00:24:c4:ab:bd:e0 (try 2)
[ 2905.760091] wlan0: authenticate with 00:24:c4:ab:bd:e0 (try 3)
[ 2905.960077] wlan0: authentication with 00:24:c4:ab:bd:e0 timed out
[ 2913.908984] wlan0: direct probe to 00:24:c4:ab:bd:e0 (try 1/3)
[ 2914.108116] wlan0: direct probe to 00:24:c4:ab:bd:e0 (try 2/3)
[ 2914.308116] wlan0: direct probe to 00:24:c4:ab:bd:e0 (try 3/3)
[ 2914.508103] wlan0: direct probe to 00:24:c4:ab:bd:e0 timed out
[ 2922.473062] wlan0: direct probe to 00:24:c4:ab:bd:e0 (try 1/3)
[ 2922.672109] wlan0: direct probe to 00:24:c4:ab:bd:e0 (try 2/3)
[ 2922.872106] wlan0: direct probe to 00:24:c4:ab:bd:e0 (try 3/3)
[ 2923.072103] wlan0: direct probe to 00:24:c4:ab:bd:e0 timed out
And at this time the tx_queue showed me:
------------------------------------------------------------
hwq 00: read=91 write=91 stop=1 swq_id=0x00 (ac 0/hwq 0)
stop-count: 1
hwq 01: read=0 write=0 stop=0 swq_id=0x05 (ac 1/hwq 1)
stop-count: 0
hwq 02: read=127 write=127 stop=0 swq_id=0x0a (ac 2/hwq 2)
stop-count: 0
hwq 03: read=0 write=0 stop=0 swq_id=0x0f (ac 3/hwq 3)
stop-count: 0
hwq 04: read=13 write=13 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 05: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 06: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 07: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 08: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 09: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 10: read=0 write=0 stop=0 swq_id=0x2a (ac 2/hwq 10)
hwq 11: read=0 write=0 stop=0 swq_id=0x2c (ac 0/hwq 11)
hwq 12: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 13: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 14: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 15: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 16: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 17: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 18: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
hwq 19: read=0 write=0 stop=0 swq_id=0x00 (ac 0/hwq 0)
-------------------------------------------------
Hope that helps. Anyone let me know if you need more testing.
Once more, be reminded the the firmware of the iwlagn is from
an experimental build that should solve the AGN stopped working
problem.
Best wishes
Norbert
------------------------------------------------------------------------
Norbert Preining preining@{jaist.ac.jp, logic.at, debian.org}
JAIST, Japan TeX Live & Debian Developer
DSA: 0x09C5B094 fp: 14DF 2E6C 0307 BE6D AD76 A9C0 D2BF 4AA3 09C5 B094
------------------------------------------------------------------------
SCRAMOGE (vb.)
To cut oneself whilst licking envelopes.
--- Douglas Adams, The Meaning of Liff
^ permalink raw reply
* Re: iwlagn is getting very shaky
From: Norbert Preining @ 2011-10-19 6:48 UTC (permalink / raw)
To: Guy, Wey-Yi
Cc: Pekka Enberg, David Rientjes, linux-kernel@vger.kernel.org,
ipw3945-devel@lists.sourceforge.net, ilw@linux.intel.com,
linux-wireless@vger.kernel.org
In-Reply-To: <1319003710.31823.53.camel@wwguy-huron>
On Di, 18 Okt 2011, Guy, Wey-Yi wrote:
> > >> loaded firmware version 8.83.5.1 build 33692 (EXP)
> > >>
>
> looks like you are using experimental version of uCode, but by saying
> that, I don't think i will make much differences
>
> so could you dump the tx queue to see if it is the similar problem what
> Norbert point out
Not sure what you mean Wey, should *I* Norbert use the default firmware
and try to reproduce it? Ir should Pekka try to reproduce it with
normal firmware? Or with both?
Best wishes
Norbert
------------------------------------------------------------------------
Norbert Preining preining@{jaist.ac.jp, logic.at, debian.org}
JAIST, Japan TeX Live & Debian Developer
DSA: 0x09C5B094 fp: 14DF 2E6C 0307 BE6D AD76 A9C0 D2BF 4AA3 09C5 B094
------------------------------------------------------------------------
WROOT (n.)
A short little berk who thinks that by pulling on his pipe and gazing
shrewdly at you he will give the impression that he is infinitely wise
and 5 ft 11 in.
--- Douglas Adams, The Meaning of Liff
^ permalink raw reply
* Re: iwlagn is getting very shaky
From: Norbert Preining @ 2011-10-19 6:46 UTC (permalink / raw)
To: Guy, Wey-Yi
Cc: David Rientjes, linux-kernel@vger.kernel.org,
ipw3945-devel@lists.sourceforge.net, ilw@linux.intel.com,
linux-wireless@vger.kernel.org
In-Reply-To: <1319003304.31823.46.camel@wwguy-huron>
On Di, 18 Okt 2011, Guy, Wey-Yi wrote:
> it is very interesting, for sure there is a bug here which cause NIC
> stop working, if you look at the tx queue, hwq 0 is stop, which mean
> nothing go out. I am not sure how we get into this? yes, most likely
Yes, that is my obervation, too. Nothing goes out, so reassociation
does not succeed.
> Could you help me how to repro this problem?
Not really, besides you come here to my university ;-)
I have this problem currently only with the routers here at
the university, not with other routers.
Any other way I can provide you help?
Best wishes
Norbert
------------------------------------------------------------------------
Norbert Preining preining@{jaist.ac.jp, logic.at, debian.org}
JAIST, Japan TeX Live & Debian Developer
DSA: 0x09C5B094 fp: 14DF 2E6C 0307 BE6D AD76 A9C0 D2BF 4AA3 09C5 B094
------------------------------------------------------------------------
SKENFRITH (n.)
The flakes of athlete's foot found inside socks.
--- Douglas Adams, The Meaning of Liff
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox