Re: linux-next: Tree for Apr 9 [cpufreq: NULL pointer deref]

From: Sedat Dilek
Date: Mon Apr 15 2013 - 13:52:04 EST


On Mon, Apr 15, 2013 at 7:22 PM, Viresh Kumar <viresh.kumar@xxxxxxxxxx> wrote:
> On 15 April 2013 21:37, Dirk Brandewie <dirk.brandewie@xxxxxxxxx> wrote:
>> If the intel_pstate driver is being used __cpufreq_governor() should NOT be
>> called intel_pstate does not implement the target() callback.
>>
>> Nathan's commit 5800043b2 changed the fence around the call to
>> __cpufreq_governor() in __cpufreq_remove_dev() here is the relevant hunk.
>
> No it isn't.
>
>> + if (has_target)
>> __cpufreq_governor(data, CPUFREQ_GOV_STOP);
>
> As it has taken care of this limitation.
>
> BUT some of my earlier patches haven't. :(
> Here is the fix (Sedat please try this and give your tested-by, use the attached
> patch as gmail might break what i am copying in mail)..
>
> Sorry for being late in fixing this issue, i am still down with Tonsil infection
> and fever.. Today only i got some power to fix it after seeing Dirk's mail.
>
> Your tested-by may help me to recover quickly :)
>

Hehe.
Me myself and I was today chez-mon-docteur... Let's see the results on Thursday.
Again, get well soon.

Tested against...

"BROKEN" Linux-Next (next-20130411) with attached patchset (incl.
your cpufreq-next-fixes).

Test-Case...

CONFIG_X86_INTEL_PSTATE=y

root# echo 0 > /sys/devices/system/cpu/cpu3/online

Tested-by: Sedat Dilek <sedat.dilek@xxxxxxxxx>

...did not test on-reboot-case.

( Dirk promised to test as well... )

- Sedat -

> @Rafael: I will probably be down for one more week and so not doing any
> reviews for now... I do check important mails sent directly to me though.
>
> ------------x----------------------x------------------
>
> From: Viresh Kumar <viresh.kumar@xxxxxxxxxx>
> Date: Mon, 15 Apr 2013 22:43:57 +0530
> Subject: [PATCH] cpufreq: Don't call __cpufreq_governor() for drivers without
> target()
>
> Some cpufreq drivers implement their own governor and so don't need us to call
> generic governors interface via __cpufreq_governor(). Few recent commits haven't
> obeyed this law well and we saw some regressions.
>
> This patch tries to fix this issue.
>
> Signed-off-by: Viresh Kumar <viresh.kumar@xxxxxxxxxx>
> ---
> drivers/cpufreq/cpufreq.c | 18 +++++++++++++-----
> 1 file changed, 13 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
> index 3564947..a6f6595 100644
> --- a/drivers/cpufreq/cpufreq.c
> +++ b/drivers/cpufreq/cpufreq.c
> @@ -858,13 +858,18 @@ static int cpufreq_add_policy_cpu(unsigned int
> cpu, unsigned int sibling,
> struct device *dev)
> {
> struct cpufreq_policy *policy;
> - int ret = 0;
> + int ret = 0, has_target = 0;
> unsigned long flags;
>
> policy = cpufreq_cpu_get(sibling);
> WARN_ON(!policy);
>
> - __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
> + rcu_read_lock();
> + has_target = !!rcu_dereference(cpufreq_driver)->target;
> + rcu_read_unlock();
> +
> + if (has_target)
> + __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
>
> lock_policy_rwsem_write(sibling);
>
> @@ -877,8 +882,10 @@ static int cpufreq_add_policy_cpu(unsigned int
> cpu, unsigned int sibling,
>
> unlock_policy_rwsem_write(sibling);
>
> - __cpufreq_governor(policy, CPUFREQ_GOV_START);
> - __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
> + if (has_target) {
> + __cpufreq_governor(policy, CPUFREQ_GOV_START);
> + __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
> + }
>
> ret = sysfs_create_link(&dev->kobj, &policy->kobj, "cpufreq");
> if (ret) {
> @@ -1146,7 +1153,8 @@ static int __cpufreq_remove_dev(struct device
> *dev, struct subsys_interface *sif
>
> /* If cpu is last user of policy, free policy */
> if (cpus == 1) {
> - __cpufreq_governor(data, CPUFREQ_GOV_POLICY_EXIT);
> + if (has_target)
> + __cpufreq_governor(data, CPUFREQ_GOV_POLICY_EXIT);
>
> lock_policy_rwsem_read(cpu);
> kobj = &data->kobj;
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 3.9.0-rc6-next20130411-4-iniza-small (sedat.dilek@xxxxxxxxx@fambox) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #1 SMP Mon Apr 15 19:42:47 CEST 2013
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.9.0-rc6-next20130411-4-iniza-small root=UUID=001AADA61AAD9964 loop=/ubuntu/disks/root.disk ro
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Centaur CentaurHauls
[ 0.000000] Disabled fast string operations
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000040200000-0x00000000d9c9efff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d9c9f000-0x00000000dae7efff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000dae7f000-0x00000000daf9efff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000daf9f000-0x00000000daffefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000dafff000-0x00000000daffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000db000000-0x00000000df9fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ffd80000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011fdfffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.6 present.
[ 0.000000] DMI: SAMSUNG ELECTRONICS CO., LTD. 530U3BI/530U4BI/530U4BH/530U3BI/530U4BI/530U4BH, BIOS 13XK 03/28/2013
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] No AGP bridge found
[ 0.000000] e820: last_pfn = 0x11fe00 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000000000 mask F80000000 write-back
[ 0.000000] 1 base 080000000 mask FC0000000 write-back
[ 0.000000] 2 base 0C0000000 mask FE0000000 write-back
[ 0.000000] 3 base 0DC000000 mask FFC000000 uncachable
[ 0.000000] 4 base 0DB000000 mask FFF000000 uncachable
[ 0.000000] 5 base 100000000 mask FE0000000 write-back
[ 0.000000] 6 base 11FE00000 mask FFFE00000 uncachable
[ 0.000000] 7 base 0FFC00000 mask FFFC00000 write-protect
[ 0.000000] 8 disabled
[ 0.000000] 9 disabled
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] e820: last_pfn = 0xdb000 max_arch_pfn = 0x400000000
[ 0.000000] found SMP MP-table at [mem 0x000f00e0-0x000f00ef] mapped at [ffff8800000f00e0]
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
[ 0.000000] reserving inaccessible SNB gfx pages
[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[ 0.000000] [mem 0x00000000-0x000fffff] page 4k
[ 0.000000] BRK [0x01f9e000, 0x01f9efff] PGTABLE
[ 0.000000] BRK [0x01f9f000, 0x01f9ffff] PGTABLE
[ 0.000000] BRK [0x01fa0000, 0x01fa0fff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x11fc00000-0x11fdfffff]
[ 0.000000] [mem 0x11fc00000-0x11fdfffff] page 2M
[ 0.000000] BRK [0x01fa1000, 0x01fa1fff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x11c000000-0x11fbfffff]
[ 0.000000] [mem 0x11c000000-0x11fbfffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x100000000-0x11bffffff]
[ 0.000000] [mem 0x100000000-0x11bffffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
[ 0.000000] [mem 0x00100000-0x001fffff] page 4k
[ 0.000000] [mem 0x00200000-0x1fffffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x20200000-0x3fffffff]
[ 0.000000] [mem 0x20200000-0x3fffffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x40200000-0xd9c9efff]
[ 0.000000] [mem 0x40200000-0xd9bfffff] page 2M
[ 0.000000] [mem 0xd9c00000-0xd9c9efff] page 4k
[ 0.000000] BRK [0x01fa2000, 0x01fa2fff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0xdafff000-0xdaffffff]
[ 0.000000] [mem 0xdafff000-0xdaffffff] page 4k
[ 0.000000] RAMDISK: [mem 0x379ae000-0x37ccefff]
[ 0.000000] ACPI: RSDP 00000000000f0100 00024 (v02 SECCSD)
[ 0.000000] ACPI: XSDT 00000000daffe170 0008C (v01 SECCSD LH43STAR 00000002 PTEC 00000002)
[ 0.000000] ACPI: FACP 00000000dafef000 0010C (v05 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: DSDT 00000000daff2000 083AC (v02 SECCSD SNB-CPT 00000000 INTL 20061109)
[ 0.000000] ACPI: FACS 00000000daf47000 00040
[ 0.000000] ACPI: SLIC 00000000daffd000 00176 (v01 SECCSD LH43STAR 00000002 PTEC 00000001)
[ 0.000000] ACPI: SSDT 00000000daffb000 01068 (v01 SECCSD PtidDevc 00001000 INTL 20061109)
[ 0.000000] ACPI: ASF! 00000000daff1000 000A5 (v32 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: HPET 00000000dafee000 00038 (v01 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: APIC 00000000dafed000 00098 (v03 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: MCFG 00000000dafec000 0003C (v01 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: SSDT 00000000dafeb000 00804 (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
[ 0.000000] ACPI: SSDT 00000000dafea000 00996 (v01 PmRef CpuPm 00003000 INTL 20061109)
[ 0.000000] ACPI: UEFI 00000000dafe9000 0003E (v01 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: UEFI 00000000dafe8000 00042 (v01 PTL COMBUF 00000001 PTL 00000001)
[ 0.000000] ACPI: UEFI 00000000dafe7000 0026A (v01 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: SSDT 00000000dafe6000 000D0 (v01 Iffs IffsAsl 00003000 INTL 20061109)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000011fdfffff]
[ 0.000000] Initmem setup node 0 [mem 0x00000000-0x11fdfffff]
[ 0.000000] NODE_DATA [mem 0x11fdf8000-0x11fdfbfff]
[ 0.000000] [ffffea0000000000-ffffea00047fffff] PMD -> [ffff88011b400000-ffff88011f3fffff] on node 0
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x00001000-0x00ffffff]
[ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
[ 0.000000] Normal [mem 0x100000000-0x11fdfffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
[ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
[ 0.000000] node 0: [mem 0x20200000-0x3fffffff]
[ 0.000000] node 0: [mem 0x40200000-0xd9c9efff]
[ 0.000000] node 0: [mem 0xdafff000-0xdaffffff]
[ 0.000000] node 0: [mem 0x100000000-0x11fdfffff]
[ 0.000000] On node 0 totalpages: 1021500
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 156 pages reserved
[ 0.000000] DMA zone: 3996 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 13859 pages used for memmap
[ 0.000000] DMA32 zone: 886944 pages, LIFO batch:31
[ 0.000000] Normal zone: 2040 pages used for memmap
[ 0.000000] Normal zone: 130560 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[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x0e] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 14, 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: 0x8086a301 base: 0xfed00000
[ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 40
[ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
[ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[ 0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
[ 0.000000] PM: Registered nosave memory: 0000000040000000 - 0000000040200000
[ 0.000000] PM: Registered nosave memory: 00000000d9c9f000 - 00000000dae7f000
[ 0.000000] PM: Registered nosave memory: 00000000dae7f000 - 00000000daf9f000
[ 0.000000] PM: Registered nosave memory: 00000000daf9f000 - 00000000dafff000
[ 0.000000] PM: Registered nosave memory: 00000000db000000 - 00000000dfa00000
[ 0.000000] PM: Registered nosave memory: 00000000dfa00000 - 00000000f8000000
[ 0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000
[ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000
[ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed08000
[ 0.000000] PM: Registered nosave memory: 00000000fed08000 - 00000000fed09000
[ 0.000000] PM: Registered nosave memory: 00000000fed09000 - 00000000fed10000
[ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 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 - 00000000ffd80000
[ 0.000000] PM: Registered nosave memory: 00000000ffd80000 - 0000000100000000
[ 0.000000] e820: [mem 0xdfa00000-0xf7ffffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88011fa00000 s85120 r8192 d21376 u262144
[ 0.000000] pcpu-alloc: s85120 r8192 d21376 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: 1005381
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.9.0-rc6-next20130411-4-iniza-small root=UUID=001AADA61AAD9964 loop=/ubuntu/disks/root.disk ro
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] __ex_table already sorted, skipping sort
[ 0.000000] xsave: 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: 3933392k/4716544k available (6948k kernel code, 630544k absent, 152608k reserved, 6314k data, 1320k init)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
[ 0.000000] NR_IRQS:16640 nr_irqs:744 16
[ 0.000000] Console: colour dummy device 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] allocated 16777216 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] tsc: Fast TSC calibration using PIT
[ 0.004000] tsc: Detected 1596.337 MHz processor
[ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 3192.67 BogoMIPS (lpj=6385348)
[ 0.000009] pid_max: default: 32768 minimum: 301
[ 0.000036] Security Framework initialized
[ 0.000050] AppArmor: AppArmor initialized
[ 0.000053] Yama: becoming mindful.
[ 0.000396] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.001438] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.001889] Mount-cache hash table entries: 256
[ 0.002085] Initializing cgroup subsys memory
[ 0.002098] Initializing cgroup subsys devices
[ 0.002102] Initializing cgroup subsys freezer
[ 0.002105] Initializing cgroup subsys blkio
[ 0.002108] Initializing cgroup subsys perf_event
[ 0.002112] Initializing cgroup subsys hugetlb
[ 0.002141] Disabled fast string operations
[ 0.002144] CPU: Physical Processor ID: 0
[ 0.002147] CPU: Processor Core ID: 0
[ 0.002153] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.002153] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.002160] mce: CPU supports 7 MCE banks
[ 0.002175] CPU0: Thermal monitoring enabled (TM1)
[ 0.002185] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
[ 0.002185] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
[ 0.002185] tlb_flushall_shift: 5
[ 0.002280] Freeing SMP alternatives: 24k freed
[ 0.004497] ACPI: Core revision 20130214
[ 0.009968] ACPI: All ACPI Tables successfully acquired
[ 0.011518] ftrace: allocating 26415 entries in 104 pages
[ 0.026559] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.066219] smpboot: CPU0: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz (fam: 06, model: 2a, stepping: 07)
[ 0.066231] TSC deadline timer enabled
[ 0.066243] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, Intel PMU driver.
[ 0.066254] ... version: 3
[ 0.066256] ... bit width: 48
[ 0.066259] ... generic registers: 4
[ 0.066261] ... value mask: 0000ffffffffffff
[ 0.066263] ... max period: 000000007fffffff
[ 0.066266] ... fixed-purpose events: 3
[ 0.066268] ... event mask: 000000070000000f
[ 0.078527] Disabled fast string operations
[ 0.080742] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.091870] Disabled fast string operations
[ 0.105102] Disabled fast string operations
[ 0.067491] smpboot: Booting Node 0, Processors #1 #2 #3
[ 0.107226] Brought up 4 CPUs
[ 0.107235] smpboot: Total of 4 processors activated (12770.69 BogoMIPS)
[ 0.111081] devtmpfs: initialized
[ 0.111973] EVM: security.selinux
[ 0.111977] EVM: security.SMACK64
[ 0.111979] EVM: security.capability
[ 0.112023] PM: Registering ACPI NVS region [mem 0xdae7f000-0xdaf9efff] (1179648 bytes)
[ 0.112893] regulator-dummy: no parameters
[ 0.112944] NET: Registered protocol family 16
[ 0.113066] ACPI: bus type PCI registered
[ 0.113125] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 0.113131] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[ 0.119843] PCI: Using configuration type 1 for base access
[ 0.120756] bio: create slab <bio-0> at 0
[ 0.120890] ACPI: Added _OSI(Module Device)
[ 0.120894] ACPI: Added _OSI(Processor Device)
[ 0.120896] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.120899] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.122414] ACPI: EC: Look up EC in DSDT
[ 0.155235] ACPI: Executed 1 blocks of module-level executable AML code
[ 0.157593] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[ 0.168939] ACPI: SSDT 00000000dae70718 00688 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
[ 0.169341] ACPI: Dynamic OEM Table Load:
[ 0.169345] ACPI: SSDT (null) 00688 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
[ 0.179465] ACPI: SSDT 00000000dae71a98 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
[ 0.179885] ACPI: Dynamic OEM Table Load:
[ 0.179888] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
[ 0.191327] ACPI: SSDT 00000000dae6fd98 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
[ 0.191716] ACPI: Dynamic OEM Table Load:
[ 0.191720] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
[ 0.204899] ACPI: Interpreter enabled
[ 0.204913] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130214/hwxface-568)
[ 0.204924] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S4_] (20130214/hwxface-568)
[ 0.204933] ACPI: (supports S0 S1 S3 S5)
[ 0.204936] ACPI: Using IOAPIC for interrupt routing
[ 0.204967] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.219948] ACPI: Power Resource [FN00] (off)
[ 0.220033] ACPI: Power Resource [FN01] (off)
[ 0.220118] ACPI: Power Resource [FN02] (off)
[ 0.220199] ACPI: Power Resource [FN03] (off)
[ 0.220283] ACPI: Power Resource [FN04] (off)
[ 0.220887] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[ 0.221052] \_SB_.PCI0:_OSC invalid UUID
[ 0.221053] _OSC request data:1 8 0
[ 0.221475] PCI host bridge to bus 0000:00
[ 0.221480] pci_bus 0000:00: root bus resource [bus 00-3e]
[ 0.221484] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
[ 0.221488] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
[ 0.221492] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[ 0.221495] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfeafffff]
[ 0.221498] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
[ 0.221509] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
[ 0.221603] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
[ 0.221616] pci 0000:00:02.0: reg 10: [mem 0xf0000000-0xf03fffff 64bit]
[ 0.221623] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
[ 0.221628] pci 0000:00:02.0: reg 20: [io 0x3000-0x303f]
[ 0.221739] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[ 0.221765] pci 0000:00:16.0: reg 10: [mem 0xf0705000-0xf070500f 64bit]
[ 0.221849] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.221940] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[ 0.221964] pci 0000:00:1a.0: reg 10: [mem 0xf070a000-0xf070a3ff]
[ 0.222062] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.222122] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[ 0.222140] pci 0000:00:1b.0: reg 10: [mem 0xf0700000-0xf0703fff 64bit]
[ 0.222215] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.222244] pci 0000:00:1b.0: System wakeup disabled by ACPI
[ 0.222279] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[ 0.222367] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.222398] pci 0000:00:1c.0: System wakeup disabled by ACPI
[ 0.222433] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
[ 0.222519] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 0.222555] pci 0000:00:1c.3: System wakeup disabled by ACPI
[ 0.222592] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[ 0.222723] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.222806] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[ 0.222829] pci 0000:00:1d.0: reg 10: [mem 0xf0709000-0xf07093ff]
[ 0.222931] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.222987] pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
[ 0.223143] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
[ 0.223165] pci 0000:00:1f.2: reg 10: [io 0x3088-0x308f]
[ 0.223174] pci 0000:00:1f.2: reg 14: [io 0x3094-0x3097]
[ 0.223183] pci 0000:00:1f.2: reg 18: [io 0x3080-0x3087]
[ 0.223192] pci 0000:00:1f.2: reg 1c: [io 0x3090-0x3093]
[ 0.223201] pci 0000:00:1f.2: reg 20: [io 0x3060-0x307f]
[ 0.223215] pci 0000:00:1f.2: reg 24: [mem 0xf0708000-0xf07087ff]
[ 0.223266] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.223327] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[ 0.223345] pci 0000:00:1f.3: reg 10: [mem 0xf0704000-0xf07040ff 64bit]
[ 0.223367] pci 0000:00:1f.3: reg 20: [io 0xefa0-0xefbf]
[ 0.223659] pci 0000:01:00.0: [8086:0091] type 00 class 0x028000
[ 0.223840] pci 0000:01:00.0: reg 10: [mem 0xf0600000-0xf0601fff 64bit]
[ 0.224570] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.224716] pci 0000:01:00.0: System wakeup disabled by ACPI
[ 0.231372] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.231381] pci 0000:00:1c.0: bridge window [mem 0xf0600000-0xf06fffff]
[ 0.231526] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[ 0.231596] pci 0000:02:00.0: reg 10: [io 0x2000-0x20ff]
[ 0.231719] pci 0000:02:00.0: reg 18: [mem 0xf0404000-0xf0404fff 64bit pref]
[ 0.231794] pci 0000:02:00.0: reg 20: [mem 0xf0400000-0xf0403fff 64bit pref]
[ 0.232125] pci 0000:02:00.0: supports D1 D2
[ 0.232127] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.232243] pci 0000:02:00.0: System wakeup disabled by ACPI
[ 0.239288] pci 0000:00:1c.3: PCI bridge to [bus 02]
[ 0.239302] pci 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
[ 0.239326] pci 0000:00:1c.3: bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
[ 0.239468] pci 0000:03:00.0: [1b21:1042] type 00 class 0x0c0330
[ 0.239505] pci 0000:03:00.0: reg 10: [mem 0xf0500000-0xf0507fff 64bit]
[ 0.239701] pci 0000:03:00.0: PME# supported from D3hot D3cold
[ 0.247281] pci 0000:00:1c.4: PCI bridge to [bus 03]
[ 0.247300] pci 0000:00:1c.4: bridge window [mem 0xf0500000-0xf05fffff]
[ 0.247423] \_SB_.PCI0:_OSC invalid UUID
[ 0.247425] _OSC request data:1 1f 0
[ 0.247429] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[ 0.247434] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
[ 0.248044] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[ 0.248105] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.248166] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[ 0.248224] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[ 0.248281] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
[ 0.248339] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.248398] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[ 0.248455] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
[ 0.248890] ACPI: Enabled 4 GPEs in block 00 to 3F
[ 0.248900] acpi root: \_SB_.PCI0 notify handler is installed
[ 0.248956] Found 1 acpi root devices
[ 0.248998] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[ 0.249133] ACPI: No dock devices found.
[ 0.249209] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.249215] vgaarb: loaded
[ 0.249217] vgaarb: bridge control possible 0000:00:02.0
[ 0.249371] SCSI subsystem initialized
[ 0.249375] ACPI: bus type ATA registered
[ 0.249430] libata version 3.00 loaded.
[ 0.249445] ACPI: bus type USB registered
[ 0.249466] usbcore: registered new interface driver usbfs
[ 0.249476] usbcore: registered new interface driver hub
[ 0.249500] usbcore: registered new device driver usb
[ 0.249606] PCI: Using ACPI for IRQ routing
[ 0.251277] PCI: pci_cache_line_size set to 64 bytes
[ 0.251384] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[ 0.251386] e820: reserve RAM buffer [mem 0xd9c9f000-0xdbffffff]
[ 0.251388] e820: reserve RAM buffer [mem 0xdb000000-0xdbffffff]
[ 0.251389] e820: reserve RAM buffer [mem 0x11fe00000-0x11fffffff]
[ 0.251473] NetLabel: Initializing
[ 0.251477] NetLabel: domain hash size = 128
[ 0.251479] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.251489] NetLabel: unlabeled traffic allowed by default
[ 0.251538] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.251547] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.253557] Switching to clocksource hpet
[ 0.258377] AppArmor: AppArmor Filesystem Enabled
[ 0.258404] pnp: PnP ACPI init
[ 0.258417] ACPI: bus type PNP registered
[ 0.258797] pnp 00:00: [dma 4]
[ 0.258820] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[ 0.258839] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
[ 0.258924] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
[ 0.258959] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[ 0.259003] system 00:04: [io 0x0680-0x069f] has been reserved
[ 0.259008] system 00:04: [io 0x1000-0x100f] has been reserved
[ 0.259011] system 00:04: [io 0x5000-0x5003] has been reserved
[ 0.259015] system 00:04: [io 0xffff] has been reserved
[ 0.259018] system 00:04: [io 0x0400-0x0453] has been reserved
[ 0.259022] system 00:04: [io 0x0458-0x047f] has been reserved
[ 0.259025] system 00:04: [io 0x0500-0x057f] has been reserved
[ 0.259028] system 00:04: [io 0x0a00-0x0a0f] has been reserved
[ 0.259032] system 00:04: [io 0x164e-0x164f] has been reserved
[ 0.259035] system 00:04: [io 0x5000-0x500f] could not be reserved
[ 0.259040] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.259064] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.259110] system 00:06: [io 0x0454-0x0457] has been reserved
[ 0.259115] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[ 0.259146] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[ 0.259187] pnp 00:08: Plug and Play ACPI device, IDs ETD0b00 SYN0002 PNP0f13 (active)
[ 0.259345] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.259350] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.259353] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.259357] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.259361] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
[ 0.259364] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.259368] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.259372] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.259375] system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
[ 0.259379] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.259384] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.259845] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.259871] pnp: PnP ACPI: found 11 devices
[ 0.259874] ACPI: bus type PNP unregistered
[ 0.265620] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.265629] pci 0000:00:1c.0: bridge window [mem 0xf0600000-0xf06fffff]
[ 0.265642] pci 0000:00:1c.3: PCI bridge to [bus 02]
[ 0.265647] pci 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
[ 0.265657] pci 0000:00:1c.3: bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
[ 0.265667] pci 0000:00:1c.4: PCI bridge to [bus 03]
[ 0.265674] pci 0000:00:1c.4: bridge window [mem 0xf0500000-0xf05fffff]
[ 0.265835] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 0.265838] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 0.265840] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 0.265842] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfeafffff]
[ 0.265843] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
[ 0.265846] pci_bus 0000:01: resource 1 [mem 0xf0600000-0xf06fffff]
[ 0.265848] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
[ 0.265850] pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf04fffff 64bit pref]
[ 0.265852] pci_bus 0000:03: resource 1 [mem 0xf0500000-0xf05fffff]
[ 0.265880] NET: Registered protocol family 2
[ 0.266043] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
[ 0.266189] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[ 0.266288] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.266321] TCP: reno registered
[ 0.266331] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.266352] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.266418] NET: Registered protocol family 1
[ 0.266432] pci 0000:00:02.0: Boot video device
[ 0.266777] PCI: CLS 64 bytes, default 64
[ 0.266819] Trying to unpack rootfs image as initramfs...
[ 0.331370] Freeing initrd memory: 3204k freed
[ 0.332056] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.332065] software IO TLB [mem 0xd5c9f000-0xd9c9f000] (64MB) mapped at [ffff8800d5c9f000-ffff8800d9c9efff]
[ 0.332262] Scanning for low memory corruption every 60 seconds
[ 0.332449] Initialise module verification
[ 0.332494] audit: initializing netlink socket (disabled)
[ 0.332505] type=2000 audit(1366055140.328:1): initialized
[ 0.365816] bounce pool size: 64 pages
[ 0.365832] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.367089] VFS: Disk quotas dquot_6.5.2
[ 0.367132] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.367531] fuse init (API version 7.21)
[ 0.367603] msgmni has been set to 7688
[ 0.367895] Key type asymmetric registered
[ 0.367898] Asymmetric key parser 'x509' registered
[ 0.367930] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[ 0.367964] io scheduler noop registered
[ 0.367967] io scheduler deadline registered (default)
[ 0.367973] io scheduler cfq registered
[ 0.368177] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 0.368191] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 0.368232] intel_idle: MWAIT substates: 0x21120
[ 0.368233] intel_idle: v0.4 model 0x2A
[ 0.368234] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 0.368656] ACPI: AC Adapter [ADP1] (on-line)
[ 0.368738] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
[ 0.368884] ACPI: Lid Switch [LID0]
[ 0.368936] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[ 0.368943] ACPI: Power Button [PWRB]
[ 0.368977] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.368982] ACPI: Power Button [PWRF]
[ 0.369061] ACPI: Fan [FAN0] (off)
[ 0.369086] ACPI: Fan [FAN1] (off)
[ 0.369116] ACPI: Fan [FAN2] (off)
[ 0.369139] ACPI: Fan [FAN3] (off)
[ 0.369162] ACPI: Fan [FAN4] (off)
[ 0.369210] ACPI: Requesting acpi_cpufreq
[ 0.373547] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.373553] ACPI: Thermal Zone [TZ00] (66 C)
[ 0.373740] thermal LNXTHERM:01: registered as thermal_zone1
[ 0.373744] ACPI: Thermal Zone [TZ01] (30 C)
[ 0.373773] GHES: HEST is not enabled!
[ 0.373901] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.376498] Linux agpgart interface v0.103
[ 0.378126] brd: module loaded
[ 0.378512] ACPI: Battery Slot [BAT1] (battery present)
[ 0.378856] loop: module loaded
[ 0.378954] mei_me 0000:00:16.0: setting latency timer to 64
[ 0.379008] mei_me 0000:00:16.0: irq 40 for MSI/MSI-X
[ 0.381794] ahci 0000:00:1f.2: version 3.0
[ 0.381882] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[ 0.381919] ahci: SSS flag set, parallel bus scan disabled
[ 0.397499] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1b impl SATA mode
[ 0.397506] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pio slum part ems sxs apst
[ 0.397514] ahci 0000:00:1f.2: setting latency timer to 64
[ 0.421752] scsi0 : ahci
[ 0.421809] scsi1 : ahci
[ 0.421857] scsi2 : ahci
[ 0.421906] scsi3 : ahci
[ 0.421952] scsi4 : ahci
[ 0.421999] scsi5 : ahci
[ 0.422028] ata1: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708100 irq 41
[ 0.422034] ata2: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708180 irq 41
[ 0.422038] ata3: DUMMY
[ 0.422041] ata4: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708280 irq 41
[ 0.422046] ata5: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708300 irq 41
[ 0.422050] ata6: DUMMY
[ 0.422290] libphy: Fixed MDIO Bus: probed
[ 0.422363] tun: Universal TUN/TAP device driver, 1.6
[ 0.422365] tun: (C) 1999-2004 Max Krasnyansky <maxk@xxxxxxxxxxxx>
[ 0.422402] PPP generic driver version 2.4.2
[ 0.422436] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 0.422439] ehci-pci: EHCI PCI platform driver
[ 0.422516] ehci-pci 0000:00:1a.0: setting latency timer to 64
[ 0.422525] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 0.422532] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 0.422549] ehci-pci 0000:00:1a.0: debug port 2
[ 0.426464] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[ 0.426480] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf070a000
[ 0.437452] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 0.437482] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 0.437486] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.437490] usb usb1: Product: EHCI Host Controller
[ 0.437493] usb usb1: Manufacturer: Linux 3.9.0-rc6-next20130411-4-iniza-small ehci_hcd
[ 0.437497] usb usb1: SerialNumber: 0000:00:1a.0
[ 0.437585] hub 1-0:1.0: USB hub found
[ 0.437591] hub 1-0:1.0: 2 ports detected
[ 0.437713] ehci-pci 0000:00:1d.0: setting latency timer to 64
[ 0.437719] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 0.437725] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 0.437741] ehci-pci 0000:00:1d.0: debug port 2
[ 0.441650] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 0.441664] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf0709000
[ 0.453441] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 0.453464] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[ 0.453468] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.453472] usb usb2: Product: EHCI Host Controller
[ 0.453475] usb usb2: Manufacturer: Linux 3.9.0-rc6-next20130411-4-iniza-small ehci_hcd
[ 0.453479] usb usb2: SerialNumber: 0000:00:1d.0
[ 0.453549] hub 2-0:1.0: USB hub found
[ 0.453554] hub 2-0:1.0: 2 ports detected
[ 0.453617] ehci-platform: EHCI generic platform driver
[ 0.453626] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 0.453641] uhci_hcd: USB Universal Host Controller Interface driver
[ 0.453705] xhci_hcd 0000:03:00.0: xHCI Host Controller
[ 0.453711] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 3
[ 0.463457] xhci_hcd 0000:03:00.0: irq 42 for MSI/MSI-X
[ 0.463463] xhci_hcd 0000:03:00.0: irq 43 for MSI/MSI-X
[ 0.463469] xhci_hcd 0000:03:00.0: irq 44 for MSI/MSI-X
[ 0.463474] xhci_hcd 0000:03:00.0: irq 45 for MSI/MSI-X
[ 0.463479] xhci_hcd 0000:03:00.0: irq 46 for MSI/MSI-X
[ 0.463590] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[ 0.463594] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.463598] usb usb3: Product: xHCI Host Controller
[ 0.463601] usb usb3: Manufacturer: Linux 3.9.0-rc6-next20130411-4-iniza-small xhci_hcd
[ 0.463605] usb usb3: SerialNumber: 0000:03:00.0
[ 0.463658] xHCI xhci_add_endpoint called for root hub
[ 0.463659] xHCI xhci_check_bandwidth called for root hub
[ 0.463676] hub 3-0:1.0: USB hub found
[ 0.463686] hub 3-0:1.0: 2 ports detected
[ 0.463742] xhci_hcd 0000:03:00.0: xHCI Host Controller
[ 0.463747] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 4
[ 0.463783] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[ 0.463787] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.463791] usb usb4: Product: xHCI Host Controller
[ 0.463794] usb usb4: Manufacturer: Linux 3.9.0-rc6-next20130411-4-iniza-small xhci_hcd
[ 0.463798] usb usb4: SerialNumber: 0000:03:00.0
[ 0.463851] xHCI xhci_add_endpoint called for root hub
[ 0.463852] xHCI xhci_check_bandwidth called for root hub
[ 0.463867] hub 4-0:1.0: USB hub found
[ 0.463876] hub 4-0:1.0: 2 ports detected
[ 0.485451] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:EPAD] at 0x60,0x64 irq 1,12
[ 0.492612] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.492619] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.492702] mousedev: PS/2 mouse device common for all mice
[ 0.493183] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[ 0.493214] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 0.493272] device-mapper: uevent: version 1.0.3
[ 0.493320] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-devel@xxxxxxxxxx
[ 0.493330] Intel P-state driver initializing.
[ 0.500315] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[ 0.505582] Intel pstate controlling: cpu 0
[ 0.505601] Intel pstate controlling: cpu 1
[ 0.505614] Intel pstate controlling: cpu 2
[ 0.505628] Intel pstate controlling: cpu 3
[ 0.505724] cpuidle: using governor ladder
[ 0.505730] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.505733] EFI Variables Facility v0.08 2004-May-17
[ 0.505834] ashmem: initialized
[ 0.505939] TCP: cubic registered
[ 0.506032] NET: Registered protocol family 10
[ 0.506209] NET: Registered protocol family 17
[ 0.506220] Key type dns_resolver registered
[ 0.506425] PM: Hibernation image not present or could not be loaded.
[ 0.506427] Loading module verification certificates
[ 0.507475] MODSIGN: Loaded cert 'Magrathea: Glacier signing key: 2d0b62fc6ef95e03950059171df14bf0687f5a2a'
[ 0.507489] registered taskstats version 1
[ 0.509829] Key type trusted registered
[ 0.511778] Key type encrypted registered
[ 0.515262] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 0.515267] EDD information not available.
[ 0.741339] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 0.742589] ata1.00: ATA-8: Hitachi HTS545050A7E380, GG2OA6C0, max UDMA/133
[ 0.742605] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 0.743677] ata1.00: configured for UDMA/133
[ 0.744017] scsi 0:0:0:0: Direct-Access ATA Hitachi HTS54505 GG2O PQ: 0 ANSI: 5
[ 0.744306] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 0.744339] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[ 0.744350] sd 0:0:0:0: [sda] 4096-byte physical blocks
[ 0.744640] sd 0:0:0:0: [sda] Write Protect is off
[ 0.744653] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 0.744813] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.753284] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 0.755356] sda: sda1 sda2 sda3
[ 0.756071] sd 0:0:0:0: [sda] Attached SCSI disk
[ 0.885656] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[ 0.885672] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 0.886074] hub 1-1:1.0: USB hub found
[ 0.886271] hub 1-1:1.0: 6 ports detected
[ 0.997165] usb 2-1: new high-speed USB device number 2 using ehci-pci
[ 1.065124] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.065732] ata2.00: ATA-8: SanDisk iSSD P4 16GB, SSD 9.14, max UDMA/133
[ 1.065753] ata2.00: 31277232 sectors, multi 1: LBA48
[ 1.066443] ata2.00: configured for UDMA/133
[ 1.066785] scsi 1:0:0:0: Direct-Access ATA SanDisk iSSD P4 SSD PQ: 0 ANSI: 5
[ 1.067057] sd 1:0:0:0: Attached scsi generic sg1 type 0
[ 1.067144] sd 1:0:0:0: [sdb] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
[ 1.067458] sd 1:0:0:0: [sdb] Write Protect is off
[ 1.067469] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 1.067611] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.068751] sdb: sdb1 sdb2
[ 1.069041] sd 1:0:0:0: [sdb] Attached SCSI disk
[ 1.129754] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[ 1.129769] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.130107] hub 2-1:1.0: USB hub found
[ 1.130322] hub 2-1:1.0: 6 ports detected
[ 1.205194] usb 1-1.4: new high-speed USB device number 3 using ehci-pci
[ 1.328912] tsc: Refined TSC clocksource calibration: 1596.376 MHz
[ 1.328926] Switching to clocksource tsc
[ 1.388897] ata4: SATA link down (SStatus 0 SControl 300)
[ 1.465263] usb 1-1.4: New USB device found, idVendor=2232, idProduct=1018
[ 1.465276] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.465283] usb 1-1.4: Product: WebCam SC-13HDL11431N
[ 1.465288] usb 1-1.4: Manufacturer: 123
[ 1.704656] ata5: SATA link down (SStatus 0 SControl 300)
[ 1.707272] Freeing unused kernel memory: 1320k freed
[ 1.707632] Write protecting the kernel read-only data: 12288k
[ 1.708807] usb 2-1.5: new full-speed USB device number 3 using ehci-pci
[ 1.713861] Freeing unused kernel memory: 1232k freed
[ 1.717590] Freeing unused kernel memory: 1076k freed
[ 1.735454] udevd[121]: starting version 175
[ 1.770412] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[ 1.770769] r8169 0000:02:00.0: irq 47 for MSI/MSI-X
[ 1.771016] r8169 0000:02:00.0 eth0: RTL8168evl/8111evl at 0xffffc90000620000, e8:03:9a:36:17:a9, XID 0c900800 IRQ 47
[ 1.771029] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[ 1.804803] usb 2-1.5: New USB device found, idVendor=8086, idProduct=0189
[ 1.804815] usb 2-1.5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.673086] EXT4-fs (loop0): mounted filesystem with ordered data mode. Opts: (null)
[ 23.340511] Adding 262140k swap on /host/ubuntu/disks/swap.disk. Priority:-1 extents:1 across:262140k FS
[ 23.344405] EXT4-fs (loop0): re-mounted. Opts: errors=remount-ro
[ 23.405635] udevd[596]: starting version 175
[ 23.805999] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130214/utaddress-251)
[ 23.806010] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 23.806016] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130214/utaddress-251)
[ 23.806021] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 23.806024] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130214/utaddress-251)
[ 23.806028] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 23.806030] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130214/utaddress-251)
[ 23.806033] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 23.806034] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 24.067644] Bluetooth: Core ver 2.16
[ 24.067703] NET: Registered protocol family 31
[ 24.067706] Bluetooth: HCI device and connection manager initialized
[ 24.068275] Bluetooth: HCI socket layer initialized
[ 24.068280] Bluetooth: L2CAP socket layer initialized
[ 24.068288] Bluetooth: SCO socket layer initialized
[ 24.131055] wmi: Mapper loaded
[ 24.131652] samsung_laptop: detected SABI interface: SwSmi@
[ 24.131655] samsung_laptop: Backlight controlled by ACPI video driver
[ 24.258187] lp: driver loaded but no devices found
[ 24.331043] Linux video capture interface: v2.00
[ 24.477552] type=1400 audit(1366047964.489:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=778 comm="apparmor_parser"
[ 24.477605] type=1400 audit(1366047964.489:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=778 comm="apparmor_parser"
[ 24.477647] type=1400 audit(1366047964.489:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=778 comm="apparmor_parser"
[ 24.508133] type=1400 audit(1366047964.517:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=703 comm="apparmor_parser"
[ 24.508190] type=1400 audit(1366047964.517:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=703 comm="apparmor_parser"
[ 24.508233] type=1400 audit(1366047964.517:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=703 comm="apparmor_parser"
[ 24.520986] init: failsafe main process (918) killed by TERM signal
[ 24.538689] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x28
[ 24.602808] ppdev: user-space parallel port driver
[ 24.612379] cfg80211: Calling CRDA to update world regulatory domain
[ 24.617688] cfg80211: World regulatory domain updated:
[ 24.617692] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 24.617695] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 24.617696] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 24.617698] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 24.617699] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 24.617700] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 24.629875] usbcore: registered new interface driver btusb
[ 24.672283] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 24.672288] Bluetooth: BNEP filters: protocol multicast
[ 24.672299] Bluetooth: BNEP socket layer initialized
[ 24.779112] Bluetooth: RFCOMM TTY layer initialized
[ 24.779127] Bluetooth: RFCOMM socket layer initialized
[ 24.779130] Bluetooth: RFCOMM ver 1.11
[ 25.159070] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x28
[ 25.161494] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x28
[ 25.163280] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x28
[ 25.165739] microcode: Microcode Update Driver: v2.00 <tigran@xxxxxxxxxxxxxxxxxxxx>, Peter Oruba
[ 25.194298] [drm] Initialized drm 1.1.0 20060810
[ 25.402942] uvcvideo: Found UVC 1.00 device WebCam SC-13HDL11431N (2232:1018)
[ 25.407392] Intel(R) Wireless WiFi driver for Linux, in-tree:d
[ 25.407397] Copyright(c) 2003-2013 Intel Corporation
[ 25.407716] iwlwifi 0000:01:00.0: irq 48 for MSI/MSI-X
[ 25.408473] iwlwifi 0000:01:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
[ 25.424064] input: WebCam SC-13HDL11431N as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input4
[ 25.424238] usbcore: registered new interface driver uvcvideo
[ 25.424241] USB Video Class driver (1.1.1)
[ 25.597915] type=1400 audit(1366047965.609:8): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=1049 comm="apparmor_parser"
[ 25.598036] type=1400 audit(1366047965.609:9): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=1049 comm="apparmor_parser"
[ 25.824290] [drm] Memory usable by graphics device = 2048M
[ 25.824299] i915 0000:00:02.0: setting latency timer to 64
[ 25.856782] i915 0000:00:02.0: irq 49 for MSI/MSI-X
[ 25.856801] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[ 25.856802] [drm] Driver supports precise vblank timestamp query.
[ 25.856852] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 25.867222] [drm] Wrong MCH_SSKPD value: 0x16040307
[ 25.867226] [drm] This can cause pipe underruns and display issues.
[ 25.867227] [drm] Please upgrade your BIOS to fix this.
[ 25.881432] fbcon: inteldrmfb (fb0) is primary device
[ 25.897496] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUG enabled
[ 25.897498] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[ 25.897500] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
[ 25.897501] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE enabled
[ 25.897502] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_P2P disabled
[ 25.897504] iwlwifi 0000:01:00.0: Detected Intel(R) Centrino(R) Advanced-N 6230 AGN, REV=0xB0
[ 25.897554] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
[ 25.918505] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[ 25.929915] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
[ 25.932966] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f00)
[ 25.936588] iwlwifi 0000:01:00.0: Radio type=0x1-0x2-0x0
[ 25.948981] psmouse serio1: elantech: Synaptics capabilities query result 0x08, 0x17, 0x0c.
[ 26.026191] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input5
[ 26.281384] type=1400 audit(1366047966.293:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm/lightdm-guest-session-wrapper" pid=1068 comm="apparmor_parser"
[ 26.332139] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
[ 26.338754] iwlwifi 0000:01:00.0: Radio type=0x1-0x2-0x0
[ 26.532463] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 26.620925] type=1400 audit(1366047966.633:11): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=1069 comm="apparmor_parser"
[ 26.874868] Console: switching to colour frame buffer device 170x48
[ 26.879508] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[ 26.879511] i915 0000:00:02.0: registered panic notifier
[ 26.904082] acpi device:33: registered as cooling_device9
[ 26.904331] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 26.905248] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input6
[ 26.907012] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[ 26.907213] snd_hda_intel 0000:00:1b.0: irq 50 for MSI/MSI-X
[ 26.984146] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[ 26.984343] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[ 26.984558] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[ 27.802312] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
[ 32.922856] wlan0: authenticate with 00:04:0e:e4:00:3d
[ 32.927630] wlan0: send auth to 00:04:0e:e4:00:3d (try 1/3)
[ 32.929321] wlan0: authenticated
[ 32.929491] iwlwifi 0000:01:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
[ 32.929494] iwlwifi 0000:01:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
[ 32.930499] wlan0: associate with 00:04:0e:e4:00:3d (try 1/3)
[ 32.934020] wlan0: RX AssocResp from 00:04:0e:e4:00:3d (capab=0x411 status=0 aid=1)
[ 32.938295] wlan0: associated
[ 32.938322] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 32.991749] audit_printk_skb: 21 callbacks suppressed
[ 32.991753] type=1400 audit(1366047973.009:19): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=1070 comm="apparmor_parser"
[ 32.992324] type=1400 audit(1366047973.009:20): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince//launchpad_integration" pid=1070 comm="apparmor_parser"
[ 32.992490] type=1400 audit(1366047973.009:21): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince//sanitized_helper" pid=1070 comm="apparmor_parser"
[ 32.993035] type=1400 audit(1366047973.009:22): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-previewer" pid=1070 comm="apparmor_parser"
[ 32.993408] type=1400 audit(1366047973.009:23): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-previewer//launchpad_integration" pid=1070 comm="apparmor_parser"
[ 32.993570] type=1400 audit(1366047973.009:24): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-previewer//sanitized_helper" pid=1070 comm="apparmor_parser"
[ 32.993930] type=1400 audit(1366047973.009:25): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-thumbnailer" pid=1070 comm="apparmor_parser"
[ 32.994212] type=1400 audit(1366047973.009:26): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-thumbnailer//sanitized_helper" pid=1070 comm="apparmor_parser"
[ 33.061249] init: alsa-restore main process (1207) terminated with status 99
[ 33.443073] init: plymouth-stop pre-start process (1444) terminated with status 1
[ 82.926755] smpboot: CPU 3 is now offline

Attachment: config-3.9.0-rc6-next20130411-4-iniza-small
Description: Binary data

Attachment: 3.9.0-rc6-next20130411-4-iniza-small.patch
Description: Binary data