diff mbox

linux-next: Tree for Jul 25 [ call-trace: drm | drm-intel related? ]

Message ID 87ehanx9bx.fsf@intel.com (mailing list archive)
State New, archived
Headers show

Commit Message

Jani Nikula July 25, 2013, 9:44 a.m. UTC
On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> On Thu, Jul 25, 2013 at 7:12 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>> Hi all,
>>
>> Changes since 20130724:
>>
>> Removed tree:
>>         arm-dt (at maintainer's request)
>>
>> The wireless-next tree lost its build failure and gained a conflict
>> against Linus' tree.
>>
>> The tty tree lost its build failure.
>>
>> The staging tree gained a build failure for which I disabled a driver.
>>
>> ----------------------------------------------------------------------------
>>
>
> [ CCing drm and drm-intel folks ]
>
> With today's next-20130725 I see the following:

Use of dev_priv->gt_lock in I915_WRITE through
intel_disable_gt_powersave before spin lock init, caused by

commit 181d1b9e31c668259d3798c521672afb8edd355c
Author: Daniel Vetter <daniel.vetter@ffwll.ch>
Date:   Sun Jul 21 13:16:24 2013 +0200

    drm/i915: fix up gt init sequence fallout

Daniel, how about just doing this (untested):

Cheers,
Jani.


From a6b46053ba07d2e129691fd24ad2e43a1d8dfd10 Mon Sep 17 00:00:00 2001
From: Jani Nikula <jani.nikula@intel.com>
Date: Thu, 25 Jul 2013 12:40:31 +0300
Subject: [PATCH] drm/i915: initialize gt_lock early with other spin locks
Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo
Cc: Jani Nikula <jani.nikula@intel.com>

commit 181d1b9e31c668259d3798c521672afb8edd355c
Author: Daniel Vetter <daniel.vetter@ffwll.ch>
Date:   Sun Jul 21 13:16:24 2013 +0200

    drm/i915: fix up gt init sequence fallout

moved dev_priv->gt_lock initialization after use. Do the initialization
much earlier with other spin lock initializations.

Reported-by: Sedat Dilek <sedat.dilek@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/i915_dma.c |    1 +
 drivers/gpu/drm/i915/intel_pm.c |    2 --
 2 files changed, 1 insertion(+), 2 deletions(-)

Comments

Sedat Dilek July 25, 2013, 10:02 a.m. UTC | #1
On Thu, Jul 25, 2013 at 11:44 AM, Jani Nikula
<jani.nikula@linux.intel.com> wrote:
> On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>> On Thu, Jul 25, 2013 at 7:12 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>>> Hi all,
>>>
>>> Changes since 20130724:
>>>
>>> Removed tree:
>>>         arm-dt (at maintainer's request)
>>>
>>> The wireless-next tree lost its build failure and gained a conflict
>>> against Linus' tree.
>>>
>>> The tty tree lost its build failure.
>>>
>>> The staging tree gained a build failure for which I disabled a driver.
>>>
>>> ----------------------------------------------------------------------------
>>>
>>
>> [ CCing drm and drm-intel folks ]
>>
>> With today's next-20130725 I see the following:
>
> Use of dev_priv->gt_lock in I915_WRITE through
> intel_disable_gt_powersave before spin lock init, caused by
>
> commit 181d1b9e31c668259d3798c521672afb8edd355c
> Author: Daniel Vetter <daniel.vetter@ffwll.ch>
> Date:   Sun Jul 21 13:16:24 2013 +0200
>
>     drm/i915: fix up gt init sequence fallout
>

Ah, cool.

I assumed/tested "drm/i915: fix the racy object accounting", but this
does not fix it.
Will try with yours.

- Sedat -

[1] cgit.freedesktop.org/~danvet/drm-intel/patch/?id=190426c5a60659533b9361b7e0ba083bd5434c80

> Daniel, how about just doing this (untested):
>
> Cheers,
> Jani.
>
>
> From a6b46053ba07d2e129691fd24ad2e43a1d8dfd10 Mon Sep 17 00:00:00 2001
> From: Jani Nikula <jani.nikula@intel.com>
> Date: Thu, 25 Jul 2013 12:40:31 +0300
> Subject: [PATCH] drm/i915: initialize gt_lock early with other spin locks
> Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo
> Cc: Jani Nikula <jani.nikula@intel.com>
>
> commit 181d1b9e31c668259d3798c521672afb8edd355c
> Author: Daniel Vetter <daniel.vetter@ffwll.ch>
> Date:   Sun Jul 21 13:16:24 2013 +0200
>
>     drm/i915: fix up gt init sequence fallout
>
> moved dev_priv->gt_lock initialization after use. Do the initialization
> much earlier with other spin lock initializations.
>
> Reported-by: Sedat Dilek <sedat.dilek@gmail.com>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
>  drivers/gpu/drm/i915/i915_dma.c |    1 +
>  drivers/gpu/drm/i915/intel_pm.c |    2 --
>  2 files changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c
> index 67ec54f..b064a5a 100644
> --- a/drivers/gpu/drm/i915/i915_dma.c
> +++ b/drivers/gpu/drm/i915/i915_dma.c
> @@ -1496,6 +1496,7 @@ int i915_driver_load(struct drm_device *dev, unsigned long flags)
>         dev_priv->info = info;
>
>         spin_lock_init(&dev_priv->irq_lock);
> +       spin_lock_init(&dev_priv->gt_lock);
>         spin_lock_init(&dev_priv->gpu_error.lock);
>         spin_lock_init(&dev_priv->rps.lock);
>         spin_lock_init(&dev_priv->backlight.lock);
> diff --git a/drivers/gpu/drm/i915/intel_pm.c b/drivers/gpu/drm/i915/intel_pm.c
> index 6a347f5..51a2a60 100644
> --- a/drivers/gpu/drm/i915/intel_pm.c
> +++ b/drivers/gpu/drm/i915/intel_pm.c
> @@ -5497,8 +5497,6 @@ void intel_gt_init(struct drm_device *dev)
>  {
>         struct drm_i915_private *dev_priv = dev->dev_private;
>
> -       spin_lock_init(&dev_priv->gt_lock);
> -
>         if (IS_VALLEYVIEW(dev)) {
>                 dev_priv->gt.force_wake_get = vlv_force_wake_get;
>                 dev_priv->gt.force_wake_put = vlv_force_wake_put;
> --
> 1.7.9.5
>
>
>
>>
>> [   17.122627] [drm] Memory usable by graphics device = 2048M
>> [   17.122639] i915 0000:00:02.0: setting latency timer to 64
>> [   17.164740] BUG: spinlock bad magic on CPU#3, modprobe/635
>> [   17.164797]  lock: 0xffff8800bc534040, .magic: 00000000, .owner:
>> <none>/-1, .owner_cpu: 0
>> [   17.164856] CPU: 3 PID: 635 Comm: modprobe Not tainted
>> 3.11.0-rc2-next20130725-1-iniza-small #1
>> [   17.164914] Hardware name: SAMSUNG ELECTRONICS CO., LTD.
>> 530U3BI/530U4BI/530U4BH/530U3BI/530U4BI/530U4BH, BIOS 13XK 03/28/2013
>> [   17.164977]  0000000000000000 ffff8800c0fa1738 ffffffff816ddfc9
>> 0000000000000007
>> [   17.165101]  ffff8800bc534040 ffff8800c0fa1758 ffffffff816de065
>> ffff8800bc534040
>> [   17.165222]  ffffffff81a5f497 ffff8800c0fa1778 ffffffff816de08b
>> ffff8800bc534040
>> [   17.165345] Call Trace:
>> [   17.165386]  [<ffffffff816ddfc9>] dump_stack+0x46/0x58
>> [   17.165428]  [<ffffffff816de065>] spin_dump+0x8a/0x8f
>> [   17.165469]  [<ffffffff816de08b>] spin_bug+0x21/0x26
>> [   17.165511]  [<ffffffff813787c4>] do_raw_spin_lock+0x84/0x120
>> [   17.165554]  [<ffffffff816e6db4>] _raw_spin_lock_irqsave+0x24/0x30
>> [   17.165620]  [<ffffffffa037a456>] i915_write32+0x36/0x150 [i915]
>> [   17.165690]  [<ffffffffa03cf4c5>]
>> intel_disable_gt_powersave+0xf5/0x360 [i915]
>> [   17.165768]  [<ffffffffa03d1129>] intel_gt_sanitize+0x49/0xb0 [i915]
>> [   17.165827]  [<ffffffffa037dd68>] i915_driver_load+0x638/0xed0 [i915]
>> [   17.165886]  [<ffffffffa01b4b91>] drm_get_pci_dev+0x181/0x2a0 [drm]
>> [   17.165929]  [<ffffffff813788fd>] ? do_raw_spin_unlock+0x5d/0xb0
>> [   17.165987]  [<ffffffffa03796f6>] i915_pci_probe+0x36/0x70 [i915]
>> [   17.166031]  [<ffffffff813973ab>] local_pci_probe+0x4b/0x80
>> [   17.166073]  [<ffffffff81398c81>] pci_device_probe+0x101/0x120
>> [   17.166115]  [<ffffffff8147599b>] driver_probe_device+0x7b/0x240
>> [   17.166158]  [<ffffffff81475c0b>] __driver_attach+0xab/0xb0
>> [   17.166200]  [<ffffffff81475b60>] ? driver_probe_device+0x240/0x240
>> [   17.166244]  [<ffffffff81473c7e>] bus_for_each_dev+0x5e/0x90
>> [   17.166286]  [<ffffffff8147549e>] driver_attach+0x1e/0x20
>> [   17.166330]  [<ffffffff81474f94>] bus_add_driver+0x104/0x270
>> [   17.166372]  [<ffffffff8147616d>] driver_register+0x7d/0x160
>> [   17.166415]  [<ffffffff81397c04>] __pci_register_driver+0x64/0x70
>> [   17.166460]  [<ffffffffa0446000>] ? 0xffffffffa0445fff
>> [   17.166510]  [<ffffffffa01b4dca>] drm_pci_init+0x11a/0x130 [drm]
>> [   17.166553]  [<ffffffffa0446000>] ? 0xffffffffa0445fff
>> [   17.166610]  [<ffffffffa0446066>] i915_init+0x66/0x68 [i915]
>> [   17.166652]  [<ffffffff8100207e>] do_one_initcall+0x4e/0x180
>> [   17.166696]  [<ffffffff81058453>] ? set_memory_nx+0x43/0x50
>> [   17.166742]  [<ffffffff810d111c>] load_module+0x209c/0x25b0
>> [   17.166784]  [<ffffffff810cdd40>] ? show_initstate+0x50/0x50
>> [   17.166827]  [<ffffffff810d16dc>] SyS_init_module+0xac/0xd0
>> [   17.166871]  [<ffffffff816efdef>] tracesys+0xe1/0xe6
>> [   17.167649] i915 0000:00:02.0: irq 49 for MSI/MSI-X
>> [   17.167709] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
>> [   17.167753] [drm] Driver supports precise vblank timestamp query.
>>
>> I can't say what is the root cause and when it occured for the 1st
>> time (my last Linux-next release was next-20130709).
>>
>> Please, see also attached kernel-config and full dmesg.
>>
>> - Sedat -
>> [    0.000000] Initializing cgroup subsys cpuset
>> [    0.000000] Initializing cgroup subsys cpu
>> [    0.000000] Initializing cgroup subsys cpuacct
>> [    0.000000] Linux version 3.11.0-rc2-next20130725-1-iniza-small (sedat.dilek@gmail.com@fambox) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #1 SMP Thu Jul 25 09:03:18 CEST 2013
>> [    0.000000] Command line: BOOT_IMAGE=/vmlinuz.next 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 [0x0204c000, 0x0204cfff] PGTABLE
>> [    0.000000] BRK [0x0204d000, 0x0204dfff] PGTABLE
>> [    0.000000] BRK [0x0204e000, 0x0204efff] PGTABLE
>> [    0.000000] init_memory_mapping: [mem 0x11fc00000-0x11fdfffff]
>> [    0.000000]  [mem 0x11fc00000-0x11fdfffff] page 2M
>> [    0.000000] BRK [0x0204f000, 0x0204ffff] 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 [0x02050000, 0x02050fff] PGTABLE
>> [    0.000000] init_memory_mapping: [mem 0xdafff000-0xdaffffff]
>> [    0.000000]  [mem 0xdafff000-0xdaffffff] page 4k
>> [    0.000000] RAMDISK: [mem 0x37962000-0x37ca8fff]
>> [    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 0x11fdf7000-0x11fdfbfff]
>> [    0.000000]  [ffffea0000000000-ffffea0003ffffff] PMD -> [ffff88011b400000-ffff88011edfffff] 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: 56 pages used for memmap
>> [    0.000000]   DMA zone: 156 pages reserved
>> [    0.000000]   DMA zone: 3996 pages, LIFO batch:0
>> [    0.000000]   DMA32 zone: 12127 pages used for memmap
>> [    0.000000]   DMA32 zone: 886944 pages, LIFO batch:31
>> [    0.000000]   Normal zone: 1785 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: [mem 0x0009d000-0x0009dfff]
>> [    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
>> [    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
>> [    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
>> [    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
>> [    0.000000] PM: Registered nosave memory: [mem 0x40000000-0x401fffff]
>> [    0.000000] PM: Registered nosave memory: [mem 0xd9c9f000-0xdae7efff]
>> [    0.000000] PM: Registered nosave memory: [mem 0xdae7f000-0xdaf9efff]
>> [    0.000000] PM: Registered nosave memory: [mem 0xdaf9f000-0xdaffefff]
>> [    0.000000] PM: Registered nosave memory: [mem 0xdb000000-0xdf9fffff]
>> [    0.000000] PM: Registered nosave memory: [mem 0xdfa00000-0xf7ffffff]
>> [    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
>> [    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
>> [    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
>> [    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
>> [    0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
>> [    0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
>> [    0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
>> [    0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
>> [    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
>> [    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
>> [    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
>> [    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffd7ffff]
>> [    0.000000] PM: Registered nosave memory: [mem 0xffd80000-0xffffffff]
>> [    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 29 pages/cpu @ffff88011fa00000 s87552 r8192 d23040 u262144
>> [    0.000000] pcpu-alloc: s87552 r8192 d23040 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: 1007376
>> [    0.000000] Policy zone: Normal
>> [    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz.next root=UUID=001AADA61AAD9964 loop=/ubuntu/disks/root.disk ro
>> [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
>> [    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: 3938460K/4086000K available (7119K kernel code, 1044K rwdata, 3132K rodata, 1332K init, 1984K bss, 147540K reserved)
>> [    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 VGA+ 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] ODEBUG: 0 of 0 active objects replaced
>> [    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.000080] pid_max: default: 32768 minimum: 301
>> [    0.000246] Security Framework initialized
>> [    0.000303] AppArmor: AppArmor initialized
>> [    0.000339] Yama: becoming mindful.
>> [    0.000747] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
>> [    0.001855] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
>> [    0.002357] Mount-cache hash table entries: 256
>> [    0.002910] Initializing cgroup subsys memory
>> [    0.003007] Initializing cgroup subsys devices
>> [    0.003046] Initializing cgroup subsys freezer
>> [    0.003083] Initializing cgroup subsys blkio
>> [    0.003120] Initializing cgroup subsys perf_event
>> [    0.003160] Initializing cgroup subsys hugetlb
>> [    0.003247] Disabled fast string operations
>> [    0.003284] CPU: Physical Processor ID: 0
>> [    0.003321] CPU: Processor Core ID: 0
>> [    0.003360] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
>> [    0.003360] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
>> [    0.003426] mce: CPU supports 7 MCE banks
>> [    0.003477] CPU0: Thermal monitoring enabled (TM1)
>> [    0.003523] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
>> [    0.003523] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
>> [    0.003523] tlb_flushall_shift: 5
>> [    0.003694] Freeing SMP alternatives memory: 24K (ffffffff81e54000 - ffffffff81e5a000)
>> [    0.004778] ACPI: Core revision 20130626
>> [    0.015639] ACPI: All ACPI Tables successfully acquired
>> [    0.029610] ftrace: allocating 27066 entries in 106 pages
>> [    0.045179] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
>> [    0.084876] smpboot: CPU0: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz (fam: 06, model: 2a, stepping: 07)
>> [    0.085491] TSC deadline timer enabled
>> [    0.085504] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
>> [    0.085652] ... version:                3
>> [    0.085688] ... bit width:              48
>> [    0.085724] ... generic registers:      4
>> [    0.085760] ... value mask:             0000ffffffffffff
>> [    0.085798] ... max period:             0000ffffffffffff
>> [    0.085836] ... fixed-purpose events:   3
>> [    0.085872] ... event mask:             000000070000000f
>> [    0.098996] Disabled fast string operations
>> [    0.102181] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
>> [    0.113860] Disabled fast string operations
>> [    0.127571] Disabled fast string operations
>> [    0.087924] smpboot: Booting Node   0, Processors  #1 #2 #3
>> [    0.129706] Brought up 4 CPUs
>> [    0.129811] smpboot: Total of 4 processors activated (12770.69 BogoMIPS)
>> [    0.133914] devtmpfs: initialized
>> [    0.135965] EVM: security.selinux
>> [    0.136000] EVM: security.SMACK64
>> [    0.136035] EVM: security.capability
>> [    0.136158] PM: Registering ACPI NVS region [mem 0xdae7f000-0xdaf9efff] (1179648 bytes)
>> [    0.137696] regulator-dummy: no parameters
>> [    0.137887] NET: Registered protocol family 16
>> [    0.138227] cpuidle: using governor ladder
>> [    0.138264] cpuidle: using governor menu
>> [    0.138340] ACPI: bus type PCI registered
>> [    0.138490] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
>> [    0.138549] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
>> [    0.145348] PCI: Using configuration type 1 for base access
>> [    0.148758] bio: create slab <bio-0> at 0
>> [    0.149215] ACPI: Added _OSI(Module Device)
>> [    0.149252] ACPI: Added _OSI(Processor Device)
>> [    0.149289] ACPI: Added _OSI(3.0 _SCP Extensions)
>> [    0.149327] ACPI: Added _OSI(Processor Aggregator Device)
>> [    0.151126] ACPI: EC: Look up EC in DSDT
>> [    0.177559] ACPI: Executed 1 blocks of module-level executable AML code
>> [    0.183608] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
>> [    0.195266] ACPI: SSDT 00000000dae70718 00688 (v01  PmRef  Cpu0Cst 00003001 INTL 20061109)
>> [    0.195853] ACPI: Dynamic OEM Table Load:
>> [    0.195923] ACPI: SSDT           (null) 00688 (v01  PmRef  Cpu0Cst 00003001 INTL 20061109)
>> [    0.205996] ACPI: SSDT 00000000dae71a98 00303 (v01  PmRef    ApIst 00003000 INTL 20061109)
>> [    0.206663] ACPI: Dynamic OEM Table Load:
>> [    0.206733] ACPI: SSDT           (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20061109)
>> [    0.217891] ACPI: SSDT 00000000dae6fd98 00119 (v01  PmRef    ApCst 00003000 INTL 20061109)
>> [    0.218450] ACPI: Dynamic OEM Table Load:
>> [    0.218519] ACPI: SSDT           (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20061109)
>> [    0.231935] ACPI: Interpreter enabled
>> [    0.231986] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130626/hwxface-571)
>> [    0.232095] ACPI: (supports S0 S1 S3 S4 S5)
>> [    0.232132] ACPI: Using IOAPIC for interrupt routing
>> [    0.232225] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
>> [    0.232510] ACPI: No dock devices found.
>> [    0.256150] ACPI: Power Resource [FN00] (off)
>> [    0.256373] ACPI: Power Resource [FN01] (off)
>> [    0.256590] ACPI: Power Resource [FN02] (off)
>> [    0.256805] ACPI: Power Resource [FN03] (off)
>> [    0.257025] ACPI: Power Resource [FN04] (off)
>> [    0.258209] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
>> [    0.258584] \_SB_.PCI0:_OSC invalid UUID
>> [    0.258586] _OSC request data:1 8 0
>> [    0.259557] PCI host bridge to bus 0000:00
>> [    0.259596] pci_bus 0000:00: root bus resource [bus 00-3e]
>> [    0.259636] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
>> [    0.259677] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
>> [    0.259718] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
>> [    0.259758] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfeafffff]
>> [    0.259800] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
>> [    0.259857] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
>> [    0.260010] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
>> [    0.260023] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit]
>> [    0.260030] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
>> [    0.260036] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
>> [    0.260213] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
>> [    0.260239] pci 0000:00:16.0: reg 0x10: [mem 0xf0705000-0xf070500f 64bit]
>> [    0.260325] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
>> [    0.260481] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
>> [    0.260506] pci 0000:00:1a.0: reg 0x10: [mem 0xf070a000-0xf070a3ff]
>> [    0.260606] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
>> [    0.260712] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
>> [    0.260731] pci 0000:00:1b.0: reg 0x10: [mem 0xf0700000-0xf0703fff 64bit]
>> [    0.260809] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
>> [    0.260855] pci 0000:00:1b.0: System wakeup disabled by ACPI
>> [    0.260961] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
>> [    0.261052] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
>> [    0.261100] pci 0000:00:1c.0: System wakeup disabled by ACPI
>> [    0.261209] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
>> [    0.261299] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
>> [    0.261361] pci 0000:00:1c.3: System wakeup disabled by ACPI
>> [    0.261466] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
>> [    0.261558] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
>> [    0.261685] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
>> [    0.261715] pci 0000:00:1d.0: reg 0x10: [mem 0xf0709000-0xf07093ff]
>> [    0.261816] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
>> [    0.261921] pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
>> [    0.262116] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
>> [    0.262139] pci 0000:00:1f.2: reg 0x10: [io  0x3088-0x308f]
>> [    0.262149] pci 0000:00:1f.2: reg 0x14: [io  0x3094-0x3097]
>> [    0.262159] pci 0000:00:1f.2: reg 0x18: [io  0x3080-0x3087]
>> [    0.262169] pci 0000:00:1f.2: reg 0x1c: [io  0x3090-0x3093]
>> [    0.262178] pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
>> [    0.262189] pci 0000:00:1f.2: reg 0x24: [mem 0xf0708000-0xf07087ff]
>> [    0.262240] pci 0000:00:1f.2: PME# supported from D3hot
>> [    0.262356] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
>> [    0.262376] pci 0000:00:1f.3: reg 0x10: [mem 0xf0704000-0xf07040ff 64bit]
>> [    0.262400] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
>> [    0.262768] pci 0000:01:00.0: [8086:0091] type 00 class 0x028000
>> [    0.262934] pci 0000:01:00.0: reg 0x10: [mem 0xf0600000-0xf0601fff 64bit]
>> [    0.263672] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
>> [    0.263843] pci 0000:01:00.0: System wakeup disabled by ACPI
>> [    0.269839] pci 0000:00:1c.0: PCI bridge to [bus 01]
>> [    0.269883] pci 0000:00:1c.0:   bridge window [mem 0xf0600000-0xf06fffff]
>> [    0.270061] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
>> [    0.270127] pci 0000:02:00.0: reg 0x10: [io  0x2000-0x20ff]
>> [    0.270250] pci 0000:02:00.0: reg 0x18: [mem 0xf0404000-0xf0404fff 64bit pref]
>> [    0.270326] pci 0000:02:00.0: reg 0x20: [mem 0xf0400000-0xf0403fff 64bit pref]
>> [    0.270664] pci 0000:02:00.0: supports D1 D2
>> [    0.270666] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
>> [    0.270789] pci 0000:02:00.0: System wakeup disabled by ACPI
>> [    0.277773] pci 0000:00:1c.3: PCI bridge to [bus 02]
>> [    0.277835] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
>> [    0.277844] pci 0000:00:1c.3:   bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
>> [    0.277969] pci 0000:03:00.0: [1b21:1042] type 00 class 0x0c0330
>> [    0.278007] pci 0000:03:00.0: reg 0x10: [mem 0xf0500000-0xf0507fff 64bit]
>> [    0.278206] pci 0000:03:00.0: PME# supported from D3hot D3cold
>> [    0.285744] pci 0000:00:1c.4: PCI bridge to [bus 03]
>> [    0.285821] pci 0000:00:1c.4:   bridge window [mem 0xf0500000-0xf05fffff]
>> [    0.286004] \_SB_.PCI0:_OSC invalid UUID
>> [    0.286005] _OSC request data:1 1f 0
>> [    0.286010] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
>> [    0.286066] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
>> [    0.287020] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
>> [    0.287369] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
>> [    0.287763] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *10 11 12 14 15)
>> [    0.288109] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
>> [    0.288456] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
>> [    0.288828] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
>> [    0.289220] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 *11 12 14 15)
>> [    0.289570] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
>> [    0.290423] ACPI: Enabled 4 GPEs in block 00 to 3F
>> [    0.290500] ACPI: \_SB_.PCI0: notify handler is installed
>> [    0.290562] Found 1 acpi root devices
>> [    0.290632] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
>> [    0.290990] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
>> [    0.291049] vgaarb: loaded
>> [    0.291082] vgaarb: bridge control possible 0000:00:02.0
>> [    0.291796] SCSI subsystem initialized
>> [    0.291834] ACPI: bus type ATA registered
>> [    0.291967] libata version 3.00 loaded.
>> [    0.292029] ACPI: bus type USB registered
>> [    0.292109] usbcore: registered new interface driver usbfs
>> [    0.292172] usbcore: registered new interface driver hub
>> [    0.292260] usbcore: registered new device driver usb
>> [    0.292654] PCI: Using ACPI for IRQ routing
>> [    0.294397] PCI: pci_cache_line_size set to 64 bytes
>> [    0.294508] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
>> [    0.294511] e820: reserve RAM buffer [mem 0xd9c9f000-0xdbffffff]
>> [    0.294513] e820: reserve RAM buffer [mem 0xdb000000-0xdbffffff]
>> [    0.294515] e820: reserve RAM buffer [mem 0x11fe00000-0x11fffffff]
>> [    0.294762] NetLabel: Initializing
>> [    0.294798] NetLabel:  domain hash size = 128
>> [    0.294834] NetLabel:  protocols = UNLABELED CIPSOv4
>> [    0.294918] NetLabel:  unlabeled traffic allowed by default
>> [    0.295047] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
>> [    0.295236] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
>> [    0.297297] Switched to clocksource hpet
>> [    0.315015] AppArmor: AppArmor Filesystem Enabled
>> [    0.315105] pnp: PnP ACPI init
>> [    0.315155] ACPI: bus type PNP registered
>> [    0.315574] pnp 00:00: [dma 4]
>> [    0.315617] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
>> [    0.315663] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
>> [    0.315831] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
>> [    0.315889] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
>> [    0.315967] system 00:04: [io  0x0680-0x069f] has been reserved
>> [    0.316011] system 00:04: [io  0x1000-0x100f] has been reserved
>> [    0.316052] system 00:04: [io  0x5000-0x5003] has been reserved
>> [    0.316092] system 00:04: [io  0xffff] has been reserved
>> [    0.316132] system 00:04: [io  0x0400-0x0453] could not be reserved
>> [    0.316173] system 00:04: [io  0x0458-0x047f] has been reserved
>> [    0.316214] system 00:04: [io  0x0500-0x057f] has been reserved
>> [    0.316254] system 00:04: [io  0x0a00-0x0a0f] has been reserved
>> [    0.316295] system 00:04: [io  0x164e-0x164f] has been reserved
>> [    0.316336] system 00:04: [io  0x5000-0x500f] could not be reserved
>> [    0.316378] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
>> [    0.316428] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
>> [    0.316520] system 00:06: [io  0x0454-0x0457] has been reserved
>> [    0.316563] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
>> [    0.316622] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
>> [    0.316706] pnp 00:08: Plug and Play ACPI device, IDs ETD0b00 SYN0002 PNP0f13 (active)
>> [    0.317018] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
>> [    0.317060] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
>> [    0.317103] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
>> [    0.317144] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
>> [    0.317186] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
>> [    0.317228] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
>> [    0.317270] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
>> [    0.317323] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
>> [    0.317366] system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
>> [    0.317409] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
>> [    0.317452] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
>> [    0.318148] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
>> [    0.318188] pnp: PnP ACPI: found 11 devices
>> [    0.318225] ACPI: bus type PNP unregistered
>> [    0.326319] pci 0000:00:1c.0: PCI bridge to [bus 01]
>> [    0.326364] pci 0000:00:1c.0:   bridge window [mem 0xf0600000-0xf06fffff]
>> [    0.326415] pci 0000:00:1c.3: PCI bridge to [bus 02]
>> [    0.326455] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
>> [    0.326503] pci 0000:00:1c.3:   bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
>> [    0.326564] pci 0000:00:1c.4: PCI bridge to [bus 03]
>> [    0.326606] pci 0000:00:1c.4:   bridge window [mem 0xf0500000-0xf05fffff]
>> [    0.327078] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
>> [    0.327081] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
>> [    0.327083] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
>> [    0.327085] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfeafffff]
>> [    0.327086] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
>> [    0.327089] pci_bus 0000:01: resource 1 [mem 0xf0600000-0xf06fffff]
>> [    0.327091] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
>> [    0.327093] pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf04fffff 64bit pref]
>> [    0.327096] pci_bus 0000:03: resource 1 [mem 0xf0500000-0xf05fffff]
>> [    0.327231] NET: Registered protocol family 2
>> [    0.327613] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
>> [    0.327849] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes)
>> [    0.328179] TCP: Hash tables configured (established 32768 bind 32768)
>> [    0.328479] TCP: reno registered
>> [    0.328531] UDP hash table entries: 2048 (order: 5, 196608 bytes)
>> [    0.328635] UDP-Lite hash table entries: 2048 (order: 5, 196608 bytes)
>> [    0.328931] NET: Registered protocol family 1
>> [    0.328987] pci 0000:00:02.0: Boot video device
>> [    0.329779] PCI: CLS 64 bytes, default 64
>> [    0.329991] Trying to unpack rootfs image as initramfs...
>> [    0.405840] Freeing initrd memory: 3356K (ffff880037962000 - ffff880037ca9000)
>> [    0.405900] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
>> [    0.405942] software IO TLB [mem 0xd5c9f000-0xd9c9f000] (64MB) mapped at [ffff8800d5c9f000-ffff8800d9c9efff]
>> [    0.406372] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x28
>> [    0.406420] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x28
>> [    0.406471] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x28
>> [    0.406522] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x28
>> [    0.406649] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
>> [    0.406707] Scanning for low memory corruption every 60 seconds
>> [    0.407346] Initialise module verification
>> [    0.407446] audit: initializing netlink socket (disabled)
>> [    0.407507] type=2000 audit(1374746275.392:1): initialized
>> [    0.437565] bounce pool size: 64 pages
>> [    0.438126] HugeTLB registered 2 MB page size, pre-allocated 0 pages
>> [    0.438842] VFS: Disk quotas dquot_6.5.2
>> [    0.438919] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
>> [    0.439788] fuse init (API version 7.22)
>> [    0.439932] msgmni has been set to 7698
>> [    0.440631] Key type asymmetric registered
>> [    0.440671] Asymmetric key parser 'x509' registered
>> [    0.440757] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
>> [    0.440865] io scheduler noop registered
>> [    0.440903] io scheduler deadline registered (default)
>> [    0.440977] io scheduler cfq registered
>> [    0.441451] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
>> [    0.441532] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
>> [    0.441719] intel_idle: MWAIT substates: 0x21120
>> [    0.441720] intel_idle: v0.4 model 0x2A
>> [    0.441722] intel_idle: lapic_timer_reliable_states 0xffffffff
>> [    0.442453] ACPI: AC Adapter [ADP1] (on-line)
>> [    0.442779] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
>> [    0.443049] ACPI: Lid Switch [LID0]
>> [    0.443158] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
>> [    0.443224] ACPI: Power Button [PWRB]
>> [    0.443330] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
>> [    0.443386] ACPI: Power Button [PWRF]
>> [    0.443521] ACPI: Fan [FAN0] (off)
>> [    0.443609] ACPI: Fan [FAN1] (off)
>> [    0.443693] ACPI: Fan [FAN2] (off)
>> [    0.443778] ACPI: Fan [FAN3] (off)
>> [    0.443868] ACPI: Fan [FAN4] (off)
>> [    0.443984] ACPI: Requesting acpi_cpufreq
>> [    0.447411] thermal LNXTHERM:00: registered as thermal_zone0
>> [    0.447452] ACPI: Thermal Zone [TZ00] (63 C)
>> [    0.447859] thermal LNXTHERM:01: registered as thermal_zone1
>> [    0.447898] ACPI: Thermal Zone [TZ01] (30 C)
>> [    0.447984] GHES: HEST is not enabled!
>> [    0.448239] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
>> [    0.452068] Linux agpgart interface v0.103
>> [    0.454664] ACPI: Battery Slot [BAT1] (battery present)
>> [    0.455065] brd: module loaded
>> [    0.456511] loop: module loaded
>> [    0.456771] mei_me 0000:00:16.0: setting latency timer to 64
>> [    0.456815] mei_me 0000:00:16.0: irq 40 for MSI/MSI-X
>> [    0.460853] ahci 0000:00:1f.2: version 3.0
>> [    0.461031] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
>> [    0.461266] ahci: SSS flag set, parallel bus scan disabled
>> [    0.477329] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1b impl SATA mode
>> [    0.477398] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pio slum part ems sxs apst
>> [    0.477458] ahci 0000:00:1f.2: setting latency timer to 64
>> [    0.502183] scsi0 : ahci
>> [    0.502509] scsi1 : ahci
>> [    0.502758] scsi2 : ahci
>> [    0.503007] scsi3 : ahci
>> [    0.503272] scsi4 : ahci
>> [    0.503528] scsi5 : ahci
>> [    0.503666] ata1: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708100 irq 41
>> [    0.503722] ata2: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708180 irq 41
>> [    0.503775] ata3: DUMMY
>> [    0.503809] ata4: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708280 irq 41
>> [    0.503863] ata5: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708300 irq 41
>> [    0.503917] ata6: DUMMY
>> [    0.504943] libphy: Fixed MDIO Bus: probed
>> [    0.505271] tun: Universal TUN/TAP device driver, 1.6
>> [    0.505309] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
>> [    0.505459] PPP generic driver version 2.4.2
>> [    0.505627] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
>> [    0.505669] ehci_hcd: block sizes: qh 112 qtd 96 itd 192 sitd 96
>> [    0.505676] ehci-pci: EHCI PCI platform driver
>> [    0.505921] ehci-pci 0000:00:1a.0: setting latency timer to 64
>> [    0.505931] ehci-pci 0000:00:1a.0: EHCI Host Controller
>> [    0.505976] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
>> [    0.506049] ehci-pci 0000:00:1a.0: debug port 2
>> [    0.506090] ehci-pci 0000:00:1a.0: reset hcs_params 0x200002 dbg=2 cc=0 pcc=0 ordered !ppc ports=2
>> [    0.506094] ehci-pci 0000:00:1a.0: reset hcc_params 36881 caching frame 1024 64 bit addr
>> [    0.506132] ehci-pci 0000:00:1a.0: reset command 0080002 (park)=0 ithresh=8 period=1024 Reset HALT
>> [    0.510011] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
>> [    0.510013] ehci-pci 0000:00:1a.0: supports USB remote wakeup
>> [    0.510056] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf070a000
>> [    0.510097] ehci-pci 0000:00:1a.0: init command 0010001 (park)=0 ithresh=1 period=1024 RUN
>> [    0.521250] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
>> [    0.521391] usb usb1: default language 0x0409
>> [    0.521414] usb usb1: udev 1, busnum 1, minor = 0
>> [    0.521416] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
>> [    0.521456] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>> [    0.521508] usb usb1: Product: EHCI Host Controller
>> [    0.521545] usb usb1: Manufacturer: Linux 3.11.0-rc2-next20130725-1-iniza-small ehci_hcd
>> [    0.521598] usb usb1: SerialNumber: 0000:00:1a.0
>> [    0.521808] usb usb1: usb_probe_device
>> [    0.521811] usb usb1: configuration #1 chosen from 1 choice
>> [    0.521822] usb usb1: adding 1-0:1.0 (config #1, interface 0)
>> [    0.521855] hub 1-0:1.0: usb_probe_interface
>> [    0.521857] hub 1-0:1.0: usb_probe_interface - got id
>> [    0.521860] hub 1-0:1.0: USB hub found
>> [    0.521902] hub 1-0:1.0: 2 ports detected
>> [    0.521938] hub 1-0:1.0: standalone hub
>> [    0.521939] hub 1-0:1.0: no power switching (usb 1.0)
>> [    0.521941] hub 1-0:1.0: individual port over-current protection
>> [    0.521942] hub 1-0:1.0: power on to power good time: 20ms
>> [    0.521948] hub 1-0:1.0: local power source is good
>> [    0.522003] hub 1-0:1.0: trying to enable port power on non-switchable hub
>> [    0.522294] ehci-pci 0000:00:1d.0: setting latency timer to 64
>> [    0.522301] ehci-pci 0000:00:1d.0: EHCI Host Controller
>> [    0.522346] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
>> [    0.522419] ehci-pci 0000:00:1d.0: debug port 2
>> [    0.522458] ehci-pci 0000:00:1d.0: reset hcs_params 0x200002 dbg=2 cc=0 pcc=0 ordered !ppc ports=2
>> [    0.522462] ehci-pci 0000:00:1d.0: reset hcc_params 36881 caching frame 1024 64 bit addr
>> [    0.522497] ehci-pci 0000:00:1d.0: reset command 0080002 (park)=0 ithresh=8 period=1024 Reset HALT
>> [    0.526387] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
>> [    0.526389] ehci-pci 0000:00:1d.0: supports USB remote wakeup
>> [    0.526435] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf0709000
>> [    0.526476] ehci-pci 0000:00:1d.0: init command 0010001 (park)=0 ithresh=1 period=1024 RUN
>> [    0.537238] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
>> [    0.537363] usb usb2: default language 0x0409
>> [    0.537384] usb usb2: udev 1, busnum 2, minor = 128
>> [    0.537386] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
>> [    0.537426] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>> [    0.537479] usb usb2: Product: EHCI Host Controller
>> [    0.537516] usb usb2: Manufacturer: Linux 3.11.0-rc2-next20130725-1-iniza-small ehci_hcd
>> [    0.537569] usb usb2: SerialNumber: 0000:00:1d.0
>> [    0.537770] usb usb2: usb_probe_device
>> [    0.537773] usb usb2: configuration #1 chosen from 1 choice
>> [    0.537784] usb usb2: adding 2-0:1.0 (config #1, interface 0)
>> [    0.537816] hub 2-0:1.0: usb_probe_interface
>> [    0.537818] hub 2-0:1.0: usb_probe_interface - got id
>> [    0.537820] hub 2-0:1.0: USB hub found
>> [    0.537862] hub 2-0:1.0: 2 ports detected
>> [    0.537898] hub 2-0:1.0: standalone hub
>> [    0.537900] hub 2-0:1.0: no power switching (usb 1.0)
>> [    0.537901] hub 2-0:1.0: individual port over-current protection
>> [    0.537903] hub 2-0:1.0: power on to power good time: 20ms
>> [    0.537908] hub 2-0:1.0: local power source is good
>> [    0.537961] hub 2-0:1.0: trying to enable port power on non-switchable hub
>> [    0.538045] ehci-platform: EHCI generic platform driver
>> [    0.538106] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
>> [    0.538146] ohci_hcd: block sizes: ed 80 td 96
>> [    0.538152] ohci-pci: OHCI PCI platform driver
>> [    0.538208] ohci-platform: OHCI generic platform driver
>> [    0.538259] uhci_hcd: USB Universal Host Controller Interface driver
>> [    0.538551] xhci_hcd 0000:03:00.0: xHCI Host Controller
>> [    0.538596] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 3
>> [    0.548360] xhci_hcd 0000:03:00.0: supports USB remote wakeup
>> [    0.548394] xhci_hcd 0000:03:00.0: irq 42 for MSI/MSI-X
>> [    0.548401] xhci_hcd 0000:03:00.0: irq 43 for MSI/MSI-X
>> [    0.548409] xhci_hcd 0000:03:00.0: irq 44 for MSI/MSI-X
>> [    0.548415] xhci_hcd 0000:03:00.0: irq 45 for MSI/MSI-X
>> [    0.548421] xhci_hcd 0000:03:00.0: irq 46 for MSI/MSI-X
>> [    0.548670] usb usb3: default language 0x0409
>> [    0.548681] usb usb3: udev 1, busnum 3, minor = 256
>> [    0.548683] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
>> [    0.548723] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>> [    0.548775] usb usb3: Product: xHCI Host Controller
>> [    0.548812] usb usb3: Manufacturer: Linux 3.11.0-rc2-next20130725-1-iniza-small xhci_hcd
>> [    0.548866] usb usb3: SerialNumber: 0000:03:00.0
>> [    0.549011] usb usb3: usb_probe_device
>> [    0.549014] usb usb3: configuration #1 chosen from 1 choice
>> [    0.549019] xHCI xhci_add_endpoint called for root hub
>> [    0.549020] xHCI xhci_check_bandwidth called for root hub
>> [    0.549026] usb usb3: adding 3-0:1.0 (config #1, interface 0)
>> [    0.549052] hub 3-0:1.0: usb_probe_interface
>> [    0.549054] hub 3-0:1.0: usb_probe_interface - got id
>> [    0.549056] hub 3-0:1.0: USB hub found
>> [    0.549101] hub 3-0:1.0: 2 ports detected
>> [    0.549154] hub 3-0:1.0: standalone hub
>> [    0.549155] hub 3-0:1.0: no power switching (usb 1.0)
>> [    0.549157] hub 3-0:1.0: individual port over-current protection
>> [    0.549158] hub 3-0:1.0: Single TT
>> [    0.549159] hub 3-0:1.0: TT requires at most 8 FS bit times (666 ns)
>> [    0.549161] hub 3-0:1.0: power on to power good time: 20ms
>> [    0.549166] hub 3-0:1.0: local power source is good
>> [    0.549201] hub 3-0:1.0: trying to enable port power on non-switchable hub
>> [    0.549263] xhci_hcd 0000:03:00.0: xHCI Host Controller
>> [    0.549304] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 4
>> [    0.549363] xhci_hcd 0000:03:00.0: supports USB remote wakeup
>> [    0.549395] usb usb4: skipped 1 descriptor after endpoint
>> [    0.549400] usb usb4: default language 0x0409
>> [    0.549410] usb usb4: udev 1, busnum 4, minor = 384
>> [    0.549412] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
>> [    0.549452] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>> [    0.549503] usb usb4: Product: xHCI Host Controller
>> [    0.549540] usb usb4: Manufacturer: Linux 3.11.0-rc2-next20130725-1-iniza-small xhci_hcd
>> [    0.549594] usb usb4: SerialNumber: 0000:03:00.0
>> [    0.549735] usb usb4: usb_probe_device
>> [    0.549737] usb usb4: configuration #1 chosen from 1 choice
>> [    0.549741] xHCI xhci_add_endpoint called for root hub
>> [    0.549742] xHCI xhci_check_bandwidth called for root hub
>> [    0.549747] usb usb4: adding 4-0:1.0 (config #1, interface 0)
>> [    0.549774] hub 4-0:1.0: usb_probe_interface
>> [    0.549776] hub 4-0:1.0: usb_probe_interface - got id
>> [    0.549778] hub 4-0:1.0: USB hub found
>> [    0.549822] hub 4-0:1.0: 2 ports detected
>> [    0.549857] hub 4-0:1.0: standalone hub
>> [    0.549859] hub 4-0:1.0: no power switching (usb 1.0)
>> [    0.549860] hub 4-0:1.0: individual port over-current protection
>> [    0.549861] hub 4-0:1.0: TT requires at most 8 FS bit times (666 ns)
>> [    0.549863] hub 4-0:1.0: power on to power good time: 20ms
>> [    0.549867] hub 4-0:1.0: local power source is good
>> [    0.549900] hub 4-0:1.0: trying to enable port power on non-switchable hub
>> [    0.561355] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:EPAD] at 0x60,0x64 irq 1,12
>> [    0.567846] serio: i8042 KBD port at 0x60,0x64 irq 1
>> [    0.567889] serio: i8042 AUX port at 0x60,0x64 irq 12
>> [    0.568165] mousedev: PS/2 mouse device common for all mice
>> [    0.568681] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
>> [    0.568761] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
>> [    0.568972] device-mapper: uevent: version 1.0.3
>> [    0.569176] device-mapper: ioctl: 4.25.0-ioctl (2013-06-26) initialised: dm-devel@redhat.com
>> [    0.569246] Intel P-state driver initializing.
>> [    0.569296] Intel pstate controlling: cpu 0
>> [    0.569399] Intel pstate controlling: cpu 1
>> [    0.569461] Intel pstate controlling: cpu 2
>> [    0.569527] Intel pstate controlling: cpu 3
>> [    0.569639] ledtrig-cpu: registered to indicate activity on CPUs
>> [    0.570030] ashmem: initialized
>> [    0.570285] TCP: cubic registered
>> [    0.570571] NET: Registered protocol family 10
>> [    0.571156] NET: Registered protocol family 17
>> [    0.571215] Key type dns_resolver registered
>> [    0.571822] PM: Hibernation image not present or could not be loaded.
>> [    0.571834] Loading module verification certificates
>> [    0.573261] MODSIGN: Loaded cert 'Magrathea: Glacier signing key: 16008e29484acf95da468dc31e20a211acb2ef48'
>> [    0.573359] registered taskstats version 1
>> [    0.576772] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
>> [    0.578196] Key type trusted registered
>> [    0.585701] Key type encrypted registered
>> [    0.592543] rtc_cmos 00:05: setting system clock to 2013-07-25 09:57:55 UTC (1374746275)
>> [    0.593213] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
>> [    0.593265] EDD information not available.
>> [    0.621210] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001803 0  ACK POWER sig=j CSC CONNECT
>> [    0.621226] hub 1-0:1.0: port 1: status 0501 change 0001
>> [    0.637202] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001803 0  ACK POWER sig=j CSC CONNECT
>> [    0.637219] hub 2-0:1.0: port 1: status 0501 change 0001
>> [    0.649269] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [    0.649289] hub 4-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [    0.649304] hub 3-0:1.0: hub_suspend
>> [    0.649313] usb usb3: bus auto-suspend, wakeup 1
>> [    0.649362] hub 4-0:1.0: hub_suspend
>> [    0.649367] usb usb4: bus auto-suspend, wakeup 1
>> [    0.658062] usb usb4: usb wakeup-resume
>> [    0.658074] usb usb4: usb auto-resume
>> [    0.669168] hub 4-0:1.0: hub_resume
>> [    0.669199] hub 4-0:1.0: port 1: status 0203 change 0001
>> [    0.721189] hub 1-0:1.0: state 7 ports 2 chg 0002 evt 0000
>> [    0.721217] hub 1-0:1.0: port 1, status 0501, change 0000, 480 Mb/s
>> [    0.777315] ehci-pci 0000:00:1a.0: port 1 reset complete, port enabled
>> [    0.777328] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
>> [    0.821061] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
>> [    0.822363] ata1.00: ATA-8: Hitachi HTS545050A7E380, GG2OA6C0, max UDMA/133
>> [    0.822443] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
>> [    0.823879] ata1.00: configured for UDMA/133
>> [    0.824406] scsi 0:0:0:0: Direct-Access     ATA      Hitachi HTS54505 GG2O PQ: 0 ANSI: 5
>> [    0.825095] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
>> [    0.825128] sd 0:0:0:0: Attached scsi generic sg0 type 0
>> [    0.825261] sd 0:0:0:0: [sda] 4096-byte physical blocks
>> [    0.825713] sd 0:0:0:0: [sda] Write Protect is off
>> [    0.825785] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
>> [    0.826024] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
>> [    0.833004] usb 1-1: new high-speed USB device number 2 using ehci-pci
>> [    0.835513]  sda: sda1 sda2 sda3
>> [    0.836845] sd 0:0:0:0: [sda] Attached SCSI disk
>> [    0.889237] ehci-pci 0000:00:1a.0: port 1 reset complete, port enabled
>> [    0.889250] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
>> [    0.965675] usb 1-1: udev 2, busnum 1, minor = 1
>> [    0.965686] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
>> [    0.965761] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
>> [    0.966184] usb 1-1: usb_probe_device
>> [    0.966195] usb 1-1: configuration #1 chosen from 1 choice
>> [    0.966420] usb 1-1: adding 1-1:1.0 (config #1, interface 0)
>> [    0.966513] hub 1-1:1.0: usb_probe_interface
>> [    0.966519] hub 1-1:1.0: usb_probe_interface - got id
>> [    0.966527] hub 1-1:1.0: USB hub found
>> [    0.966772] hub 1-1:1.0: 6 ports detected
>> [    0.967398] hub 1-1:1.0: standalone hub
>> [    0.967402] hub 1-1:1.0: individual port power switching
>> [    0.967406] hub 1-1:1.0: individual port over-current protection
>> [    0.967409] hub 1-1:1.0: Single TT
>> [    0.967414] hub 1-1:1.0: TT requires at most 8 FS bit times (666 ns)
>> [    0.967418] hub 1-1:1.0: power on to power good time: 100ms
>> [    0.967918] hub 1-1:1.0: local power source is good
>> [    0.968382] hub 1-1:1.0: enabling power on all ports
>> [    0.969646] hub 2-0:1.0: state 7 ports 2 chg 0002 evt 0000
>> [    0.969666] hub 2-0:1.0: port 1, status 0501, change 0000, 480 Mb/s
>> [    1.025139] ehci-pci 0000:00:1d.0: port 1 reset complete, port enabled
>> [    1.025155] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
>> [    1.069332] hub 1-1:1.0: port 2: status 0101 change 0001
>> [    1.070078] hub 1-1:1.0: port 4: status 0101 change 0001
>> [    1.080883] usb 2-1: new high-speed USB device number 2 using ehci-pci
>> [    1.137059] ehci-pci 0000:00:1d.0: port 1 reset complete, port enabled
>> [    1.137075] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
>> [    1.144831] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
>> [    1.145508] ata2.00: ATA-8: SanDisk iSSD P4 16GB, SSD 9.14, max UDMA/133
>> [    1.145587] ata2.00: 31277232 sectors, multi 1: LBA48
>> [    1.146337] ata2.00: configured for UDMA/133
>> [    1.146886] scsi 1:0:0:0: Direct-Access     ATA      SanDisk iSSD P4  SSD  PQ: 0 ANSI: 5
>> [    1.147429] sd 1:0:0:0: [sdb] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
>> [    1.147490] sd 1:0:0:0: Attached scsi generic sg1 type 0
>> [    1.147836] sd 1:0:0:0: [sdb] Write Protect is off
>> [    1.147906] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
>> [    1.147964] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
>> [    1.149378]  sdb: sdb1 sdb2
>> [    1.150424] sd 1:0:0:0: [sdb] Attached SCSI disk
>> [    1.168808] usb 1-1: link qh256-0001/ffff880118bda0c0 start 1 [1/0 us]
>> [    1.213499] usb 2-1: udev 2, busnum 2, minor = 129
>> [    1.213511] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
>> [    1.213586] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
>> [    1.214009] usb 2-1: usb_probe_device
>> [    1.214020] usb 2-1: configuration #1 chosen from 1 choice
>> [    1.214253] usb 2-1: adding 2-1:1.0 (config #1, interface 0)
>> [    1.214339] hub 2-1:1.0: usb_probe_interface
>> [    1.214345] hub 2-1:1.0: usb_probe_interface - got id
>> [    1.214352] hub 2-1:1.0: USB hub found
>> [    1.214588] hub 2-1:1.0: 6 ports detected
>> [    1.214661] hub 2-1:1.0: standalone hub
>> [    1.214666] hub 2-1:1.0: individual port power switching
>> [    1.214670] hub 2-1:1.0: individual port over-current protection
>> [    1.214673] hub 2-1:1.0: Single TT
>> [    1.214678] hub 2-1:1.0: TT requires at most 8 FS bit times (666 ns)
>> [    1.214681] hub 2-1:1.0: power on to power good time: 100ms
>> [    1.214901] hub 2-1:1.0: local power source is good
>> [    1.215438] hub 2-1:1.0: enabling power on all ports
>> [    1.216469] hub 4-0:1.0: state 7 ports 2 chg 0002 evt 0000
>> [    1.216492] hub 4-0:1.0: port 1, status 0203, change 0000, 5.0 Gb/s
>> [    1.313920] hub 2-1:1.0: port 5: status 0101 change 0001
>> [    1.332337] usb 4-1: new SuperSpeed USB device number 2 using xhci_hcd
>> [    1.345259] usb 4-1: Parent hub missing LPM exit latency info.  Power management will be impacted.
>> [    1.345721] usb 4-1: skipped 1 descriptor after endpoint
>> [    1.345729] usb 4-1: skipped 1 descriptor after endpoint
>> [    1.345886] usb 4-1: default language 0x0409
>> [    1.346333] usb 4-1: udev 2, busnum 4, minor = 385
>> [    1.346342] usb 4-1: New USB device found, idVendor=174c, idProduct=55aa
>> [    1.346418] usb 4-1: New USB device strings: Mfr=2, Product=3, SerialNumber=1
>> [    1.346492] usb 4-1: Product: MEDION HDDrive-n-GO
>> [    1.346558] usb 4-1: Manufacturer: MEDION
>> [    1.346623] usb 4-1: SerialNumber: 3180000000000000092C
>> [    1.347018] usb 4-1: usb_probe_device
>> [    1.347025] usb 4-1: configuration #1 chosen from 1 choice
>> [    1.348103] usb 4-1: Successful Endpoint Configure command
>> [    1.348195] usb 4-1: adding 4-1:1.0 (config #1, interface 0)
>> [    1.348429] hub 1-1:1.0: state 7 ports 6 chg 0014 evt 0000
>> [    1.348633] hub 1-1:1.0: port 2, status 0101, change 0000, 12 Mb/s
>> [    1.404641] tsc: Refined TSC clocksource calibration: 1596.374 MHz
>> [    1.412667] usb 2-1: link qh256-0001/ffff88011872acc0 start 1 [1/0 us]
>> [    1.420854] usb 1-1.2: new low-speed USB device number 3 using ehci-pci
>> [    1.464601] ata4: SATA link down (SStatus 0 SControl 300)
>> [    1.515914] usb 1-1.2: skipped 1 descriptor after interface
>> [    1.516463] usb 1-1.2: default language 0x0409
>> [    1.518901] usb 1-1.2: udev 3, busnum 1, minor = 2
>> [    1.518911] usb 1-1.2: New USB device found, idVendor=046d, idProduct=c00e
>> [    1.518987] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
>> [    1.519076] usb 1-1.2: Product: USB-PS/2 Optical Mouse
>> [    1.519142] usb 1-1.2: Manufacturer: Logitech
>> [    1.519576] usb 1-1.2: usb_probe_device
>> [    1.519587] usb 1-1.2: configuration #1 chosen from 1 choice
>> [    1.520136] usb 1-1.2: adding 1-1.2:1.0 (config #1, interface 0)
>> [    1.520460] hub 1-1:1.0: port 4, status 0101, change 0000, 12 Mb/s
>> [    1.592724] usb 1-1.4: new high-speed USB device number 4 using ehci-pci
>> [    1.784375] ata5: SATA link down (SStatus 0 SControl 300)
>> [    1.787614] Freeing unused kernel memory: 1332K (ffffffff81d07000 - ffffffff81e54000)
>> [    1.787710] Write protecting the kernel read-only data: 12288k
>> [    1.793705] Freeing unused kernel memory: 1060K (ffff8800016f7000 - ffff880001800000)
>> [    1.798786] Freeing unused kernel memory: 964K (ffff880001b0f000 - ffff880001c00000)
>> [    1.834231] usb 1-1.4: skipped 1 descriptor after configuration
>> [    1.834239] usb 1-1.4: skipped 5 descriptors after interface
>> [    1.834244] usb 1-1.4: skipped 1 descriptor after endpoint
>> [    1.834247] usb 1-1.4: skipped 23 descriptors after interface
>> [    1.836335] usb 1-1.4: default language 0x0409
>> [    1.838923] udevd[122]: starting version 175
>> [    1.848329] usb 1-1.4: udev 4, busnum 1, minor = 3
>> [    1.848338] usb 1-1.4: New USB device found, idVendor=2232, idProduct=1018
>> [    1.848409] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
>> [    1.848473] usb 1-1.4: Product: WebCam SC-13HDL11431N
>> [    1.848516] usb 1-1.4: Manufacturer: 123
>> [    1.848776] usb 1-1.4: usb_probe_device
>> [    1.848784] usb 1-1.4: configuration #1 chosen from 1 choice
>> [    1.849987] usb 1-1.4: adding 1-1.4:1.0 (config #1, interface 0)
>> [    1.981985] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
>> [    1.982077] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
>> [    1.982465] r8169 0000:02:00.0: irq 47 for MSI/MSI-X
>> [    1.982901] r8169 0000:02:00.0 eth0: RTL8168evl/8111evl at 0xffffc90000620000, e8:03:9a:36:17:a9, XID 0c900800 IRQ 47
>> [    1.982968] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
>> [    1.983886] usb-storage 4-1:1.0: usb_probe_interface
>> [    1.983898] usb-storage 4-1:1.0: usb_probe_interface - got id
>> [    1.983904] usb-storage 4-1:1.0: USB Mass Storage device detected
>> [    1.984130] scsi6 : usb-storage 4-1:1.0
>> [    1.985684] usbcore: registered new interface driver usb-storage
>> [    2.020897] usb 1-1.4: adding 1-1.4:1.1 (config #1, interface 1)
>> [    2.021303] hub 2-1:1.0: state 7 ports 6 chg 0020 evt 0000
>> [    2.021433] hub 2-1:1.0: port 5, status 0101, change 0000, 12 Mb/s
>> [    2.043531] hidraw: raw HID events driver (C) Jiri Kosina
>> [    2.048320] usbhid 1-1.2:1.0: usb_probe_interface
>> [    2.048325] usbhid 1-1.2:1.0: usb_probe_interface - got id
>> [    2.051194] usbcore: registered new interface driver usbhid
>> [    2.051236] usbhid: USB HID core driver
>> [    2.055112] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input4
>> [    2.055465] hid-generic 0003:046D:C00E.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1a.0-1.2/input0
>> [    2.092339] usb 2-1.5: new full-speed USB device number 3 using ehci-pci
>> [    2.188853] usb 2-1.5: udev 3, busnum 2, minor = 130
>> [    2.188863] usb 2-1.5: New USB device found, idVendor=8086, idProduct=0189
>> [    2.188928] usb 2-1.5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
>> [    2.189271] usb 2-1.5: usb_probe_device
>> [    2.189279] usb 2-1.5: configuration #1 chosen from 1 choice
>> [    2.189838] usb 2-1.5: adding 2-1.5:1.0 (config #1, interface 0)
>> [    2.190123] usb 2-1.5: adding 2-1.5:1.1 (config #1, interface 1)
>> [    2.190572] hub 1-1:1.0: state 7 ports 6 chg 0000 evt 0010
>> [    2.190699] hub 2-1:1.0: state 7 ports 6 chg 0000 evt 0020
>> [    2.404228] Switched to clocksource tsc
>> [    2.942151] EXT4-fs (loop0): mounted filesystem with ordered data mode. Opts: (null)
>> [    2.984038] scsi 6:0:0:0: Direct-Access     ASMT     2105             0    PQ: 0 ANSI: 6
>> [    2.984852] sd 6:0:0:0: Attached scsi generic sg2 type 0
>> [    2.984979] sd 6:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
>> [    2.985526] sd 6:0:0:0: [sdc] Write Protect is off
>> [    2.985593] sd 6:0:0:0: [sdc] Mode Sense: 43 00 00 00
>> [    2.986055] sd 6:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
>> [    2.989223]  sdc: sdc1 sdc2 sdc3
>> [    2.991487] sd 6:0:0:0: [sdc] Attached SCSI disk
>> [   14.821390] Adding 262140k swap on /host/ubuntu/disks/swap.disk.  Priority:-1 extents:1 across:262140k FS
>> [   14.835400] EXT4-fs (loop0): re-mounted. Opts: errors=remount-ro
>> [   14.893353] udevd[616]: starting version 175
>> [   15.048184] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130626/utaddress-251)
>> [   15.048195] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
>> [   15.048201] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130626/utaddress-251)
>> [   15.048207] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
>> [   15.048209] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130626/utaddress-251)
>> [   15.048214] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
>> [   15.048217] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130626/utaddress-251)
>> [   15.048222] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
>> [   15.048225] lpc_ich: Resource conflict(s) found affecting gpio_ich
>> [   15.326256] lp: driver loaded but no devices found
>> [   15.422530] cfg80211: Calling CRDA to update world regulatory domain
>> [   15.430531] cfg80211: World regulatory domain updated:
>> [   15.430535] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
>> [   15.430538] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
>> [   15.430540] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
>> [   15.430541] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
>> [   15.430543] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
>> [   15.430544] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
>> [   15.488605] wmi: Mapper loaded
>> [   15.501002] samsung_laptop: detected SABI interface: SwSmi@
>> [   15.501008] samsung_laptop: Backlight controlled by ACPI video driver
>> [   15.766590] ppdev: user-space parallel port driver
>> [   15.887623] Bluetooth: Core ver 2.16
>> [   15.887677] NET: Registered protocol family 31
>> [   15.887680] Bluetooth: HCI device and connection manager initialized
>> [   15.887697] Bluetooth: HCI socket layer initialized
>> [   15.887710] Bluetooth: L2CAP socket layer initialized
>> [   15.887738] Bluetooth: SCO socket layer initialized
>> [   15.926642] type=1400 audit(1374739090.843:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=746 comm="apparmor_parser"
>> [   15.927443] type=1400 audit(1374739090.843:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=746 comm="apparmor_parser"
>> [   15.927973] type=1400 audit(1374739090.843:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=746 comm="apparmor_parser"
>> [   15.928870] type=1400 audit(1374739090.843:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=860 comm="apparmor_parser"
>> [   15.929478] type=1400 audit(1374739090.843:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=860 comm="apparmor_parser"
>> [   15.929941] type=1400 audit(1374739090.843:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=860 comm="apparmor_parser"
>> [   15.932941] Linux video capture interface: v2.00
>> [   15.999279] init: failsafe main process (979) killed by TERM signal
>> [   16.092980] type=1400 audit(1374739091.007:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=1096 comm="apparmor_parser"
>> [   16.093582] type=1400 audit(1374739091.007:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1096 comm="apparmor_parser"
>> [   16.093948] type=1400 audit(1374739091.007:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1096 comm="apparmor_parser"
>> [   16.172489] [drm] Initialized drm 1.1.0 20060810
>> [   16.474523] btusb 2-1.5:1.0: usb_probe_interface
>> [   16.474530] btusb 2-1.5:1.0: usb_probe_interface - got id
>> [   16.475149] usbcore: registered new interface driver btusb
>> [   16.475597] usb 2-1.5: link qh1-0e01/ffff8800bb6e0640 start 0 [1/2 us]
>> [   16.490149] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
>> [   16.490155] Bluetooth: BNEP filters: protocol multicast
>> [   16.490176] Bluetooth: BNEP socket layer initialized
>> [   16.491475] Bluetooth: RFCOMM TTY layer initialized
>> [   16.491500] Bluetooth: RFCOMM socket layer initialized
>> [   16.491502] Bluetooth: RFCOMM ver 1.11
>> [   16.504603] Intel(R) Wireless WiFi driver for Linux, in-tree:d
>> [   16.504608] Copyright(c) 2003-2013 Intel Corporation
>> [   16.504677] iwlwifi 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
>> [   16.504998] iwlwifi 0000:01:00.0: irq 48 for MSI/MSI-X
>> [   16.703971] type=1400 audit(1374739091.619:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm/lightdm-guest-session-wrapper" pid=1095 comm="apparmor_parser"
>> [   16.748837] iwlwifi 0000:01:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
>> [   17.012977] uvcvideo 1-1.4:1.0: usb_probe_interface
>> [   17.012984] uvcvideo 1-1.4:1.0: usb_probe_interface - got id
>> [   17.013021] uvcvideo: Found UVC 1.00 device WebCam SC-13HDL11431N (2232:1018)
>> [   17.032351] input: WebCam SC-13HDL11431N as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input5
>> [   17.032588] usbcore: registered new interface driver uvcvideo
>> [   17.032592] USB Video Class driver (1.1.1)
>> [   17.035212] usb 1-1.4: link qh16-0001/ffff8800bb6e08c0 start 2 [1/0 us]
>> [   17.035279] usb 1-1.4: unlink qh16-0001/ffff8800bb6e08c0 start 2 [1/0 us]
>> [   17.122627] [drm] Memory usable by graphics device = 2048M
>> [   17.122639] i915 0000:00:02.0: setting latency timer to 64
>> [   17.164740] BUG: spinlock bad magic on CPU#3, modprobe/635
>> [   17.164797]  lock: 0xffff8800bc534040, .magic: 00000000, .owner: <none>/-1, .owner_cpu: 0
>> [   17.164856] CPU: 3 PID: 635 Comm: modprobe Not tainted 3.11.0-rc2-next20130725-1-iniza-small #1
>> [   17.164914] Hardware name: SAMSUNG ELECTRONICS CO., LTD. 530U3BI/530U4BI/530U4BH/530U3BI/530U4BI/530U4BH, BIOS 13XK 03/28/2013
>> [   17.164977]  0000000000000000 ffff8800c0fa1738 ffffffff816ddfc9 0000000000000007
>> [   17.165101]  ffff8800bc534040 ffff8800c0fa1758 ffffffff816de065 ffff8800bc534040
>> [   17.165222]  ffffffff81a5f497 ffff8800c0fa1778 ffffffff816de08b ffff8800bc534040
>> [   17.165345] Call Trace:
>> [   17.165386]  [<ffffffff816ddfc9>] dump_stack+0x46/0x58
>> [   17.165428]  [<ffffffff816de065>] spin_dump+0x8a/0x8f
>> [   17.165469]  [<ffffffff816de08b>] spin_bug+0x21/0x26
>> [   17.165511]  [<ffffffff813787c4>] do_raw_spin_lock+0x84/0x120
>> [   17.165554]  [<ffffffff816e6db4>] _raw_spin_lock_irqsave+0x24/0x30
>> [   17.165620]  [<ffffffffa037a456>] i915_write32+0x36/0x150 [i915]
>> [   17.165690]  [<ffffffffa03cf4c5>] intel_disable_gt_powersave+0xf5/0x360 [i915]
>> [   17.165768]  [<ffffffffa03d1129>] intel_gt_sanitize+0x49/0xb0 [i915]
>> [   17.165827]  [<ffffffffa037dd68>] i915_driver_load+0x638/0xed0 [i915]
>> [   17.165886]  [<ffffffffa01b4b91>] drm_get_pci_dev+0x181/0x2a0 [drm]
>> [   17.165929]  [<ffffffff813788fd>] ? do_raw_spin_unlock+0x5d/0xb0
>> [   17.165987]  [<ffffffffa03796f6>] i915_pci_probe+0x36/0x70 [i915]
>> [   17.166031]  [<ffffffff813973ab>] local_pci_probe+0x4b/0x80
>> [   17.166073]  [<ffffffff81398c81>] pci_device_probe+0x101/0x120
>> [   17.166115]  [<ffffffff8147599b>] driver_probe_device+0x7b/0x240
>> [   17.166158]  [<ffffffff81475c0b>] __driver_attach+0xab/0xb0
>> [   17.166200]  [<ffffffff81475b60>] ? driver_probe_device+0x240/0x240
>> [   17.166244]  [<ffffffff81473c7e>] bus_for_each_dev+0x5e/0x90
>> [   17.166286]  [<ffffffff8147549e>] driver_attach+0x1e/0x20
>> [   17.166330]  [<ffffffff81474f94>] bus_add_driver+0x104/0x270
>> [   17.166372]  [<ffffffff8147616d>] driver_register+0x7d/0x160
>> [   17.166415]  [<ffffffff81397c04>] __pci_register_driver+0x64/0x70
>> [   17.166460]  [<ffffffffa0446000>] ? 0xffffffffa0445fff
>> [   17.166510]  [<ffffffffa01b4dca>] drm_pci_init+0x11a/0x130 [drm]
>> [   17.166553]  [<ffffffffa0446000>] ? 0xffffffffa0445fff
>> [   17.166610]  [<ffffffffa0446066>] i915_init+0x66/0x68 [i915]
>> [   17.166652]  [<ffffffff8100207e>] do_one_initcall+0x4e/0x180
>> [   17.166696]  [<ffffffff81058453>] ? set_memory_nx+0x43/0x50
>> [   17.166742]  [<ffffffff810d111c>] load_module+0x209c/0x25b0
>> [   17.166784]  [<ffffffff810cdd40>] ? show_initstate+0x50/0x50
>> [   17.166827]  [<ffffffff810d16dc>] SyS_init_module+0xac/0xd0
>> [   17.166871]  [<ffffffff816efdef>] tracesys+0xe1/0xe6
>> [   17.167649] i915 0000:00:02.0: irq 49 for MSI/MSI-X
>> [   17.167709] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
>> [   17.167753] [drm] Driver supports precise vblank timestamp query.
>> [   17.168036] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
>> [   17.179048] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUG enabled
>> [   17.179101] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
>> [   17.179144] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
>> [   17.179188] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_P2P disabled
>> [   17.179231] iwlwifi 0000:01:00.0: Detected Intel(R) Centrino(R) Advanced-N 6230 AGN, REV=0xB0
>> [   17.179403] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
>> [   17.191305] [drm] Wrong MCH_SSKPD value: 0x16040307
>> [   17.191548] [drm] This can cause pipe underruns and display issues.
>> [   17.191806] [drm] Please upgrade your BIOS to fix this.
>> [   17.200113] init: alsa-restore main process (1175) terminated with status 19
>> [   17.204370] usb 1-1.2: link qh8-0e01/ffff8800bb6e09c0 start 3 [1/2 us]
>> [   17.209295] fbcon: inteldrmfb (fb0) is primary device
>> [   17.225544] usb 1-1.2: unlink qh8-0e01/ffff8800bb6e09c0 start 3 [1/2 us]
>> [   17.231718] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
>> [   17.252830] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
>> [   17.259547] iwlwifi 0000:01:00.0: Radio type=0x1-0x2-0x0
>> [   17.372778] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f00)
>> [   17.387876] psmouse serio1: elantech: Synaptics capabilities query result 0x08, 0x17, 0x0c.
>> [   17.465514] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input6
>> [   17.534384] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
>> [   17.541018] iwlwifi 0000:01:00.0: Radio type=0x1-0x2-0x0
>> [   17.621870] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
>> [   18.259707] Console: switching to colour frame buffer device 170x48
>> [   18.266630] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
>> [   18.266633] i915 0000:00:02.0: registered panic notifier
>> [   18.283546] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
>> [   18.284027] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input7
>> [   18.284665] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
>> [   18.285158] snd_hda_intel 0000:00:1b.0: irq 50 for MSI/MSI-X
>> [   18.315840] init: plymouth-splash main process (1307) terminated with status 1
>> [   18.360521] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
>> [   18.360902] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
>> [   18.361148] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
>> [   18.804651] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
>> [   18.835847] init: plymouth-stop pre-start process (1460) terminated with status 1
>> [   19.032359] usb 1-1.4: usb auto-suspend, wakeup 0
>> [   19.454465] ehci-pci 0000:00:1a.0: reused qh ffff8800bb6e09c0 schedule
>> [   19.454474] usb 1-1.2: link qh8-0e01/ffff8800bb6e09c0 start 3 [1/2 us]
>> [   23.880493] wlan0: authenticate with 00:04:0e:e4:00:3d
>> [   23.885372] wlan0: send auth to 00:04:0e:e4:00:3d (try 1/3)
>> [   23.889197] wlan0: authenticated
>> [   23.889481] iwlwifi 0000:01:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
>> [   23.889489] iwlwifi 0000:01:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
>> [   23.892677] wlan0: associate with 00:04:0e:e4:00:3d (try 1/3)
>> [   23.896209] wlan0: RX AssocResp from 00:04:0e:e4:00:3d (capab=0x411 status=0 aid=1)
>> [   23.904647] wlan0: associated
>> [   23.904785] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
>> [   26.811180] usb usb3: usb auto-resume
>> [   26.811203] hub 3-0:1.0: hub_resume
>> [   26.811255] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   26.811272] hub 3-0:1.0: hub_suspend
>> [   26.811322] usb usb3: bus auto-suspend, wakeup 1
>> [   26.811348] usb usb3: usb auto-resume
>> [   26.822556] hub 3-0:1.0: hub_resume
>> [   26.822599] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   26.822614] hub 3-0:1.0: hub_suspend
>> [   26.822620] usb usb3: bus auto-suspend, wakeup 1
>> [   26.823224] usb 1-1.4: usb auto-resume
>> [   26.860474] hub 1-1:1.0: state 7 ports 6 chg 0000 evt 0010
>> [   26.870688] usb 1-1.4: finish resume
>> [   27.063824] usb usb3: usb auto-resume
>> [   27.063857] hub 3-0:1.0: hub_resume
>> [   27.063902] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.063916] hub 3-0:1.0: hub_suspend
>> [   27.063926] usb usb3: bus auto-suspend, wakeup 1
>> [   27.064033] usb usb3: usb auto-resume
>> [   27.074484] hub 3-0:1.0: hub_resume
>> [   27.074567] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.074593] hub 3-0:1.0: hub_suspend
>> [   27.074603] usb usb3: bus auto-suspend, wakeup 1
>> [   27.096339] usb usb3: usb auto-resume
>> [   27.096362] hub 3-0:1.0: hub_resume
>> [   27.096426] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.096478] hub 3-0:1.0: hub_suspend
>> [   27.096486] usb usb3: bus auto-suspend, wakeup 1
>> [   27.127343] usb usb3: usb auto-resume
>> [   27.127371] hub 3-0:1.0: hub_resume
>> [   27.127409] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.127446] hub 3-0:1.0: hub_suspend
>> [   27.127457] usb usb3: bus auto-suspend, wakeup 1
>> [   27.127550] usb usb3: usb auto-resume
>> [   27.138409] hub 3-0:1.0: hub_resume
>> [   27.138452] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.138469] hub 3-0:1.0: hub_suspend
>> [   27.138475] usb usb3: bus auto-suspend, wakeup 1
>> [   27.201295] usb usb3: usb auto-resume
>> [   27.201317] hub 3-0:1.0: hub_resume
>> [   27.201343] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.201360] hub 3-0:1.0: hub_suspend
>> [   27.201366] usb usb3: bus auto-suspend, wakeup 1
>> [   27.201412] usb usb3: usb auto-resume
>> [   27.210287] hub 3-0:1.0: hub_resume
>> [   27.210318] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.210332] hub 3-0:1.0: hub_suspend
>> [   27.210341] usb usb3: bus auto-suspend, wakeup 1
>> [   27.228182] usb usb3: usb auto-resume
>> [   27.228206] hub 3-0:1.0: hub_resume
>> [   27.228258] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.228277] hub 3-0:1.0: hub_suspend
>> [   27.228283] usb usb3: bus auto-suspend, wakeup 1
>> [   27.228315] usb usb3: usb auto-resume
>> [   27.242307] hub 3-0:1.0: hub_resume
>> [   27.242443] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.242454] hub 3-0:1.0: hub_suspend
>> [   27.242462] usb usb3: bus auto-suspend, wakeup 1
>> [   27.273418] usb usb3: usb auto-resume
>> [   27.273448] hub 3-0:1.0: hub_resume
>> [   27.273491] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.273516] hub 3-0:1.0: hub_suspend
>> [   27.273525] usb usb3: bus auto-suspend, wakeup 1
>> [   27.273651] usb usb3: usb auto-resume
>> [   27.282292] hub 3-0:1.0: hub_resume
>> [   27.282339] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.282358] hub 3-0:1.0: hub_suspend
>> [   27.282365] usb usb3: bus auto-suspend, wakeup 1
>> [   27.400359] usb usb3: usb auto-resume
>> [   27.400381] hub 3-0:1.0: hub_resume
>> [   27.400413] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.400433] hub 3-0:1.0: hub_suspend
>> [   27.400442] usb usb3: bus auto-suspend, wakeup 1
>> [   27.400466] usb usb3: usb auto-resume
>> [   27.410186] hub 3-0:1.0: hub_resume
>> [   27.410224] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.410244] hub 3-0:1.0: hub_suspend
>> [   27.410250] usb usb3: bus auto-suspend, wakeup 1
>> [   27.419258] usb usb3: usb auto-resume
>> [   27.430132] hub 3-0:1.0: hub_resume
>> [   27.430192] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.430202] hub 3-0:1.0: hub_suspend
>> [   27.430209] usb usb3: bus auto-suspend, wakeup 1
>> [   27.430257] usb usb3: usb auto-resume
>> [   27.442204] hub 3-0:1.0: hub_resume
>> [   27.442283] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.442323] hub 3-0:1.0: hub_suspend
>> [   27.442333] usb usb3: bus auto-suspend, wakeup 1
>> [   27.796527] usb usb3: usb auto-resume
>> [   27.796551] hub 3-0:1.0: hub_resume
>> [   27.796589] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.796618] hub 3-0:1.0: hub_suspend
>> [   27.796627] usb usb3: bus auto-suspend, wakeup 1
>> [   27.796690] usb usb3: usb auto-resume
>> [   27.805868] hub 3-0:1.0: hub_resume
>> [   27.805914] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.805936] hub 3-0:1.0: hub_suspend
>> [   27.805952] usb usb3: bus auto-suspend, wakeup 1
>> [   27.967943] usb usb3: usb auto-resume
>> [   27.967968] hub 3-0:1.0: hub_resume
>> [   27.968002] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.968017] hub 3-0:1.0: hub_suspend
>> [   27.968026] usb usb3: bus auto-suspend, wakeup 1
>> [   27.968092] usb usb3: usb auto-resume
>> [   27.977808] hub 3-0:1.0: hub_resume
>> [   27.977829] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   27.977847] hub 3-0:1.0: hub_suspend
>> [   27.977852] usb usb3: bus auto-suspend, wakeup 1
>> [   29.045543] usb usb3: usb auto-resume
>> [   29.045567] hub 3-0:1.0: hub_resume
>> [   29.046607] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.046625] hub 3-0:1.0: hub_suspend
>> [   29.046649] usb usb3: bus auto-suspend, wakeup 1
>> [   29.061941] usb usb3: usb auto-resume
>> [   29.061964] hub 3-0:1.0: hub_resume
>> [   29.061990] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.061999] hub 3-0:1.0: hub_suspend
>> [   29.062005] usb usb3: bus auto-suspend, wakeup 1
>> [   29.062051] usb usb3: usb auto-resume
>> [   29.072964] hub 3-0:1.0: hub_resume
>> [   29.072992] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.073015] hub 3-0:1.0: hub_suspend
>> [   29.073023] usb usb3: bus auto-suspend, wakeup 1
>> [   29.075768] usb usb3: usb auto-resume
>> [   29.084950] hub 3-0:1.0: hub_resume
>> [   29.084978] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.084999] hub 3-0:1.0: hub_suspend
>> [   29.085005] usb usb3: bus auto-suspend, wakeup 1
>> [   29.085063] usb usb3: usb auto-resume
>> [   29.096946] hub 3-0:1.0: hub_resume
>> [   29.097028] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.097046] hub 3-0:1.0: hub_suspend
>> [   29.097055] usb usb3: bus auto-suspend, wakeup 1
>> [   29.157013] usb usb3: usb auto-resume
>> [   29.157035] hub 3-0:1.0: hub_resume
>> [   29.157064] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.157083] hub 3-0:1.0: hub_suspend
>> [   29.157092] usb usb3: bus auto-suspend, wakeup 1
>> [   29.157122] usb usb3: usb auto-resume
>> [   29.168928] hub 3-0:1.0: hub_resume
>> [   29.168958] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.168983] hub 3-0:1.0: hub_suspend
>> [   29.168991] usb usb3: bus auto-suspend, wakeup 1
>> [   29.169754] usb usb3: usb auto-resume
>> [   29.180939] hub 3-0:1.0: hub_resume
>> [   29.180970] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.180996] hub 3-0:1.0: hub_suspend
>> [   29.181004] usb usb3: bus auto-suspend, wakeup 1
>> [   29.181064] usb usb3: usb auto-resume
>> [   29.192882] hub 3-0:1.0: hub_resume
>> [   29.192919] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.192936] hub 3-0:1.0: hub_suspend
>> [   29.192942] usb usb3: bus auto-suspend, wakeup 1
>> [   29.194966] usb usb3: usb auto-resume
>> [   29.204890] hub 3-0:1.0: hub_resume
>> [   29.204920] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.204950] hub 3-0:1.0: hub_suspend
>> [   29.204958] usb usb3: bus auto-suspend, wakeup 1
>> [   29.205018] usb usb3: usb auto-resume
>> [   29.216918] hub 3-0:1.0: hub_resume
>> [   29.216979] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.217006] hub 3-0:1.0: hub_suspend
>> [   29.217012] usb usb3: bus auto-suspend, wakeup 1
>> [   29.219358] usb usb3: usb auto-resume
>> [   29.228865] hub 3-0:1.0: hub_resume
>> [   29.228903] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.228935] hub 3-0:1.0: hub_suspend
>> [   29.228943] usb usb3: bus auto-suspend, wakeup 1
>> [   29.229022] usb usb3: usb auto-resume
>> [   29.240964] hub 3-0:1.0: hub_resume
>> [   29.240998] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.241016] hub 3-0:1.0: hub_suspend
>> [   29.241023] usb usb3: bus auto-suspend, wakeup 1
>> [   29.253457] usb usb3: usb auto-resume
>> [   29.253478] hub 3-0:1.0: hub_resume
>> [   29.253507] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.253524] hub 3-0:1.0: hub_suspend
>> [   29.253530] usb usb3: bus auto-suspend, wakeup 1
>> [   29.253559] usb usb3: usb auto-resume
>> [   29.264861] hub 3-0:1.0: hub_resume
>> [   29.264924] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.264942] hub 3-0:1.0: hub_suspend
>> [   29.264949] usb usb3: bus auto-suspend, wakeup 1
>> [   29.282357] usb usb3: usb auto-resume
>> [   29.282378] hub 3-0:1.0: hub_resume
>> [   29.282434] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.282464] hub 3-0:1.0: hub_suspend
>> [   29.282471] usb usb3: bus auto-suspend, wakeup 1
>> [   29.283178] usb usb3: usb auto-resume
>> [   29.292838] hub 3-0:1.0: hub_resume
>> [   29.292909] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.292925] hub 3-0:1.0: hub_suspend
>> [   29.292932] usb usb3: bus auto-suspend, wakeup 1
>> [   29.292951] usb usb3: usb auto-resume
>> [   29.304821] hub 3-0:1.0: hub_resume
>> [   29.304854] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.304865] hub 3-0:1.0: hub_suspend
>> [   29.304873] usb usb3: bus auto-suspend, wakeup 1
>> [   29.370015] usb usb3: usb auto-resume
>> [   29.370040] hub 3-0:1.0: hub_resume
>> [   29.370082] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.370105] hub 3-0:1.0: hub_suspend
>> [   29.370112] usb usb3: bus auto-suspend, wakeup 1
>> [   29.370178] usb usb3: usb auto-resume
>> [   29.384874] hub 3-0:1.0: hub_resume
>> [   29.384919] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.384929] hub 3-0:1.0: hub_suspend
>> [   29.384936] usb usb3: bus auto-suspend, wakeup 1
>> [   29.395757] usb usb3: usb auto-resume
>> [   29.404879] hub 3-0:1.0: hub_resume
>> [   29.404950] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.404972] hub 3-0:1.0: hub_suspend
>> [   29.404980] usb usb3: bus auto-suspend, wakeup 1
>> [   29.405007] usb usb3: usb auto-resume
>> [   29.416725] hub 3-0:1.0: hub_resume
>> [   29.416791] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.416810] hub 3-0:1.0: hub_suspend
>> [   29.416817] usb usb3: bus auto-suspend, wakeup 1
>> [   29.436482] usb usb3: usb auto-resume
>> [   29.436504] hub 3-0:1.0: hub_resume
>> [   29.436548] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.436567] hub 3-0:1.0: hub_suspend
>> [   29.436574] usb usb3: bus auto-suspend, wakeup 1
>> [   29.436607] usb usb3: usb auto-resume
>> [   29.444715] hub 3-0:1.0: hub_resume
>> [   29.444756] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.444865] hub 3-0:1.0: hub_suspend
>> [   29.444874] usb usb3: bus auto-suspend, wakeup 1
>> [   29.469110] usb usb3: usb auto-resume
>> [   29.469133] hub 3-0:1.0: hub_resume
>> [   29.469162] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.469188] hub 3-0:1.0: hub_suspend
>> [   29.469197] usb usb3: bus auto-suspend, wakeup 1
>> [   29.469246] usb usb3: usb auto-resume
>> [   29.480715] hub 3-0:1.0: hub_resume
>> [   29.480756] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.480767] hub 3-0:1.0: hub_suspend
>> [   29.480776] usb usb3: bus auto-suspend, wakeup 1
>> [   29.508566] usb usb3: usb auto-resume
>> [   29.508587] hub 3-0:1.0: hub_resume
>> [   29.508614] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.508657] hub 3-0:1.0: hub_suspend
>> [   29.508665] usb usb3: bus auto-suspend, wakeup 1
>> [   29.508734] usb usb3: usb auto-resume
>> [   29.520724] hub 3-0:1.0: hub_resume
>> [   29.520777] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.520833] hub 3-0:1.0: hub_suspend
>> [   29.520841] usb usb3: bus auto-suspend, wakeup 1
>> [   29.567465] usb usb3: usb auto-resume
>> [   29.567488] hub 3-0:1.0: hub_resume
>> [   29.567517] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.567538] hub 3-0:1.0: hub_suspend
>> [   29.567547] usb usb3: bus auto-suspend, wakeup 1
>> [   29.567578] usb usb3: usb auto-resume
>> [   29.576622] hub 3-0:1.0: hub_resume
>> [   29.577036] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.577054] hub 3-0:1.0: hub_suspend
>> [   29.577062] usb usb3: bus auto-suspend, wakeup 1
>> [   29.609135] usb usb3: usb auto-resume
>> [   29.609157] hub 3-0:1.0: hub_resume
>> [   29.609205] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.609223] hub 3-0:1.0: hub_suspend
>> [   29.609229] usb usb3: bus auto-suspend, wakeup 1
>> [   29.609257] usb usb3: usb auto-resume
>> [   29.620625] hub 3-0:1.0: hub_resume
>> [   29.620665] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.620679] hub 3-0:1.0: hub_suspend
>> [   29.620688] usb usb3: bus auto-suspend, wakeup 1
>> [   29.623757] usb usb3: usb auto-resume
>> [   29.632606] hub 3-0:1.0: hub_resume
>> [   29.632662] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.632684] hub 3-0:1.0: hub_suspend
>> [   29.632692] usb usb3: bus auto-suspend, wakeup 1
>> [   29.632760] usb usb3: usb auto-resume
>> [   29.644675] hub 3-0:1.0: hub_resume
>> [   29.644752] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.644770] hub 3-0:1.0: hub_suspend
>> [   29.644777] usb usb3: bus auto-suspend, wakeup 1
>> [   29.676740] usb usb3: usb auto-resume
>> [   29.676763] hub 3-0:1.0: hub_resume
>> [   29.676822] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.676855] hub 3-0:1.0: hub_suspend
>> [   29.676862] usb usb3: bus auto-suspend, wakeup 1
>> [   29.680015] usb usb3: usb auto-resume
>> [   29.688588] hub 3-0:1.0: hub_resume
>> [   29.688647] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.688679] hub 3-0:1.0: hub_suspend
>> [   29.688685] usb usb3: bus auto-suspend, wakeup 1
>> [   29.688753] usb usb3: usb auto-resume
>> [   29.700526] hub 3-0:1.0: hub_resume
>> [   29.700562] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.700576] hub 3-0:1.0: hub_suspend
>> [   29.700586] usb usb3: bus auto-suspend, wakeup 1
>> [   29.718301] usb usb3: usb auto-resume
>> [   29.718325] hub 3-0:1.0: hub_resume
>> [   29.718390] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   29.718447] hub 3-0:1.0: hub_suspend
>> [   29.718453] usb usb3: bus auto-suspend, wakeup 1
>> [   30.748649] usb usb3: usb auto-resume
>> [   30.748672] hub 3-0:1.0: hub_resume
>> [   30.748734] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   30.748763] hub 3-0:1.0: hub_suspend
>> [   30.748770] usb usb3: bus auto-suspend, wakeup 1
>> [   31.055854] usb usb3: usb auto-resume
>> [   31.055876] hub 3-0:1.0: hub_resume
>> [   31.055937] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   31.055980] hub 3-0:1.0: hub_suspend
>> [   31.055987] usb usb3: bus auto-suspend, wakeup 1
>> [   31.080654] usb usb3: usb auto-resume
>> [   31.080678] hub 3-0:1.0: hub_resume
>> [   31.080742] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   31.080771] hub 3-0:1.0: hub_suspend
>> [   31.080777] usb usb3: bus auto-suspend, wakeup 1
>> [   31.083985] usb usb3: usb auto-resume
>> [   31.095670] hub 3-0:1.0: hub_resume
>> [   31.095732] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   31.095782] hub 3-0:1.0: hub_suspend
>> [   31.095791] usb usb3: bus auto-suspend, wakeup 1
>> [   31.095891] usb usb3: usb auto-resume
>> [   31.107609] hub 3-0:1.0: hub_resume
>> [   31.107687] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   31.107711] hub 3-0:1.0: hub_suspend
>> [   31.107720] usb usb3: bus auto-suspend, wakeup 1
>> [   31.111427] usb usb3: usb auto-resume
>> [   31.119549] hub 3-0:1.0: hub_resume
>> [   31.119618] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   31.119639] hub 3-0:1.0: hub_suspend
>> [   31.119647] usb usb3: bus auto-suspend, wakeup 1
>> [   31.119677] usb usb3: usb auto-resume
>> [   31.131619] hub 3-0:1.0: hub_resume
>> [   31.131700] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   31.131728] hub 3-0:1.0: hub_suspend
>> [   31.131737] usb usb3: bus auto-suspend, wakeup 1
>> [   31.175652] usb usb3: usb auto-resume
>> [   31.175683] hub 3-0:1.0: hub_resume
>> [   31.175775] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   31.175819] hub 3-0:1.0: hub_suspend
>> [   31.175831] usb usb3: bus auto-suspend, wakeup 1
>> [   31.175872] usb usb3: usb auto-resume
>> [   31.187562] hub 3-0:1.0: hub_resume
>> [   31.187670] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   31.187705] hub 3-0:1.0: hub_suspend
>> [   31.187718] usb usb3: bus auto-suspend, wakeup 1
>> [   31.194530] usb usb3: usb auto-resume
>> [   31.203589] hub 3-0:1.0: hub_resume
>> [   31.203663] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   31.203704] hub 3-0:1.0: hub_suspend
>> [   31.203714] usb usb3: bus auto-suspend, wakeup 1
>> [   31.203808] usb usb3: usb auto-resume
>> [   31.215553] hub 3-0:1.0: hub_resume
>> [   31.215639] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   31.215668] hub 3-0:1.0: hub_suspend
>> [   31.215678] usb usb3: bus auto-suspend, wakeup 1
>> [   31.343711] usb usb3: usb auto-resume
>> [   31.343735] hub 3-0:1.0: hub_resume
>> [   31.343770] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   31.343809] hub 3-0:1.0: hub_suspend
>> [   31.343818] usb usb3: bus auto-suspend, wakeup 1
>> [   31.343895] usb usb3: usb auto-resume
>> [   31.355437] hub 3-0:1.0: hub_resume
>> [   31.355482] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>> [   31.355507] hub 3-0:1.0: hub_suspend
>> [   31.355521] usb usb3: bus auto-suspend, wakeup 1
>> [   33.805755] usb 1-1.4: usb auto-suspend, wakeup 0
>> [   40.596137] EXT4-fs (sdc3): mounted filesystem with ordered data mode. Opts: (null)
>> [   40.619552] EXT4-fs (sdc1): mounted filesystem with ordered data mode. Opts: (null)
>> [   55.836469] usb 2-1.5: unlink qh1-0e01/ffff8800bb6e0640 start 0 [1/2 us]
>> [   56.040578] hub 2-1:1.0: state 7 ports 6 chg 0000 evt 0020
>> [   56.040843] hub 2-1:1.0: port 5, status 0100, change 0001, 12 Mb/s
>> [   56.040852] usb 2-1.5: USB disconnect, device number 3
>> [   56.040856] usb 2-1.5: unregistering device
>> [   56.040860] usb 2-1.5: unregistering interface 2-1.5:1.0
>> [   56.041687] usb 2-1.5: unregistering interface 2-1.5:1.1
>> [   56.041854] usb 2-1.5: usb_disable_device nuking all URBs
>> [   56.167563] hub 2-1:1.0: debounce: port 5: total 100ms stable 100ms status 0x100
>> [   56.167592] hub 2-1:1.0: hub_suspend
>> [   56.167602] usb 2-1: unlink qh256-0001/ffff88011872acc0 start 1 [1/0 us]
>> [   56.169859] usb 2-1: usb auto-suspend, wakeup 1
>> [   56.183306] hub 2-0:1.0: hub_suspend
>> [   56.183323] usb usb2: bus auto-suspend, wakeup 1
>> [   56.183327] ehci-pci 0000:00:1d.0: suspend root hub
>> _______________________________________________
>> Intel-gfx mailing list
>> Intel-gfx@lists.freedesktop.org
>> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
>
> --
> Jani Nikula, Intel Open Source Technology Center
Sedat Dilek July 25, 2013, 10:05 a.m. UTC | #2
On Thu, Jul 25, 2013 at 12:02 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> On Thu, Jul 25, 2013 at 11:44 AM, Jani Nikula
> <jani.nikula@linux.intel.com> wrote:
>> On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>>> On Thu, Jul 25, 2013 at 7:12 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>>>> Hi all,
>>>>
>>>> Changes since 20130724:
>>>>
>>>> Removed tree:
>>>>         arm-dt (at maintainer's request)
>>>>
>>>> The wireless-next tree lost its build failure and gained a conflict
>>>> against Linus' tree.
>>>>
>>>> The tty tree lost its build failure.
>>>>
>>>> The staging tree gained a build failure for which I disabled a driver.
>>>>
>>>> ----------------------------------------------------------------------------
>>>>
>>>
>>> [ CCing drm and drm-intel folks ]
>>>
>>> With today's next-20130725 I see the following:
>>
>> Use of dev_priv->gt_lock in I915_WRITE through
>> intel_disable_gt_powersave before spin lock init, caused by
>>
>> commit 181d1b9e31c668259d3798c521672afb8edd355c
>> Author: Daniel Vetter <daniel.vetter@ffwll.ch>
>> Date:   Sun Jul 21 13:16:24 2013 +0200
>>
>>     drm/i915: fix up gt init sequence fallout
>>
>
> Ah, cool.
>
> I assumed/tested "drm/i915: fix the racy object accounting", but this
> does not fix it.
> Will try with yours.
>

Sorry, Jani.

next-20130725 ships the patch you pointed, too.

- Sedat -

[1] http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/log/?id=next-20130725&qt=grep&q=drm%2Fi915%3A+fix+up+gt+init+sequence+fallout
[2] http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=181d1b9e31c668259d3798c521672afb8edd355c

> - Sedat -
>
> [1] cgit.freedesktop.org/~danvet/drm-intel/patch/?id=190426c5a60659533b9361b7e0ba083bd5434c80
>
>> Daniel, how about just doing this (untested):
>>
>> Cheers,
>> Jani.
>>
>>
>> From a6b46053ba07d2e129691fd24ad2e43a1d8dfd10 Mon Sep 17 00:00:00 2001
>> From: Jani Nikula <jani.nikula@intel.com>
>> Date: Thu, 25 Jul 2013 12:40:31 +0300
>> Subject: [PATCH] drm/i915: initialize gt_lock early with other spin locks
>> Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo
>> Cc: Jani Nikula <jani.nikula@intel.com>
>>
>> commit 181d1b9e31c668259d3798c521672afb8edd355c
>> Author: Daniel Vetter <daniel.vetter@ffwll.ch>
>> Date:   Sun Jul 21 13:16:24 2013 +0200
>>
>>     drm/i915: fix up gt init sequence fallout
>>
>> moved dev_priv->gt_lock initialization after use. Do the initialization
>> much earlier with other spin lock initializations.
>>
>> Reported-by: Sedat Dilek <sedat.dilek@gmail.com>
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>> ---
>>  drivers/gpu/drm/i915/i915_dma.c |    1 +
>>  drivers/gpu/drm/i915/intel_pm.c |    2 --
>>  2 files changed, 1 insertion(+), 2 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c
>> index 67ec54f..b064a5a 100644
>> --- a/drivers/gpu/drm/i915/i915_dma.c
>> +++ b/drivers/gpu/drm/i915/i915_dma.c
>> @@ -1496,6 +1496,7 @@ int i915_driver_load(struct drm_device *dev, unsigned long flags)
>>         dev_priv->info = info;
>>
>>         spin_lock_init(&dev_priv->irq_lock);
>> +       spin_lock_init(&dev_priv->gt_lock);
>>         spin_lock_init(&dev_priv->gpu_error.lock);
>>         spin_lock_init(&dev_priv->rps.lock);
>>         spin_lock_init(&dev_priv->backlight.lock);
>> diff --git a/drivers/gpu/drm/i915/intel_pm.c b/drivers/gpu/drm/i915/intel_pm.c
>> index 6a347f5..51a2a60 100644
>> --- a/drivers/gpu/drm/i915/intel_pm.c
>> +++ b/drivers/gpu/drm/i915/intel_pm.c
>> @@ -5497,8 +5497,6 @@ void intel_gt_init(struct drm_device *dev)
>>  {
>>         struct drm_i915_private *dev_priv = dev->dev_private;
>>
>> -       spin_lock_init(&dev_priv->gt_lock);
>> -
>>         if (IS_VALLEYVIEW(dev)) {
>>                 dev_priv->gt.force_wake_get = vlv_force_wake_get;
>>                 dev_priv->gt.force_wake_put = vlv_force_wake_put;
>> --
>> 1.7.9.5
>>
>>
>>
>>>
>>> [   17.122627] [drm] Memory usable by graphics device = 2048M
>>> [   17.122639] i915 0000:00:02.0: setting latency timer to 64
>>> [   17.164740] BUG: spinlock bad magic on CPU#3, modprobe/635
>>> [   17.164797]  lock: 0xffff8800bc534040, .magic: 00000000, .owner:
>>> <none>/-1, .owner_cpu: 0
>>> [   17.164856] CPU: 3 PID: 635 Comm: modprobe Not tainted
>>> 3.11.0-rc2-next20130725-1-iniza-small #1
>>> [   17.164914] Hardware name: SAMSUNG ELECTRONICS CO., LTD.
>>> 530U3BI/530U4BI/530U4BH/530U3BI/530U4BI/530U4BH, BIOS 13XK 03/28/2013
>>> [   17.164977]  0000000000000000 ffff8800c0fa1738 ffffffff816ddfc9
>>> 0000000000000007
>>> [   17.165101]  ffff8800bc534040 ffff8800c0fa1758 ffffffff816de065
>>> ffff8800bc534040
>>> [   17.165222]  ffffffff81a5f497 ffff8800c0fa1778 ffffffff816de08b
>>> ffff8800bc534040
>>> [   17.165345] Call Trace:
>>> [   17.165386]  [<ffffffff816ddfc9>] dump_stack+0x46/0x58
>>> [   17.165428]  [<ffffffff816de065>] spin_dump+0x8a/0x8f
>>> [   17.165469]  [<ffffffff816de08b>] spin_bug+0x21/0x26
>>> [   17.165511]  [<ffffffff813787c4>] do_raw_spin_lock+0x84/0x120
>>> [   17.165554]  [<ffffffff816e6db4>] _raw_spin_lock_irqsave+0x24/0x30
>>> [   17.165620]  [<ffffffffa037a456>] i915_write32+0x36/0x150 [i915]
>>> [   17.165690]  [<ffffffffa03cf4c5>]
>>> intel_disable_gt_powersave+0xf5/0x360 [i915]
>>> [   17.165768]  [<ffffffffa03d1129>] intel_gt_sanitize+0x49/0xb0 [i915]
>>> [   17.165827]  [<ffffffffa037dd68>] i915_driver_load+0x638/0xed0 [i915]
>>> [   17.165886]  [<ffffffffa01b4b91>] drm_get_pci_dev+0x181/0x2a0 [drm]
>>> [   17.165929]  [<ffffffff813788fd>] ? do_raw_spin_unlock+0x5d/0xb0
>>> [   17.165987]  [<ffffffffa03796f6>] i915_pci_probe+0x36/0x70 [i915]
>>> [   17.166031]  [<ffffffff813973ab>] local_pci_probe+0x4b/0x80
>>> [   17.166073]  [<ffffffff81398c81>] pci_device_probe+0x101/0x120
>>> [   17.166115]  [<ffffffff8147599b>] driver_probe_device+0x7b/0x240
>>> [   17.166158]  [<ffffffff81475c0b>] __driver_attach+0xab/0xb0
>>> [   17.166200]  [<ffffffff81475b60>] ? driver_probe_device+0x240/0x240
>>> [   17.166244]  [<ffffffff81473c7e>] bus_for_each_dev+0x5e/0x90
>>> [   17.166286]  [<ffffffff8147549e>] driver_attach+0x1e/0x20
>>> [   17.166330]  [<ffffffff81474f94>] bus_add_driver+0x104/0x270
>>> [   17.166372]  [<ffffffff8147616d>] driver_register+0x7d/0x160
>>> [   17.166415]  [<ffffffff81397c04>] __pci_register_driver+0x64/0x70
>>> [   17.166460]  [<ffffffffa0446000>] ? 0xffffffffa0445fff
>>> [   17.166510]  [<ffffffffa01b4dca>] drm_pci_init+0x11a/0x130 [drm]
>>> [   17.166553]  [<ffffffffa0446000>] ? 0xffffffffa0445fff
>>> [   17.166610]  [<ffffffffa0446066>] i915_init+0x66/0x68 [i915]
>>> [   17.166652]  [<ffffffff8100207e>] do_one_initcall+0x4e/0x180
>>> [   17.166696]  [<ffffffff81058453>] ? set_memory_nx+0x43/0x50
>>> [   17.166742]  [<ffffffff810d111c>] load_module+0x209c/0x25b0
>>> [   17.166784]  [<ffffffff810cdd40>] ? show_initstate+0x50/0x50
>>> [   17.166827]  [<ffffffff810d16dc>] SyS_init_module+0xac/0xd0
>>> [   17.166871]  [<ffffffff816efdef>] tracesys+0xe1/0xe6
>>> [   17.167649] i915 0000:00:02.0: irq 49 for MSI/MSI-X
>>> [   17.167709] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
>>> [   17.167753] [drm] Driver supports precise vblank timestamp query.
>>>
>>> I can't say what is the root cause and when it occured for the 1st
>>> time (my last Linux-next release was next-20130709).
>>>
>>> Please, see also attached kernel-config and full dmesg.
>>>
>>> - Sedat -
>>> [    0.000000] Initializing cgroup subsys cpuset
>>> [    0.000000] Initializing cgroup subsys cpu
>>> [    0.000000] Initializing cgroup subsys cpuacct
>>> [    0.000000] Linux version 3.11.0-rc2-next20130725-1-iniza-small (sedat.dilek@gmail.com@fambox) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #1 SMP Thu Jul 25 09:03:18 CEST 2013
>>> [    0.000000] Command line: BOOT_IMAGE=/vmlinuz.next 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 [0x0204c000, 0x0204cfff] PGTABLE
>>> [    0.000000] BRK [0x0204d000, 0x0204dfff] PGTABLE
>>> [    0.000000] BRK [0x0204e000, 0x0204efff] PGTABLE
>>> [    0.000000] init_memory_mapping: [mem 0x11fc00000-0x11fdfffff]
>>> [    0.000000]  [mem 0x11fc00000-0x11fdfffff] page 2M
>>> [    0.000000] BRK [0x0204f000, 0x0204ffff] 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 [0x02050000, 0x02050fff] PGTABLE
>>> [    0.000000] init_memory_mapping: [mem 0xdafff000-0xdaffffff]
>>> [    0.000000]  [mem 0xdafff000-0xdaffffff] page 4k
>>> [    0.000000] RAMDISK: [mem 0x37962000-0x37ca8fff]
>>> [    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 0x11fdf7000-0x11fdfbfff]
>>> [    0.000000]  [ffffea0000000000-ffffea0003ffffff] PMD -> [ffff88011b400000-ffff88011edfffff] 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: 56 pages used for memmap
>>> [    0.000000]   DMA zone: 156 pages reserved
>>> [    0.000000]   DMA zone: 3996 pages, LIFO batch:0
>>> [    0.000000]   DMA32 zone: 12127 pages used for memmap
>>> [    0.000000]   DMA32 zone: 886944 pages, LIFO batch:31
>>> [    0.000000]   Normal zone: 1785 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: [mem 0x0009d000-0x0009dfff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0x40000000-0x401fffff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0xd9c9f000-0xdae7efff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0xdae7f000-0xdaf9efff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0xdaf9f000-0xdaffefff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0xdb000000-0xdf9fffff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0xdfa00000-0xf7ffffff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffd7ffff]
>>> [    0.000000] PM: Registered nosave memory: [mem 0xffd80000-0xffffffff]
>>> [    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 29 pages/cpu @ffff88011fa00000 s87552 r8192 d23040 u262144
>>> [    0.000000] pcpu-alloc: s87552 r8192 d23040 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: 1007376
>>> [    0.000000] Policy zone: Normal
>>> [    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz.next root=UUID=001AADA61AAD9964 loop=/ubuntu/disks/root.disk ro
>>> [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
>>> [    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: 3938460K/4086000K available (7119K kernel code, 1044K rwdata, 3132K rodata, 1332K init, 1984K bss, 147540K reserved)
>>> [    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 VGA+ 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] ODEBUG: 0 of 0 active objects replaced
>>> [    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.000080] pid_max: default: 32768 minimum: 301
>>> [    0.000246] Security Framework initialized
>>> [    0.000303] AppArmor: AppArmor initialized
>>> [    0.000339] Yama: becoming mindful.
>>> [    0.000747] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
>>> [    0.001855] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
>>> [    0.002357] Mount-cache hash table entries: 256
>>> [    0.002910] Initializing cgroup subsys memory
>>> [    0.003007] Initializing cgroup subsys devices
>>> [    0.003046] Initializing cgroup subsys freezer
>>> [    0.003083] Initializing cgroup subsys blkio
>>> [    0.003120] Initializing cgroup subsys perf_event
>>> [    0.003160] Initializing cgroup subsys hugetlb
>>> [    0.003247] Disabled fast string operations
>>> [    0.003284] CPU: Physical Processor ID: 0
>>> [    0.003321] CPU: Processor Core ID: 0
>>> [    0.003360] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
>>> [    0.003360] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
>>> [    0.003426] mce: CPU supports 7 MCE banks
>>> [    0.003477] CPU0: Thermal monitoring enabled (TM1)
>>> [    0.003523] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
>>> [    0.003523] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
>>> [    0.003523] tlb_flushall_shift: 5
>>> [    0.003694] Freeing SMP alternatives memory: 24K (ffffffff81e54000 - ffffffff81e5a000)
>>> [    0.004778] ACPI: Core revision 20130626
>>> [    0.015639] ACPI: All ACPI Tables successfully acquired
>>> [    0.029610] ftrace: allocating 27066 entries in 106 pages
>>> [    0.045179] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
>>> [    0.084876] smpboot: CPU0: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz (fam: 06, model: 2a, stepping: 07)
>>> [    0.085491] TSC deadline timer enabled
>>> [    0.085504] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
>>> [    0.085652] ... version:                3
>>> [    0.085688] ... bit width:              48
>>> [    0.085724] ... generic registers:      4
>>> [    0.085760] ... value mask:             0000ffffffffffff
>>> [    0.085798] ... max period:             0000ffffffffffff
>>> [    0.085836] ... fixed-purpose events:   3
>>> [    0.085872] ... event mask:             000000070000000f
>>> [    0.098996] Disabled fast string operations
>>> [    0.102181] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
>>> [    0.113860] Disabled fast string operations
>>> [    0.127571] Disabled fast string operations
>>> [    0.087924] smpboot: Booting Node   0, Processors  #1 #2 #3
>>> [    0.129706] Brought up 4 CPUs
>>> [    0.129811] smpboot: Total of 4 processors activated (12770.69 BogoMIPS)
>>> [    0.133914] devtmpfs: initialized
>>> [    0.135965] EVM: security.selinux
>>> [    0.136000] EVM: security.SMACK64
>>> [    0.136035] EVM: security.capability
>>> [    0.136158] PM: Registering ACPI NVS region [mem 0xdae7f000-0xdaf9efff] (1179648 bytes)
>>> [    0.137696] regulator-dummy: no parameters
>>> [    0.137887] NET: Registered protocol family 16
>>> [    0.138227] cpuidle: using governor ladder
>>> [    0.138264] cpuidle: using governor menu
>>> [    0.138340] ACPI: bus type PCI registered
>>> [    0.138490] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
>>> [    0.138549] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
>>> [    0.145348] PCI: Using configuration type 1 for base access
>>> [    0.148758] bio: create slab <bio-0> at 0
>>> [    0.149215] ACPI: Added _OSI(Module Device)
>>> [    0.149252] ACPI: Added _OSI(Processor Device)
>>> [    0.149289] ACPI: Added _OSI(3.0 _SCP Extensions)
>>> [    0.149327] ACPI: Added _OSI(Processor Aggregator Device)
>>> [    0.151126] ACPI: EC: Look up EC in DSDT
>>> [    0.177559] ACPI: Executed 1 blocks of module-level executable AML code
>>> [    0.183608] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
>>> [    0.195266] ACPI: SSDT 00000000dae70718 00688 (v01  PmRef  Cpu0Cst 00003001 INTL 20061109)
>>> [    0.195853] ACPI: Dynamic OEM Table Load:
>>> [    0.195923] ACPI: SSDT           (null) 00688 (v01  PmRef  Cpu0Cst 00003001 INTL 20061109)
>>> [    0.205996] ACPI: SSDT 00000000dae71a98 00303 (v01  PmRef    ApIst 00003000 INTL 20061109)
>>> [    0.206663] ACPI: Dynamic OEM Table Load:
>>> [    0.206733] ACPI: SSDT           (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20061109)
>>> [    0.217891] ACPI: SSDT 00000000dae6fd98 00119 (v01  PmRef    ApCst 00003000 INTL 20061109)
>>> [    0.218450] ACPI: Dynamic OEM Table Load:
>>> [    0.218519] ACPI: SSDT           (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20061109)
>>> [    0.231935] ACPI: Interpreter enabled
>>> [    0.231986] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130626/hwxface-571)
>>> [    0.232095] ACPI: (supports S0 S1 S3 S4 S5)
>>> [    0.232132] ACPI: Using IOAPIC for interrupt routing
>>> [    0.232225] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
>>> [    0.232510] ACPI: No dock devices found.
>>> [    0.256150] ACPI: Power Resource [FN00] (off)
>>> [    0.256373] ACPI: Power Resource [FN01] (off)
>>> [    0.256590] ACPI: Power Resource [FN02] (off)
>>> [    0.256805] ACPI: Power Resource [FN03] (off)
>>> [    0.257025] ACPI: Power Resource [FN04] (off)
>>> [    0.258209] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
>>> [    0.258584] \_SB_.PCI0:_OSC invalid UUID
>>> [    0.258586] _OSC request data:1 8 0
>>> [    0.259557] PCI host bridge to bus 0000:00
>>> [    0.259596] pci_bus 0000:00: root bus resource [bus 00-3e]
>>> [    0.259636] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
>>> [    0.259677] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
>>> [    0.259718] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
>>> [    0.259758] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfeafffff]
>>> [    0.259800] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
>>> [    0.259857] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
>>> [    0.260010] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
>>> [    0.260023] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit]
>>> [    0.260030] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
>>> [    0.260036] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
>>> [    0.260213] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
>>> [    0.260239] pci 0000:00:16.0: reg 0x10: [mem 0xf0705000-0xf070500f 64bit]
>>> [    0.260325] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
>>> [    0.260481] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
>>> [    0.260506] pci 0000:00:1a.0: reg 0x10: [mem 0xf070a000-0xf070a3ff]
>>> [    0.260606] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
>>> [    0.260712] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
>>> [    0.260731] pci 0000:00:1b.0: reg 0x10: [mem 0xf0700000-0xf0703fff 64bit]
>>> [    0.260809] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
>>> [    0.260855] pci 0000:00:1b.0: System wakeup disabled by ACPI
>>> [    0.260961] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
>>> [    0.261052] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
>>> [    0.261100] pci 0000:00:1c.0: System wakeup disabled by ACPI
>>> [    0.261209] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
>>> [    0.261299] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
>>> [    0.261361] pci 0000:00:1c.3: System wakeup disabled by ACPI
>>> [    0.261466] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
>>> [    0.261558] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
>>> [    0.261685] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
>>> [    0.261715] pci 0000:00:1d.0: reg 0x10: [mem 0xf0709000-0xf07093ff]
>>> [    0.261816] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
>>> [    0.261921] pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
>>> [    0.262116] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
>>> [    0.262139] pci 0000:00:1f.2: reg 0x10: [io  0x3088-0x308f]
>>> [    0.262149] pci 0000:00:1f.2: reg 0x14: [io  0x3094-0x3097]
>>> [    0.262159] pci 0000:00:1f.2: reg 0x18: [io  0x3080-0x3087]
>>> [    0.262169] pci 0000:00:1f.2: reg 0x1c: [io  0x3090-0x3093]
>>> [    0.262178] pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
>>> [    0.262189] pci 0000:00:1f.2: reg 0x24: [mem 0xf0708000-0xf07087ff]
>>> [    0.262240] pci 0000:00:1f.2: PME# supported from D3hot
>>> [    0.262356] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
>>> [    0.262376] pci 0000:00:1f.3: reg 0x10: [mem 0xf0704000-0xf07040ff 64bit]
>>> [    0.262400] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
>>> [    0.262768] pci 0000:01:00.0: [8086:0091] type 00 class 0x028000
>>> [    0.262934] pci 0000:01:00.0: reg 0x10: [mem 0xf0600000-0xf0601fff 64bit]
>>> [    0.263672] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
>>> [    0.263843] pci 0000:01:00.0: System wakeup disabled by ACPI
>>> [    0.269839] pci 0000:00:1c.0: PCI bridge to [bus 01]
>>> [    0.269883] pci 0000:00:1c.0:   bridge window [mem 0xf0600000-0xf06fffff]
>>> [    0.270061] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
>>> [    0.270127] pci 0000:02:00.0: reg 0x10: [io  0x2000-0x20ff]
>>> [    0.270250] pci 0000:02:00.0: reg 0x18: [mem 0xf0404000-0xf0404fff 64bit pref]
>>> [    0.270326] pci 0000:02:00.0: reg 0x20: [mem 0xf0400000-0xf0403fff 64bit pref]
>>> [    0.270664] pci 0000:02:00.0: supports D1 D2
>>> [    0.270666] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
>>> [    0.270789] pci 0000:02:00.0: System wakeup disabled by ACPI
>>> [    0.277773] pci 0000:00:1c.3: PCI bridge to [bus 02]
>>> [    0.277835] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
>>> [    0.277844] pci 0000:00:1c.3:   bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
>>> [    0.277969] pci 0000:03:00.0: [1b21:1042] type 00 class 0x0c0330
>>> [    0.278007] pci 0000:03:00.0: reg 0x10: [mem 0xf0500000-0xf0507fff 64bit]
>>> [    0.278206] pci 0000:03:00.0: PME# supported from D3hot D3cold
>>> [    0.285744] pci 0000:00:1c.4: PCI bridge to [bus 03]
>>> [    0.285821] pci 0000:00:1c.4:   bridge window [mem 0xf0500000-0xf05fffff]
>>> [    0.286004] \_SB_.PCI0:_OSC invalid UUID
>>> [    0.286005] _OSC request data:1 1f 0
>>> [    0.286010] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
>>> [    0.286066] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
>>> [    0.287020] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
>>> [    0.287369] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
>>> [    0.287763] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *10 11 12 14 15)
>>> [    0.288109] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
>>> [    0.288456] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
>>> [    0.288828] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
>>> [    0.289220] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 *11 12 14 15)
>>> [    0.289570] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
>>> [    0.290423] ACPI: Enabled 4 GPEs in block 00 to 3F
>>> [    0.290500] ACPI: \_SB_.PCI0: notify handler is installed
>>> [    0.290562] Found 1 acpi root devices
>>> [    0.290632] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
>>> [    0.290990] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
>>> [    0.291049] vgaarb: loaded
>>> [    0.291082] vgaarb: bridge control possible 0000:00:02.0
>>> [    0.291796] SCSI subsystem initialized
>>> [    0.291834] ACPI: bus type ATA registered
>>> [    0.291967] libata version 3.00 loaded.
>>> [    0.292029] ACPI: bus type USB registered
>>> [    0.292109] usbcore: registered new interface driver usbfs
>>> [    0.292172] usbcore: registered new interface driver hub
>>> [    0.292260] usbcore: registered new device driver usb
>>> [    0.292654] PCI: Using ACPI for IRQ routing
>>> [    0.294397] PCI: pci_cache_line_size set to 64 bytes
>>> [    0.294508] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
>>> [    0.294511] e820: reserve RAM buffer [mem 0xd9c9f000-0xdbffffff]
>>> [    0.294513] e820: reserve RAM buffer [mem 0xdb000000-0xdbffffff]
>>> [    0.294515] e820: reserve RAM buffer [mem 0x11fe00000-0x11fffffff]
>>> [    0.294762] NetLabel: Initializing
>>> [    0.294798] NetLabel:  domain hash size = 128
>>> [    0.294834] NetLabel:  protocols = UNLABELED CIPSOv4
>>> [    0.294918] NetLabel:  unlabeled traffic allowed by default
>>> [    0.295047] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
>>> [    0.295236] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
>>> [    0.297297] Switched to clocksource hpet
>>> [    0.315015] AppArmor: AppArmor Filesystem Enabled
>>> [    0.315105] pnp: PnP ACPI init
>>> [    0.315155] ACPI: bus type PNP registered
>>> [    0.315574] pnp 00:00: [dma 4]
>>> [    0.315617] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
>>> [    0.315663] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
>>> [    0.315831] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
>>> [    0.315889] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
>>> [    0.315967] system 00:04: [io  0x0680-0x069f] has been reserved
>>> [    0.316011] system 00:04: [io  0x1000-0x100f] has been reserved
>>> [    0.316052] system 00:04: [io  0x5000-0x5003] has been reserved
>>> [    0.316092] system 00:04: [io  0xffff] has been reserved
>>> [    0.316132] system 00:04: [io  0x0400-0x0453] could not be reserved
>>> [    0.316173] system 00:04: [io  0x0458-0x047f] has been reserved
>>> [    0.316214] system 00:04: [io  0x0500-0x057f] has been reserved
>>> [    0.316254] system 00:04: [io  0x0a00-0x0a0f] has been reserved
>>> [    0.316295] system 00:04: [io  0x164e-0x164f] has been reserved
>>> [    0.316336] system 00:04: [io  0x5000-0x500f] could not be reserved
>>> [    0.316378] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
>>> [    0.316428] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
>>> [    0.316520] system 00:06: [io  0x0454-0x0457] has been reserved
>>> [    0.316563] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
>>> [    0.316622] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
>>> [    0.316706] pnp 00:08: Plug and Play ACPI device, IDs ETD0b00 SYN0002 PNP0f13 (active)
>>> [    0.317018] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
>>> [    0.317060] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
>>> [    0.317103] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
>>> [    0.317144] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
>>> [    0.317186] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
>>> [    0.317228] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
>>> [    0.317270] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
>>> [    0.317323] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
>>> [    0.317366] system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
>>> [    0.317409] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
>>> [    0.317452] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
>>> [    0.318148] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
>>> [    0.318188] pnp: PnP ACPI: found 11 devices
>>> [    0.318225] ACPI: bus type PNP unregistered
>>> [    0.326319] pci 0000:00:1c.0: PCI bridge to [bus 01]
>>> [    0.326364] pci 0000:00:1c.0:   bridge window [mem 0xf0600000-0xf06fffff]
>>> [    0.326415] pci 0000:00:1c.3: PCI bridge to [bus 02]
>>> [    0.326455] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
>>> [    0.326503] pci 0000:00:1c.3:   bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
>>> [    0.326564] pci 0000:00:1c.4: PCI bridge to [bus 03]
>>> [    0.326606] pci 0000:00:1c.4:   bridge window [mem 0xf0500000-0xf05fffff]
>>> [    0.327078] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
>>> [    0.327081] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
>>> [    0.327083] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
>>> [    0.327085] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfeafffff]
>>> [    0.327086] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
>>> [    0.327089] pci_bus 0000:01: resource 1 [mem 0xf0600000-0xf06fffff]
>>> [    0.327091] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
>>> [    0.327093] pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf04fffff 64bit pref]
>>> [    0.327096] pci_bus 0000:03: resource 1 [mem 0xf0500000-0xf05fffff]
>>> [    0.327231] NET: Registered protocol family 2
>>> [    0.327613] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
>>> [    0.327849] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes)
>>> [    0.328179] TCP: Hash tables configured (established 32768 bind 32768)
>>> [    0.328479] TCP: reno registered
>>> [    0.328531] UDP hash table entries: 2048 (order: 5, 196608 bytes)
>>> [    0.328635] UDP-Lite hash table entries: 2048 (order: 5, 196608 bytes)
>>> [    0.328931] NET: Registered protocol family 1
>>> [    0.328987] pci 0000:00:02.0: Boot video device
>>> [    0.329779] PCI: CLS 64 bytes, default 64
>>> [    0.329991] Trying to unpack rootfs image as initramfs...
>>> [    0.405840] Freeing initrd memory: 3356K (ffff880037962000 - ffff880037ca9000)
>>> [    0.405900] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
>>> [    0.405942] software IO TLB [mem 0xd5c9f000-0xd9c9f000] (64MB) mapped at [ffff8800d5c9f000-ffff8800d9c9efff]
>>> [    0.406372] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x28
>>> [    0.406420] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x28
>>> [    0.406471] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x28
>>> [    0.406522] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x28
>>> [    0.406649] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
>>> [    0.406707] Scanning for low memory corruption every 60 seconds
>>> [    0.407346] Initialise module verification
>>> [    0.407446] audit: initializing netlink socket (disabled)
>>> [    0.407507] type=2000 audit(1374746275.392:1): initialized
>>> [    0.437565] bounce pool size: 64 pages
>>> [    0.438126] HugeTLB registered 2 MB page size, pre-allocated 0 pages
>>> [    0.438842] VFS: Disk quotas dquot_6.5.2
>>> [    0.438919] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
>>> [    0.439788] fuse init (API version 7.22)
>>> [    0.439932] msgmni has been set to 7698
>>> [    0.440631] Key type asymmetric registered
>>> [    0.440671] Asymmetric key parser 'x509' registered
>>> [    0.440757] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
>>> [    0.440865] io scheduler noop registered
>>> [    0.440903] io scheduler deadline registered (default)
>>> [    0.440977] io scheduler cfq registered
>>> [    0.441451] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
>>> [    0.441532] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
>>> [    0.441719] intel_idle: MWAIT substates: 0x21120
>>> [    0.441720] intel_idle: v0.4 model 0x2A
>>> [    0.441722] intel_idle: lapic_timer_reliable_states 0xffffffff
>>> [    0.442453] ACPI: AC Adapter [ADP1] (on-line)
>>> [    0.442779] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
>>> [    0.443049] ACPI: Lid Switch [LID0]
>>> [    0.443158] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
>>> [    0.443224] ACPI: Power Button [PWRB]
>>> [    0.443330] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
>>> [    0.443386] ACPI: Power Button [PWRF]
>>> [    0.443521] ACPI: Fan [FAN0] (off)
>>> [    0.443609] ACPI: Fan [FAN1] (off)
>>> [    0.443693] ACPI: Fan [FAN2] (off)
>>> [    0.443778] ACPI: Fan [FAN3] (off)
>>> [    0.443868] ACPI: Fan [FAN4] (off)
>>> [    0.443984] ACPI: Requesting acpi_cpufreq
>>> [    0.447411] thermal LNXTHERM:00: registered as thermal_zone0
>>> [    0.447452] ACPI: Thermal Zone [TZ00] (63 C)
>>> [    0.447859] thermal LNXTHERM:01: registered as thermal_zone1
>>> [    0.447898] ACPI: Thermal Zone [TZ01] (30 C)
>>> [    0.447984] GHES: HEST is not enabled!
>>> [    0.448239] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
>>> [    0.452068] Linux agpgart interface v0.103
>>> [    0.454664] ACPI: Battery Slot [BAT1] (battery present)
>>> [    0.455065] brd: module loaded
>>> [    0.456511] loop: module loaded
>>> [    0.456771] mei_me 0000:00:16.0: setting latency timer to 64
>>> [    0.456815] mei_me 0000:00:16.0: irq 40 for MSI/MSI-X
>>> [    0.460853] ahci 0000:00:1f.2: version 3.0
>>> [    0.461031] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
>>> [    0.461266] ahci: SSS flag set, parallel bus scan disabled
>>> [    0.477329] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1b impl SATA mode
>>> [    0.477398] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pio slum part ems sxs apst
>>> [    0.477458] ahci 0000:00:1f.2: setting latency timer to 64
>>> [    0.502183] scsi0 : ahci
>>> [    0.502509] scsi1 : ahci
>>> [    0.502758] scsi2 : ahci
>>> [    0.503007] scsi3 : ahci
>>> [    0.503272] scsi4 : ahci
>>> [    0.503528] scsi5 : ahci
>>> [    0.503666] ata1: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708100 irq 41
>>> [    0.503722] ata2: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708180 irq 41
>>> [    0.503775] ata3: DUMMY
>>> [    0.503809] ata4: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708280 irq 41
>>> [    0.503863] ata5: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708300 irq 41
>>> [    0.503917] ata6: DUMMY
>>> [    0.504943] libphy: Fixed MDIO Bus: probed
>>> [    0.505271] tun: Universal TUN/TAP device driver, 1.6
>>> [    0.505309] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
>>> [    0.505459] PPP generic driver version 2.4.2
>>> [    0.505627] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
>>> [    0.505669] ehci_hcd: block sizes: qh 112 qtd 96 itd 192 sitd 96
>>> [    0.505676] ehci-pci: EHCI PCI platform driver
>>> [    0.505921] ehci-pci 0000:00:1a.0: setting latency timer to 64
>>> [    0.505931] ehci-pci 0000:00:1a.0: EHCI Host Controller
>>> [    0.505976] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
>>> [    0.506049] ehci-pci 0000:00:1a.0: debug port 2
>>> [    0.506090] ehci-pci 0000:00:1a.0: reset hcs_params 0x200002 dbg=2 cc=0 pcc=0 ordered !ppc ports=2
>>> [    0.506094] ehci-pci 0000:00:1a.0: reset hcc_params 36881 caching frame 1024 64 bit addr
>>> [    0.506132] ehci-pci 0000:00:1a.0: reset command 0080002 (park)=0 ithresh=8 period=1024 Reset HALT
>>> [    0.510011] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
>>> [    0.510013] ehci-pci 0000:00:1a.0: supports USB remote wakeup
>>> [    0.510056] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf070a000
>>> [    0.510097] ehci-pci 0000:00:1a.0: init command 0010001 (park)=0 ithresh=1 period=1024 RUN
>>> [    0.521250] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
>>> [    0.521391] usb usb1: default language 0x0409
>>> [    0.521414] usb usb1: udev 1, busnum 1, minor = 0
>>> [    0.521416] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
>>> [    0.521456] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>>> [    0.521508] usb usb1: Product: EHCI Host Controller
>>> [    0.521545] usb usb1: Manufacturer: Linux 3.11.0-rc2-next20130725-1-iniza-small ehci_hcd
>>> [    0.521598] usb usb1: SerialNumber: 0000:00:1a.0
>>> [    0.521808] usb usb1: usb_probe_device
>>> [    0.521811] usb usb1: configuration #1 chosen from 1 choice
>>> [    0.521822] usb usb1: adding 1-0:1.0 (config #1, interface 0)
>>> [    0.521855] hub 1-0:1.0: usb_probe_interface
>>> [    0.521857] hub 1-0:1.0: usb_probe_interface - got id
>>> [    0.521860] hub 1-0:1.0: USB hub found
>>> [    0.521902] hub 1-0:1.0: 2 ports detected
>>> [    0.521938] hub 1-0:1.0: standalone hub
>>> [    0.521939] hub 1-0:1.0: no power switching (usb 1.0)
>>> [    0.521941] hub 1-0:1.0: individual port over-current protection
>>> [    0.521942] hub 1-0:1.0: power on to power good time: 20ms
>>> [    0.521948] hub 1-0:1.0: local power source is good
>>> [    0.522003] hub 1-0:1.0: trying to enable port power on non-switchable hub
>>> [    0.522294] ehci-pci 0000:00:1d.0: setting latency timer to 64
>>> [    0.522301] ehci-pci 0000:00:1d.0: EHCI Host Controller
>>> [    0.522346] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
>>> [    0.522419] ehci-pci 0000:00:1d.0: debug port 2
>>> [    0.522458] ehci-pci 0000:00:1d.0: reset hcs_params 0x200002 dbg=2 cc=0 pcc=0 ordered !ppc ports=2
>>> [    0.522462] ehci-pci 0000:00:1d.0: reset hcc_params 36881 caching frame 1024 64 bit addr
>>> [    0.522497] ehci-pci 0000:00:1d.0: reset command 0080002 (park)=0 ithresh=8 period=1024 Reset HALT
>>> [    0.526387] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
>>> [    0.526389] ehci-pci 0000:00:1d.0: supports USB remote wakeup
>>> [    0.526435] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf0709000
>>> [    0.526476] ehci-pci 0000:00:1d.0: init command 0010001 (park)=0 ithresh=1 period=1024 RUN
>>> [    0.537238] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
>>> [    0.537363] usb usb2: default language 0x0409
>>> [    0.537384] usb usb2: udev 1, busnum 2, minor = 128
>>> [    0.537386] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
>>> [    0.537426] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>>> [    0.537479] usb usb2: Product: EHCI Host Controller
>>> [    0.537516] usb usb2: Manufacturer: Linux 3.11.0-rc2-next20130725-1-iniza-small ehci_hcd
>>> [    0.537569] usb usb2: SerialNumber: 0000:00:1d.0
>>> [    0.537770] usb usb2: usb_probe_device
>>> [    0.537773] usb usb2: configuration #1 chosen from 1 choice
>>> [    0.537784] usb usb2: adding 2-0:1.0 (config #1, interface 0)
>>> [    0.537816] hub 2-0:1.0: usb_probe_interface
>>> [    0.537818] hub 2-0:1.0: usb_probe_interface - got id
>>> [    0.537820] hub 2-0:1.0: USB hub found
>>> [    0.537862] hub 2-0:1.0: 2 ports detected
>>> [    0.537898] hub 2-0:1.0: standalone hub
>>> [    0.537900] hub 2-0:1.0: no power switching (usb 1.0)
>>> [    0.537901] hub 2-0:1.0: individual port over-current protection
>>> [    0.537903] hub 2-0:1.0: power on to power good time: 20ms
>>> [    0.537908] hub 2-0:1.0: local power source is good
>>> [    0.537961] hub 2-0:1.0: trying to enable port power on non-switchable hub
>>> [    0.538045] ehci-platform: EHCI generic platform driver
>>> [    0.538106] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
>>> [    0.538146] ohci_hcd: block sizes: ed 80 td 96
>>> [    0.538152] ohci-pci: OHCI PCI platform driver
>>> [    0.538208] ohci-platform: OHCI generic platform driver
>>> [    0.538259] uhci_hcd: USB Universal Host Controller Interface driver
>>> [    0.538551] xhci_hcd 0000:03:00.0: xHCI Host Controller
>>> [    0.538596] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 3
>>> [    0.548360] xhci_hcd 0000:03:00.0: supports USB remote wakeup
>>> [    0.548394] xhci_hcd 0000:03:00.0: irq 42 for MSI/MSI-X
>>> [    0.548401] xhci_hcd 0000:03:00.0: irq 43 for MSI/MSI-X
>>> [    0.548409] xhci_hcd 0000:03:00.0: irq 44 for MSI/MSI-X
>>> [    0.548415] xhci_hcd 0000:03:00.0: irq 45 for MSI/MSI-X
>>> [    0.548421] xhci_hcd 0000:03:00.0: irq 46 for MSI/MSI-X
>>> [    0.548670] usb usb3: default language 0x0409
>>> [    0.548681] usb usb3: udev 1, busnum 3, minor = 256
>>> [    0.548683] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
>>> [    0.548723] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>>> [    0.548775] usb usb3: Product: xHCI Host Controller
>>> [    0.548812] usb usb3: Manufacturer: Linux 3.11.0-rc2-next20130725-1-iniza-small xhci_hcd
>>> [    0.548866] usb usb3: SerialNumber: 0000:03:00.0
>>> [    0.549011] usb usb3: usb_probe_device
>>> [    0.549014] usb usb3: configuration #1 chosen from 1 choice
>>> [    0.549019] xHCI xhci_add_endpoint called for root hub
>>> [    0.549020] xHCI xhci_check_bandwidth called for root hub
>>> [    0.549026] usb usb3: adding 3-0:1.0 (config #1, interface 0)
>>> [    0.549052] hub 3-0:1.0: usb_probe_interface
>>> [    0.549054] hub 3-0:1.0: usb_probe_interface - got id
>>> [    0.549056] hub 3-0:1.0: USB hub found
>>> [    0.549101] hub 3-0:1.0: 2 ports detected
>>> [    0.549154] hub 3-0:1.0: standalone hub
>>> [    0.549155] hub 3-0:1.0: no power switching (usb 1.0)
>>> [    0.549157] hub 3-0:1.0: individual port over-current protection
>>> [    0.549158] hub 3-0:1.0: Single TT
>>> [    0.549159] hub 3-0:1.0: TT requires at most 8 FS bit times (666 ns)
>>> [    0.549161] hub 3-0:1.0: power on to power good time: 20ms
>>> [    0.549166] hub 3-0:1.0: local power source is good
>>> [    0.549201] hub 3-0:1.0: trying to enable port power on non-switchable hub
>>> [    0.549263] xhci_hcd 0000:03:00.0: xHCI Host Controller
>>> [    0.549304] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 4
>>> [    0.549363] xhci_hcd 0000:03:00.0: supports USB remote wakeup
>>> [    0.549395] usb usb4: skipped 1 descriptor after endpoint
>>> [    0.549400] usb usb4: default language 0x0409
>>> [    0.549410] usb usb4: udev 1, busnum 4, minor = 384
>>> [    0.549412] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
>>> [    0.549452] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
>>> [    0.549503] usb usb4: Product: xHCI Host Controller
>>> [    0.549540] usb usb4: Manufacturer: Linux 3.11.0-rc2-next20130725-1-iniza-small xhci_hcd
>>> [    0.549594] usb usb4: SerialNumber: 0000:03:00.0
>>> [    0.549735] usb usb4: usb_probe_device
>>> [    0.549737] usb usb4: configuration #1 chosen from 1 choice
>>> [    0.549741] xHCI xhci_add_endpoint called for root hub
>>> [    0.549742] xHCI xhci_check_bandwidth called for root hub
>>> [    0.549747] usb usb4: adding 4-0:1.0 (config #1, interface 0)
>>> [    0.549774] hub 4-0:1.0: usb_probe_interface
>>> [    0.549776] hub 4-0:1.0: usb_probe_interface - got id
>>> [    0.549778] hub 4-0:1.0: USB hub found
>>> [    0.549822] hub 4-0:1.0: 2 ports detected
>>> [    0.549857] hub 4-0:1.0: standalone hub
>>> [    0.549859] hub 4-0:1.0: no power switching (usb 1.0)
>>> [    0.549860] hub 4-0:1.0: individual port over-current protection
>>> [    0.549861] hub 4-0:1.0: TT requires at most 8 FS bit times (666 ns)
>>> [    0.549863] hub 4-0:1.0: power on to power good time: 20ms
>>> [    0.549867] hub 4-0:1.0: local power source is good
>>> [    0.549900] hub 4-0:1.0: trying to enable port power on non-switchable hub
>>> [    0.561355] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:EPAD] at 0x60,0x64 irq 1,12
>>> [    0.567846] serio: i8042 KBD port at 0x60,0x64 irq 1
>>> [    0.567889] serio: i8042 AUX port at 0x60,0x64 irq 12
>>> [    0.568165] mousedev: PS/2 mouse device common for all mice
>>> [    0.568681] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
>>> [    0.568761] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
>>> [    0.568972] device-mapper: uevent: version 1.0.3
>>> [    0.569176] device-mapper: ioctl: 4.25.0-ioctl (2013-06-26) initialised: dm-devel@redhat.com
>>> [    0.569246] Intel P-state driver initializing.
>>> [    0.569296] Intel pstate controlling: cpu 0
>>> [    0.569399] Intel pstate controlling: cpu 1
>>> [    0.569461] Intel pstate controlling: cpu 2
>>> [    0.569527] Intel pstate controlling: cpu 3
>>> [    0.569639] ledtrig-cpu: registered to indicate activity on CPUs
>>> [    0.570030] ashmem: initialized
>>> [    0.570285] TCP: cubic registered
>>> [    0.570571] NET: Registered protocol family 10
>>> [    0.571156] NET: Registered protocol family 17
>>> [    0.571215] Key type dns_resolver registered
>>> [    0.571822] PM: Hibernation image not present or could not be loaded.
>>> [    0.571834] Loading module verification certificates
>>> [    0.573261] MODSIGN: Loaded cert 'Magrathea: Glacier signing key: 16008e29484acf95da468dc31e20a211acb2ef48'
>>> [    0.573359] registered taskstats version 1
>>> [    0.576772] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
>>> [    0.578196] Key type trusted registered
>>> [    0.585701] Key type encrypted registered
>>> [    0.592543] rtc_cmos 00:05: setting system clock to 2013-07-25 09:57:55 UTC (1374746275)
>>> [    0.593213] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
>>> [    0.593265] EDD information not available.
>>> [    0.621210] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001803 0  ACK POWER sig=j CSC CONNECT
>>> [    0.621226] hub 1-0:1.0: port 1: status 0501 change 0001
>>> [    0.637202] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001803 0  ACK POWER sig=j CSC CONNECT
>>> [    0.637219] hub 2-0:1.0: port 1: status 0501 change 0001
>>> [    0.649269] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [    0.649289] hub 4-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [    0.649304] hub 3-0:1.0: hub_suspend
>>> [    0.649313] usb usb3: bus auto-suspend, wakeup 1
>>> [    0.649362] hub 4-0:1.0: hub_suspend
>>> [    0.649367] usb usb4: bus auto-suspend, wakeup 1
>>> [    0.658062] usb usb4: usb wakeup-resume
>>> [    0.658074] usb usb4: usb auto-resume
>>> [    0.669168] hub 4-0:1.0: hub_resume
>>> [    0.669199] hub 4-0:1.0: port 1: status 0203 change 0001
>>> [    0.721189] hub 1-0:1.0: state 7 ports 2 chg 0002 evt 0000
>>> [    0.721217] hub 1-0:1.0: port 1, status 0501, change 0000, 480 Mb/s
>>> [    0.777315] ehci-pci 0000:00:1a.0: port 1 reset complete, port enabled
>>> [    0.777328] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
>>> [    0.821061] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
>>> [    0.822363] ata1.00: ATA-8: Hitachi HTS545050A7E380, GG2OA6C0, max UDMA/133
>>> [    0.822443] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
>>> [    0.823879] ata1.00: configured for UDMA/133
>>> [    0.824406] scsi 0:0:0:0: Direct-Access     ATA      Hitachi HTS54505 GG2O PQ: 0 ANSI: 5
>>> [    0.825095] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
>>> [    0.825128] sd 0:0:0:0: Attached scsi generic sg0 type 0
>>> [    0.825261] sd 0:0:0:0: [sda] 4096-byte physical blocks
>>> [    0.825713] sd 0:0:0:0: [sda] Write Protect is off
>>> [    0.825785] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
>>> [    0.826024] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
>>> [    0.833004] usb 1-1: new high-speed USB device number 2 using ehci-pci
>>> [    0.835513]  sda: sda1 sda2 sda3
>>> [    0.836845] sd 0:0:0:0: [sda] Attached SCSI disk
>>> [    0.889237] ehci-pci 0000:00:1a.0: port 1 reset complete, port enabled
>>> [    0.889250] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
>>> [    0.965675] usb 1-1: udev 2, busnum 1, minor = 1
>>> [    0.965686] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
>>> [    0.965761] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
>>> [    0.966184] usb 1-1: usb_probe_device
>>> [    0.966195] usb 1-1: configuration #1 chosen from 1 choice
>>> [    0.966420] usb 1-1: adding 1-1:1.0 (config #1, interface 0)
>>> [    0.966513] hub 1-1:1.0: usb_probe_interface
>>> [    0.966519] hub 1-1:1.0: usb_probe_interface - got id
>>> [    0.966527] hub 1-1:1.0: USB hub found
>>> [    0.966772] hub 1-1:1.0: 6 ports detected
>>> [    0.967398] hub 1-1:1.0: standalone hub
>>> [    0.967402] hub 1-1:1.0: individual port power switching
>>> [    0.967406] hub 1-1:1.0: individual port over-current protection
>>> [    0.967409] hub 1-1:1.0: Single TT
>>> [    0.967414] hub 1-1:1.0: TT requires at most 8 FS bit times (666 ns)
>>> [    0.967418] hub 1-1:1.0: power on to power good time: 100ms
>>> [    0.967918] hub 1-1:1.0: local power source is good
>>> [    0.968382] hub 1-1:1.0: enabling power on all ports
>>> [    0.969646] hub 2-0:1.0: state 7 ports 2 chg 0002 evt 0000
>>> [    0.969666] hub 2-0:1.0: port 1, status 0501, change 0000, 480 Mb/s
>>> [    1.025139] ehci-pci 0000:00:1d.0: port 1 reset complete, port enabled
>>> [    1.025155] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
>>> [    1.069332] hub 1-1:1.0: port 2: status 0101 change 0001
>>> [    1.070078] hub 1-1:1.0: port 4: status 0101 change 0001
>>> [    1.080883] usb 2-1: new high-speed USB device number 2 using ehci-pci
>>> [    1.137059] ehci-pci 0000:00:1d.0: port 1 reset complete, port enabled
>>> [    1.137075] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
>>> [    1.144831] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
>>> [    1.145508] ata2.00: ATA-8: SanDisk iSSD P4 16GB, SSD 9.14, max UDMA/133
>>> [    1.145587] ata2.00: 31277232 sectors, multi 1: LBA48
>>> [    1.146337] ata2.00: configured for UDMA/133
>>> [    1.146886] scsi 1:0:0:0: Direct-Access     ATA      SanDisk iSSD P4  SSD  PQ: 0 ANSI: 5
>>> [    1.147429] sd 1:0:0:0: [sdb] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
>>> [    1.147490] sd 1:0:0:0: Attached scsi generic sg1 type 0
>>> [    1.147836] sd 1:0:0:0: [sdb] Write Protect is off
>>> [    1.147906] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
>>> [    1.147964] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
>>> [    1.149378]  sdb: sdb1 sdb2
>>> [    1.150424] sd 1:0:0:0: [sdb] Attached SCSI disk
>>> [    1.168808] usb 1-1: link qh256-0001/ffff880118bda0c0 start 1 [1/0 us]
>>> [    1.213499] usb 2-1: udev 2, busnum 2, minor = 129
>>> [    1.213511] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
>>> [    1.213586] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
>>> [    1.214009] usb 2-1: usb_probe_device
>>> [    1.214020] usb 2-1: configuration #1 chosen from 1 choice
>>> [    1.214253] usb 2-1: adding 2-1:1.0 (config #1, interface 0)
>>> [    1.214339] hub 2-1:1.0: usb_probe_interface
>>> [    1.214345] hub 2-1:1.0: usb_probe_interface - got id
>>> [    1.214352] hub 2-1:1.0: USB hub found
>>> [    1.214588] hub 2-1:1.0: 6 ports detected
>>> [    1.214661] hub 2-1:1.0: standalone hub
>>> [    1.214666] hub 2-1:1.0: individual port power switching
>>> [    1.214670] hub 2-1:1.0: individual port over-current protection
>>> [    1.214673] hub 2-1:1.0: Single TT
>>> [    1.214678] hub 2-1:1.0: TT requires at most 8 FS bit times (666 ns)
>>> [    1.214681] hub 2-1:1.0: power on to power good time: 100ms
>>> [    1.214901] hub 2-1:1.0: local power source is good
>>> [    1.215438] hub 2-1:1.0: enabling power on all ports
>>> [    1.216469] hub 4-0:1.0: state 7 ports 2 chg 0002 evt 0000
>>> [    1.216492] hub 4-0:1.0: port 1, status 0203, change 0000, 5.0 Gb/s
>>> [    1.313920] hub 2-1:1.0: port 5: status 0101 change 0001
>>> [    1.332337] usb 4-1: new SuperSpeed USB device number 2 using xhci_hcd
>>> [    1.345259] usb 4-1: Parent hub missing LPM exit latency info.  Power management will be impacted.
>>> [    1.345721] usb 4-1: skipped 1 descriptor after endpoint
>>> [    1.345729] usb 4-1: skipped 1 descriptor after endpoint
>>> [    1.345886] usb 4-1: default language 0x0409
>>> [    1.346333] usb 4-1: udev 2, busnum 4, minor = 385
>>> [    1.346342] usb 4-1: New USB device found, idVendor=174c, idProduct=55aa
>>> [    1.346418] usb 4-1: New USB device strings: Mfr=2, Product=3, SerialNumber=1
>>> [    1.346492] usb 4-1: Product: MEDION HDDrive-n-GO
>>> [    1.346558] usb 4-1: Manufacturer: MEDION
>>> [    1.346623] usb 4-1: SerialNumber: 3180000000000000092C
>>> [    1.347018] usb 4-1: usb_probe_device
>>> [    1.347025] usb 4-1: configuration #1 chosen from 1 choice
>>> [    1.348103] usb 4-1: Successful Endpoint Configure command
>>> [    1.348195] usb 4-1: adding 4-1:1.0 (config #1, interface 0)
>>> [    1.348429] hub 1-1:1.0: state 7 ports 6 chg 0014 evt 0000
>>> [    1.348633] hub 1-1:1.0: port 2, status 0101, change 0000, 12 Mb/s
>>> [    1.404641] tsc: Refined TSC clocksource calibration: 1596.374 MHz
>>> [    1.412667] usb 2-1: link qh256-0001/ffff88011872acc0 start 1 [1/0 us]
>>> [    1.420854] usb 1-1.2: new low-speed USB device number 3 using ehci-pci
>>> [    1.464601] ata4: SATA link down (SStatus 0 SControl 300)
>>> [    1.515914] usb 1-1.2: skipped 1 descriptor after interface
>>> [    1.516463] usb 1-1.2: default language 0x0409
>>> [    1.518901] usb 1-1.2: udev 3, busnum 1, minor = 2
>>> [    1.518911] usb 1-1.2: New USB device found, idVendor=046d, idProduct=c00e
>>> [    1.518987] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
>>> [    1.519076] usb 1-1.2: Product: USB-PS/2 Optical Mouse
>>> [    1.519142] usb 1-1.2: Manufacturer: Logitech
>>> [    1.519576] usb 1-1.2: usb_probe_device
>>> [    1.519587] usb 1-1.2: configuration #1 chosen from 1 choice
>>> [    1.520136] usb 1-1.2: adding 1-1.2:1.0 (config #1, interface 0)
>>> [    1.520460] hub 1-1:1.0: port 4, status 0101, change 0000, 12 Mb/s
>>> [    1.592724] usb 1-1.4: new high-speed USB device number 4 using ehci-pci
>>> [    1.784375] ata5: SATA link down (SStatus 0 SControl 300)
>>> [    1.787614] Freeing unused kernel memory: 1332K (ffffffff81d07000 - ffffffff81e54000)
>>> [    1.787710] Write protecting the kernel read-only data: 12288k
>>> [    1.793705] Freeing unused kernel memory: 1060K (ffff8800016f7000 - ffff880001800000)
>>> [    1.798786] Freeing unused kernel memory: 964K (ffff880001b0f000 - ffff880001c00000)
>>> [    1.834231] usb 1-1.4: skipped 1 descriptor after configuration
>>> [    1.834239] usb 1-1.4: skipped 5 descriptors after interface
>>> [    1.834244] usb 1-1.4: skipped 1 descriptor after endpoint
>>> [    1.834247] usb 1-1.4: skipped 23 descriptors after interface
>>> [    1.836335] usb 1-1.4: default language 0x0409
>>> [    1.838923] udevd[122]: starting version 175
>>> [    1.848329] usb 1-1.4: udev 4, busnum 1, minor = 3
>>> [    1.848338] usb 1-1.4: New USB device found, idVendor=2232, idProduct=1018
>>> [    1.848409] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
>>> [    1.848473] usb 1-1.4: Product: WebCam SC-13HDL11431N
>>> [    1.848516] usb 1-1.4: Manufacturer: 123
>>> [    1.848776] usb 1-1.4: usb_probe_device
>>> [    1.848784] usb 1-1.4: configuration #1 chosen from 1 choice
>>> [    1.849987] usb 1-1.4: adding 1-1.4:1.0 (config #1, interface 0)
>>> [    1.981985] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
>>> [    1.982077] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
>>> [    1.982465] r8169 0000:02:00.0: irq 47 for MSI/MSI-X
>>> [    1.982901] r8169 0000:02:00.0 eth0: RTL8168evl/8111evl at 0xffffc90000620000, e8:03:9a:36:17:a9, XID 0c900800 IRQ 47
>>> [    1.982968] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
>>> [    1.983886] usb-storage 4-1:1.0: usb_probe_interface
>>> [    1.983898] usb-storage 4-1:1.0: usb_probe_interface - got id
>>> [    1.983904] usb-storage 4-1:1.0: USB Mass Storage device detected
>>> [    1.984130] scsi6 : usb-storage 4-1:1.0
>>> [    1.985684] usbcore: registered new interface driver usb-storage
>>> [    2.020897] usb 1-1.4: adding 1-1.4:1.1 (config #1, interface 1)
>>> [    2.021303] hub 2-1:1.0: state 7 ports 6 chg 0020 evt 0000
>>> [    2.021433] hub 2-1:1.0: port 5, status 0101, change 0000, 12 Mb/s
>>> [    2.043531] hidraw: raw HID events driver (C) Jiri Kosina
>>> [    2.048320] usbhid 1-1.2:1.0: usb_probe_interface
>>> [    2.048325] usbhid 1-1.2:1.0: usb_probe_interface - got id
>>> [    2.051194] usbcore: registered new interface driver usbhid
>>> [    2.051236] usbhid: USB HID core driver
>>> [    2.055112] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input4
>>> [    2.055465] hid-generic 0003:046D:C00E.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1a.0-1.2/input0
>>> [    2.092339] usb 2-1.5: new full-speed USB device number 3 using ehci-pci
>>> [    2.188853] usb 2-1.5: udev 3, busnum 2, minor = 130
>>> [    2.188863] usb 2-1.5: New USB device found, idVendor=8086, idProduct=0189
>>> [    2.188928] usb 2-1.5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
>>> [    2.189271] usb 2-1.5: usb_probe_device
>>> [    2.189279] usb 2-1.5: configuration #1 chosen from 1 choice
>>> [    2.189838] usb 2-1.5: adding 2-1.5:1.0 (config #1, interface 0)
>>> [    2.190123] usb 2-1.5: adding 2-1.5:1.1 (config #1, interface 1)
>>> [    2.190572] hub 1-1:1.0: state 7 ports 6 chg 0000 evt 0010
>>> [    2.190699] hub 2-1:1.0: state 7 ports 6 chg 0000 evt 0020
>>> [    2.404228] Switched to clocksource tsc
>>> [    2.942151] EXT4-fs (loop0): mounted filesystem with ordered data mode. Opts: (null)
>>> [    2.984038] scsi 6:0:0:0: Direct-Access     ASMT     2105             0    PQ: 0 ANSI: 6
>>> [    2.984852] sd 6:0:0:0: Attached scsi generic sg2 type 0
>>> [    2.984979] sd 6:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
>>> [    2.985526] sd 6:0:0:0: [sdc] Write Protect is off
>>> [    2.985593] sd 6:0:0:0: [sdc] Mode Sense: 43 00 00 00
>>> [    2.986055] sd 6:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
>>> [    2.989223]  sdc: sdc1 sdc2 sdc3
>>> [    2.991487] sd 6:0:0:0: [sdc] Attached SCSI disk
>>> [   14.821390] Adding 262140k swap on /host/ubuntu/disks/swap.disk.  Priority:-1 extents:1 across:262140k FS
>>> [   14.835400] EXT4-fs (loop0): re-mounted. Opts: errors=remount-ro
>>> [   14.893353] udevd[616]: starting version 175
>>> [   15.048184] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130626/utaddress-251)
>>> [   15.048195] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
>>> [   15.048201] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130626/utaddress-251)
>>> [   15.048207] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
>>> [   15.048209] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130626/utaddress-251)
>>> [   15.048214] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
>>> [   15.048217] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130626/utaddress-251)
>>> [   15.048222] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
>>> [   15.048225] lpc_ich: Resource conflict(s) found affecting gpio_ich
>>> [   15.326256] lp: driver loaded but no devices found
>>> [   15.422530] cfg80211: Calling CRDA to update world regulatory domain
>>> [   15.430531] cfg80211: World regulatory domain updated:
>>> [   15.430535] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
>>> [   15.430538] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
>>> [   15.430540] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
>>> [   15.430541] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
>>> [   15.430543] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
>>> [   15.430544] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
>>> [   15.488605] wmi: Mapper loaded
>>> [   15.501002] samsung_laptop: detected SABI interface: SwSmi@
>>> [   15.501008] samsung_laptop: Backlight controlled by ACPI video driver
>>> [   15.766590] ppdev: user-space parallel port driver
>>> [   15.887623] Bluetooth: Core ver 2.16
>>> [   15.887677] NET: Registered protocol family 31
>>> [   15.887680] Bluetooth: HCI device and connection manager initialized
>>> [   15.887697] Bluetooth: HCI socket layer initialized
>>> [   15.887710] Bluetooth: L2CAP socket layer initialized
>>> [   15.887738] Bluetooth: SCO socket layer initialized
>>> [   15.926642] type=1400 audit(1374739090.843:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=746 comm="apparmor_parser"
>>> [   15.927443] type=1400 audit(1374739090.843:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=746 comm="apparmor_parser"
>>> [   15.927973] type=1400 audit(1374739090.843:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=746 comm="apparmor_parser"
>>> [   15.928870] type=1400 audit(1374739090.843:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=860 comm="apparmor_parser"
>>> [   15.929478] type=1400 audit(1374739090.843:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=860 comm="apparmor_parser"
>>> [   15.929941] type=1400 audit(1374739090.843:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=860 comm="apparmor_parser"
>>> [   15.932941] Linux video capture interface: v2.00
>>> [   15.999279] init: failsafe main process (979) killed by TERM signal
>>> [   16.092980] type=1400 audit(1374739091.007:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=1096 comm="apparmor_parser"
>>> [   16.093582] type=1400 audit(1374739091.007:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1096 comm="apparmor_parser"
>>> [   16.093948] type=1400 audit(1374739091.007:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1096 comm="apparmor_parser"
>>> [   16.172489] [drm] Initialized drm 1.1.0 20060810
>>> [   16.474523] btusb 2-1.5:1.0: usb_probe_interface
>>> [   16.474530] btusb 2-1.5:1.0: usb_probe_interface - got id
>>> [   16.475149] usbcore: registered new interface driver btusb
>>> [   16.475597] usb 2-1.5: link qh1-0e01/ffff8800bb6e0640 start 0 [1/2 us]
>>> [   16.490149] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
>>> [   16.490155] Bluetooth: BNEP filters: protocol multicast
>>> [   16.490176] Bluetooth: BNEP socket layer initialized
>>> [   16.491475] Bluetooth: RFCOMM TTY layer initialized
>>> [   16.491500] Bluetooth: RFCOMM socket layer initialized
>>> [   16.491502] Bluetooth: RFCOMM ver 1.11
>>> [   16.504603] Intel(R) Wireless WiFi driver for Linux, in-tree:d
>>> [   16.504608] Copyright(c) 2003-2013 Intel Corporation
>>> [   16.504677] iwlwifi 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
>>> [   16.504998] iwlwifi 0000:01:00.0: irq 48 for MSI/MSI-X
>>> [   16.703971] type=1400 audit(1374739091.619:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm/lightdm-guest-session-wrapper" pid=1095 comm="apparmor_parser"
>>> [   16.748837] iwlwifi 0000:01:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
>>> [   17.012977] uvcvideo 1-1.4:1.0: usb_probe_interface
>>> [   17.012984] uvcvideo 1-1.4:1.0: usb_probe_interface - got id
>>> [   17.013021] uvcvideo: Found UVC 1.00 device WebCam SC-13HDL11431N (2232:1018)
>>> [   17.032351] input: WebCam SC-13HDL11431N as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input5
>>> [   17.032588] usbcore: registered new interface driver uvcvideo
>>> [   17.032592] USB Video Class driver (1.1.1)
>>> [   17.035212] usb 1-1.4: link qh16-0001/ffff8800bb6e08c0 start 2 [1/0 us]
>>> [   17.035279] usb 1-1.4: unlink qh16-0001/ffff8800bb6e08c0 start 2 [1/0 us]
>>> [   17.122627] [drm] Memory usable by graphics device = 2048M
>>> [   17.122639] i915 0000:00:02.0: setting latency timer to 64
>>> [   17.164740] BUG: spinlock bad magic on CPU#3, modprobe/635
>>> [   17.164797]  lock: 0xffff8800bc534040, .magic: 00000000, .owner: <none>/-1, .owner_cpu: 0
>>> [   17.164856] CPU: 3 PID: 635 Comm: modprobe Not tainted 3.11.0-rc2-next20130725-1-iniza-small #1
>>> [   17.164914] Hardware name: SAMSUNG ELECTRONICS CO., LTD. 530U3BI/530U4BI/530U4BH/530U3BI/530U4BI/530U4BH, BIOS 13XK 03/28/2013
>>> [   17.164977]  0000000000000000 ffff8800c0fa1738 ffffffff816ddfc9 0000000000000007
>>> [   17.165101]  ffff8800bc534040 ffff8800c0fa1758 ffffffff816de065 ffff8800bc534040
>>> [   17.165222]  ffffffff81a5f497 ffff8800c0fa1778 ffffffff816de08b ffff8800bc534040
>>> [   17.165345] Call Trace:
>>> [   17.165386]  [<ffffffff816ddfc9>] dump_stack+0x46/0x58
>>> [   17.165428]  [<ffffffff816de065>] spin_dump+0x8a/0x8f
>>> [   17.165469]  [<ffffffff816de08b>] spin_bug+0x21/0x26
>>> [   17.165511]  [<ffffffff813787c4>] do_raw_spin_lock+0x84/0x120
>>> [   17.165554]  [<ffffffff816e6db4>] _raw_spin_lock_irqsave+0x24/0x30
>>> [   17.165620]  [<ffffffffa037a456>] i915_write32+0x36/0x150 [i915]
>>> [   17.165690]  [<ffffffffa03cf4c5>] intel_disable_gt_powersave+0xf5/0x360 [i915]
>>> [   17.165768]  [<ffffffffa03d1129>] intel_gt_sanitize+0x49/0xb0 [i915]
>>> [   17.165827]  [<ffffffffa037dd68>] i915_driver_load+0x638/0xed0 [i915]
>>> [   17.165886]  [<ffffffffa01b4b91>] drm_get_pci_dev+0x181/0x2a0 [drm]
>>> [   17.165929]  [<ffffffff813788fd>] ? do_raw_spin_unlock+0x5d/0xb0
>>> [   17.165987]  [<ffffffffa03796f6>] i915_pci_probe+0x36/0x70 [i915]
>>> [   17.166031]  [<ffffffff813973ab>] local_pci_probe+0x4b/0x80
>>> [   17.166073]  [<ffffffff81398c81>] pci_device_probe+0x101/0x120
>>> [   17.166115]  [<ffffffff8147599b>] driver_probe_device+0x7b/0x240
>>> [   17.166158]  [<ffffffff81475c0b>] __driver_attach+0xab/0xb0
>>> [   17.166200]  [<ffffffff81475b60>] ? driver_probe_device+0x240/0x240
>>> [   17.166244]  [<ffffffff81473c7e>] bus_for_each_dev+0x5e/0x90
>>> [   17.166286]  [<ffffffff8147549e>] driver_attach+0x1e/0x20
>>> [   17.166330]  [<ffffffff81474f94>] bus_add_driver+0x104/0x270
>>> [   17.166372]  [<ffffffff8147616d>] driver_register+0x7d/0x160
>>> [   17.166415]  [<ffffffff81397c04>] __pci_register_driver+0x64/0x70
>>> [   17.166460]  [<ffffffffa0446000>] ? 0xffffffffa0445fff
>>> [   17.166510]  [<ffffffffa01b4dca>] drm_pci_init+0x11a/0x130 [drm]
>>> [   17.166553]  [<ffffffffa0446000>] ? 0xffffffffa0445fff
>>> [   17.166610]  [<ffffffffa0446066>] i915_init+0x66/0x68 [i915]
>>> [   17.166652]  [<ffffffff8100207e>] do_one_initcall+0x4e/0x180
>>> [   17.166696]  [<ffffffff81058453>] ? set_memory_nx+0x43/0x50
>>> [   17.166742]  [<ffffffff810d111c>] load_module+0x209c/0x25b0
>>> [   17.166784]  [<ffffffff810cdd40>] ? show_initstate+0x50/0x50
>>> [   17.166827]  [<ffffffff810d16dc>] SyS_init_module+0xac/0xd0
>>> [   17.166871]  [<ffffffff816efdef>] tracesys+0xe1/0xe6
>>> [   17.167649] i915 0000:00:02.0: irq 49 for MSI/MSI-X
>>> [   17.167709] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
>>> [   17.167753] [drm] Driver supports precise vblank timestamp query.
>>> [   17.168036] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
>>> [   17.179048] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUG enabled
>>> [   17.179101] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
>>> [   17.179144] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
>>> [   17.179188] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_P2P disabled
>>> [   17.179231] iwlwifi 0000:01:00.0: Detected Intel(R) Centrino(R) Advanced-N 6230 AGN, REV=0xB0
>>> [   17.179403] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
>>> [   17.191305] [drm] Wrong MCH_SSKPD value: 0x16040307
>>> [   17.191548] [drm] This can cause pipe underruns and display issues.
>>> [   17.191806] [drm] Please upgrade your BIOS to fix this.
>>> [   17.200113] init: alsa-restore main process (1175) terminated with status 19
>>> [   17.204370] usb 1-1.2: link qh8-0e01/ffff8800bb6e09c0 start 3 [1/2 us]
>>> [   17.209295] fbcon: inteldrmfb (fb0) is primary device
>>> [   17.225544] usb 1-1.2: unlink qh8-0e01/ffff8800bb6e09c0 start 3 [1/2 us]
>>> [   17.231718] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
>>> [   17.252830] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
>>> [   17.259547] iwlwifi 0000:01:00.0: Radio type=0x1-0x2-0x0
>>> [   17.372778] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f00)
>>> [   17.387876] psmouse serio1: elantech: Synaptics capabilities query result 0x08, 0x17, 0x0c.
>>> [   17.465514] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input6
>>> [   17.534384] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
>>> [   17.541018] iwlwifi 0000:01:00.0: Radio type=0x1-0x2-0x0
>>> [   17.621870] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
>>> [   18.259707] Console: switching to colour frame buffer device 170x48
>>> [   18.266630] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
>>> [   18.266633] i915 0000:00:02.0: registered panic notifier
>>> [   18.283546] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
>>> [   18.284027] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input7
>>> [   18.284665] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
>>> [   18.285158] snd_hda_intel 0000:00:1b.0: irq 50 for MSI/MSI-X
>>> [   18.315840] init: plymouth-splash main process (1307) terminated with status 1
>>> [   18.360521] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
>>> [   18.360902] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
>>> [   18.361148] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
>>> [   18.804651] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
>>> [   18.835847] init: plymouth-stop pre-start process (1460) terminated with status 1
>>> [   19.032359] usb 1-1.4: usb auto-suspend, wakeup 0
>>> [   19.454465] ehci-pci 0000:00:1a.0: reused qh ffff8800bb6e09c0 schedule
>>> [   19.454474] usb 1-1.2: link qh8-0e01/ffff8800bb6e09c0 start 3 [1/2 us]
>>> [   23.880493] wlan0: authenticate with 00:04:0e:e4:00:3d
>>> [   23.885372] wlan0: send auth to 00:04:0e:e4:00:3d (try 1/3)
>>> [   23.889197] wlan0: authenticated
>>> [   23.889481] iwlwifi 0000:01:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
>>> [   23.889489] iwlwifi 0000:01:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
>>> [   23.892677] wlan0: associate with 00:04:0e:e4:00:3d (try 1/3)
>>> [   23.896209] wlan0: RX AssocResp from 00:04:0e:e4:00:3d (capab=0x411 status=0 aid=1)
>>> [   23.904647] wlan0: associated
>>> [   23.904785] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
>>> [   26.811180] usb usb3: usb auto-resume
>>> [   26.811203] hub 3-0:1.0: hub_resume
>>> [   26.811255] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   26.811272] hub 3-0:1.0: hub_suspend
>>> [   26.811322] usb usb3: bus auto-suspend, wakeup 1
>>> [   26.811348] usb usb3: usb auto-resume
>>> [   26.822556] hub 3-0:1.0: hub_resume
>>> [   26.822599] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   26.822614] hub 3-0:1.0: hub_suspend
>>> [   26.822620] usb usb3: bus auto-suspend, wakeup 1
>>> [   26.823224] usb 1-1.4: usb auto-resume
>>> [   26.860474] hub 1-1:1.0: state 7 ports 6 chg 0000 evt 0010
>>> [   26.870688] usb 1-1.4: finish resume
>>> [   27.063824] usb usb3: usb auto-resume
>>> [   27.063857] hub 3-0:1.0: hub_resume
>>> [   27.063902] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.063916] hub 3-0:1.0: hub_suspend
>>> [   27.063926] usb usb3: bus auto-suspend, wakeup 1
>>> [   27.064033] usb usb3: usb auto-resume
>>> [   27.074484] hub 3-0:1.0: hub_resume
>>> [   27.074567] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.074593] hub 3-0:1.0: hub_suspend
>>> [   27.074603] usb usb3: bus auto-suspend, wakeup 1
>>> [   27.096339] usb usb3: usb auto-resume
>>> [   27.096362] hub 3-0:1.0: hub_resume
>>> [   27.096426] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.096478] hub 3-0:1.0: hub_suspend
>>> [   27.096486] usb usb3: bus auto-suspend, wakeup 1
>>> [   27.127343] usb usb3: usb auto-resume
>>> [   27.127371] hub 3-0:1.0: hub_resume
>>> [   27.127409] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.127446] hub 3-0:1.0: hub_suspend
>>> [   27.127457] usb usb3: bus auto-suspend, wakeup 1
>>> [   27.127550] usb usb3: usb auto-resume
>>> [   27.138409] hub 3-0:1.0: hub_resume
>>> [   27.138452] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.138469] hub 3-0:1.0: hub_suspend
>>> [   27.138475] usb usb3: bus auto-suspend, wakeup 1
>>> [   27.201295] usb usb3: usb auto-resume
>>> [   27.201317] hub 3-0:1.0: hub_resume
>>> [   27.201343] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.201360] hub 3-0:1.0: hub_suspend
>>> [   27.201366] usb usb3: bus auto-suspend, wakeup 1
>>> [   27.201412] usb usb3: usb auto-resume
>>> [   27.210287] hub 3-0:1.0: hub_resume
>>> [   27.210318] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.210332] hub 3-0:1.0: hub_suspend
>>> [   27.210341] usb usb3: bus auto-suspend, wakeup 1
>>> [   27.228182] usb usb3: usb auto-resume
>>> [   27.228206] hub 3-0:1.0: hub_resume
>>> [   27.228258] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.228277] hub 3-0:1.0: hub_suspend
>>> [   27.228283] usb usb3: bus auto-suspend, wakeup 1
>>> [   27.228315] usb usb3: usb auto-resume
>>> [   27.242307] hub 3-0:1.0: hub_resume
>>> [   27.242443] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.242454] hub 3-0:1.0: hub_suspend
>>> [   27.242462] usb usb3: bus auto-suspend, wakeup 1
>>> [   27.273418] usb usb3: usb auto-resume
>>> [   27.273448] hub 3-0:1.0: hub_resume
>>> [   27.273491] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.273516] hub 3-0:1.0: hub_suspend
>>> [   27.273525] usb usb3: bus auto-suspend, wakeup 1
>>> [   27.273651] usb usb3: usb auto-resume
>>> [   27.282292] hub 3-0:1.0: hub_resume
>>> [   27.282339] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.282358] hub 3-0:1.0: hub_suspend
>>> [   27.282365] usb usb3: bus auto-suspend, wakeup 1
>>> [   27.400359] usb usb3: usb auto-resume
>>> [   27.400381] hub 3-0:1.0: hub_resume
>>> [   27.400413] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.400433] hub 3-0:1.0: hub_suspend
>>> [   27.400442] usb usb3: bus auto-suspend, wakeup 1
>>> [   27.400466] usb usb3: usb auto-resume
>>> [   27.410186] hub 3-0:1.0: hub_resume
>>> [   27.410224] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.410244] hub 3-0:1.0: hub_suspend
>>> [   27.410250] usb usb3: bus auto-suspend, wakeup 1
>>> [   27.419258] usb usb3: usb auto-resume
>>> [   27.430132] hub 3-0:1.0: hub_resume
>>> [   27.430192] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.430202] hub 3-0:1.0: hub_suspend
>>> [   27.430209] usb usb3: bus auto-suspend, wakeup 1
>>> [   27.430257] usb usb3: usb auto-resume
>>> [   27.442204] hub 3-0:1.0: hub_resume
>>> [   27.442283] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.442323] hub 3-0:1.0: hub_suspend
>>> [   27.442333] usb usb3: bus auto-suspend, wakeup 1
>>> [   27.796527] usb usb3: usb auto-resume
>>> [   27.796551] hub 3-0:1.0: hub_resume
>>> [   27.796589] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.796618] hub 3-0:1.0: hub_suspend
>>> [   27.796627] usb usb3: bus auto-suspend, wakeup 1
>>> [   27.796690] usb usb3: usb auto-resume
>>> [   27.805868] hub 3-0:1.0: hub_resume
>>> [   27.805914] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.805936] hub 3-0:1.0: hub_suspend
>>> [   27.805952] usb usb3: bus auto-suspend, wakeup 1
>>> [   27.967943] usb usb3: usb auto-resume
>>> [   27.967968] hub 3-0:1.0: hub_resume
>>> [   27.968002] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.968017] hub 3-0:1.0: hub_suspend
>>> [   27.968026] usb usb3: bus auto-suspend, wakeup 1
>>> [   27.968092] usb usb3: usb auto-resume
>>> [   27.977808] hub 3-0:1.0: hub_resume
>>> [   27.977829] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   27.977847] hub 3-0:1.0: hub_suspend
>>> [   27.977852] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.045543] usb usb3: usb auto-resume
>>> [   29.045567] hub 3-0:1.0: hub_resume
>>> [   29.046607] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.046625] hub 3-0:1.0: hub_suspend
>>> [   29.046649] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.061941] usb usb3: usb auto-resume
>>> [   29.061964] hub 3-0:1.0: hub_resume
>>> [   29.061990] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.061999] hub 3-0:1.0: hub_suspend
>>> [   29.062005] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.062051] usb usb3: usb auto-resume
>>> [   29.072964] hub 3-0:1.0: hub_resume
>>> [   29.072992] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.073015] hub 3-0:1.0: hub_suspend
>>> [   29.073023] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.075768] usb usb3: usb auto-resume
>>> [   29.084950] hub 3-0:1.0: hub_resume
>>> [   29.084978] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.084999] hub 3-0:1.0: hub_suspend
>>> [   29.085005] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.085063] usb usb3: usb auto-resume
>>> [   29.096946] hub 3-0:1.0: hub_resume
>>> [   29.097028] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.097046] hub 3-0:1.0: hub_suspend
>>> [   29.097055] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.157013] usb usb3: usb auto-resume
>>> [   29.157035] hub 3-0:1.0: hub_resume
>>> [   29.157064] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.157083] hub 3-0:1.0: hub_suspend
>>> [   29.157092] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.157122] usb usb3: usb auto-resume
>>> [   29.168928] hub 3-0:1.0: hub_resume
>>> [   29.168958] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.168983] hub 3-0:1.0: hub_suspend
>>> [   29.168991] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.169754] usb usb3: usb auto-resume
>>> [   29.180939] hub 3-0:1.0: hub_resume
>>> [   29.180970] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.180996] hub 3-0:1.0: hub_suspend
>>> [   29.181004] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.181064] usb usb3: usb auto-resume
>>> [   29.192882] hub 3-0:1.0: hub_resume
>>> [   29.192919] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.192936] hub 3-0:1.0: hub_suspend
>>> [   29.192942] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.194966] usb usb3: usb auto-resume
>>> [   29.204890] hub 3-0:1.0: hub_resume
>>> [   29.204920] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.204950] hub 3-0:1.0: hub_suspend
>>> [   29.204958] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.205018] usb usb3: usb auto-resume
>>> [   29.216918] hub 3-0:1.0: hub_resume
>>> [   29.216979] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.217006] hub 3-0:1.0: hub_suspend
>>> [   29.217012] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.219358] usb usb3: usb auto-resume
>>> [   29.228865] hub 3-0:1.0: hub_resume
>>> [   29.228903] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.228935] hub 3-0:1.0: hub_suspend
>>> [   29.228943] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.229022] usb usb3: usb auto-resume
>>> [   29.240964] hub 3-0:1.0: hub_resume
>>> [   29.240998] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.241016] hub 3-0:1.0: hub_suspend
>>> [   29.241023] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.253457] usb usb3: usb auto-resume
>>> [   29.253478] hub 3-0:1.0: hub_resume
>>> [   29.253507] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.253524] hub 3-0:1.0: hub_suspend
>>> [   29.253530] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.253559] usb usb3: usb auto-resume
>>> [   29.264861] hub 3-0:1.0: hub_resume
>>> [   29.264924] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.264942] hub 3-0:1.0: hub_suspend
>>> [   29.264949] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.282357] usb usb3: usb auto-resume
>>> [   29.282378] hub 3-0:1.0: hub_resume
>>> [   29.282434] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.282464] hub 3-0:1.0: hub_suspend
>>> [   29.282471] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.283178] usb usb3: usb auto-resume
>>> [   29.292838] hub 3-0:1.0: hub_resume
>>> [   29.292909] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.292925] hub 3-0:1.0: hub_suspend
>>> [   29.292932] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.292951] usb usb3: usb auto-resume
>>> [   29.304821] hub 3-0:1.0: hub_resume
>>> [   29.304854] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.304865] hub 3-0:1.0: hub_suspend
>>> [   29.304873] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.370015] usb usb3: usb auto-resume
>>> [   29.370040] hub 3-0:1.0: hub_resume
>>> [   29.370082] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.370105] hub 3-0:1.0: hub_suspend
>>> [   29.370112] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.370178] usb usb3: usb auto-resume
>>> [   29.384874] hub 3-0:1.0: hub_resume
>>> [   29.384919] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.384929] hub 3-0:1.0: hub_suspend
>>> [   29.384936] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.395757] usb usb3: usb auto-resume
>>> [   29.404879] hub 3-0:1.0: hub_resume
>>> [   29.404950] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.404972] hub 3-0:1.0: hub_suspend
>>> [   29.404980] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.405007] usb usb3: usb auto-resume
>>> [   29.416725] hub 3-0:1.0: hub_resume
>>> [   29.416791] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.416810] hub 3-0:1.0: hub_suspend
>>> [   29.416817] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.436482] usb usb3: usb auto-resume
>>> [   29.436504] hub 3-0:1.0: hub_resume
>>> [   29.436548] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.436567] hub 3-0:1.0: hub_suspend
>>> [   29.436574] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.436607] usb usb3: usb auto-resume
>>> [   29.444715] hub 3-0:1.0: hub_resume
>>> [   29.444756] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.444865] hub 3-0:1.0: hub_suspend
>>> [   29.444874] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.469110] usb usb3: usb auto-resume
>>> [   29.469133] hub 3-0:1.0: hub_resume
>>> [   29.469162] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.469188] hub 3-0:1.0: hub_suspend
>>> [   29.469197] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.469246] usb usb3: usb auto-resume
>>> [   29.480715] hub 3-0:1.0: hub_resume
>>> [   29.480756] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.480767] hub 3-0:1.0: hub_suspend
>>> [   29.480776] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.508566] usb usb3: usb auto-resume
>>> [   29.508587] hub 3-0:1.0: hub_resume
>>> [   29.508614] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.508657] hub 3-0:1.0: hub_suspend
>>> [   29.508665] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.508734] usb usb3: usb auto-resume
>>> [   29.520724] hub 3-0:1.0: hub_resume
>>> [   29.520777] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.520833] hub 3-0:1.0: hub_suspend
>>> [   29.520841] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.567465] usb usb3: usb auto-resume
>>> [   29.567488] hub 3-0:1.0: hub_resume
>>> [   29.567517] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.567538] hub 3-0:1.0: hub_suspend
>>> [   29.567547] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.567578] usb usb3: usb auto-resume
>>> [   29.576622] hub 3-0:1.0: hub_resume
>>> [   29.577036] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.577054] hub 3-0:1.0: hub_suspend
>>> [   29.577062] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.609135] usb usb3: usb auto-resume
>>> [   29.609157] hub 3-0:1.0: hub_resume
>>> [   29.609205] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.609223] hub 3-0:1.0: hub_suspend
>>> [   29.609229] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.609257] usb usb3: usb auto-resume
>>> [   29.620625] hub 3-0:1.0: hub_resume
>>> [   29.620665] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.620679] hub 3-0:1.0: hub_suspend
>>> [   29.620688] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.623757] usb usb3: usb auto-resume
>>> [   29.632606] hub 3-0:1.0: hub_resume
>>> [   29.632662] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.632684] hub 3-0:1.0: hub_suspend
>>> [   29.632692] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.632760] usb usb3: usb auto-resume
>>> [   29.644675] hub 3-0:1.0: hub_resume
>>> [   29.644752] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.644770] hub 3-0:1.0: hub_suspend
>>> [   29.644777] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.676740] usb usb3: usb auto-resume
>>> [   29.676763] hub 3-0:1.0: hub_resume
>>> [   29.676822] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.676855] hub 3-0:1.0: hub_suspend
>>> [   29.676862] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.680015] usb usb3: usb auto-resume
>>> [   29.688588] hub 3-0:1.0: hub_resume
>>> [   29.688647] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.688679] hub 3-0:1.0: hub_suspend
>>> [   29.688685] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.688753] usb usb3: usb auto-resume
>>> [   29.700526] hub 3-0:1.0: hub_resume
>>> [   29.700562] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.700576] hub 3-0:1.0: hub_suspend
>>> [   29.700586] usb usb3: bus auto-suspend, wakeup 1
>>> [   29.718301] usb usb3: usb auto-resume
>>> [   29.718325] hub 3-0:1.0: hub_resume
>>> [   29.718390] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   29.718447] hub 3-0:1.0: hub_suspend
>>> [   29.718453] usb usb3: bus auto-suspend, wakeup 1
>>> [   30.748649] usb usb3: usb auto-resume
>>> [   30.748672] hub 3-0:1.0: hub_resume
>>> [   30.748734] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   30.748763] hub 3-0:1.0: hub_suspend
>>> [   30.748770] usb usb3: bus auto-suspend, wakeup 1
>>> [   31.055854] usb usb3: usb auto-resume
>>> [   31.055876] hub 3-0:1.0: hub_resume
>>> [   31.055937] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   31.055980] hub 3-0:1.0: hub_suspend
>>> [   31.055987] usb usb3: bus auto-suspend, wakeup 1
>>> [   31.080654] usb usb3: usb auto-resume
>>> [   31.080678] hub 3-0:1.0: hub_resume
>>> [   31.080742] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   31.080771] hub 3-0:1.0: hub_suspend
>>> [   31.080777] usb usb3: bus auto-suspend, wakeup 1
>>> [   31.083985] usb usb3: usb auto-resume
>>> [   31.095670] hub 3-0:1.0: hub_resume
>>> [   31.095732] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   31.095782] hub 3-0:1.0: hub_suspend
>>> [   31.095791] usb usb3: bus auto-suspend, wakeup 1
>>> [   31.095891] usb usb3: usb auto-resume
>>> [   31.107609] hub 3-0:1.0: hub_resume
>>> [   31.107687] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   31.107711] hub 3-0:1.0: hub_suspend
>>> [   31.107720] usb usb3: bus auto-suspend, wakeup 1
>>> [   31.111427] usb usb3: usb auto-resume
>>> [   31.119549] hub 3-0:1.0: hub_resume
>>> [   31.119618] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   31.119639] hub 3-0:1.0: hub_suspend
>>> [   31.119647] usb usb3: bus auto-suspend, wakeup 1
>>> [   31.119677] usb usb3: usb auto-resume
>>> [   31.131619] hub 3-0:1.0: hub_resume
>>> [   31.131700] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   31.131728] hub 3-0:1.0: hub_suspend
>>> [   31.131737] usb usb3: bus auto-suspend, wakeup 1
>>> [   31.175652] usb usb3: usb auto-resume
>>> [   31.175683] hub 3-0:1.0: hub_resume
>>> [   31.175775] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   31.175819] hub 3-0:1.0: hub_suspend
>>> [   31.175831] usb usb3: bus auto-suspend, wakeup 1
>>> [   31.175872] usb usb3: usb auto-resume
>>> [   31.187562] hub 3-0:1.0: hub_resume
>>> [   31.187670] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   31.187705] hub 3-0:1.0: hub_suspend
>>> [   31.187718] usb usb3: bus auto-suspend, wakeup 1
>>> [   31.194530] usb usb3: usb auto-resume
>>> [   31.203589] hub 3-0:1.0: hub_resume
>>> [   31.203663] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   31.203704] hub 3-0:1.0: hub_suspend
>>> [   31.203714] usb usb3: bus auto-suspend, wakeup 1
>>> [   31.203808] usb usb3: usb auto-resume
>>> [   31.215553] hub 3-0:1.0: hub_resume
>>> [   31.215639] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   31.215668] hub 3-0:1.0: hub_suspend
>>> [   31.215678] usb usb3: bus auto-suspend, wakeup 1
>>> [   31.343711] usb usb3: usb auto-resume
>>> [   31.343735] hub 3-0:1.0: hub_resume
>>> [   31.343770] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   31.343809] hub 3-0:1.0: hub_suspend
>>> [   31.343818] usb usb3: bus auto-suspend, wakeup 1
>>> [   31.343895] usb usb3: usb auto-resume
>>> [   31.355437] hub 3-0:1.0: hub_resume
>>> [   31.355482] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
>>> [   31.355507] hub 3-0:1.0: hub_suspend
>>> [   31.355521] usb usb3: bus auto-suspend, wakeup 1
>>> [   33.805755] usb 1-1.4: usb auto-suspend, wakeup 0
>>> [   40.596137] EXT4-fs (sdc3): mounted filesystem with ordered data mode. Opts: (null)
>>> [   40.619552] EXT4-fs (sdc1): mounted filesystem with ordered data mode. Opts: (null)
>>> [   55.836469] usb 2-1.5: unlink qh1-0e01/ffff8800bb6e0640 start 0 [1/2 us]
>>> [   56.040578] hub 2-1:1.0: state 7 ports 6 chg 0000 evt 0020
>>> [   56.040843] hub 2-1:1.0: port 5, status 0100, change 0001, 12 Mb/s
>>> [   56.040852] usb 2-1.5: USB disconnect, device number 3
>>> [   56.040856] usb 2-1.5: unregistering device
>>> [   56.040860] usb 2-1.5: unregistering interface 2-1.5:1.0
>>> [   56.041687] usb 2-1.5: unregistering interface 2-1.5:1.1
>>> [   56.041854] usb 2-1.5: usb_disable_device nuking all URBs
>>> [   56.167563] hub 2-1:1.0: debounce: port 5: total 100ms stable 100ms status 0x100
>>> [   56.167592] hub 2-1:1.0: hub_suspend
>>> [   56.167602] usb 2-1: unlink qh256-0001/ffff88011872acc0 start 1 [1/0 us]
>>> [   56.169859] usb 2-1: usb auto-suspend, wakeup 1
>>> [   56.183306] hub 2-0:1.0: hub_suspend
>>> [   56.183323] usb usb2: bus auto-suspend, wakeup 1
>>> [   56.183327] ehci-pci 0000:00:1d.0: suspend root hub
>>> _______________________________________________
>>> Intel-gfx mailing list
>>> Intel-gfx@lists.freedesktop.org
>>> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
>>
>> --
>> Jani Nikula, Intel Open Source Technology Center
Jani Nikula July 25, 2013, 10:21 a.m. UTC | #3
On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> On Thu, Jul 25, 2013 at 12:02 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>> On Thu, Jul 25, 2013 at 11:44 AM, Jani Nikula
>> <jani.nikula@linux.intel.com> wrote:
>>> On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>>>> On Thu, Jul 25, 2013 at 7:12 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>>>>> Hi all,
>>>>>
>>>>> Changes since 20130724:
>>>>>
>>>>> Removed tree:
>>>>>         arm-dt (at maintainer's request)
>>>>>
>>>>> The wireless-next tree lost its build failure and gained a conflict
>>>>> against Linus' tree.
>>>>>
>>>>> The tty tree lost its build failure.
>>>>>
>>>>> The staging tree gained a build failure for which I disabled a driver.
>>>>>
>>>>> ----------------------------------------------------------------------------
>>>>>
>>>>
>>>> [ CCing drm and drm-intel folks ]
>>>>
>>>> With today's next-20130725 I see the following:
>>>
>>> Use of dev_priv->gt_lock in I915_WRITE through
>>> intel_disable_gt_powersave before spin lock init, caused by
>>>
>>> commit 181d1b9e31c668259d3798c521672afb8edd355c
>>> Author: Daniel Vetter <daniel.vetter@ffwll.ch>
>>> Date:   Sun Jul 21 13:16:24 2013 +0200
>>>
>>>     drm/i915: fix up gt init sequence fallout
>>>
>>
>> Ah, cool.
>>
>> I assumed/tested "drm/i915: fix the racy object accounting", but this
>> does not fix it.
>> Will try with yours.
>>
>
> Sorry, Jani.
>
> next-20130725 ships the patch you pointed, too.

Confused. I meant that the above mentioned commit "drm/i915: fix up gt
init sequence fallout" causes the problem. The patch I included in my
mail should fix it. Could you try that please?

BR,
Jani.



>
> - Sedat -
>
> [1] http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/log/?id=next-20130725&qt=grep&q=drm%2Fi915%3A+fix+up+gt+init+sequence+fallout
> [2] http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=181d1b9e31c668259d3798c521672afb8edd355c
>
Sedat Dilek July 25, 2013, 10:37 a.m. UTC | #4
On Thu, Jul 25, 2013 at 12:21 PM, Jani Nikula
<jani.nikula@linux.intel.com> wrote:
> On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>> On Thu, Jul 25, 2013 at 12:02 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>>> On Thu, Jul 25, 2013 at 11:44 AM, Jani Nikula
>>> <jani.nikula@linux.intel.com> wrote:
>>>> On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>>>>> On Thu, Jul 25, 2013 at 7:12 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>>>>>> Hi all,
>>>>>>
>>>>>> Changes since 20130724:
>>>>>>
>>>>>> Removed tree:
>>>>>>         arm-dt (at maintainer's request)
>>>>>>
>>>>>> The wireless-next tree lost its build failure and gained a conflict
>>>>>> against Linus' tree.
>>>>>>
>>>>>> The tty tree lost its build failure.
>>>>>>
>>>>>> The staging tree gained a build failure for which I disabled a driver.
>>>>>>
>>>>>> ----------------------------------------------------------------------------
>>>>>>
>>>>>
>>>>> [ CCing drm and drm-intel folks ]
>>>>>
>>>>> With today's next-20130725 I see the following:
>>>>
>>>> Use of dev_priv->gt_lock in I915_WRITE through
>>>> intel_disable_gt_powersave before spin lock init, caused by
>>>>
>>>> commit 181d1b9e31c668259d3798c521672afb8edd355c
>>>> Author: Daniel Vetter <daniel.vetter@ffwll.ch>
>>>> Date:   Sun Jul 21 13:16:24 2013 +0200
>>>>
>>>>     drm/i915: fix up gt init sequence fallout
>>>>
>>>
>>> Ah, cool.
>>>
>>> I assumed/tested "drm/i915: fix the racy object accounting", but this
>>> does not fix it.
>>> Will try with yours.
>>>
>>
>> Sorry, Jani.
>>
>> next-20130725 ships the patch you pointed, too.
>
> Confused. I meant that the above mentioned commit "drm/i915: fix up gt
> init sequence fallout" causes the problem. The patch I included in my
> mail should fix it. Could you try that please?
>

[ Note2myself: Do not read half of the message... ]

The bad... Your patch needed some refresh against next-20130725 (guess
it's against drm-intel-nightly).

The good... YES, your patch fixes the issue for me!

The ugly... /me.

Feel free to add my:

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

Thanks for the quick fix!

- Sedat -

- Sedat -

> BR,
> Jani.
>
>
>
>>
>> - Sedat -
>>
>> [1] http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/log/?id=next-20130725&qt=grep&q=drm%2Fi915%3A+fix+up+gt+init+sequence+fallout
>> [2] http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=181d1b9e31c668259d3798c521672afb8edd355c
>>
>
> --
> Jani Nikula, Intel Open Source Technology Center
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.11.0-rc2-next20130725-4-iniza-small (sedat.dilek@gmail.com@fambox) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #1 SMP Thu Jul 25 12:31:29 CEST 2013
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz.next 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 [0x0204c000, 0x0204cfff] PGTABLE
[    0.000000] BRK [0x0204d000, 0x0204dfff] PGTABLE
[    0.000000] BRK [0x0204e000, 0x0204efff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x11fc00000-0x11fdfffff]
[    0.000000]  [mem 0x11fc00000-0x11fdfffff] page 2M
[    0.000000] BRK [0x0204f000, 0x0204ffff] 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 [0x02050000, 0x02050fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0xdafff000-0xdaffffff]
[    0.000000]  [mem 0xdafff000-0xdaffffff] page 4k
[    0.000000] RAMDISK: [mem 0x37962000-0x37ca8fff]
[    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 0x11fdf7000-0x11fdfbfff]
[    0.000000]  [ffffea0000000000-ffffea0003ffffff] PMD -> [ffff88011b400000-ffff88011edfffff] 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: 56 pages used for memmap
[    0.000000]   DMA zone: 156 pages reserved
[    0.000000]   DMA zone: 3996 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 12127 pages used for memmap
[    0.000000]   DMA32 zone: 886944 pages, LIFO batch:31
[    0.000000]   Normal zone: 1785 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: [mem 0x0009d000-0x0009dfff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x40000000-0x401fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xd9c9f000-0xdae7efff]
[    0.000000] PM: Registered nosave memory: [mem 0xdae7f000-0xdaf9efff]
[    0.000000] PM: Registered nosave memory: [mem 0xdaf9f000-0xdaffefff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb000000-0xdf9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xdfa00000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffd7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffd80000-0xffffffff]
[    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 29 pages/cpu @ffff88011fa00000 s87552 r8192 d23040 u262144
[    0.000000] pcpu-alloc: s87552 r8192 d23040 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: 1007376
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz.next root=UUID=001AADA61AAD9964 loop=/ubuntu/disks/root.disk ro
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    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: 3938460K/4086000K available (7119K kernel code, 1044K rwdata, 3132K rodata, 1332K init, 1984K bss, 147540K reserved)
[    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 VGA+ 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] ODEBUG: 0 of 0 active objects replaced
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.004000] tsc: Detected 1596.329 MHz processor
[    0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 3192.65 BogoMIPS (lpj=6385316)
[    0.000081] pid_max: default: 32768 minimum: 301
[    0.000247] Security Framework initialized
[    0.000305] AppArmor: AppArmor initialized
[    0.000342] Yama: becoming mindful.
[    0.000750] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.001859] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.002362] Mount-cache hash table entries: 256
[    0.002935] Initializing cgroup subsys memory
[    0.003037] Initializing cgroup subsys devices
[    0.003075] Initializing cgroup subsys freezer
[    0.003114] Initializing cgroup subsys blkio
[    0.003151] Initializing cgroup subsys perf_event
[    0.003191] Initializing cgroup subsys hugetlb
[    0.003280] Disabled fast string operations
[    0.003317] CPU: Physical Processor ID: 0
[    0.003354] CPU: Processor Core ID: 0
[    0.003393] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.003393] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.003460] mce: CPU supports 7 MCE banks
[    0.003511] CPU0: Thermal monitoring enabled (TM1)
[    0.003557] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
[    0.003557] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
[    0.003557] tlb_flushall_shift: 5
[    0.003730] Freeing SMP alternatives memory: 24K (ffffffff81e54000 - ffffffff81e5a000)
[    0.004817] ACPI: Core revision 20130626
[    0.015678] ACPI: All ACPI Tables successfully acquired
[    0.029612] ftrace: allocating 27065 entries in 106 pages
[    0.044962] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.084661] smpboot: CPU0: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz (fam: 06, model: 2a, stepping: 07)
[    0.085275] TSC deadline timer enabled
[    0.085287] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
[    0.085436] ... version:                3
[    0.085472] ... bit width:              48
[    0.085508] ... generic registers:      4
[    0.085545] ... value mask:             0000ffffffffffff
[    0.085583] ... max period:             0000ffffffffffff
[    0.085621] ... fixed-purpose events:   3
[    0.085657] ... event mask:             000000070000000f
[    0.098786] Disabled fast string operations
[    0.101971] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.113649] Disabled fast string operations
[    0.127360] Disabled fast string operations
[    0.087713] smpboot: Booting Node   0, Processors  #1 #2 #3
[    0.129493] Brought up 4 CPUs
[    0.129598] smpboot: Total of 4 processors activated (12770.63 BogoMIPS)
[    0.133689] devtmpfs: initialized
[    0.135740] EVM: security.selinux
[    0.135776] EVM: security.SMACK64
[    0.135810] EVM: security.capability
[    0.135933] PM: Registering ACPI NVS region [mem 0xdae7f000-0xdaf9efff] (1179648 bytes)
[    0.137498] regulator-dummy: no parameters
[    0.137688] NET: Registered protocol family 16
[    0.138029] cpuidle: using governor ladder
[    0.138065] cpuidle: using governor menu
[    0.138141] ACPI: bus type PCI registered
[    0.138290] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.138349] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.145118] PCI: Using configuration type 1 for base access
[    0.148522] bio: create slab <bio-0> at 0
[    0.148982] ACPI: Added _OSI(Module Device)
[    0.149020] ACPI: Added _OSI(Processor Device)
[    0.149057] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.149095] ACPI: Added _OSI(Processor Aggregator Device)
[    0.150956] ACPI: EC: Look up EC in DSDT
[    0.177335] ACPI: Executed 1 blocks of module-level executable AML code
[    0.183377] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.195072] ACPI: SSDT 00000000dae70718 00688 (v01  PmRef  Cpu0Cst 00003001 INTL 20061109)
[    0.195677] ACPI: Dynamic OEM Table Load:
[    0.195747] ACPI: SSDT           (null) 00688 (v01  PmRef  Cpu0Cst 00003001 INTL 20061109)
[    0.205774] ACPI: SSDT 00000000dae71a98 00303 (v01  PmRef    ApIst 00003000 INTL 20061109)
[    0.206458] ACPI: Dynamic OEM Table Load:
[    0.206528] ACPI: SSDT           (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20061109)
[    0.217684] ACPI: SSDT 00000000dae6fd98 00119 (v01  PmRef    ApCst 00003000 INTL 20061109)
[    0.218256] ACPI: Dynamic OEM Table Load:
[    0.218324] ACPI: SSDT           (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20061109)
[    0.231760] ACPI: Interpreter enabled
[    0.231811] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130626/hwxface-571)
[    0.231920] ACPI: (supports S0 S1 S3 S4 S5)
[    0.231957] ACPI: Using IOAPIC for interrupt routing
[    0.232050] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.232337] ACPI: No dock devices found.
[    0.256006] ACPI: Power Resource [FN00] (off)
[    0.256232] ACPI: Power Resource [FN01] (off)
[    0.256449] ACPI: Power Resource [FN02] (off)
[    0.256667] ACPI: Power Resource [FN03] (off)
[    0.256889] ACPI: Power Resource [FN04] (off)
[    0.258082] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.258460] \_SB_.PCI0:_OSC invalid UUID
[    0.258462] _OSC request data:1 8 0 
[    0.259429] PCI host bridge to bus 0000:00
[    0.259468] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.259509] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.259549] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.259590] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.259632] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfeafffff]
[    0.259673] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
[    0.259730] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
[    0.259883] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
[    0.259897] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit]
[    0.259904] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.259910] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    0.260092] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.260119] pci 0000:00:16.0: reg 0x10: [mem 0xf0705000-0xf070500f 64bit]
[    0.260205] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.260360] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[    0.260383] pci 0000:00:1a.0: reg 0x10: [mem 0xf070a000-0xf070a3ff]
[    0.260484] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.260590] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.260610] pci 0000:00:1b.0: reg 0x10: [mem 0xf0700000-0xf0703fff 64bit]
[    0.260689] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.260734] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.260840] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.260931] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.260980] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.261088] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
[    0.261177] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.261238] pci 0000:00:1c.3: System wakeup disabled by ACPI
[    0.261346] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[    0.261435] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.261568] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[    0.261592] pci 0000:00:1d.0: reg 0x10: [mem 0xf0709000-0xf07093ff]
[    0.261693] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.261798] pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
[    0.261994] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
[    0.262016] pci 0000:00:1f.2: reg 0x10: [io  0x3088-0x308f]
[    0.262026] pci 0000:00:1f.2: reg 0x14: [io  0x3094-0x3097]
[    0.262036] pci 0000:00:1f.2: reg 0x18: [io  0x3080-0x3087]
[    0.262046] pci 0000:00:1f.2: reg 0x1c: [io  0x3090-0x3093]
[    0.262056] pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
[    0.262066] pci 0000:00:1f.2: reg 0x24: [mem 0xf0708000-0xf07087ff]
[    0.262118] pci 0000:00:1f.2: PME# supported from D3hot
[    0.262234] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.262254] pci 0000:00:1f.3: reg 0x10: [mem 0xf0704000-0xf07040ff 64bit]
[    0.262277] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.262650] pci 0000:01:00.0: [8086:0091] type 00 class 0x028000
[    0.262847] pci 0000:01:00.0: reg 0x10: [mem 0xf0600000-0xf0601fff 64bit]
[    0.263584] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    0.263755] pci 0000:01:00.0: System wakeup disabled by ACPI
[    0.269641] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.269684] pci 0000:00:1c.0:   bridge window [mem 0xf0600000-0xf06fffff]
[    0.269863] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[    0.269933] pci 0000:02:00.0: reg 0x10: [io  0x2000-0x20ff]
[    0.270056] pci 0000:02:00.0: reg 0x18: [mem 0xf0404000-0xf0404fff 64bit pref]
[    0.270132] pci 0000:02:00.0: reg 0x20: [mem 0xf0400000-0xf0403fff 64bit pref]
[    0.270469] pci 0000:02:00.0: supports D1 D2
[    0.270471] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.270599] pci 0000:02:00.0: System wakeup disabled by ACPI
[    0.277561] pci 0000:00:1c.3: PCI bridge to [bus 02]
[    0.277624] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
[    0.277634] pci 0000:00:1c.3:   bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
[    0.277761] pci 0000:03:00.0: [1b21:1042] type 00 class 0x0c0330
[    0.277800] pci 0000:03:00.0: reg 0x10: [mem 0xf0500000-0xf0507fff 64bit]
[    0.277997] pci 0000:03:00.0: PME# supported from D3hot D3cold
[    0.285533] pci 0000:00:1c.4: PCI bridge to [bus 03]
[    0.285609] pci 0000:00:1c.4:   bridge window [mem 0xf0500000-0xf05fffff]
[    0.285792] \_SB_.PCI0:_OSC invalid UUID
[    0.285794] _OSC request data:1 1f 0 
[    0.285799] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[    0.285855] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
[    0.286833] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.287182] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.287575] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.287921] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.288267] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
[    0.288640] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.289032] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.289379] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
[    0.290271] ACPI: Enabled 4 GPEs in block 00 to 3F
[    0.290348] ACPI: \_SB_.PCI0: notify handler is installed
[    0.290410] Found 1 acpi root devices
[    0.290480] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.290835] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.290893] vgaarb: loaded
[    0.290927] vgaarb: bridge control possible 0000:00:02.0
[    0.291644] SCSI subsystem initialized
[    0.291681] ACPI: bus type ATA registered
[    0.291814] libata version 3.00 loaded.
[    0.291877] ACPI: bus type USB registered
[    0.291957] usbcore: registered new interface driver usbfs
[    0.292020] usbcore: registered new interface driver hub
[    0.292115] usbcore: registered new device driver usb
[    0.292505] PCI: Using ACPI for IRQ routing
[    0.294218] PCI: pci_cache_line_size set to 64 bytes
[    0.294329] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[    0.294332] e820: reserve RAM buffer [mem 0xd9c9f000-0xdbffffff]
[    0.294334] e820: reserve RAM buffer [mem 0xdb000000-0xdbffffff]
[    0.294336] e820: reserve RAM buffer [mem 0x11fe00000-0x11fffffff]
[    0.294579] NetLabel: Initializing
[    0.294615] NetLabel:  domain hash size = 128
[    0.294651] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.294735] NetLabel:  unlabeled traffic allowed by default
[    0.294863] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.295053] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.298119] Switched to clocksource hpet
[    0.315924] AppArmor: AppArmor Filesystem Enabled
[    0.316013] pnp: PnP ACPI init
[    0.316063] ACPI: bus type PNP registered
[    0.316500] pnp 00:00: [dma 4]
[    0.316544] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.316591] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
[    0.316759] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.316817] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.316896] system 00:04: [io  0x0680-0x069f] has been reserved
[    0.316939] system 00:04: [io  0x1000-0x100f] has been reserved
[    0.316979] system 00:04: [io  0x5000-0x5003] has been reserved
[    0.317020] system 00:04: [io  0xffff] has been reserved
[    0.317060] system 00:04: [io  0x0400-0x0453] could not be reserved
[    0.317101] system 00:04: [io  0x0458-0x047f] has been reserved
[    0.317142] system 00:04: [io  0x0500-0x057f] has been reserved
[    0.317182] system 00:04: [io  0x0a00-0x0a0f] has been reserved
[    0.317222] system 00:04: [io  0x164e-0x164f] has been reserved
[    0.317263] system 00:04: [io  0x5000-0x500f] could not be reserved
[    0.317305] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.317356] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.317447] system 00:06: [io  0x0454-0x0457] has been reserved
[    0.317489] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.317548] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.317632] pnp 00:08: Plug and Play ACPI device, IDs ETD0b00 SYN0002 PNP0f13 (active)
[    0.317943] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.317986] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.318028] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.318070] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.318122] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.318164] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.318206] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.318248] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.318291] system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
[    0.318333] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.318376] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.319066] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.319105] pnp: PnP ACPI: found 11 devices
[    0.319143] ACPI: bus type PNP unregistered
[    0.327255] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.327300] pci 0000:00:1c.0:   bridge window [mem 0xf0600000-0xf06fffff]
[    0.327351] pci 0000:00:1c.3: PCI bridge to [bus 02]
[    0.327392] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
[    0.327438] pci 0000:00:1c.3:   bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
[    0.327500] pci 0000:00:1c.4: PCI bridge to [bus 03]
[    0.327542] pci 0000:00:1c.4:   bridge window [mem 0xf0500000-0xf05fffff]
[    0.328011] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.328013] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.328015] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.328017] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfeafffff]
[    0.328019] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
[    0.328021] pci_bus 0000:01: resource 1 [mem 0xf0600000-0xf06fffff]
[    0.328023] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.328026] pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf04fffff 64bit pref]
[    0.328028] pci_bus 0000:03: resource 1 [mem 0xf0500000-0xf05fffff]
[    0.328164] NET: Registered protocol family 2
[    0.328574] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
[    0.328811] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes)
[    0.329138] TCP: Hash tables configured (established 32768 bind 32768)
[    0.329437] TCP: reno registered
[    0.329490] UDP hash table entries: 2048 (order: 5, 196608 bytes)
[    0.329594] UDP-Lite hash table entries: 2048 (order: 5, 196608 bytes)
[    0.329891] NET: Registered protocol family 1
[    0.329947] pci 0000:00:02.0: Boot video device
[    0.330733] PCI: CLS 64 bytes, default 64
[    0.330943] Trying to unpack rootfs image as initramfs...
[    0.407502] Freeing initrd memory: 3356K (ffff880037962000 - ffff880037ca9000)
[    0.407562] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.407604] software IO TLB [mem 0xd5c9f000-0xd9c9f000] (64MB) mapped at [ffff8800d5c9f000-ffff8800d9c9efff]
[    0.408037] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x28
[    0.408085] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x28
[    0.408135] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x28
[    0.408187] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x28
[    0.408313] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.408371] Scanning for low memory corruption every 60 seconds
[    0.409010] Initialise module verification
[    0.409110] audit: initializing netlink socket (disabled)
[    0.409170] type=2000 audit(1374755666.396:1): initialized
[    0.439388] bounce pool size: 64 pages
[    0.439949] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.440670] VFS: Disk quotas dquot_6.5.2
[    0.440750] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.441618] fuse init (API version 7.22)
[    0.441764] msgmni has been set to 7698
[    0.442483] Key type asymmetric registered
[    0.442521] Asymmetric key parser 'x509' registered
[    0.442608] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.442717] io scheduler noop registered
[    0.442755] io scheduler deadline registered (default)
[    0.442829] io scheduler cfq registered
[    0.443242] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.443322] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.443509] intel_idle: MWAIT substates: 0x21120
[    0.443511] intel_idle: v0.4 model 0x2A
[    0.443512] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.444313] ACPI: AC Adapter [ADP1] (on-line)
[    0.444685] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
[    0.444802] ACPI: Lid Switch [LID0]
[    0.444901] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    0.444961] ACPI: Power Button [PWRB]
[    0.445057] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.445113] ACPI: Power Button [PWRF]
[    0.445241] ACPI: Fan [FAN0] (off)
[    0.445329] ACPI: Fan [FAN1] (off)
[    0.445415] ACPI: Fan [FAN2] (off)
[    0.445501] ACPI: Fan [FAN3] (off)
[    0.445586] ACPI: Fan [FAN4] (off)
[    0.445706] ACPI: Requesting acpi_cpufreq
[    0.449118] thermal LNXTHERM:00: registered as thermal_zone0
[    0.449159] ACPI: Thermal Zone [TZ00] (74 C)
[    0.449564] thermal LNXTHERM:01: registered as thermal_zone1
[    0.449603] ACPI: Thermal Zone [TZ01] (30 C)
[    0.449688] GHES: HEST is not enabled!
[    0.449959] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.456519] ACPI: Battery Slot [BAT1] (battery present)
[    0.456536] Linux agpgart interface v0.103
[    0.459387] brd: module loaded
[    0.460818] loop: module loaded
[    0.461084] mei_me 0000:00:16.0: setting latency timer to 64
[    0.461133] mei_me 0000:00:16.0: irq 40 for MSI/MSI-X
[    0.465186] ahci 0000:00:1f.2: version 3.0
[    0.465401] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[    0.465624] ahci: SSS flag set, parallel bus scan disabled
[    0.478148] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1b impl SATA mode
[    0.478219] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pio slum part ems sxs apst 
[    0.478279] ahci 0000:00:1f.2: setting latency timer to 64
[    0.503040] scsi0 : ahci
[    0.503374] scsi1 : ahci
[    0.503631] scsi2 : ahci
[    0.503883] scsi3 : ahci
[    0.504144] scsi4 : ahci
[    0.504400] scsi5 : ahci
[    0.504528] ata1: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708100 irq 41
[    0.504582] ata2: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708180 irq 41
[    0.504634] ata3: DUMMY
[    0.504667] ata4: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708280 irq 41
[    0.504719] ata5: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708300 irq 41
[    0.504771] ata6: DUMMY
[    0.505687] libphy: Fixed MDIO Bus: probed
[    0.506016] tun: Universal TUN/TAP device driver, 1.6
[    0.506054] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.506199] PPP generic driver version 2.4.2
[    0.506360] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.506401] ehci_hcd: block sizes: qh 112 qtd 96 itd 192 sitd 96
[    0.506409] ehci-pci: EHCI PCI platform driver
[    0.506653] ehci-pci 0000:00:1a.0: setting latency timer to 64
[    0.506663] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    0.506708] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    0.506781] ehci-pci 0000:00:1a.0: debug port 2
[    0.506821] ehci-pci 0000:00:1a.0: reset hcs_params 0x200002 dbg=2 cc=0 pcc=0 ordered !ppc ports=2
[    0.506825] ehci-pci 0000:00:1a.0: reset hcc_params 36881 caching frame 1024 64 bit addr
[    0.506863] ehci-pci 0000:00:1a.0: reset command 0080002 (park)=0 ithresh=8 period=1024 Reset HALT
[    0.510757] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    0.510759] ehci-pci 0000:00:1a.0: supports USB remote wakeup
[    0.510806] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf070a000
[    0.510848] ehci-pci 0000:00:1a.0: init command 0010001 (park)=0 ithresh=1 period=1024 RUN
[    0.522074] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    0.522217] usb usb1: default language 0x0409
[    0.522239] usb usb1: udev 1, busnum 1, minor = 0
[    0.522241] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    0.522289] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.522342] usb usb1: Product: EHCI Host Controller
[    0.522380] usb usb1: Manufacturer: Linux 3.11.0-rc2-next20130725-4-iniza-small ehci_hcd
[    0.522435] usb usb1: SerialNumber: 0000:00:1a.0
[    0.522642] usb usb1: usb_probe_device
[    0.522645] usb usb1: configuration #1 chosen from 1 choice
[    0.522656] usb usb1: adding 1-0:1.0 (config #1, interface 0)
[    0.522688] hub 1-0:1.0: usb_probe_interface
[    0.522689] hub 1-0:1.0: usb_probe_interface - got id
[    0.522692] hub 1-0:1.0: USB hub found
[    0.522734] hub 1-0:1.0: 2 ports detected
[    0.522770] hub 1-0:1.0: standalone hub
[    0.522771] hub 1-0:1.0: no power switching (usb 1.0)
[    0.522773] hub 1-0:1.0: individual port over-current protection
[    0.522775] hub 1-0:1.0: power on to power good time: 20ms
[    0.522780] hub 1-0:1.0: local power source is good
[    0.522836] hub 1-0:1.0: trying to enable port power on non-switchable hub
[    0.523127] ehci-pci 0000:00:1d.0: setting latency timer to 64
[    0.523133] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    0.523178] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    0.523252] ehci-pci 0000:00:1d.0: debug port 2
[    0.523292] ehci-pci 0000:00:1d.0: reset hcs_params 0x200002 dbg=2 cc=0 pcc=0 ordered !ppc ports=2
[    0.523296] ehci-pci 0000:00:1d.0: reset hcc_params 36881 caching frame 1024 64 bit addr
[    0.523338] ehci-pci 0000:00:1d.0: reset command 0080002 (park)=0 ithresh=8 period=1024 Reset HALT
[    0.527225] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    0.527226] ehci-pci 0000:00:1d.0: supports USB remote wakeup
[    0.527271] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf0709000
[    0.527311] ehci-pci 0000:00:1d.0: init command 0010001 (park)=0 ithresh=1 period=1024 RUN
[    0.538065] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    0.538215] usb usb2: default language 0x0409
[    0.538237] usb usb2: udev 1, busnum 2, minor = 128
[    0.538239] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    0.538279] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.538332] usb usb2: Product: EHCI Host Controller
[    0.538378] usb usb2: Manufacturer: Linux 3.11.0-rc2-next20130725-4-iniza-small ehci_hcd
[    0.538433] usb usb2: SerialNumber: 0000:00:1d.0
[    0.538634] usb usb2: usb_probe_device
[    0.538637] usb usb2: configuration #1 chosen from 1 choice
[    0.538650] usb usb2: adding 2-0:1.0 (config #1, interface 0)
[    0.538681] hub 2-0:1.0: usb_probe_interface
[    0.538683] hub 2-0:1.0: usb_probe_interface - got id
[    0.538686] hub 2-0:1.0: USB hub found
[    0.538727] hub 2-0:1.0: 2 ports detected
[    0.538763] hub 2-0:1.0: standalone hub
[    0.538765] hub 2-0:1.0: no power switching (usb 1.0)
[    0.538766] hub 2-0:1.0: individual port over-current protection
[    0.538768] hub 2-0:1.0: power on to power good time: 20ms
[    0.538774] hub 2-0:1.0: local power source is good
[    0.538827] hub 2-0:1.0: trying to enable port power on non-switchable hub
[    0.538911] ehci-platform: EHCI generic platform driver
[    0.538971] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.539010] ohci_hcd: block sizes: ed 80 td 96
[    0.539017] ohci-pci: OHCI PCI platform driver
[    0.539073] ohci-platform: OHCI generic platform driver
[    0.539124] uhci_hcd: USB Universal Host Controller Interface driver
[    0.539418] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    0.539463] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 3
[    0.549225] xhci_hcd 0000:03:00.0: supports USB remote wakeup
[    0.549258] xhci_hcd 0000:03:00.0: irq 42 for MSI/MSI-X
[    0.549265] xhci_hcd 0000:03:00.0: irq 43 for MSI/MSI-X
[    0.549274] xhci_hcd 0000:03:00.0: irq 44 for MSI/MSI-X
[    0.549280] xhci_hcd 0000:03:00.0: irq 45 for MSI/MSI-X
[    0.549286] xhci_hcd 0000:03:00.0: irq 46 for MSI/MSI-X
[    0.549537] usb usb3: default language 0x0409
[    0.549547] usb usb3: udev 1, busnum 3, minor = 256
[    0.549549] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    0.549590] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.549642] usb usb3: Product: xHCI Host Controller
[    0.549679] usb usb3: Manufacturer: Linux 3.11.0-rc2-next20130725-4-iniza-small xhci_hcd
[    0.549733] usb usb3: SerialNumber: 0000:03:00.0
[    0.549875] usb usb3: usb_probe_device
[    0.549877] usb usb3: configuration #1 chosen from 1 choice
[    0.549882] xHCI xhci_add_endpoint called for root hub
[    0.549883] xHCI xhci_check_bandwidth called for root hub
[    0.549889] usb usb3: adding 3-0:1.0 (config #1, interface 0)
[    0.549916] hub 3-0:1.0: usb_probe_interface
[    0.549917] hub 3-0:1.0: usb_probe_interface - got id
[    0.549919] hub 3-0:1.0: USB hub found
[    0.549982] hub 3-0:1.0: 2 ports detected
[    0.550017] hub 3-0:1.0: standalone hub
[    0.550019] hub 3-0:1.0: no power switching (usb 1.0)
[    0.550020] hub 3-0:1.0: individual port over-current protection
[    0.550021] hub 3-0:1.0: Single TT
[    0.550023] hub 3-0:1.0: TT requires at most 8 FS bit times (666 ns)
[    0.550024] hub 3-0:1.0: power on to power good time: 20ms
[    0.550029] hub 3-0:1.0: local power source is good
[    0.550063] hub 3-0:1.0: trying to enable port power on non-switchable hub
[    0.550125] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    0.550165] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 4
[    0.550223] xhci_hcd 0000:03:00.0: supports USB remote wakeup
[    0.550256] usb usb4: skipped 1 descriptor after endpoint
[    0.550261] usb usb4: default language 0x0409
[    0.550271] usb usb4: udev 1, busnum 4, minor = 384
[    0.550273] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    0.550312] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.550365] usb usb4: Product: xHCI Host Controller
[    0.550402] usb usb4: Manufacturer: Linux 3.11.0-rc2-next20130725-4-iniza-small xhci_hcd
[    0.550455] usb usb4: SerialNumber: 0000:03:00.0
[    0.550595] usb usb4: usb_probe_device
[    0.550597] usb usb4: configuration #1 chosen from 1 choice
[    0.550601] xHCI xhci_add_endpoint called for root hub
[    0.550602] xHCI xhci_check_bandwidth called for root hub
[    0.550608] usb usb4: adding 4-0:1.0 (config #1, interface 0)
[    0.550635] hub 4-0:1.0: usb_probe_interface
[    0.550636] hub 4-0:1.0: usb_probe_interface - got id
[    0.550638] hub 4-0:1.0: USB hub found
[    0.550683] hub 4-0:1.0: 2 ports detected
[    0.550718] hub 4-0:1.0: standalone hub
[    0.550719] hub 4-0:1.0: no power switching (usb 1.0)
[    0.550721] hub 4-0:1.0: individual port over-current protection
[    0.550722] hub 4-0:1.0: TT requires at most 8 FS bit times (666 ns)
[    0.550724] hub 4-0:1.0: power on to power good time: 20ms
[    0.550729] hub 4-0:1.0: local power source is good
[    0.550761] hub 4-0:1.0: trying to enable port power on non-switchable hub
[    0.562186] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:EPAD] at 0x60,0x64 irq 1,12
[    0.568671] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.568714] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.568996] mousedev: PS/2 mouse device common for all mice
[    0.569518] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    0.569589] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    0.569754] device-mapper: uevent: version 1.0.3
[    0.569949] device-mapper: ioctl: 4.25.0-ioctl (2013-06-26) initialised: dm-devel@redhat.com
[    0.570018] Intel P-state driver initializing.
[    0.570083] Intel pstate controlling: cpu 0
[    0.570163] Intel pstate controlling: cpu 1
[    0.570233] Intel pstate controlling: cpu 2
[    0.570297] Intel pstate controlling: cpu 3
[    0.570411] ledtrig-cpu: registered to indicate activity on CPUs
[    0.570940] ashmem: initialized
[    0.571193] TCP: cubic registered
[    0.571371] NET: Registered protocol family 10
[    0.571867] NET: Registered protocol family 17
[    0.571921] Key type dns_resolver registered
[    0.572417] PM: Hibernation image not present or could not be loaded.
[    0.572423] Loading module verification certificates
[    0.573536] MODSIGN: Loaded cert 'Magrathea: Glacier signing key: 0e153d92a388190b21415d66d299c061f02bde6c'
[    0.573622] registered taskstats version 1
[    0.576703] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    0.577706] Key type trusted registered
[    0.583780] Key type encrypted registered
[    0.591400] rtc_cmos 00:05: setting system clock to 2013-07-25 12:34:26 UTC (1374755666)
[    0.591927] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.591973] EDD information not available.
[    0.622039] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001803 0  ACK POWER sig=j CSC CONNECT
[    0.622062] hub 1-0:1.0: port 1: status 0501 change 0001
[    0.638014] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001803 0  ACK POWER sig=j CSC CONNECT
[    0.638041] hub 2-0:1.0: port 1: status 0501 change 0001
[    0.650065] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[    0.650091] hub 4-0:1.0: state 7 ports 2 chg 0000 evt 0000
[    0.650109] hub 3-0:1.0: hub_suspend
[    0.650119] usb usb3: bus auto-suspend, wakeup 1
[    0.650169] hub 4-0:1.0: hub_suspend
[    0.650174] usb usb4: bus auto-suspend, wakeup 1
[    0.658922] usb usb4: usb wakeup-resume
[    0.658935] usb usb4: usb auto-resume
[    0.669990] hub 4-0:1.0: hub_resume
[    0.670023] hub 4-0:1.0: port 1: status 0203 change 0001
[    0.721984] hub 1-0:1.0: state 7 ports 2 chg 0002 evt 0000
[    0.722014] hub 1-0:1.0: port 1, status 0501, change 0000, 480 Mb/s
[    0.778191] ehci-pci 0000:00:1a.0: port 1 reset complete, port enabled
[    0.778204] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    0.821883] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    0.823145] ata1.00: ATA-8: Hitachi HTS545050A7E380, GG2OA6C0, max UDMA/133
[    0.823220] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    0.824657] ata1.00: configured for UDMA/133
[    0.825179] scsi 0:0:0:0: Direct-Access     ATA      Hitachi HTS54505 GG2O PQ: 0 ANSI: 5
[    0.825855] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    0.825891] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    0.826035] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    0.826539] sd 0:0:0:0: [sda] Write Protect is off
[    0.826610] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    0.826835] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    0.833811] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    0.844841]  sda: sda1 sda2 sda3
[    0.846161] sd 0:0:0:0: [sda] Attached SCSI disk
[    0.890110] ehci-pci 0000:00:1a.0: port 1 reset complete, port enabled
[    0.890124] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    0.966538] usb 1-1: udev 2, busnum 1, minor = 1
[    0.966548] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    0.966620] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    0.967025] usb 1-1: usb_probe_device
[    0.967034] usb 1-1: configuration #1 chosen from 1 choice
[    0.967299] usb 1-1: adding 1-1:1.0 (config #1, interface 0)
[    0.967383] hub 1-1:1.0: usb_probe_interface
[    0.967388] hub 1-1:1.0: usb_probe_interface - got id
[    0.967395] hub 1-1:1.0: USB hub found
[    0.967647] hub 1-1:1.0: 6 ports detected
[    0.968256] hub 1-1:1.0: standalone hub
[    0.968260] hub 1-1:1.0: individual port power switching
[    0.968264] hub 1-1:1.0: individual port over-current protection
[    0.968267] hub 1-1:1.0: Single TT
[    0.968270] hub 1-1:1.0: TT requires at most 8 FS bit times (666 ns)
[    0.968274] hub 1-1:1.0: power on to power good time: 100ms
[    0.968582] hub 1-1:1.0: local power source is good
[    0.968994] hub 1-1:1.0: enabling power on all ports
[    0.970189] hub 2-0:1.0: state 7 ports 2 chg 0002 evt 0000
[    0.970207] hub 2-0:1.0: port 1, status 0501, change 0000, 480 Mb/s
[    1.026015] ehci-pci 0000:00:1d.0: port 1 reset complete, port enabled
[    1.026029] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    1.070199] hub 1-1:1.0: port 2: status 0101 change 0001
[    1.070698] hub 1-1:1.0: port 4: status 0101 change 0001
[    1.081710] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    1.137936] ehci-pci 0000:00:1d.0: port 1 reset complete, port enabled
[    1.137952] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    1.145660] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.146326] ata2.00: ATA-8: SanDisk iSSD P4 16GB, SSD 9.14, max UDMA/133
[    1.146404] ata2.00: 31277232 sectors, multi 1: LBA48 
[    1.147157] ata2.00: configured for UDMA/133
[    1.147675] scsi 1:0:0:0: Direct-Access     ATA      SanDisk iSSD P4  SSD  PQ: 0 ANSI: 5
[    1.148293] sd 1:0:0:0: [sdb] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
[    1.148410] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    1.148606] sd 1:0:0:0: [sdb] Write Protect is off
[    1.148675] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.148776] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.150041]  sdb: sdb1 sdb2
[    1.151220] sd 1:0:0:0: [sdb] Attached SCSI disk
[    1.169637] usb 1-1: link qh256-0001/ffff8801186798c0 start 1 [1/0 us]
[    1.214359] usb 2-1: udev 2, busnum 2, minor = 129
[    1.214369] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    1.214441] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.214847] usb 2-1: usb_probe_device
[    1.214856] usb 2-1: configuration #1 chosen from 1 choice
[    1.215118] usb 2-1: adding 2-1:1.0 (config #1, interface 0)
[    1.215204] hub 2-1:1.0: usb_probe_interface
[    1.215209] hub 2-1:1.0: usb_probe_interface - got id
[    1.215216] hub 2-1:1.0: USB hub found
[    1.215471] hub 2-1:1.0: 6 ports detected
[    1.215537] hub 2-1:1.0: standalone hub
[    1.215541] hub 2-1:1.0: individual port power switching
[    1.215544] hub 2-1:1.0: individual port over-current protection
[    1.215547] hub 2-1:1.0: Single TT
[    1.215551] hub 2-1:1.0: TT requires at most 8 FS bit times (666 ns)
[    1.215555] hub 2-1:1.0: power on to power good time: 100ms
[    1.215844] hub 2-1:1.0: local power source is good
[    1.216355] hub 2-1:1.0: enabling power on all ports
[    1.217568] hub 4-0:1.0: state 7 ports 2 chg 0002 evt 0000
[    1.217588] hub 4-0:1.0: port 1, status 0203, change 0000, 5.0 Gb/s
[    1.314548] hub 2-1:1.0: port 5: status 0101 change 0001
[    1.333072] usb 4-1: new SuperSpeed USB device number 2 using xhci_hcd
[    1.346091] usb 4-1: Parent hub missing LPM exit latency info.  Power management will be impacted.
[    1.346530] usb 4-1: skipped 1 descriptor after endpoint
[    1.346537] usb 4-1: skipped 1 descriptor after endpoint
[    1.346682] usb 4-1: default language 0x0409
[    1.347097] usb 4-1: udev 2, busnum 4, minor = 385
[    1.347105] usb 4-1: New USB device found, idVendor=174c, idProduct=55aa
[    1.347178] usb 4-1: New USB device strings: Mfr=2, Product=3, SerialNumber=1
[    1.347247] usb 4-1: Product: MEDION HDDrive-n-GO
[    1.347311] usb 4-1: Manufacturer: MEDION
[    1.347374] usb 4-1: SerialNumber: 3180000000000000092C
[    1.347782] usb 4-1: usb_probe_device
[    1.347792] usb 4-1: configuration #1 chosen from 1 choice
[    1.348988] usb 4-1: Successful Endpoint Configure command
[    1.349091] usb 4-1: adding 4-1:1.0 (config #1, interface 0)
[    1.349334] hub 1-1:1.0: state 7 ports 6 chg 0014 evt 0000
[    1.349505] hub 1-1:1.0: port 2, status 0101, change 0000, 12 Mb/s
[    1.405463] tsc: Refined TSC clocksource calibration: 1596.374 MHz
[    1.413479] usb 2-1: link qh256-0001/ffff8801187045c0 start 1 [1/0 us]
[    1.421714] usb 1-1.2: new low-speed USB device number 3 using ehci-pci
[    1.465410] ata4: SATA link down (SStatus 0 SControl 300)
[    1.516949] usb 1-1.2: skipped 1 descriptor after interface
[    1.517720] usb 1-1.2: default language 0x0409
[    1.520318] usb 1-1.2: udev 3, busnum 1, minor = 2
[    1.520329] usb 1-1.2: New USB device found, idVendor=046d, idProduct=c00e
[    1.520405] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.520494] usb 1-1.2: Product: USB-PS/2 Optical Mouse
[    1.520559] usb 1-1.2: Manufacturer: Logitech
[    1.520992] usb 1-1.2: usb_probe_device
[    1.521002] usb 1-1.2: configuration #1 chosen from 1 choice
[    1.521613] usb 1-1.2: adding 1-1.2:1.0 (config #1, interface 0)
[    1.522007] hub 1-1:1.0: port 4, status 0101, change 0000, 12 Mb/s
[    1.593595] usb 1-1.4: new high-speed USB device number 4 using ehci-pci
[    1.785196] ata5: SATA link down (SStatus 0 SControl 300)
[    1.787730] Freeing unused kernel memory: 1332K (ffffffff81d07000 - ffffffff81e54000)
[    1.787814] Write protecting the kernel read-only data: 12288k
[    1.793242] Freeing unused kernel memory: 1060K (ffff8800016f7000 - ffff880001800000)
[    1.797966] Freeing unused kernel memory: 964K (ffff880001b0f000 - ffff880001c00000)
[    1.835001] usb 1-1.4: skipped 1 descriptor after configuration
[    1.835008] usb 1-1.4: skipped 5 descriptors after interface
[    1.835012] usb 1-1.4: skipped 1 descriptor after endpoint
[    1.835015] usb 1-1.4: skipped 23 descriptors after interface
[    1.836425] udevd[122]: starting version 175
[    1.837076] usb 1-1.4: default language 0x0409
[    1.849073] usb 1-1.4: udev 4, busnum 1, minor = 3
[    1.849082] usb 1-1.4: New USB device found, idVendor=2232, idProduct=1018
[    1.849149] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.849211] usb 1-1.4: Product: WebCam SC-13HDL11431N
[    1.849260] usb 1-1.4: Manufacturer: 123
[    1.849501] usb 1-1.4: usb_probe_device
[    1.849504] usb 1-1.4: configuration #1 chosen from 1 choice
[    1.849689] usb 1-1.4: adding 1-1.4:1.0 (config #1, interface 0)
[    1.985100] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    1.985187] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
[    1.985566] r8169 0000:02:00.0: irq 47 for MSI/MSI-X
[    1.985943] r8169 0000:02:00.0 eth0: RTL8168evl/8111evl at 0xffffc90000620000, e8:03:9a:36:17:a9, XID 0c900800 IRQ 47
[    1.986004] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    1.991628] usb-storage 4-1:1.0: usb_probe_interface
[    1.991640] usb-storage 4-1:1.0: usb_probe_interface - got id
[    1.991646] usb-storage 4-1:1.0: USB Mass Storage device detected
[    1.992238] scsi6 : usb-storage 4-1:1.0
[    1.996204] usbcore: registered new interface driver usb-storage
[    2.021698] usb 1-1.4: adding 1-1.4:1.1 (config #1, interface 1)
[    2.023056] hub 2-1:1.0: state 7 ports 6 chg 0020 evt 0000
[    2.023184] hub 2-1:1.0: port 5, status 0101, change 0000, 12 Mb/s
[    2.039605] hidraw: raw HID events driver (C) Jiri Kosina
[    2.042538] usbhid 1-1.2:1.0: usb_probe_interface
[    2.042543] usbhid 1-1.2:1.0: usb_probe_interface - got id
[    2.045558] usbcore: registered new interface driver usbhid
[    2.045603] usbhid: USB HID core driver
[    2.058316] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input4
[    2.058707] hid-generic 0003:046D:C00E.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1a.0-1.2/input0
[    2.093042] usb 2-1.5: new full-speed USB device number 3 using ehci-pci
[    2.193899] usb 2-1.5: udev 3, busnum 2, minor = 130
[    2.193909] usb 2-1.5: New USB device found, idVendor=8086, idProduct=0189
[    2.193980] usb 2-1.5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.194379] usb 2-1.5: usb_probe_device
[    2.194388] usb 2-1.5: configuration #1 chosen from 1 choice
[    2.194962] usb 2-1.5: adding 2-1.5:1.0 (config #1, interface 0)
[    2.195253] usb 2-1.5: adding 2-1.5:1.1 (config #1, interface 1)
[    2.195654] hub 1-1:1.0: state 7 ports 6 chg 0000 evt 0010
[    2.195821] hub 2-1:1.0: state 7 ports 6 chg 0000 evt 0020
[    2.405042] Switched to clocksource tsc
[    2.918649] EXT4-fs (loop0): mounted filesystem with ordered data mode. Opts: (null)
[    2.992674] scsi 6:0:0:0: Direct-Access     ASMT     2105             0    PQ: 0 ANSI: 6
[    2.993318] sd 6:0:0:0: Attached scsi generic sg2 type 0
[    2.993633] sd 6:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    2.994164] sd 6:0:0:0: [sdc] Write Protect is off
[    2.994217] sd 6:0:0:0: [sdc] Mode Sense: 43 00 00 00
[    2.994678] sd 6:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.997475]  sdc: sdc1 sdc2 sdc3
[    2.999807] sd 6:0:0:0: [sdc] Attached SCSI disk
[   14.950730] Adding 262140k swap on /host/ubuntu/disks/swap.disk.  Priority:-1 extents:1 across:262140k FS
[   14.977069] EXT4-fs (loop0): re-mounted. Opts: errors=remount-ro
[   15.007344] udevd[623]: starting version 175
[   15.265177] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130626/utaddress-251)
[   15.265187] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.265192] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130626/utaddress-251)
[   15.265195] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.265197] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130626/utaddress-251)
[   15.265200] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.265201] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130626/utaddress-251)
[   15.265204] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.265206] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   15.346093] lp: driver loaded but no devices found
[   15.642301] wmi: Mapper loaded
[   15.718119] cfg80211: Calling CRDA to update world regulatory domain
[   15.718413] samsung_laptop: detected SABI interface: SwSmi@
[   15.718417] samsung_laptop: Backlight controlled by ACPI video driver
[   15.727916] type=1400 audit(1374748481.643:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=728 comm="apparmor_parser"
[   15.728769] type=1400 audit(1374748481.643:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=728 comm="apparmor_parser"
[   15.729313] type=1400 audit(1374748481.643:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=728 comm="apparmor_parser"
[   15.737280] cfg80211: World regulatory domain updated:
[   15.737285] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   15.737288] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   15.737291] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   15.737293] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   15.737295] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   15.737298] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   15.826483] Linux video capture interface: v2.00
[   15.828552] Bluetooth: Core ver 2.16
[   15.828624] NET: Registered protocol family 31
[   15.828627] Bluetooth: HCI device and connection manager initialized
[   15.828638] Bluetooth: HCI socket layer initialized
[   15.828649] Bluetooth: L2CAP socket layer initialized
[   15.828674] Bluetooth: SCO socket layer initialized
[   15.912979] init: failsafe main process (962) killed by TERM signal
[   15.990242] btusb 2-1.5:1.0: usb_probe_interface
[   15.990250] btusb 2-1.5:1.0: usb_probe_interface - got id
[   15.991586] Intel(R) Wireless WiFi driver for Linux, in-tree:d
[   15.991591] Copyright(c) 2003-2013 Intel Corporation
[   15.991687] iwlwifi 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
[   15.992189] iwlwifi 0000:01:00.0: irq 48 for MSI/MSI-X
[   15.995342] [drm] Initialized drm 1.1.0 20060810
[   15.996219] iwlwifi 0000:01:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
[   15.997451] usbcore: registered new interface driver btusb
[   15.999512] usb 2-1.5: link qh1-0e01/ffff8800bb8ad340 start 0 [1/2 us]
[   16.043608] ppdev: user-space parallel port driver
[   16.053834] type=1400 audit(1374748481.967:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=1110 comm="apparmor_parser"
[   16.054638] type=1400 audit(1374748481.967:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1110 comm="apparmor_parser"
[   16.055162] type=1400 audit(1374748481.971:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1110 comm="apparmor_parser"
[   16.186757] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   16.186762] Bluetooth: BNEP filters: protocol multicast
[   16.186775] Bluetooth: BNEP socket layer initialized
[   16.217185] Bluetooth: RFCOMM TTY layer initialized
[   16.217204] Bluetooth: RFCOMM socket layer initialized
[   16.217206] Bluetooth: RFCOMM ver 1.11
[   16.764465] type=1400 audit(1374748482.679:8): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm/lightdm-guest-session-wrapper" pid=1109 comm="apparmor_parser"
[   16.764501] type=1400 audit(1374748482.679:9): apparmor="STATUS" operation="profile_load" name="/usr/lib/telepathy/mission-control-5" pid=1114 comm="apparmor_parser"
[   16.765217] type=1400 audit(1374748482.679:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm/lightdm-guest-session-wrapper//chromium_browser" pid=1109 comm="apparmor_parser"
[   16.766142] type=1400 audit(1374748482.679:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/telepathy/telepathy-*" pid=1114 comm="apparmor_parser"
[   16.875025] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f00)
[   16.890149] psmouse serio1: elantech: Synaptics capabilities query result 0x08, 0x17, 0x0c.
[   16.964803] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input5
[   17.164199] uvcvideo 1-1.4:1.0: usb_probe_interface
[   17.164212] uvcvideo 1-1.4:1.0: usb_probe_interface - got id
[   17.164294] uvcvideo: Found UVC 1.00 device WebCam SC-13HDL11431N (2232:1018)
[   17.184016] input: WebCam SC-13HDL11431N as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input6
[   17.184430] usbcore: registered new interface driver uvcvideo
[   17.184437] USB Video Class driver (1.1.1)
[   17.188073] usb 1-1.4: link qh16-0001/ffff8801182d89c0 start 2 [1/0 us]
[   17.188153] usb 1-1.4: unlink qh16-0001/ffff8801182d89c0 start 2 [1/0 us]
[   17.302193] [drm] Memory usable by graphics device = 2048M
[   17.302205] i915 0000:00:02.0: setting latency timer to 64
[   17.334223] i915 0000:00:02.0: irq 49 for MSI/MSI-X
[   17.334246] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[   17.334247] [drm] Driver supports precise vblank timestamp query.
[   17.334404] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   17.345244] [drm] Wrong MCH_SSKPD value: 0x16040307
[   17.345248] [drm] This can cause pipe underruns and display issues.
[   17.345250] [drm] Please upgrade your BIOS to fix this.
[   17.356032] fbcon: inteldrmfb (fb0) is primary device
[   17.500530] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUG enabled
[   17.500533] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[   17.500535] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
[   17.500537] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_P2P disabled
[   17.500540] iwlwifi 0000:01:00.0: Detected Intel(R) Centrino(R) Advanced-N 6230 AGN, REV=0xB0
[   17.500593] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
[   17.535867] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[   17.551110] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
[   17.557991] iwlwifi 0000:01:00.0: Radio type=0x1-0x2-0x0
[   17.831075] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
[   17.837697] iwlwifi 0000:01:00.0: Radio type=0x1-0x2-0x0
[   17.915591] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   18.360257] Console: switching to colour frame buffer device 170x48
[   18.362895] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[   18.362898] i915 0000:00:02.0: registered panic notifier
[   18.380545] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   18.382154] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input7
[   18.384158] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[   18.385634] snd_hda_intel 0000:00:1b.0: irq 50 for MSI/MSI-X
[   18.424500] init: alsa-restore main process (1210) terminated with status 19
[   18.432389] usb 1-1.2: link qh8-0e01/ffff880118007540 start 3 [1/2 us]
[   18.446041] usb 1-1.2: unlink qh8-0e01/ffff880118007540 start 3 [1/2 us]
[   18.460985] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[   18.462316] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[   18.463010] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[   18.813405] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
[   19.719187] ehci-pci 0000:00:1a.0: reused qh ffff880118007540 schedule
[   19.719195] usb 1-1.2: link qh8-0e01/ffff880118007540 start 3 [1/2 us]
[   19.800692] usb 1-1.4: usb auto-suspend, wakeup 0
[   24.104457] wlan0: authenticate with 00:04:0e:e4:00:3d
[   24.109605] wlan0: send auth to 00:04:0e:e4:00:3d (try 1/3)
[   24.111434] wlan0: authenticated
[   24.111636] iwlwifi 0000:01:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
[   24.111642] iwlwifi 0000:01:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
[   24.113308] wlan0: associate with 00:04:0e:e4:00:3d (try 1/3)
[   24.117153] wlan0: RX AssocResp from 00:04:0e:e4:00:3d (capab=0x411 status=0 aid=1)
[   24.125857] wlan0: associated
[   24.125984] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   27.282315] usb usb3: usb auto-resume
[   27.282336] hub 3-0:1.0: hub_resume
[   27.282368] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   27.282399] hub 3-0:1.0: hub_suspend
[   27.282407] usb usb3: bus auto-suspend, wakeup 1
[   27.282437] usb usb3: usb auto-resume
[   27.291149] hub 3-0:1.0: hub_resume
[   27.291227] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   27.291249] hub 3-0:1.0: hub_suspend
[   27.291257] usb usb3: bus auto-suspend, wakeup 1
[   27.291800] usb 1-1.4: usb auto-resume
[   27.339090] usb 1-1.4: finish resume
[   27.445163] usb usb3: usb auto-resume
[   27.445184] hub 3-0:1.0: hub_resume
[   27.445212] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   27.445237] hub 3-0:1.0: hub_suspend
[   27.445243] usb usb3: bus auto-suspend, wakeup 1
[   27.445270] usb usb3: usb auto-resume
[   27.454934] hub 3-0:1.0: hub_resume
[   27.454978] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   27.455019] hub 3-0:1.0: hub_suspend
[   27.455023] usb usb3: bus auto-suspend, wakeup 1
[   27.475165] usb usb3: usb auto-resume
[   27.475186] hub 3-0:1.0: hub_resume
[   27.475212] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   27.475236] hub 3-0:1.0: hub_suspend
[   27.475243] usb usb3: bus auto-suspend, wakeup 1
[   27.475268] usb usb3: usb auto-resume
[   27.487082] hub 3-0:1.0: hub_resume
[   27.487150] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   27.487179] hub 3-0:1.0: hub_suspend
[   27.487187] usb usb3: bus auto-suspend, wakeup 1
[   27.521690] usb usb3: usb auto-resume
[   27.521716] hub 3-0:1.0: hub_resume
[   27.521786] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   27.521808] hub 3-0:1.0: hub_suspend
[   27.521816] usb usb3: bus auto-suspend, wakeup 1
[   27.522096] usb usb3: usb auto-resume
[   27.531002] hub 3-0:1.0: hub_resume
[   27.531080] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   27.531102] hub 3-0:1.0: hub_suspend
[   27.531111] usb usb3: bus auto-suspend, wakeup 1
[   27.690371] usb usb3: usb auto-resume
[   27.690393] hub 3-0:1.0: hub_resume
[   27.690422] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   27.690443] hub 3-0:1.0: hub_suspend
[   27.690452] usb usb3: bus auto-suspend, wakeup 1
[   27.690476] usb usb3: usb auto-resume
[   27.698791] hub 3-0:1.0: hub_resume
[   27.698845] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   27.698868] hub 3-0:1.0: hub_suspend
[   27.698875] usb usb3: bus auto-suspend, wakeup 1
[   27.705953] usb usb3: usb auto-resume
[   27.714782] hub 3-0:1.0: hub_resume
[   27.714814] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   27.714854] hub 3-0:1.0: hub_suspend
[   27.714861] usb usb3: bus auto-suspend, wakeup 1
[   27.714925] usb usb3: usb auto-resume
[   27.726761] hub 3-0:1.0: hub_resume
[   27.726790] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   27.726800] hub 3-0:1.0: hub_suspend
[   27.726808] usb usb3: bus auto-suspend, wakeup 1
[   27.728704] usb usb3: usb auto-resume
[   27.738733] hub 3-0:1.0: hub_resume
[   27.738763] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   27.738801] hub 3-0:1.0: hub_suspend
[   27.738807] usb usb3: bus auto-suspend, wakeup 1
[   27.738866] usb usb3: usb auto-resume
[   27.750729] hub 3-0:1.0: hub_resume
[   27.750759] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   27.750781] hub 3-0:1.0: hub_suspend
[   27.750787] usb usb3: bus auto-suspend, wakeup 1
[   27.897111] usb usb3: usb auto-resume
[   27.897135] hub 3-0:1.0: hub_resume
[   27.897173] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   27.897195] hub 3-0:1.0: hub_suspend
[   27.897213] usb usb3: bus auto-suspend, wakeup 1
[   27.897240] usb usb3: usb auto-resume
[   27.906747] hub 3-0:1.0: hub_resume
[   27.906785] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   27.906804] hub 3-0:1.0: hub_suspend
[   27.906811] usb usb3: bus auto-suspend, wakeup 1
[   27.914813] usb usb3: usb auto-resume
[   27.926612] hub 3-0:1.0: hub_resume
[   27.926644] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   27.926668] hub 3-0:1.0: hub_suspend
[   27.926674] usb usb3: bus auto-suspend, wakeup 1
[   27.926741] usb usb3: usb auto-resume
[   27.938631] hub 3-0:1.0: hub_resume
[   27.938888] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   27.938908] hub 3-0:1.0: hub_suspend
[   27.938918] usb usb3: bus auto-suspend, wakeup 1
[   28.256709] usb usb3: usb auto-resume
[   28.256734] hub 3-0:1.0: hub_resume
[   28.256764] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   28.256788] hub 3-0:1.0: hub_suspend
[   28.256797] usb usb3: bus auto-suspend, wakeup 1
[   28.256874] usb usb3: usb auto-resume
[   28.266416] hub 3-0:1.0: hub_resume
[   28.266455] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   28.266471] hub 3-0:1.0: hub_suspend
[   28.266477] usb usb3: bus auto-suspend, wakeup 1
[   28.481807] usb usb3: usb auto-resume
[   28.481831] hub 3-0:1.0: hub_resume
[   28.482382] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   28.482453] hub 3-0:1.0: hub_suspend
[   28.482462] usb usb3: bus auto-suspend, wakeup 1
[   29.555781] usb usb3: usb auto-resume
[   29.555807] hub 3-0:1.0: hub_resume
[   29.555860] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.555895] hub 3-0:1.0: hub_suspend
[   29.555904] usb usb3: bus auto-suspend, wakeup 1
[   29.555931] usb usb3: usb auto-resume
[   29.565459] hub 3-0:1.0: hub_resume
[   29.565525] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.565546] hub 3-0:1.0: hub_suspend
[   29.565554] usb usb3: bus auto-suspend, wakeup 1
[   29.634576] usb usb3: usb auto-resume
[   29.634600] hub 3-0:1.0: hub_resume
[   29.635392] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.635412] hub 3-0:1.0: hub_suspend
[   29.635420] usb usb3: bus auto-suspend, wakeup 1
[   29.648049] usb usb3: usb auto-resume
[   29.648071] hub 3-0:1.0: hub_resume
[   29.648097] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.648114] hub 3-0:1.0: hub_suspend
[   29.648122] usb usb3: bus auto-suspend, wakeup 1
[   29.648147] usb usb3: usb auto-resume
[   29.657370] hub 3-0:1.0: hub_resume
[   29.657406] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.657426] hub 3-0:1.0: hub_suspend
[   29.657434] usb usb3: bus auto-suspend, wakeup 1
[   29.746380] usb usb3: usb auto-resume
[   29.746402] hub 3-0:1.0: hub_resume
[   29.746457] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.746493] hub 3-0:1.0: hub_suspend
[   29.746498] usb usb3: bus auto-suspend, wakeup 1
[   29.747341] usb usb3: usb auto-resume
[   29.757308] hub 3-0:1.0: hub_resume
[   29.757348] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.757388] hub 3-0:1.0: hub_suspend
[   29.757396] usb usb3: bus auto-suspend, wakeup 1
[   29.757468] usb usb3: usb auto-resume
[   29.769302] hub 3-0:1.0: hub_resume
[   29.769342] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.769360] hub 3-0:1.0: hub_suspend
[   29.769368] usb usb3: bus auto-suspend, wakeup 1
[   29.771494] usb usb3: usb auto-resume
[   29.781301] hub 3-0:1.0: hub_resume
[   29.781334] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.781377] hub 3-0:1.0: hub_suspend
[   29.781384] usb usb3: bus auto-suspend, wakeup 1
[   29.781443] usb usb3: usb auto-resume
[   29.793281] hub 3-0:1.0: hub_resume
[   29.793311] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.793327] hub 3-0:1.0: hub_suspend
[   29.793334] usb usb3: bus auto-suspend, wakeup 1
[   29.795419] usb usb3: usb auto-resume
[   29.805325] hub 3-0:1.0: hub_resume
[   29.805381] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.805397] hub 3-0:1.0: hub_suspend
[   29.805403] usb usb3: bus auto-suspend, wakeup 1
[   29.805430] usb usb3: usb auto-resume
[   29.817364] hub 3-0:1.0: hub_resume
[   29.817413] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.817459] hub 3-0:1.0: hub_suspend
[   29.817466] usb usb3: bus auto-suspend, wakeup 1
[   29.828296] usb usb3: usb auto-resume
[   29.837291] hub 3-0:1.0: hub_resume
[   29.837324] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.837368] hub 3-0:1.0: hub_suspend
[   29.837377] usb usb3: bus auto-suspend, wakeup 1
[   29.837442] usb usb3: usb auto-resume
[   29.849248] hub 3-0:1.0: hub_resume
[   29.849280] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.849300] hub 3-0:1.0: hub_suspend
[   29.849308] usb usb3: bus auto-suspend, wakeup 1
[   29.854190] usb usb3: usb auto-resume
[   29.865227] hub 3-0:1.0: hub_resume
[   29.865254] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.865281] hub 3-0:1.0: hub_suspend
[   29.865288] usb usb3: bus auto-suspend, wakeup 1
[   29.865349] usb usb3: usb auto-resume
[   29.877243] hub 3-0:1.0: hub_resume
[   29.877266] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.877275] hub 3-0:1.0: hub_suspend
[   29.877283] usb usb3: bus auto-suspend, wakeup 1
[   29.878078] usb usb3: usb auto-resume
[   29.889220] hub 3-0:1.0: hub_resume
[   29.889251] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.889303] hub 3-0:1.0: hub_suspend
[   29.889312] usb usb3: bus auto-suspend, wakeup 1
[   29.889403] usb usb3: usb auto-resume
[   29.901311] hub 3-0:1.0: hub_resume
[   29.901362] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.901388] hub 3-0:1.0: hub_suspend
[   29.901401] usb usb3: bus auto-suspend, wakeup 1
[   29.957725] usb usb3: usb auto-resume
[   29.957747] hub 3-0:1.0: hub_resume
[   29.957774] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.957795] hub 3-0:1.0: hub_suspend
[   29.957801] usb usb3: bus auto-suspend, wakeup 1
[   29.957851] usb usb3: usb auto-resume
[   29.973151] hub 3-0:1.0: hub_resume
[   29.973187] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.973198] hub 3-0:1.0: hub_suspend
[   29.973206] usb usb3: bus auto-suspend, wakeup 1
[   29.975455] usb usb3: usb auto-resume
[   29.985249] hub 3-0:1.0: hub_resume
[   29.985308] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.985335] hub 3-0:1.0: hub_suspend
[   29.985343] usb usb3: bus auto-suspend, wakeup 1
[   29.985414] usb usb3: usb auto-resume
[   29.997131] hub 3-0:1.0: hub_resume
[   29.997161] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   29.997182] hub 3-0:1.0: hub_suspend
[   29.997190] usb usb3: bus auto-suspend, wakeup 1
[   30.022258] usb usb3: usb auto-resume
[   30.022279] hub 3-0:1.0: hub_resume
[   30.022305] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   30.022325] hub 3-0:1.0: hub_suspend
[   30.022331] usb usb3: bus auto-suspend, wakeup 1
[   30.022378] usb usb3: usb auto-resume
[   30.033130] hub 3-0:1.0: hub_resume
[   30.033192] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   30.033216] hub 3-0:1.0: hub_suspend
[   30.033224] usb usb3: bus auto-suspend, wakeup 1
[   30.062339] usb usb3: usb auto-resume
[   30.062361] hub 3-0:1.0: hub_resume
[   30.062427] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   30.062483] hub 3-0:1.0: hub_suspend
[   30.062489] usb usb3: bus auto-suspend, wakeup 1
[   30.090091] usb usb3: usb auto-resume
[   30.090115] hub 3-0:1.0: hub_resume
[   30.090149] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   30.090178] hub 3-0:1.0: hub_suspend
[   30.090186] usb usb3: bus auto-suspend, wakeup 1
[   30.090218] usb usb3: usb auto-resume
[   30.101062] hub 3-0:1.0: hub_resume
[   30.101099] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   30.101130] hub 3-0:1.0: hub_suspend
[   30.101139] usb usb3: bus auto-suspend, wakeup 1
[   30.176238] usb usb3: usb auto-resume
[   30.176264] hub 3-0:1.0: hub_resume
[   30.176295] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   30.176321] hub 3-0:1.0: hub_suspend
[   30.176330] usb usb3: bus auto-suspend, wakeup 1
[   30.176400] usb usb3: usb auto-resume
[   30.185028] hub 3-0:1.0: hub_resume
[   30.185094] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   30.185120] hub 3-0:1.0: hub_suspend
[   30.185132] usb usb3: bus auto-suspend, wakeup 1
[   30.201869] usb usb3: usb auto-resume
[   30.201891] hub 3-0:1.0: hub_resume
[   30.201935] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   30.201952] hub 3-0:1.0: hub_suspend
[   30.201960] usb usb3: bus auto-suspend, wakeup 1
[   30.201983] usb usb3: usb auto-resume
[   30.213086] hub 3-0:1.0: hub_resume
[   30.213155] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   30.213175] hub 3-0:1.0: hub_suspend
[   30.213196] usb usb3: bus auto-suspend, wakeup 1
[   30.216508] usb usb3: usb auto-resume
[   30.225127] hub 3-0:1.0: hub_resume
[   30.225222] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   30.225243] hub 3-0:1.0: hub_suspend
[   30.225251] usb usb3: bus auto-suspend, wakeup 1
[   30.225346] usb usb3: usb auto-resume
[   30.237009] hub 3-0:1.0: hub_resume
[   30.237064] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   30.237112] hub 3-0:1.0: hub_suspend
[   30.237118] usb usb3: bus auto-suspend, wakeup 1
[   30.263518] usb usb3: usb auto-resume
[   30.263540] hub 3-0:1.0: hub_resume
[   30.263603] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   30.263661] hub 3-0:1.0: hub_suspend
[   30.263667] usb usb3: bus auto-suspend, wakeup 1
[   30.266782] usb usb3: usb auto-resume
[   30.277046] hub 3-0:1.0: hub_resume
[   30.277145] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   30.277165] hub 3-0:1.0: hub_suspend
[   30.277172] usb usb3: bus auto-suspend, wakeup 1
[   30.277203] usb usb3: usb auto-resume
[   30.288946] hub 3-0:1.0: hub_resume
[   30.288980] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   30.288992] hub 3-0:1.0: hub_suspend
[   30.289002] usb usb3: bus auto-suspend, wakeup 1
[   30.305217] usb usb3: usb auto-resume
[   30.305241] hub 3-0:1.0: hub_resume
[   30.305276] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   30.305304] hub 3-0:1.0: hub_suspend
[   30.305313] usb usb3: bus auto-suspend, wakeup 1
[   30.305335] usb usb3: usb auto-resume
[   30.317008] hub 3-0:1.0: hub_resume
[   30.317123] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   30.317165] hub 3-0:1.0: hub_suspend
[   30.317173] usb usb3: bus auto-suspend, wakeup 1
[   31.391479] usb usb3: usb auto-resume
[   31.391506] hub 3-0:1.0: hub_resume
[   31.391589] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   31.391659] hub 3-0:1.0: hub_suspend
[   31.391669] usb usb3: bus auto-suspend, wakeup 1
[   31.700703] usb usb3: usb auto-resume
[   31.700730] hub 3-0:1.0: hub_resume
[   31.700807] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   31.700835] hub 3-0:1.0: hub_suspend
[   31.700843] usb usb3: bus auto-suspend, wakeup 1
[   31.723082] usb usb3: usb auto-resume
[   31.723106] hub 3-0:1.0: hub_resume
[   31.723181] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   31.723233] hub 3-0:1.0: hub_suspend
[   31.723241] usb usb3: bus auto-suspend, wakeup 1
[   31.727157] usb usb3: usb auto-resume
[   31.736048] hub 3-0:1.0: hub_resume
[   31.736130] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   31.736188] hub 3-0:1.0: hub_suspend
[   31.736200] usb usb3: bus auto-suspend, wakeup 1
[   31.736301] usb usb3: usb auto-resume
[   31.748002] hub 3-0:1.0: hub_resume
[   31.748092] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   31.748119] hub 3-0:1.0: hub_suspend
[   31.748129] usb usb3: bus auto-suspend, wakeup 1
[   31.752282] usb usb3: usb auto-resume
[   31.764075] hub 3-0:1.0: hub_resume
[   31.764188] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   31.764224] hub 3-0:1.0: hub_suspend
[   31.764234] usb usb3: bus auto-suspend, wakeup 1
[   31.764272] usb usb3: usb auto-resume
[   31.776058] hub 3-0:1.0: hub_resume
[   31.776153] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   31.776187] hub 3-0:1.0: hub_suspend
[   31.776196] usb usb3: bus auto-suspend, wakeup 1
[   31.817399] usb usb3: usb auto-resume
[   31.817421] hub 3-0:1.0: hub_resume
[   31.817484] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   31.817527] hub 3-0:1.0: hub_suspend
[   31.817534] usb usb3: bus auto-suspend, wakeup 1
[   31.832547] usb usb3: usb auto-resume
[   31.832570] hub 3-0:1.0: hub_resume
[   31.832633] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   31.832675] hub 3-0:1.0: hub_suspend
[   31.832681] usb usb3: bus auto-suspend, wakeup 1
[   31.951911] usb usb3: usb auto-resume
[   31.951933] hub 3-0:1.0: hub_resume
[   31.951992] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   31.952032] hub 3-0:1.0: hub_suspend
[   31.952038] usb usb3: bus auto-suspend, wakeup 1
[   33.950607] usb 1-1.4: usb auto-suspend, wakeup 0
[   42.141763] EXT4-fs (sdc3): mounted filesystem with ordered data mode. Opts: (null)
[   42.165215] EXT4-fs (sdc1): mounted filesystem with ordered data mode. Opts: (null)
Daniel Vetter July 25, 2013, 1:36 p.m. UTC | #5
On Thu, Jul 25, 2013 at 12:37:44PM +0200, Sedat Dilek wrote:
> On Thu, Jul 25, 2013 at 12:21 PM, Jani Nikula
> <jani.nikula@linux.intel.com> wrote:
> > On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> >> On Thu, Jul 25, 2013 at 12:02 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> >>> On Thu, Jul 25, 2013 at 11:44 AM, Jani Nikula
> >>> <jani.nikula@linux.intel.com> wrote:
> >>>> On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> >>>>> On Thu, Jul 25, 2013 at 7:12 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> >>>>>> Hi all,
> >>>>>>
> >>>>>> Changes since 20130724:
> >>>>>>
> >>>>>> Removed tree:
> >>>>>>         arm-dt (at maintainer's request)
> >>>>>>
> >>>>>> The wireless-next tree lost its build failure and gained a conflict
> >>>>>> against Linus' tree.
> >>>>>>
> >>>>>> The tty tree lost its build failure.
> >>>>>>
> >>>>>> The staging tree gained a build failure for which I disabled a driver.
> >>>>>>
> >>>>>> ----------------------------------------------------------------------------
> >>>>>>
> >>>>>
> >>>>> [ CCing drm and drm-intel folks ]
> >>>>>
> >>>>> With today's next-20130725 I see the following:
> >>>>
> >>>> Use of dev_priv->gt_lock in I915_WRITE through
> >>>> intel_disable_gt_powersave before spin lock init, caused by
> >>>>
> >>>> commit 181d1b9e31c668259d3798c521672afb8edd355c
> >>>> Author: Daniel Vetter <daniel.vetter@ffwll.ch>
> >>>> Date:   Sun Jul 21 13:16:24 2013 +0200
> >>>>
> >>>>     drm/i915: fix up gt init sequence fallout
> >>>>
> >>>
> >>> Ah, cool.
> >>>
> >>> I assumed/tested "drm/i915: fix the racy object accounting", but this
> >>> does not fix it.
> >>> Will try with yours.
> >>>
> >>
> >> Sorry, Jani.
> >>
> >> next-20130725 ships the patch you pointed, too.
> >
> > Confused. I meant that the above mentioned commit "drm/i915: fix up gt
> > init sequence fallout" causes the problem. The patch I included in my
> > mail should fix it. Could you try that please?
> >
> 
> [ Note2myself: Do not read half of the message... ]
> 
> The bad... Your patch needed some refresh against next-20130725 (guess
> it's against drm-intel-nightly).
> 
> The good... YES, your patch fixes the issue for me!
> 
> The ugly... /me.
> 
> Feel free to add my:
> 
>        Tested-by: Sedat Dilek <sedat.dilek@gmail.com>
> 
> Thanks for the quick fix!

Thanks a lot for the report, since this should be something I should have
caught. And for added insult the offending patch is already in Linus' tree
:( Patch merged to -fixes.
-Daniel
Sedat Dilek July 25, 2013, 2:23 p.m. UTC | #6
On Thu, Jul 25, 2013 at 3:36 PM, Daniel Vetter <daniel@ffwll.ch> wrote:
> On Thu, Jul 25, 2013 at 12:37:44PM +0200, Sedat Dilek wrote:
>> On Thu, Jul 25, 2013 at 12:21 PM, Jani Nikula
>> <jani.nikula@linux.intel.com> wrote:
>> > On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>> >> On Thu, Jul 25, 2013 at 12:02 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>> >>> On Thu, Jul 25, 2013 at 11:44 AM, Jani Nikula
>> >>> <jani.nikula@linux.intel.com> wrote:
>> >>>> On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>> >>>>> On Thu, Jul 25, 2013 at 7:12 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>> >>>>>> Hi all,
>> >>>>>>
>> >>>>>> Changes since 20130724:
>> >>>>>>
>> >>>>>> Removed tree:
>> >>>>>>         arm-dt (at maintainer's request)
>> >>>>>>
>> >>>>>> The wireless-next tree lost its build failure and gained a conflict
>> >>>>>> against Linus' tree.
>> >>>>>>
>> >>>>>> The tty tree lost its build failure.
>> >>>>>>
>> >>>>>> The staging tree gained a build failure for which I disabled a driver.
>> >>>>>>
>> >>>>>> ----------------------------------------------------------------------------
>> >>>>>>
>> >>>>>
>> >>>>> [ CCing drm and drm-intel folks ]
>> >>>>>
>> >>>>> With today's next-20130725 I see the following:
>> >>>>
>> >>>> Use of dev_priv->gt_lock in I915_WRITE through
>> >>>> intel_disable_gt_powersave before spin lock init, caused by
>> >>>>
>> >>>> commit 181d1b9e31c668259d3798c521672afb8edd355c
>> >>>> Author: Daniel Vetter <daniel.vetter@ffwll.ch>
>> >>>> Date:   Sun Jul 21 13:16:24 2013 +0200
>> >>>>
>> >>>>     drm/i915: fix up gt init sequence fallout
>> >>>>
>> >>>
>> >>> Ah, cool.
>> >>>
>> >>> I assumed/tested "drm/i915: fix the racy object accounting", but this
>> >>> does not fix it.
>> >>> Will try with yours.
>> >>>
>> >>
>> >> Sorry, Jani.
>> >>
>> >> next-20130725 ships the patch you pointed, too.
>> >
>> > Confused. I meant that the above mentioned commit "drm/i915: fix up gt
>> > init sequence fallout" causes the problem. The patch I included in my
>> > mail should fix it. Could you try that please?
>> >
>>
>> [ Note2myself: Do not read half of the message... ]
>>
>> The bad... Your patch needed some refresh against next-20130725 (guess
>> it's against drm-intel-nightly).
>>
>> The good... YES, your patch fixes the issue for me!
>>
>> The ugly... /me.
>>
>> Feel free to add my:
>>
>>        Tested-by: Sedat Dilek <sedat.dilek@gmail.com>
>>
>> Thanks for the quick fix!
>
> Thanks a lot for the report, since this should be something I should have
> caught. And for added insult the offending patch is already in Linus' tree
> :( Patch merged to -fixes.

Hmmm, don't you merge -fixes into -nightly?

- Sedat -

> -Daniel
> --
> Daniel Vetter
> Software Engineer, Intel Corporation
> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
Daniel Vetter July 25, 2013, 2:27 p.m. UTC | #7
On Thu, Jul 25, 2013 at 04:23:40PM +0200, Sedat Dilek wrote:
> On Thu, Jul 25, 2013 at 3:36 PM, Daniel Vetter <daniel@ffwll.ch> wrote:
> > On Thu, Jul 25, 2013 at 12:37:44PM +0200, Sedat Dilek wrote:
> >> On Thu, Jul 25, 2013 at 12:21 PM, Jani Nikula
> >> <jani.nikula@linux.intel.com> wrote:
> >> > On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> >> >> On Thu, Jul 25, 2013 at 12:02 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> >> >>> On Thu, Jul 25, 2013 at 11:44 AM, Jani Nikula
> >> >>> <jani.nikula@linux.intel.com> wrote:
> >> >>>> On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> >> >>>>> On Thu, Jul 25, 2013 at 7:12 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> >> >>>>>> Hi all,
> >> >>>>>>
> >> >>>>>> Changes since 20130724:
> >> >>>>>>
> >> >>>>>> Removed tree:
> >> >>>>>>         arm-dt (at maintainer's request)
> >> >>>>>>
> >> >>>>>> The wireless-next tree lost its build failure and gained a conflict
> >> >>>>>> against Linus' tree.
> >> >>>>>>
> >> >>>>>> The tty tree lost its build failure.
> >> >>>>>>
> >> >>>>>> The staging tree gained a build failure for which I disabled a driver.
> >> >>>>>>
> >> >>>>>> ----------------------------------------------------------------------------
> >> >>>>>>
> >> >>>>>
> >> >>>>> [ CCing drm and drm-intel folks ]
> >> >>>>>
> >> >>>>> With today's next-20130725 I see the following:
> >> >>>>
> >> >>>> Use of dev_priv->gt_lock in I915_WRITE through
> >> >>>> intel_disable_gt_powersave before spin lock init, caused by
> >> >>>>
> >> >>>> commit 181d1b9e31c668259d3798c521672afb8edd355c
> >> >>>> Author: Daniel Vetter <daniel.vetter@ffwll.ch>
> >> >>>> Date:   Sun Jul 21 13:16:24 2013 +0200
> >> >>>>
> >> >>>>     drm/i915: fix up gt init sequence fallout
> >> >>>>
> >> >>>
> >> >>> Ah, cool.
> >> >>>
> >> >>> I assumed/tested "drm/i915: fix the racy object accounting", but this
> >> >>> does not fix it.
> >> >>> Will try with yours.
> >> >>>
> >> >>
> >> >> Sorry, Jani.
> >> >>
> >> >> next-20130725 ships the patch you pointed, too.
> >> >
> >> > Confused. I meant that the above mentioned commit "drm/i915: fix up gt
> >> > init sequence fallout" causes the problem. The patch I included in my
> >> > mail should fix it. Could you try that please?
> >> >
> >>
> >> [ Note2myself: Do not read half of the message... ]
> >>
> >> The bad... Your patch needed some refresh against next-20130725 (guess
> >> it's against drm-intel-nightly).
> >>
> >> The good... YES, your patch fixes the issue for me!
> >>
> >> The ugly... /me.
> >>
> >> Feel free to add my:
> >>
> >>        Tested-by: Sedat Dilek <sedat.dilek@gmail.com>
> >>
> >> Thanks for the quick fix!
> >
> > Thanks a lot for the report, since this should be something I should have
> > caught. And for added insult the offending patch is already in Linus' tree
> > :( Patch merged to -fixes.
> 
> Hmmm, don't you merge -fixes into -nightly?

I do, but it seems to only blow up with spinlock debugging enabling I
think. Our QA should run full debug buils in the -nightly testing, but
apparently they didn't catch this. I'm looking into what went wrong here
and fix up the process.
-Daniel
Sedat Dilek July 25, 2013, 3:03 p.m. UTC | #8
On Thu, Jul 25, 2013 at 4:27 PM, Daniel Vetter <daniel@ffwll.ch> wrote:
> On Thu, Jul 25, 2013 at 04:23:40PM +0200, Sedat Dilek wrote:
>> On Thu, Jul 25, 2013 at 3:36 PM, Daniel Vetter <daniel@ffwll.ch> wrote:
>> > On Thu, Jul 25, 2013 at 12:37:44PM +0200, Sedat Dilek wrote:
>> >> On Thu, Jul 25, 2013 at 12:21 PM, Jani Nikula
>> >> <jani.nikula@linux.intel.com> wrote:
>> >> > On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>> >> >> On Thu, Jul 25, 2013 at 12:02 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>> >> >>> On Thu, Jul 25, 2013 at 11:44 AM, Jani Nikula
>> >> >>> <jani.nikula@linux.intel.com> wrote:
>> >> >>>> On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>> >> >>>>> On Thu, Jul 25, 2013 at 7:12 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>> >> >>>>>> Hi all,
>> >> >>>>>>
>> >> >>>>>> Changes since 20130724:
>> >> >>>>>>
>> >> >>>>>> Removed tree:
>> >> >>>>>>         arm-dt (at maintainer's request)
>> >> >>>>>>
>> >> >>>>>> The wireless-next tree lost its build failure and gained a conflict
>> >> >>>>>> against Linus' tree.
>> >> >>>>>>
>> >> >>>>>> The tty tree lost its build failure.
>> >> >>>>>>
>> >> >>>>>> The staging tree gained a build failure for which I disabled a driver.
>> >> >>>>>>
>> >> >>>>>> ----------------------------------------------------------------------------
>> >> >>>>>>
>> >> >>>>>
>> >> >>>>> [ CCing drm and drm-intel folks ]
>> >> >>>>>
>> >> >>>>> With today's next-20130725 I see the following:
>> >> >>>>
>> >> >>>> Use of dev_priv->gt_lock in I915_WRITE through
>> >> >>>> intel_disable_gt_powersave before spin lock init, caused by
>> >> >>>>
>> >> >>>> commit 181d1b9e31c668259d3798c521672afb8edd355c
>> >> >>>> Author: Daniel Vetter <daniel.vetter@ffwll.ch>
>> >> >>>> Date:   Sun Jul 21 13:16:24 2013 +0200
>> >> >>>>
>> >> >>>>     drm/i915: fix up gt init sequence fallout
>> >> >>>>
>> >> >>>
>> >> >>> Ah, cool.
>> >> >>>
>> >> >>> I assumed/tested "drm/i915: fix the racy object accounting", but this
>> >> >>> does not fix it.
>> >> >>> Will try with yours.
>> >> >>>
>> >> >>
>> >> >> Sorry, Jani.
>> >> >>
>> >> >> next-20130725 ships the patch you pointed, too.
>> >> >
>> >> > Confused. I meant that the above mentioned commit "drm/i915: fix up gt
>> >> > init sequence fallout" causes the problem. The patch I included in my
>> >> > mail should fix it. Could you try that please?
>> >> >
>> >>
>> >> [ Note2myself: Do not read half of the message... ]
>> >>
>> >> The bad... Your patch needed some refresh against next-20130725 (guess
>> >> it's against drm-intel-nightly).
>> >>
>> >> The good... YES, your patch fixes the issue for me!
>> >>
>> >> The ugly... /me.
>> >>
>> >> Feel free to add my:
>> >>
>> >>        Tested-by: Sedat Dilek <sedat.dilek@gmail.com>
>> >>
>> >> Thanks for the quick fix!
>> >
>> > Thanks a lot for the report, since this should be something I should have
>> > caught. And for added insult the offending patch is already in Linus' tree
>> > :( Patch merged to -fixes.
>>
>> Hmmm, don't you merge -fixes into -nightly?
>
> I do, but it seems to only blow up with spinlock debugging enabling I
> think. Our QA should run full debug buils in the -nightly testing, but
> apparently they didn't catch this. I'm looking into what went wrong here
> and fix up the process.

First, I thought I made my merge wrong, but there is no

$ grep spin_lock_init linux-next/drivers/gpu/drm/i915/i915_dma.c | grep gt_lock

Same in [1]:
...
	spin_lock_init(&dev_priv->irq_lock);
	spin_lock_init(&dev_priv->gpu_error.lock);
	spin_lock_init(&dev_priv->backlight.lock);
	spin_lock_init(&dev_priv->uncore.lock);
	spin_lock_init(&dev_priv->mm.object_stat_lock);
...

- Sedat -

[1] http://cgit.freedesktop.org/~danvet/drm-intel/tree/drivers/gpu/drm/i915/i915_dma.c?h=drm-intel-nightly#n1477


> -Daniel
> --
> Daniel Vetter
> Software Engineer, Intel Corporation
> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
Daniel Vetter July 25, 2013, 3:05 p.m. UTC | #9
On Thu, Jul 25, 2013 at 5:03 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> On Thu, Jul 25, 2013 at 4:27 PM, Daniel Vetter <daniel@ffwll.ch> wrote:
>> On Thu, Jul 25, 2013 at 04:23:40PM +0200, Sedat Dilek wrote:
>>> On Thu, Jul 25, 2013 at 3:36 PM, Daniel Vetter <daniel@ffwll.ch> wrote:
>>> > On Thu, Jul 25, 2013 at 12:37:44PM +0200, Sedat Dilek wrote:
>>> >> On Thu, Jul 25, 2013 at 12:21 PM, Jani Nikula
>>> >> <jani.nikula@linux.intel.com> wrote:
>>> >> > On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>>> >> >> On Thu, Jul 25, 2013 at 12:02 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>>> >> >>> On Thu, Jul 25, 2013 at 11:44 AM, Jani Nikula
>>> >> >>> <jani.nikula@linux.intel.com> wrote:
>>> >> >>>> On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>>> >> >>>>> On Thu, Jul 25, 2013 at 7:12 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>>> >> >>>>>> Hi all,
>>> >> >>>>>>
>>> >> >>>>>> Changes since 20130724:
>>> >> >>>>>>
>>> >> >>>>>> Removed tree:
>>> >> >>>>>>         arm-dt (at maintainer's request)
>>> >> >>>>>>
>>> >> >>>>>> The wireless-next tree lost its build failure and gained a conflict
>>> >> >>>>>> against Linus' tree.
>>> >> >>>>>>
>>> >> >>>>>> The tty tree lost its build failure.
>>> >> >>>>>>
>>> >> >>>>>> The staging tree gained a build failure for which I disabled a driver.
>>> >> >>>>>>
>>> >> >>>>>> ----------------------------------------------------------------------------
>>> >> >>>>>>
>>> >> >>>>>
>>> >> >>>>> [ CCing drm and drm-intel folks ]
>>> >> >>>>>
>>> >> >>>>> With today's next-20130725 I see the following:
>>> >> >>>>
>>> >> >>>> Use of dev_priv->gt_lock in I915_WRITE through
>>> >> >>>> intel_disable_gt_powersave before spin lock init, caused by
>>> >> >>>>
>>> >> >>>> commit 181d1b9e31c668259d3798c521672afb8edd355c
>>> >> >>>> Author: Daniel Vetter <daniel.vetter@ffwll.ch>
>>> >> >>>> Date:   Sun Jul 21 13:16:24 2013 +0200
>>> >> >>>>
>>> >> >>>>     drm/i915: fix up gt init sequence fallout
>>> >> >>>>
>>> >> >>>
>>> >> >>> Ah, cool.
>>> >> >>>
>>> >> >>> I assumed/tested "drm/i915: fix the racy object accounting", but this
>>> >> >>> does not fix it.
>>> >> >>> Will try with yours.
>>> >> >>>
>>> >> >>
>>> >> >> Sorry, Jani.
>>> >> >>
>>> >> >> next-20130725 ships the patch you pointed, too.
>>> >> >
>>> >> > Confused. I meant that the above mentioned commit "drm/i915: fix up gt
>>> >> > init sequence fallout" causes the problem. The patch I included in my
>>> >> > mail should fix it. Could you try that please?
>>> >> >
>>> >>
>>> >> [ Note2myself: Do not read half of the message... ]
>>> >>
>>> >> The bad... Your patch needed some refresh against next-20130725 (guess
>>> >> it's against drm-intel-nightly).
>>> >>
>>> >> The good... YES, your patch fixes the issue for me!
>>> >>
>>> >> The ugly... /me.
>>> >>
>>> >> Feel free to add my:
>>> >>
>>> >>        Tested-by: Sedat Dilek <sedat.dilek@gmail.com>
>>> >>
>>> >> Thanks for the quick fix!
>>> >
>>> > Thanks a lot for the report, since this should be something I should have
>>> > caught. And for added insult the offending patch is already in Linus' tree
>>> > :( Patch merged to -fixes.
>>>
>>> Hmmm, don't you merge -fixes into -nightly?
>>
>> I do, but it seems to only blow up with spinlock debugging enabling I
>> think. Our QA should run full debug buils in the -nightly testing, but
>> apparently they didn't catch this. I'm looking into what went wrong here
>> and fix up the process.
>
> First, I thought I made my merge wrong, but there is no
>
> $ grep spin_lock_init linux-next/drivers/gpu/drm/i915/i915_dma.c | grep gt_lock
>
> Same in [1]:
> ...
>         spin_lock_init(&dev_priv->irq_lock);
>         spin_lock_init(&dev_priv->gpu_error.lock);
>         spin_lock_init(&dev_priv->backlight.lock);
>         spin_lock_init(&dev_priv->uncore.lock);

It's hiding in plain sight here ;-) -next has it renamed to
uncore.lock, so I've applied the patch to -fixes only. I've also
changed the patch in -fixes to cause an explicit conflict here, makes
merging a bit easier.
-Daniel

>         spin_lock_init(&dev_priv->mm.object_stat_lock);
> ...
>
> - Sedat -
>
> [1] http://cgit.freedesktop.org/~danvet/drm-intel/tree/drivers/gpu/drm/i915/i915_dma.c?h=drm-intel-nightly#n1477
>
>
>> -Daniel
>> --
>> Daniel Vetter
>> Software Engineer, Intel Corporation
>> +41 (0) 79 365 57 48 - http://blog.ffwll.ch



--
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
Sedat Dilek July 25, 2013, 3:34 p.m. UTC | #10
On Thu, Jul 25, 2013 at 5:05 PM, Daniel Vetter <daniel.vetter@ffwll.ch> wrote:
> On Thu, Jul 25, 2013 at 5:03 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>> On Thu, Jul 25, 2013 at 4:27 PM, Daniel Vetter <daniel@ffwll.ch> wrote:
>>> On Thu, Jul 25, 2013 at 04:23:40PM +0200, Sedat Dilek wrote:
>>>> On Thu, Jul 25, 2013 at 3:36 PM, Daniel Vetter <daniel@ffwll.ch> wrote:
>>>> > On Thu, Jul 25, 2013 at 12:37:44PM +0200, Sedat Dilek wrote:
>>>> >> On Thu, Jul 25, 2013 at 12:21 PM, Jani Nikula
>>>> >> <jani.nikula@linux.intel.com> wrote:
>>>> >> > On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>>>> >> >> On Thu, Jul 25, 2013 at 12:02 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>>>> >> >>> On Thu, Jul 25, 2013 at 11:44 AM, Jani Nikula
>>>> >> >>> <jani.nikula@linux.intel.com> wrote:
>>>> >> >>>> On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>>>> >> >>>>> On Thu, Jul 25, 2013 at 7:12 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>>>> >> >>>>>> Hi all,
>>>> >> >>>>>>
>>>> >> >>>>>> Changes since 20130724:
>>>> >> >>>>>>
>>>> >> >>>>>> Removed tree:
>>>> >> >>>>>>         arm-dt (at maintainer's request)
>>>> >> >>>>>>
>>>> >> >>>>>> The wireless-next tree lost its build failure and gained a conflict
>>>> >> >>>>>> against Linus' tree.
>>>> >> >>>>>>
>>>> >> >>>>>> The tty tree lost its build failure.
>>>> >> >>>>>>
>>>> >> >>>>>> The staging tree gained a build failure for which I disabled a driver.
>>>> >> >>>>>>
>>>> >> >>>>>> ----------------------------------------------------------------------------
>>>> >> >>>>>>
>>>> >> >>>>>
>>>> >> >>>>> [ CCing drm and drm-intel folks ]
>>>> >> >>>>>
>>>> >> >>>>> With today's next-20130725 I see the following:
>>>> >> >>>>
>>>> >> >>>> Use of dev_priv->gt_lock in I915_WRITE through
>>>> >> >>>> intel_disable_gt_powersave before spin lock init, caused by
>>>> >> >>>>
>>>> >> >>>> commit 181d1b9e31c668259d3798c521672afb8edd355c
>>>> >> >>>> Author: Daniel Vetter <daniel.vetter@ffwll.ch>
>>>> >> >>>> Date:   Sun Jul 21 13:16:24 2013 +0200
>>>> >> >>>>
>>>> >> >>>>     drm/i915: fix up gt init sequence fallout
>>>> >> >>>>
>>>> >> >>>
>>>> >> >>> Ah, cool.
>>>> >> >>>
>>>> >> >>> I assumed/tested "drm/i915: fix the racy object accounting", but this
>>>> >> >>> does not fix it.
>>>> >> >>> Will try with yours.
>>>> >> >>>
>>>> >> >>
>>>> >> >> Sorry, Jani.
>>>> >> >>
>>>> >> >> next-20130725 ships the patch you pointed, too.
>>>> >> >
>>>> >> > Confused. I meant that the above mentioned commit "drm/i915: fix up gt
>>>> >> > init sequence fallout" causes the problem. The patch I included in my
>>>> >> > mail should fix it. Could you try that please?
>>>> >> >
>>>> >>
>>>> >> [ Note2myself: Do not read half of the message... ]
>>>> >>
>>>> >> The bad... Your patch needed some refresh against next-20130725 (guess
>>>> >> it's against drm-intel-nightly).
>>>> >>
>>>> >> The good... YES, your patch fixes the issue for me!
>>>> >>
>>>> >> The ugly... /me.
>>>> >>
>>>> >> Feel free to add my:
>>>> >>
>>>> >>        Tested-by: Sedat Dilek <sedat.dilek@gmail.com>
>>>> >>
>>>> >> Thanks for the quick fix!
>>>> >
>>>> > Thanks a lot for the report, since this should be something I should have
>>>> > caught. And for added insult the offending patch is already in Linus' tree
>>>> > :( Patch merged to -fixes.
>>>>
>>>> Hmmm, don't you merge -fixes into -nightly?
>>>
>>> I do, but it seems to only blow up with spinlock debugging enabling I
>>> think. Our QA should run full debug buils in the -nightly testing, but
>>> apparently they didn't catch this. I'm looking into what went wrong here
>>> and fix up the process.
>>
>> First, I thought I made my merge wrong, but there is no
>>
>> $ grep spin_lock_init linux-next/drivers/gpu/drm/i915/i915_dma.c | grep gt_lock
>>
>> Same in [1]:
>> ...
>>         spin_lock_init(&dev_priv->irq_lock);
>>         spin_lock_init(&dev_priv->gpu_error.lock);
>>         spin_lock_init(&dev_priv->backlight.lock);
>>         spin_lock_init(&dev_priv->uncore.lock);
>
> It's hiding in plain sight here ;-) -next has it renamed to
> uncore.lock, so I've applied the patch to -fixes only. I've also
> changed the patch in -fixes to cause an explicit conflict here, makes
> merging a bit easier.

Ah, I see... "drm/i915: Colocate all GT access routines in the same file"

@@ -1493,7 +1477,7 @@ int i915_driver_load(struct drm_device *dev,
unsigned long flags)
...
- spin_lock_init(&dev_priv->gt_lock);
+ spin_lock_init(&dev_priv->uncore.lock);
...

- Sedat -

http://cgit.freedesktop.org/~danvet/drm-intel/commit/drivers/gpu/drm/i915/i915_dma.c?h=drm-intel-nightly&id=907b28c56ea40629aa6595ddfa414ec2fc7da41c

> -Daniel
>
>>         spin_lock_init(&dev_priv->mm.object_stat_lock);
>> ...
>>
>> - Sedat -
>>
>> [1] http://cgit.freedesktop.org/~danvet/drm-intel/tree/drivers/gpu/drm/i915/i915_dma.c?h=drm-intel-nightly#n1477
>>
>>
>>> -Daniel
>>> --
>>> Daniel Vetter
>>> Software Engineer, Intel Corporation
>>> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
>
>
>
> --
> Daniel Vetter
> Software Engineer, Intel Corporation
> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
Sedat Dilek July 25, 2013, 4:11 p.m. UTC | #11
On Thu, Jul 25, 2013 at 5:34 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> On Thu, Jul 25, 2013 at 5:05 PM, Daniel Vetter <daniel.vetter@ffwll.ch> wrote:
>> On Thu, Jul 25, 2013 at 5:03 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>>> On Thu, Jul 25, 2013 at 4:27 PM, Daniel Vetter <daniel@ffwll.ch> wrote:
>>>> On Thu, Jul 25, 2013 at 04:23:40PM +0200, Sedat Dilek wrote:
>>>>> On Thu, Jul 25, 2013 at 3:36 PM, Daniel Vetter <daniel@ffwll.ch> wrote:
>>>>> > On Thu, Jul 25, 2013 at 12:37:44PM +0200, Sedat Dilek wrote:
>>>>> >> On Thu, Jul 25, 2013 at 12:21 PM, Jani Nikula
>>>>> >> <jani.nikula@linux.intel.com> wrote:
>>>>> >> > On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>>>>> >> >> On Thu, Jul 25, 2013 at 12:02 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>>>>> >> >>> On Thu, Jul 25, 2013 at 11:44 AM, Jani Nikula
>>>>> >> >>> <jani.nikula@linux.intel.com> wrote:
>>>>> >> >>>> On Thu, 25 Jul 2013, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>>>>> >> >>>>> On Thu, Jul 25, 2013 at 7:12 AM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>>>>> >> >>>>>> Hi all,
>>>>> >> >>>>>>
>>>>> >> >>>>>> Changes since 20130724:
>>>>> >> >>>>>>
>>>>> >> >>>>>> Removed tree:
>>>>> >> >>>>>>         arm-dt (at maintainer's request)
>>>>> >> >>>>>>
>>>>> >> >>>>>> The wireless-next tree lost its build failure and gained a conflict
>>>>> >> >>>>>> against Linus' tree.
>>>>> >> >>>>>>
>>>>> >> >>>>>> The tty tree lost its build failure.
>>>>> >> >>>>>>
>>>>> >> >>>>>> The staging tree gained a build failure for which I disabled a driver.
>>>>> >> >>>>>>
>>>>> >> >>>>>> ----------------------------------------------------------------------------
>>>>> >> >>>>>>
>>>>> >> >>>>>
>>>>> >> >>>>> [ CCing drm and drm-intel folks ]
>>>>> >> >>>>>
>>>>> >> >>>>> With today's next-20130725 I see the following:
>>>>> >> >>>>
>>>>> >> >>>> Use of dev_priv->gt_lock in I915_WRITE through
>>>>> >> >>>> intel_disable_gt_powersave before spin lock init, caused by
>>>>> >> >>>>
>>>>> >> >>>> commit 181d1b9e31c668259d3798c521672afb8edd355c
>>>>> >> >>>> Author: Daniel Vetter <daniel.vetter@ffwll.ch>
>>>>> >> >>>> Date:   Sun Jul 21 13:16:24 2013 +0200
>>>>> >> >>>>
>>>>> >> >>>>     drm/i915: fix up gt init sequence fallout
>>>>> >> >>>>
>>>>> >> >>>
>>>>> >> >>> Ah, cool.
>>>>> >> >>>
>>>>> >> >>> I assumed/tested "drm/i915: fix the racy object accounting", but this
>>>>> >> >>> does not fix it.
>>>>> >> >>> Will try with yours.
>>>>> >> >>>
>>>>> >> >>
>>>>> >> >> Sorry, Jani.
>>>>> >> >>
>>>>> >> >> next-20130725 ships the patch you pointed, too.
>>>>> >> >
>>>>> >> > Confused. I meant that the above mentioned commit "drm/i915: fix up gt
>>>>> >> > init sequence fallout" causes the problem. The patch I included in my
>>>>> >> > mail should fix it. Could you try that please?
>>>>> >> >
>>>>> >>
>>>>> >> [ Note2myself: Do not read half of the message... ]
>>>>> >>
>>>>> >> The bad... Your patch needed some refresh against next-20130725 (guess
>>>>> >> it's against drm-intel-nightly).
>>>>> >>
>>>>> >> The good... YES, your patch fixes the issue for me!
>>>>> >>
>>>>> >> The ugly... /me.
>>>>> >>
>>>>> >> Feel free to add my:
>>>>> >>
>>>>> >>        Tested-by: Sedat Dilek <sedat.dilek@gmail.com>
>>>>> >>
>>>>> >> Thanks for the quick fix!
>>>>> >
>>>>> > Thanks a lot for the report, since this should be something I should have
>>>>> > caught. And for added insult the offending patch is already in Linus' tree
>>>>> > :( Patch merged to -fixes.
>>>>>
>>>>> Hmmm, don't you merge -fixes into -nightly?
>>>>
>>>> I do, but it seems to only blow up with spinlock debugging enabling I
>>>> think. Our QA should run full debug buils in the -nightly testing, but
>>>> apparently they didn't catch this. I'm looking into what went wrong here
>>>> and fix up the process.
>>>
>>> First, I thought I made my merge wrong, but there is no
>>>
>>> $ grep spin_lock_init linux-next/drivers/gpu/drm/i915/i915_dma.c | grep gt_lock
>>>
>>> Same in [1]:
>>> ...
>>>         spin_lock_init(&dev_priv->irq_lock);
>>>         spin_lock_init(&dev_priv->gpu_error.lock);
>>>         spin_lock_init(&dev_priv->backlight.lock);
>>>         spin_lock_init(&dev_priv->uncore.lock);
>>
>> It's hiding in plain sight here ;-) -next has it renamed to
>> uncore.lock, so I've applied the patch to -fixes only. I've also
>> changed the patch in -fixes to cause an explicit conflict here, makes
>> merging a bit easier.
>
> Ah, I see... "drm/i915: Colocate all GT access routines in the same file"
>
> @@ -1493,7 +1477,7 @@ int i915_driver_load(struct drm_device *dev,
> unsigned long flags)
> ...
> - spin_lock_init(&dev_priv->gt_lock);
> + spin_lock_init(&dev_priv->uncore.lock);
> ...
>

Might be OT, but I cannot use my X graphics stack containing
libdrm-2.4.46, mesa-9.1.5 and intel-ddx 2.21.12-git (tried also
v2.21.11).
Switching back to the one from Ubuntu/precise lets my X start.


[    40.379] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[    40.379] (II) AIGLX: enabled GLX_INTEL_swap_event
[    40.380] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[    40.380] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[    40.380] (II) AIGLX: Loaded and initialized i965
[    40.380] (II) GLX: Initialized DRI2 GL provider for screen 0
[    40.380]
Fatal server error:
[    40.380] failed to create screen resources
[    40.380]
Please consult the The X.Org Foundation support
         at http://wiki.x.org
 for help.
[    40.380] Please also check the log file at "/var/log/Xorg.0.log"
for additional information.
[    40.380]
[    40.380] (II) AIGLX: Suspending AIGLX clients for VT switch
[    40.396]  ddxSigGiveUp: Closing log
[    40.398] Server terminated with error (1). Closing log file.

- Sedat -

> - Sedat -
>
> http://cgit.freedesktop.org/~danvet/drm-intel/commit/drivers/gpu/drm/i915/i915_dma.c?h=drm-intel-nightly&id=907b28c56ea40629aa6595ddfa414ec2fc7da41c
>
>> -Daniel
>>
>>>         spin_lock_init(&dev_priv->mm.object_stat_lock);
>>> ...
>>>
>>> - Sedat -
>>>
>>> [1] http://cgit.freedesktop.org/~danvet/drm-intel/tree/drivers/gpu/drm/i915/i915_dma.c?h=drm-intel-nightly#n1477
>>>
>>>
>>>> -Daniel
>>>> --
>>>> Daniel Vetter
>>>> Software Engineer, Intel Corporation
>>>> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
>>
>>
>>
>> --
>> Daniel Vetter
>> Software Engineer, Intel Corporation
>> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
Chris Wilson July 25, 2013, 4:31 p.m. UTC | #12
On Thu, Jul 25, 2013 at 06:11:18PM +0200, Sedat Dilek wrote:
> Might be OT, but I cannot use my X graphics stack containing
> libdrm-2.4.46, mesa-9.1.5 and intel-ddx 2.21.12-git (tried also
> v2.21.11).
> Switching back to the one from Ubuntu/precise lets my X start.
> 
> 
> [    40.379] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
> [    40.379] (II) AIGLX: enabled GLX_INTEL_swap_event
> [    40.380] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
> [    40.380] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
> [    40.380] (II) AIGLX: Loaded and initialized i965
> [    40.380] (II) GLX: Initialized DRI2 GL provider for screen 0
> [    40.380]
> Fatal server error:
> [    40.380] failed to create screen resources
> [    40.380]
> Please consult the The X.Org Foundation support
>          at http://wiki.x.org
>  for help.
> [    40.380] Please also check the log file at "/var/log/Xorg.0.log"
> for additional information.
> [    40.380]
> [    40.380] (II) AIGLX: Suspending AIGLX clients for VT switch
> [    40.396]  ddxSigGiveUp: Closing log
> [    40.398] Server terminated with error (1). Closing log file.

Please attach the full Xorg.0.log so that I can make a few guesses.
-Chris
Sedat Dilek July 25, 2013, 4:35 p.m. UTC | #13
On Thu, Jul 25, 2013 at 6:31 PM, Chris Wilson <chris@chris-wilson.co.uk> wrote:
> On Thu, Jul 25, 2013 at 06:11:18PM +0200, Sedat Dilek wrote:
>> Might be OT, but I cannot use my X graphics stack containing
>> libdrm-2.4.46, mesa-9.1.5 and intel-ddx 2.21.12-git (tried also
>> v2.21.11).
>> Switching back to the one from Ubuntu/precise lets my X start.
>>
>>
>> [    40.379] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
>> [    40.379] (II) AIGLX: enabled GLX_INTEL_swap_event
>> [    40.380] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
>> [    40.380] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
>> [    40.380] (II) AIGLX: Loaded and initialized i965
>> [    40.380] (II) GLX: Initialized DRI2 GL provider for screen 0
>> [    40.380]
>> Fatal server error:
>> [    40.380] failed to create screen resources
>> [    40.380]
>> Please consult the The X.Org Foundation support
>>          at http://wiki.x.org
>>  for help.
>> [    40.380] Please also check the log file at "/var/log/Xorg.0.log"
>> for additional information.
>> [    40.380]
>> [    40.380] (II) AIGLX: Suspending AIGLX clients for VT switch
>> [    40.396]  ddxSigGiveUp: Closing log
>> [    40.398] Server terminated with error (1). Closing log file.
>
> Please attach the full Xorg.0.log so that I can make a few guesses.

Linux-kernel: This happens with drm-intel-nightly pulled into next-20130725.

- Sedat -

> -Chris
>
> --
> Chris Wilson, Intel Open Source Technology Centre
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.11.0-rc2-next20130725-6-iniza-small (sedat.dilek@gmail.com@fambox) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #1 SMP Thu Jul 25 17:34:28 CEST 2013
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz.next root=UUID=001AADA61AAD9964 loop=/ubuntu/disks/root.disk ro text
[    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 [0x0204c000, 0x0204cfff] PGTABLE
[    0.000000] BRK [0x0204d000, 0x0204dfff] PGTABLE
[    0.000000] BRK [0x0204e000, 0x0204efff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x11fc00000-0x11fdfffff]
[    0.000000]  [mem 0x11fc00000-0x11fdfffff] page 2M
[    0.000000] BRK [0x0204f000, 0x0204ffff] 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 [0x02050000, 0x02050fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0xdafff000-0xdaffffff]
[    0.000000]  [mem 0xdafff000-0xdaffffff] page 4k
[    0.000000] RAMDISK: [mem 0x37962000-0x37ca8fff]
[    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 0x11fdf7000-0x11fdfbfff]
[    0.000000]  [ffffea0000000000-ffffea0003ffffff] PMD -> [ffff88011b400000-ffff88011edfffff] 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: 56 pages used for memmap
[    0.000000]   DMA zone: 156 pages reserved
[    0.000000]   DMA zone: 3996 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 12127 pages used for memmap
[    0.000000]   DMA32 zone: 886944 pages, LIFO batch:31
[    0.000000]   Normal zone: 1785 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: [mem 0x0009d000-0x0009dfff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x40000000-0x401fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xd9c9f000-0xdae7efff]
[    0.000000] PM: Registered nosave memory: [mem 0xdae7f000-0xdaf9efff]
[    0.000000] PM: Registered nosave memory: [mem 0xdaf9f000-0xdaffefff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb000000-0xdf9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xdfa00000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffd7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffd80000-0xffffffff]
[    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 29 pages/cpu @ffff88011fa00000 s87552 r8192 d23040 u262144
[    0.000000] pcpu-alloc: s87552 r8192 d23040 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: 1007376
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz.next root=UUID=001AADA61AAD9964 loop=/ubuntu/disks/root.disk ro text
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    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: 3938460K/4086000K available (7119K kernel code, 1044K rwdata, 3132K rodata, 1332K init, 1984K bss, 147540K reserved)
[    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 VGA+ 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] ODEBUG: 0 of 0 active objects replaced
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.004000] tsc: Detected 1596.440 MHz processor
[    0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 3192.88 BogoMIPS (lpj=6385760)
[    0.000081] pid_max: default: 32768 minimum: 301
[    0.000246] Security Framework initialized
[    0.000304] AppArmor: AppArmor initialized
[    0.000340] Yama: becoming mindful.
[    0.000750] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.001857] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.002359] Mount-cache hash table entries: 256
[    0.002913] Initializing cgroup subsys memory
[    0.003011] Initializing cgroup subsys devices
[    0.003050] Initializing cgroup subsys freezer
[    0.003088] Initializing cgroup subsys blkio
[    0.003126] Initializing cgroup subsys perf_event
[    0.003165] Initializing cgroup subsys hugetlb
[    0.003252] Disabled fast string operations
[    0.003290] CPU: Physical Processor ID: 0
[    0.003326] CPU: Processor Core ID: 0
[    0.003366] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.003366] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.003432] mce: CPU supports 7 MCE banks
[    0.003483] CPU0: Thermal monitoring enabled (TM1)
[    0.003528] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
[    0.003528] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
[    0.003528] tlb_flushall_shift: 5
[    0.003701] Freeing SMP alternatives memory: 24K (ffffffff81e54000 - ffffffff81e5a000)
[    0.004790] ACPI: Core revision 20130626
[    0.015648] ACPI: All ACPI Tables successfully acquired
[    0.029570] ftrace: allocating 27066 entries in 106 pages
[    0.045162] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.084863] smpboot: CPU0: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz (fam: 06, model: 2a, stepping: 07)
[    0.085477] TSC deadline timer enabled
[    0.085490] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
[    0.085638] ... version:                3
[    0.085674] ... bit width:              48
[    0.085710] ... generic registers:      4
[    0.085747] ... value mask:             0000ffffffffffff
[    0.085785] ... max period:             0000ffffffffffff
[    0.085823] ... fixed-purpose events:   3
[    0.085859] ... event mask:             000000070000000f
[    0.098982] Disabled fast string operations
[    0.102164] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.113842] Disabled fast string operations
[    0.127552] Disabled fast string operations
[    0.087908] smpboot: Booting Node   0, Processors  #1 #2 #3
[    0.129686] Brought up 4 CPUs
[    0.129791] smpboot: Total of 4 processors activated (12771.52 BogoMIPS)
[    0.133893] devtmpfs: initialized
[    0.135945] EVM: security.selinux
[    0.135980] EVM: security.SMACK64
[    0.136015] EVM: security.capability
[    0.136141] PM: Registering ACPI NVS region [mem 0xdae7f000-0xdaf9efff] (1179648 bytes)
[    0.137682] regulator-dummy: no parameters
[    0.137871] NET: Registered protocol family 16
[    0.138213] cpuidle: using governor ladder
[    0.138250] cpuidle: using governor menu
[    0.138329] ACPI: bus type PCI registered
[    0.138480] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.138539] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.145353] PCI: Using configuration type 1 for base access
[    0.148747] bio: create slab <bio-0> at 0
[    0.149204] ACPI: Added _OSI(Module Device)
[    0.149242] ACPI: Added _OSI(Processor Device)
[    0.149279] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.149316] ACPI: Added _OSI(Processor Aggregator Device)
[    0.151116] ACPI: EC: Look up EC in DSDT
[    0.177533] ACPI: Executed 1 blocks of module-level executable AML code
[    0.183591] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.195258] ACPI: SSDT 00000000dae70718 00688 (v01  PmRef  Cpu0Cst 00003001 INTL 20061109)
[    0.195846] ACPI: Dynamic OEM Table Load:
[    0.195916] ACPI: SSDT           (null) 00688 (v01  PmRef  Cpu0Cst 00003001 INTL 20061109)
[    0.205976] ACPI: SSDT 00000000dae71a98 00303 (v01  PmRef    ApIst 00003000 INTL 20061109)
[    0.206642] ACPI: Dynamic OEM Table Load:
[    0.206711] ACPI: SSDT           (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20061109)
[    0.217882] ACPI: SSDT 00000000dae6fd98 00119 (v01  PmRef    ApCst 00003000 INTL 20061109)
[    0.218442] ACPI: Dynamic OEM Table Load:
[    0.218511] ACPI: SSDT           (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20061109)
[    0.231871] ACPI: Interpreter enabled
[    0.231922] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130626/hwxface-571)
[    0.232030] ACPI: (supports S0 S1 S3 S4 S5)
[    0.232067] ACPI: Using IOAPIC for interrupt routing
[    0.232160] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.232445] ACPI: No dock devices found.
[    0.256156] ACPI: Power Resource [FN00] (off)
[    0.256379] ACPI: Power Resource [FN01] (off)
[    0.256596] ACPI: Power Resource [FN02] (off)
[    0.256811] ACPI: Power Resource [FN03] (off)
[    0.257031] ACPI: Power Resource [FN04] (off)
[    0.258214] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.258589] \_SB_.PCI0:_OSC invalid UUID
[    0.258591] _OSC request data:1 8 0 
[    0.259563] PCI host bridge to bus 0000:00
[    0.259602] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.259643] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.259684] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.259724] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.259766] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfeafffff]
[    0.259808] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
[    0.259864] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
[    0.260017] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
[    0.260030] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit]
[    0.260038] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.260043] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    0.260217] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.260243] pci 0000:00:16.0: reg 0x10: [mem 0xf0705000-0xf070500f 64bit]
[    0.260329] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.260482] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[    0.260506] pci 0000:00:1a.0: reg 0x10: [mem 0xf070a000-0xf070a3ff]
[    0.260608] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.260713] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.260731] pci 0000:00:1b.0: reg 0x10: [mem 0xf0700000-0xf0703fff 64bit]
[    0.260809] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.260855] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.260961] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.261053] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.261101] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.261210] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
[    0.261299] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.261360] pci 0000:00:1c.3: System wakeup disabled by ACPI
[    0.261469] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[    0.261559] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.261690] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[    0.261714] pci 0000:00:1d.0: reg 0x10: [mem 0xf0709000-0xf07093ff]
[    0.261815] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.261920] pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
[    0.262117] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
[    0.262139] pci 0000:00:1f.2: reg 0x10: [io  0x3088-0x308f]
[    0.262149] pci 0000:00:1f.2: reg 0x14: [io  0x3094-0x3097]
[    0.262159] pci 0000:00:1f.2: reg 0x18: [io  0x3080-0x3087]
[    0.262169] pci 0000:00:1f.2: reg 0x1c: [io  0x3090-0x3093]
[    0.262178] pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
[    0.262189] pci 0000:00:1f.2: reg 0x24: [mem 0xf0708000-0xf07087ff]
[    0.262241] pci 0000:00:1f.2: PME# supported from D3hot
[    0.262357] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.262375] pci 0000:00:1f.3: reg 0x10: [mem 0xf0704000-0xf07040ff 64bit]
[    0.262400] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.262772] pci 0000:01:00.0: [8086:0091] type 00 class 0x028000
[    0.262954] pci 0000:01:00.0: reg 0x10: [mem 0xf0600000-0xf0601fff 64bit]
[    0.263663] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    0.263834] pci 0000:01:00.0: System wakeup disabled by ACPI
[    0.269832] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.269876] pci 0000:00:1c.0:   bridge window [mem 0xf0600000-0xf06fffff]
[    0.270055] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[    0.270126] pci 0000:02:00.0: reg 0x10: [io  0x2000-0x20ff]
[    0.270249] pci 0000:02:00.0: reg 0x18: [mem 0xf0404000-0xf0404fff 64bit pref]
[    0.270325] pci 0000:02:00.0: reg 0x20: [mem 0xf0400000-0xf0403fff 64bit pref]
[    0.270662] pci 0000:02:00.0: supports D1 D2
[    0.270664] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.270787] pci 0000:02:00.0: System wakeup disabled by ACPI
[    0.277762] pci 0000:00:1c.3: PCI bridge to [bus 02]
[    0.277826] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
[    0.277835] pci 0000:00:1c.3:   bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
[    0.277960] pci 0000:03:00.0: [1b21:1042] type 00 class 0x0c0330
[    0.277997] pci 0000:03:00.0: reg 0x10: [mem 0xf0500000-0xf0507fff 64bit]
[    0.278196] pci 0000:03:00.0: PME# supported from D3hot D3cold
[    0.285738] pci 0000:00:1c.4: PCI bridge to [bus 03]
[    0.285815] pci 0000:00:1c.4:   bridge window [mem 0xf0500000-0xf05fffff]
[    0.285998] \_SB_.PCI0:_OSC invalid UUID
[    0.286000] _OSC request data:1 1f 0 
[    0.286005] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[    0.286061] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
[    0.286976] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.287326] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.287720] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.288067] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.288413] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
[    0.288786] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.289179] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.289530] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
[    0.290407] ACPI: Enabled 4 GPEs in block 00 to 3F
[    0.290485] ACPI: \_SB_.PCI0: notify handler is installed
[    0.290547] Found 1 acpi root devices
[    0.290616] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.290972] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.291030] vgaarb: loaded
[    0.291063] vgaarb: bridge control possible 0000:00:02.0
[    0.291777] SCSI subsystem initialized
[    0.291814] ACPI: bus type ATA registered
[    0.291948] libata version 3.00 loaded.
[    0.292010] ACPI: bus type USB registered
[    0.292091] usbcore: registered new interface driver usbfs
[    0.292154] usbcore: registered new interface driver hub
[    0.292248] usbcore: registered new device driver usb
[    0.292631] PCI: Using ACPI for IRQ routing
[    0.294342] PCI: pci_cache_line_size set to 64 bytes
[    0.294453] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[    0.294456] e820: reserve RAM buffer [mem 0xd9c9f000-0xdbffffff]
[    0.294458] e820: reserve RAM buffer [mem 0xdb000000-0xdbffffff]
[    0.294460] e820: reserve RAM buffer [mem 0x11fe00000-0x11fffffff]
[    0.294705] NetLabel: Initializing
[    0.294740] NetLabel:  domain hash size = 128
[    0.294776] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.294859] NetLabel:  unlabeled traffic allowed by default
[    0.294989] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.295180] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.297241] Switched to clocksource hpet
[    0.314949] AppArmor: AppArmor Filesystem Enabled
[    0.315038] pnp: PnP ACPI init
[    0.315088] ACPI: bus type PNP registered
[    0.315506] pnp 00:00: [dma 4]
[    0.315549] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.315595] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
[    0.315761] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.315820] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.315898] system 00:04: [io  0x0680-0x069f] has been reserved
[    0.315941] system 00:04: [io  0x1000-0x100f] has been reserved
[    0.315982] system 00:04: [io  0x5000-0x5003] has been reserved
[    0.316022] system 00:04: [io  0xffff] has been reserved
[    0.316062] system 00:04: [io  0x0400-0x0453] could not be reserved
[    0.316103] system 00:04: [io  0x0458-0x047f] has been reserved
[    0.316144] system 00:04: [io  0x0500-0x057f] has been reserved
[    0.316184] system 00:04: [io  0x0a00-0x0a0f] has been reserved
[    0.316225] system 00:04: [io  0x164e-0x164f] has been reserved
[    0.316265] system 00:04: [io  0x5000-0x500f] could not be reserved
[    0.316308] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.316358] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.316450] system 00:06: [io  0x0454-0x0457] has been reserved
[    0.316493] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.316551] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.316635] pnp 00:08: Plug and Play ACPI device, IDs ETD0b00 SYN0002 PNP0f13 (active)
[    0.316947] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.316990] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.317032] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.317073] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.317115] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.317157] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.317198] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.317251] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.317294] system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
[    0.317336] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.317379] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.318092] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.318132] pnp: PnP ACPI: found 11 devices
[    0.318169] ACPI: bus type PNP unregistered
[    0.326264] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.326308] pci 0000:00:1c.0:   bridge window [mem 0xf0600000-0xf06fffff]
[    0.326358] pci 0000:00:1c.3: PCI bridge to [bus 02]
[    0.326398] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
[    0.326445] pci 0000:00:1c.3:   bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
[    0.326506] pci 0000:00:1c.4: PCI bridge to [bus 03]
[    0.326548] pci 0000:00:1c.4:   bridge window [mem 0xf0500000-0xf05fffff]
[    0.327020] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.327022] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.327024] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.327027] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfeafffff]
[    0.327028] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
[    0.327031] pci_bus 0000:01: resource 1 [mem 0xf0600000-0xf06fffff]
[    0.327033] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.327035] pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf04fffff 64bit pref]
[    0.327037] pci_bus 0000:03: resource 1 [mem 0xf0500000-0xf05fffff]
[    0.327173] NET: Registered protocol family 2
[    0.327579] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
[    0.327816] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes)
[    0.328147] TCP: Hash tables configured (established 32768 bind 32768)
[    0.328445] TCP: reno registered
[    0.328498] UDP hash table entries: 2048 (order: 5, 196608 bytes)
[    0.328602] UDP-Lite hash table entries: 2048 (order: 5, 196608 bytes)
[    0.328897] NET: Registered protocol family 1
[    0.328953] pci 0000:00:02.0: Boot video device
[    0.329745] PCI: CLS 64 bytes, default 64
[    0.329955] Trying to unpack rootfs image as initramfs...
[    0.405741] Freeing initrd memory: 3356K (ffff880037962000 - ffff880037ca9000)
[    0.405801] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.405843] software IO TLB [mem 0xd5c9f000-0xd9c9f000] (64MB) mapped at [ffff8800d5c9f000-ffff8800d9c9efff]
[    0.406276] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x28
[    0.406324] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x28
[    0.406376] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x28
[    0.406429] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x28
[    0.406553] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.406611] Scanning for low memory corruption every 60 seconds
[    0.407251] Initialise module verification
[    0.407354] audit: initializing netlink socket (disabled)
[    0.407414] type=2000 audit(1374774047.392:1): initialized
[    0.437614] bounce pool size: 64 pages
[    0.438175] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.438898] VFS: Disk quotas dquot_6.5.2
[    0.438977] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.439849] fuse init (API version 7.22)
[    0.439994] msgmni has been set to 7698
[    0.440702] Key type asymmetric registered
[    0.440740] Asymmetric key parser 'x509' registered
[    0.440826] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.440939] io scheduler noop registered
[    0.440976] io scheduler deadline registered (default)
[    0.441050] io scheduler cfq registered
[    0.441520] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.441600] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.441786] intel_idle: MWAIT substates: 0x21120
[    0.441788] intel_idle: v0.4 model 0x2A
[    0.441789] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.442541] ACPI: AC Adapter [ADP1] (on-line)
[    0.442870] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
[    0.443146] ACPI: Lid Switch [LID0]
[    0.443256] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    0.443323] ACPI: Power Button [PWRB]
[    0.443426] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.443487] ACPI: Power Button [PWRF]
[    0.443622] ACPI: Fan [FAN0] (off)
[    0.443710] ACPI: Fan [FAN1] (off)
[    0.443793] ACPI: Fan [FAN2] (off)
[    0.443879] ACPI: Fan [FAN3] (off)
[    0.443966] ACPI: Fan [FAN4] (off)
[    0.444086] ACPI: Requesting acpi_cpufreq
[    0.447705] thermal LNXTHERM:00: registered as thermal_zone0
[    0.447746] ACPI: Thermal Zone [TZ00] (67 C)
[    0.448160] thermal LNXTHERM:01: registered as thermal_zone1
[    0.448199] ACPI: Thermal Zone [TZ01] (30 C)
[    0.448286] GHES: HEST is not enabled!
[    0.448524] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.453913] ACPI: Battery Slot [BAT1] (battery present)
[    0.453931] Linux agpgart interface v0.103
[    0.456672] brd: module loaded
[    0.458027] loop: module loaded
[    0.458304] mei_me 0000:00:16.0: setting latency timer to 64
[    0.458352] mei_me 0000:00:16.0: irq 40 for MSI/MSI-X
[    0.461642] ahci 0000:00:1f.2: version 3.0
[    0.461824] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[    0.462015] ahci: SSS flag set, parallel bus scan disabled
[    0.477267] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1b impl SATA mode
[    0.477329] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pio slum part ems sxs apst 
[    0.477389] ahci 0000:00:1f.2: setting latency timer to 64
[    0.502135] scsi0 : ahci
[    0.502474] scsi1 : ahci
[    0.502723] scsi2 : ahci
[    0.503006] scsi3 : ahci
[    0.503257] scsi4 : ahci
[    0.503508] scsi5 : ahci
[    0.503644] ata1: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708100 irq 41
[    0.503700] ata2: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708180 irq 41
[    0.503754] ata3: DUMMY
[    0.503788] ata4: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708280 irq 41
[    0.503842] ata5: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708300 irq 41
[    0.503896] ata6: DUMMY
[    0.504918] libphy: Fixed MDIO Bus: probed
[    0.505249] tun: Universal TUN/TAP device driver, 1.6
[    0.505287] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.505423] PPP generic driver version 2.4.2
[    0.505581] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.505622] ehci_hcd: block sizes: qh 112 qtd 96 itd 192 sitd 96
[    0.505631] ehci-pci: EHCI PCI platform driver
[    0.505872] ehci-pci 0000:00:1a.0: setting latency timer to 64
[    0.505881] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    0.505929] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    0.506003] ehci-pci 0000:00:1a.0: debug port 2
[    0.506043] ehci-pci 0000:00:1a.0: reset hcs_params 0x200002 dbg=2 cc=0 pcc=0 ordered !ppc ports=2
[    0.506047] ehci-pci 0000:00:1a.0: reset hcc_params 36881 caching frame 1024 64 bit addr
[    0.506085] ehci-pci 0000:00:1a.0: reset command 0080002 (park)=0 ithresh=8 period=1024 Reset HALT
[    0.509955] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    0.509957] ehci-pci 0000:00:1a.0: supports USB remote wakeup
[    0.509997] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf070a000
[    0.510038] ehci-pci 0000:00:1a.0: init command 0010001 (park)=0 ithresh=1 period=1024 RUN
[    0.521196] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    0.521331] usb usb1: default language 0x0409
[    0.521343] usb usb1: udev 1, busnum 1, minor = 0
[    0.521345] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    0.521386] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.521438] usb usb1: Product: EHCI Host Controller
[    0.521475] usb usb1: Manufacturer: Linux 3.11.0-rc2-next20130725-6-iniza-small ehci_hcd
[    0.521528] usb usb1: SerialNumber: 0000:00:1a.0
[    0.521801] usb usb1: usb_probe_device
[    0.521805] usb usb1: configuration #1 chosen from 1 choice
[    0.521817] usb usb1: adding 1-0:1.0 (config #1, interface 0)
[    0.521850] hub 1-0:1.0: usb_probe_interface
[    0.521852] hub 1-0:1.0: usb_probe_interface - got id
[    0.521855] hub 1-0:1.0: USB hub found
[    0.521896] hub 1-0:1.0: 2 ports detected
[    0.521932] hub 1-0:1.0: standalone hub
[    0.521933] hub 1-0:1.0: no power switching (usb 1.0)
[    0.521935] hub 1-0:1.0: individual port over-current protection
[    0.521936] hub 1-0:1.0: power on to power good time: 20ms
[    0.521941] hub 1-0:1.0: local power source is good
[    0.521991] hub 1-0:1.0: trying to enable port power on non-switchable hub
[    0.522264] ehci-pci 0000:00:1d.0: setting latency timer to 64
[    0.522271] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    0.522314] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    0.522384] ehci-pci 0000:00:1d.0: debug port 2
[    0.522424] ehci-pci 0000:00:1d.0: reset hcs_params 0x200002 dbg=2 cc=0 pcc=0 ordered !ppc ports=2
[    0.522427] ehci-pci 0000:00:1d.0: reset hcc_params 36881 caching frame 1024 64 bit addr
[    0.522460] ehci-pci 0000:00:1d.0: reset command 0080002 (park)=0 ithresh=8 period=1024 Reset HALT
[    0.526332] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    0.526334] ehci-pci 0000:00:1d.0: supports USB remote wakeup
[    0.526383] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf0709000
[    0.526425] ehci-pci 0000:00:1d.0: init command 0010001 (park)=0 ithresh=1 period=1024 RUN
[    0.537182] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    0.537319] usb usb2: default language 0x0409
[    0.537331] usb usb2: udev 1, busnum 2, minor = 128
[    0.537334] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    0.537374] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.537427] usb usb2: Product: EHCI Host Controller
[    0.537464] usb usb2: Manufacturer: Linux 3.11.0-rc2-next20130725-6-iniza-small ehci_hcd
[    0.537517] usb usb2: SerialNumber: 0000:00:1d.0
[    0.537790] usb usb2: usb_probe_device
[    0.537794] usb usb2: configuration #1 chosen from 1 choice
[    0.537806] usb usb2: adding 2-0:1.0 (config #1, interface 0)
[    0.537836] hub 2-0:1.0: usb_probe_interface
[    0.537837] hub 2-0:1.0: usb_probe_interface - got id
[    0.537840] hub 2-0:1.0: USB hub found
[    0.537882] hub 2-0:1.0: 2 ports detected
[    0.537917] hub 2-0:1.0: standalone hub
[    0.537919] hub 2-0:1.0: no power switching (usb 1.0)
[    0.537920] hub 2-0:1.0: individual port over-current protection
[    0.537922] hub 2-0:1.0: power on to power good time: 20ms
[    0.537927] hub 2-0:1.0: local power source is good
[    0.537978] hub 2-0:1.0: trying to enable port power on non-switchable hub
[    0.538059] ehci-platform: EHCI generic platform driver
[    0.538113] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.538152] ohci_hcd: block sizes: ed 80 td 96
[    0.538160] ohci-pci: OHCI PCI platform driver
[    0.538214] ohci-platform: OHCI generic platform driver
[    0.538264] uhci_hcd: USB Universal Host Controller Interface driver
[    0.538546] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    0.538590] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 3
[    0.548357] xhci_hcd 0000:03:00.0: supports USB remote wakeup
[    0.548397] xhci_hcd 0000:03:00.0: irq 42 for MSI/MSI-X
[    0.548405] xhci_hcd 0000:03:00.0: irq 43 for MSI/MSI-X
[    0.548415] xhci_hcd 0000:03:00.0: irq 44 for MSI/MSI-X
[    0.548425] xhci_hcd 0000:03:00.0: irq 45 for MSI/MSI-X
[    0.548433] xhci_hcd 0000:03:00.0: irq 46 for MSI/MSI-X
[    0.548720] usb usb3: default language 0x0409
[    0.548733] usb usb3: udev 1, busnum 3, minor = 256
[    0.548735] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    0.548778] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.548833] usb usb3: Product: xHCI Host Controller
[    0.548872] usb usb3: Manufacturer: Linux 3.11.0-rc2-next20130725-6-iniza-small xhci_hcd
[    0.548936] usb usb3: SerialNumber: 0000:03:00.0
[    0.549169] usb usb3: usb_probe_device
[    0.549173] usb usb3: configuration #1 chosen from 1 choice
[    0.549179] xHCI xhci_add_endpoint called for root hub
[    0.549181] xHCI xhci_check_bandwidth called for root hub
[    0.549189] usb usb3: adding 3-0:1.0 (config #1, interface 0)
[    0.549222] hub 3-0:1.0: usb_probe_interface
[    0.549223] hub 3-0:1.0: usb_probe_interface - got id
[    0.549226] hub 3-0:1.0: USB hub found
[    0.549274] hub 3-0:1.0: 2 ports detected
[    0.549310] hub 3-0:1.0: standalone hub
[    0.549312] hub 3-0:1.0: no power switching (usb 1.0)
[    0.549313] hub 3-0:1.0: individual port over-current protection
[    0.549315] hub 3-0:1.0: Single TT
[    0.549316] hub 3-0:1.0: TT requires at most 8 FS bit times (666 ns)
[    0.549318] hub 3-0:1.0: power on to power good time: 20ms
[    0.549323] hub 3-0:1.0: local power source is good
[    0.549360] hub 3-0:1.0: trying to enable port power on non-switchable hub
[    0.549427] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    0.549469] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 4
[    0.549529] xhci_hcd 0000:03:00.0: supports USB remote wakeup
[    0.549564] usb usb4: skipped 1 descriptor after endpoint
[    0.549569] usb usb4: default language 0x0409
[    0.549581] usb usb4: udev 1, busnum 4, minor = 384
[    0.549583] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    0.549624] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.549677] usb usb4: Product: xHCI Host Controller
[    0.549715] usb usb4: Manufacturer: Linux 3.11.0-rc2-next20130725-6-iniza-small xhci_hcd
[    0.549770] usb usb4: SerialNumber: 0000:03:00.0
[    0.549985] usb usb4: usb_probe_device
[    0.549988] usb usb4: configuration #1 chosen from 1 choice
[    0.549993] xHCI xhci_add_endpoint called for root hub
[    0.549994] xHCI xhci_check_bandwidth called for root hub
[    0.550001] usb usb4: adding 4-0:1.0 (config #1, interface 0)
[    0.550029] hub 4-0:1.0: usb_probe_interface
[    0.550031] hub 4-0:1.0: usb_probe_interface - got id
[    0.550033] hub 4-0:1.0: USB hub found
[    0.550079] hub 4-0:1.0: 2 ports detected
[    0.550114] hub 4-0:1.0: standalone hub
[    0.550115] hub 4-0:1.0: no power switching (usb 1.0)
[    0.550117] hub 4-0:1.0: individual port over-current protection
[    0.550119] hub 4-0:1.0: TT requires at most 8 FS bit times (666 ns)
[    0.550120] hub 4-0:1.0: power on to power good time: 20ms
[    0.550125] hub 4-0:1.0: local power source is good
[    0.550159] hub 4-0:1.0: trying to enable port power on non-switchable hub
[    0.561289] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:EPAD] at 0x60,0x64 irq 1,12
[    0.567737] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.567780] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.568203] mousedev: PS/2 mouse device common for all mice
[    0.568875] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    0.568952] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    0.569095] device-mapper: uevent: version 1.0.3
[    0.569309] device-mapper: ioctl: 4.25.0-ioctl (2013-06-26) initialised: dm-devel@redhat.com
[    0.569371] Intel P-state driver initializing.
[    0.569424] Intel pstate controlling: cpu 0
[    0.569507] Intel pstate controlling: cpu 1
[    0.569575] Intel pstate controlling: cpu 2
[    0.569642] Intel pstate controlling: cpu 3
[    0.569761] ledtrig-cpu: registered to indicate activity on CPUs
[    0.570070] ashmem: initialized
[    0.570269] TCP: cubic registered
[    0.570448] NET: Registered protocol family 10
[    0.570984] NET: Registered protocol family 17
[    0.571045] Key type dns_resolver registered
[    0.571600] PM: Hibernation image not present or could not be loaded.
[    0.571610] Loading module verification certificates
[    0.573088] MODSIGN: Loaded cert 'Magrathea: Glacier signing key: a2ad22ff269cf3edb7bee68bb0ba84343d8fa185'
[    0.573186] registered taskstats version 1
[    0.576294] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    0.577519] Key type trusted registered
[    0.584451] Key type encrypted registered
[    0.592448] rtc_cmos 00:05: setting system clock to 2013-07-25 17:40:48 UTC (1374774048)
[    0.593361] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.593439] EDD information not available.
[    0.621139] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001803 0  ACK POWER sig=j CSC CONNECT
[    0.621156] hub 1-0:1.0: port 1: status 0501 change 0001
[    0.637145] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001803 0  ACK POWER sig=j CSC CONNECT
[    0.637163] hub 2-0:1.0: port 1: status 0501 change 0001
[    0.649209] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[    0.649230] hub 4-0:1.0: state 7 ports 2 chg 0000 evt 0000
[    0.649246] hub 3-0:1.0: hub_suspend
[    0.649256] usb usb3: bus auto-suspend, wakeup 1
[    0.649307] hub 4-0:1.0: hub_suspend
[    0.649311] usb usb4: bus auto-suspend, wakeup 1
[    0.658039] usb usb4: usb wakeup-resume
[    0.658052] usb usb4: usb auto-resume
[    0.669106] hub 4-0:1.0: hub_resume
[    0.669137] hub 4-0:1.0: port 1: status 0203 change 0001
[    0.721136] hub 1-0:1.0: state 7 ports 2 chg 0002 evt 0000
[    0.721164] hub 1-0:1.0: port 1, status 0501, change 0000, 480 Mb/s
[    0.777257] ehci-pci 0000:00:1a.0: port 1 reset complete, port enabled
[    0.777270] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    0.821003] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    0.822262] ata1.00: ATA-8: Hitachi HTS545050A7E380, GG2OA6C0, max UDMA/133
[    0.822339] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    0.823787] ata1.00: configured for UDMA/133
[    0.824302] scsi 0:0:0:0: Direct-Access     ATA      Hitachi HTS54505 GG2O PQ: 0 ANSI: 5
[    0.824965] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    0.825007] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    0.825175] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    0.825756] sd 0:0:0:0: [sda] Write Protect is off
[    0.825828] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    0.826050] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    0.832932] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    0.845426]  sda: sda1 sda2 sda3
[    0.846757] sd 0:0:0:0: [sda] Attached SCSI disk
[    0.889177] ehci-pci 0000:00:1a.0: port 1 reset complete, port enabled
[    0.889191] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    0.965620] usb 1-1: udev 2, busnum 1, minor = 1
[    0.965631] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    0.965702] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    0.966085] usb 1-1: usb_probe_device
[    0.966094] usb 1-1: configuration #1 chosen from 1 choice
[    0.966364] usb 1-1: adding 1-1:1.0 (config #1, interface 0)
[    0.966448] hub 1-1:1.0: usb_probe_interface
[    0.966453] hub 1-1:1.0: usb_probe_interface - got id
[    0.966460] hub 1-1:1.0: USB hub found
[    0.966712] hub 1-1:1.0: 6 ports detected
[    0.967324] hub 1-1:1.0: standalone hub
[    0.967328] hub 1-1:1.0: individual port power switching
[    0.967331] hub 1-1:1.0: individual port over-current protection
[    0.967334] hub 1-1:1.0: Single TT
[    0.967338] hub 1-1:1.0: TT requires at most 8 FS bit times (666 ns)
[    0.967341] hub 1-1:1.0: power on to power good time: 100ms
[    0.967858] hub 1-1:1.0: local power source is good
[    0.968272] hub 1-1:1.0: enabling power on all ports
[    0.969469] hub 2-0:1.0: state 7 ports 2 chg 0002 evt 0000
[    0.969487] hub 2-0:1.0: port 1, status 0501, change 0000, 480 Mb/s
[    1.025081] ehci-pci 0000:00:1d.0: port 1 reset complete, port enabled
[    1.025095] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    1.069267] hub 1-1:1.0: port 2: status 0101 change 0001
[    1.070033] hub 1-1:1.0: port 4: status 0101 change 0001
[    1.080830] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    1.137002] ehci-pci 0000:00:1d.0: port 1 reset complete, port enabled
[    1.137017] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    1.144781] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.145448] ata2.00: ATA-8: SanDisk iSSD P4 16GB, SSD 9.14, max UDMA/133
[    1.145527] ata2.00: 31277232 sectors, multi 1: LBA48 
[    1.146280] ata2.00: configured for UDMA/133
[    1.146828] scsi 1:0:0:0: Direct-Access     ATA      SanDisk iSSD P4  SSD  PQ: 0 ANSI: 5
[    1.147355] sd 1:0:0:0: [sdb] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
[    1.147416] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    1.147757] sd 1:0:0:0: [sdb] Write Protect is off
[    1.147827] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.147885] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.149336]  sdb: sdb1 sdb2
[    1.150542] sd 1:0:0:0: [sdb] Attached SCSI disk
[    1.168753] usb 1-1: link qh256-0001/ffff88011868d8c0 start 1 [1/0 us]
[    1.213447] usb 2-1: udev 2, busnum 2, minor = 129
[    1.213458] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    1.213532] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.213958] usb 2-1: usb_probe_device
[    1.213968] usb 2-1: configuration #1 chosen from 1 choice
[    1.214185] usb 2-1: adding 2-1:1.0 (config #1, interface 0)
[    1.214271] hub 2-1:1.0: usb_probe_interface
[    1.214276] hub 2-1:1.0: usb_probe_interface - got id
[    1.214284] hub 2-1:1.0: USB hub found
[    1.214540] hub 2-1:1.0: 6 ports detected
[    1.214611] hub 2-1:1.0: standalone hub
[    1.214615] hub 2-1:1.0: individual port power switching
[    1.214619] hub 2-1:1.0: individual port over-current protection
[    1.214622] hub 2-1:1.0: Single TT
[    1.214626] hub 2-1:1.0: TT requires at most 8 FS bit times (666 ns)
[    1.214630] hub 2-1:1.0: power on to power good time: 100ms
[    1.214909] hub 2-1:1.0: local power source is good
[    1.215454] hub 2-1:1.0: enabling power on all ports
[    1.216784] hub 4-0:1.0: state 7 ports 2 chg 0002 evt 0000
[    1.216806] hub 4-0:1.0: port 1, status 0203, change 0000, 5.0 Gb/s
[    1.317860] hub 2-1:1.0: port 5: status 0101 change 0001
[    1.332213] usb 4-1: new SuperSpeed USB device number 2 using xhci_hcd
[    1.345200] usb 4-1: Parent hub missing LPM exit latency info.  Power management will be impacted.
[    1.345636] usb 4-1: skipped 1 descriptor after endpoint
[    1.345645] usb 4-1: skipped 1 descriptor after endpoint
[    1.345789] usb 4-1: default language 0x0409
[    1.346165] usb 4-1: udev 2, busnum 4, minor = 385
[    1.346171] usb 4-1: New USB device found, idVendor=174c, idProduct=55aa
[    1.346243] usb 4-1: New USB device strings: Mfr=2, Product=3, SerialNumber=1
[    1.346315] usb 4-1: Product: MEDION HDDrive-n-GO
[    1.346380] usb 4-1: Manufacturer: MEDION
[    1.346444] usb 4-1: SerialNumber: 3180000000000000092C
[    1.346824] usb 4-1: usb_probe_device
[    1.346830] usb 4-1: configuration #1 chosen from 1 choice
[    1.347917] usb 4-1: Successful Endpoint Configure command
[    1.348055] usb 4-1: adding 4-1:1.0 (config #1, interface 0)
[    1.348293] hub 1-1:1.0: state 7 ports 6 chg 0014 evt 0000
[    1.348417] hub 1-1:1.0: port 2, status 0101, change 0000, 12 Mb/s
[    1.404575] tsc: Refined TSC clocksource calibration: 1596.373 MHz
[    1.416588] usb 2-1: link qh256-0001/ffff88011871ecc0 start 1 [1/0 us]
[    1.420783] usb 1-1.2: new low-speed USB device number 3 using ehci-pci
[    1.464546] ata4: SATA link down (SStatus 0 SControl 300)
[    1.515856] usb 1-1.2: skipped 1 descriptor after interface
[    1.516329] usb 1-1.2: default language 0x0409
[    1.519012] usb 1-1.2: udev 3, busnum 1, minor = 2
[    1.519024] usb 1-1.2: New USB device found, idVendor=046d, idProduct=c00e
[    1.519099] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.519189] usb 1-1.2: Product: USB-PS/2 Optical Mouse
[    1.519255] usb 1-1.2: Manufacturer: Logitech
[    1.519687] usb 1-1.2: usb_probe_device
[    1.519697] usb 1-1.2: configuration #1 chosen from 1 choice
[    1.520243] usb 1-1.2: adding 1-1.2:1.0 (config #1, interface 0)
[    1.520697] hub 1-1:1.0: port 4, status 0101, change 0000, 12 Mb/s
[    1.592668] usb 1-1.4: new high-speed USB device number 4 using ehci-pci
[    1.784316] ata5: SATA link down (SStatus 0 SControl 300)
[    1.787207] Freeing unused kernel memory: 1332K (ffffffff81d07000 - ffffffff81e54000)
[    1.787297] Write protecting the kernel read-only data: 12288k
[    1.792777] Freeing unused kernel memory: 1060K (ffff8800016f7000 - ffff880001800000)
[    1.797454] Freeing unused kernel memory: 964K (ffff880001b0f000 - ffff880001c00000)
[    1.834188] usb 1-1.4: skipped 1 descriptor after configuration
[    1.834195] usb 1-1.4: skipped 5 descriptors after interface
[    1.834200] usb 1-1.4: skipped 1 descriptor after endpoint
[    1.834203] usb 1-1.4: skipped 23 descriptors after interface
[    1.836397] usb 1-1.4: default language 0x0409
[    1.836679] udevd[122]: starting version 175
[    1.848261] usb 1-1.4: udev 4, busnum 1, minor = 3
[    1.848269] usb 1-1.4: New USB device found, idVendor=2232, idProduct=1018
[    1.848333] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.848397] usb 1-1.4: Product: WebCam SC-13HDL11431N
[    1.848443] usb 1-1.4: Manufacturer: 123
[    1.848959] usb 1-1.4: usb_probe_device
[    1.848964] usb 1-1.4: configuration #1 chosen from 1 choice
[    1.849131] usb 1-1.4: adding 1-1.4:1.0 (config #1, interface 0)
[    1.987812] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    1.987900] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
[    1.988360] r8169 0000:02:00.0: irq 47 for MSI/MSI-X
[    1.989504] usb-storage 4-1:1.0: usb_probe_interface
[    1.989516] usb-storage 4-1:1.0: usb_probe_interface - got id
[    1.989522] usb-storage 4-1:1.0: USB Mass Storage device detected
[    1.989948] r8169 0000:02:00.0 eth0: RTL8168evl/8111evl at 0xffffc90000620000, e8:03:9a:36:17:a9, XID 0c900800 IRQ 47
[    1.990014] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    1.990799] scsi6 : usb-storage 4-1:1.0
[    1.991054] usbcore: registered new interface driver usb-storage
[    2.021140] usb 1-1.4: adding 1-1.4:1.1 (config #1, interface 1)
[    2.021277] hub 2-1:1.0: state 7 ports 6 chg 0020 evt 0000
[    2.021382] hub 2-1:1.0: port 5, status 0101, change 0000, 12 Mb/s
[    2.042097] hidraw: raw HID events driver (C) Jiri Kosina
[    2.045034] usbhid 1-1.2:1.0: usb_probe_interface
[    2.045040] usbhid 1-1.2:1.0: usb_probe_interface - got id
[    2.051253] usbcore: registered new interface driver usbhid
[    2.051298] usbhid: USB HID core driver
[    2.058455] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input4
[    2.058800] hid-generic 0003:046D:C00E.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1a.0-1.2/input0
[    2.092122] usb 2-1.5: new full-speed USB device number 3 using ehci-pci
[    2.188671] usb 2-1.5: udev 3, busnum 2, minor = 130
[    2.188682] usb 2-1.5: New USB device found, idVendor=8086, idProduct=0189
[    2.188756] usb 2-1.5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.189142] usb 2-1.5: usb_probe_device
[    2.189149] usb 2-1.5: configuration #1 chosen from 1 choice
[    2.189678] usb 2-1.5: adding 2-1.5:1.0 (config #1, interface 0)
[    2.190086] usb 2-1.5: adding 2-1.5:1.1 (config #1, interface 1)
[    2.190663] hub 1-1:1.0: state 7 ports 6 chg 0000 evt 0010
[    2.190776] hub 2-1:1.0: state 7 ports 6 chg 0000 evt 0020
[    2.403971] Switched to clocksource tsc
[    2.797073] EXT4-fs (loop0): mounted filesystem with ordered data mode. Opts: (null)
[    2.988145] scsi 6:0:0:0: Direct-Access     ASMT     2105             0    PQ: 0 ANSI: 6
[    2.988976] sd 6:0:0:0: Attached scsi generic sg2 type 0
[    2.989054] sd 6:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    2.989598] sd 6:0:0:0: [sdc] Write Protect is off
[    2.989666] sd 6:0:0:0: [sdc] Mode Sense: 43 00 00 00
[    2.990113] sd 6:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.992828]  sdc: sdc1 sdc2 sdc3
[    2.995043] sd 6:0:0:0: [sdc] Attached SCSI disk
[   14.642346] Adding 262140k swap on /host/ubuntu/disks/swap.disk.  Priority:-1 extents:1 across:262140k FS
[   14.666802] EXT4-fs (loop0): re-mounted. Opts: errors=remount-ro
[   14.700717] udevd[622]: starting version 175
[   15.006656] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130626/utaddress-251)
[   15.006667] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.006674] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130626/utaddress-251)
[   15.006680] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.006682] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130626/utaddress-251)
[   15.006687] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.006689] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130626/utaddress-251)
[   15.006694] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.006696] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   15.146854] lp: driver loaded but no devices found
[   15.316372] wmi: Mapper loaded
[   15.317170] samsung_laptop: detected SABI interface: SwSmi@
[   15.317175] samsung_laptop: Backlight controlled by ACPI video driver
[   15.323795] ppdev: user-space parallel port driver
[   15.383681] Bluetooth: Core ver 2.16
[   15.383743] NET: Registered protocol family 31
[   15.383746] Bluetooth: HCI device and connection manager initialized
[   15.384762] Bluetooth: HCI socket layer initialized
[   15.384776] Bluetooth: L2CAP socket layer initialized
[   15.384807] Bluetooth: SCO socket layer initialized
[   15.397622] cfg80211: Calling CRDA to update world regulatory domain
[   15.407128] cfg80211: World regulatory domain updated:
[   15.407134] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   15.407137] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   15.407140] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   15.407142] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   15.407144] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   15.407147] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   15.565167] Linux video capture interface: v2.00
[   15.616774] btusb 2-1.5:1.0: usb_probe_interface
[   15.616780] btusb 2-1.5:1.0: usb_probe_interface - got id
[   15.617348] usbcore: registered new interface driver btusb
[   15.617886] usb 2-1.5: link qh1-0e01/ffff880119bbe4c0 start 0 [1/2 us]
[   15.780498] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   15.780504] Bluetooth: BNEP filters: protocol multicast
[   15.780523] Bluetooth: BNEP socket layer initialized
[   15.870702] Bluetooth: RFCOMM TTY layer initialized
[   15.870729] Bluetooth: RFCOMM socket layer initialized
[   15.870732] Bluetooth: RFCOMM ver 1.11
[   16.007921] type=1400 audit(1374766863.922:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=904 comm="apparmor_parser"
[   16.008113] type=1400 audit(1374766863.922:3): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=874 comm="apparmor_parser"
[   16.008712] type=1400 audit(1374766863.922:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=904 comm="apparmor_parser"
[   16.009196] type=1400 audit(1374766863.922:5): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=904 comm="apparmor_parser"
[   16.009251] type=1400 audit(1374766863.922:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=874 comm="apparmor_parser"
[   16.009966] type=1400 audit(1374766863.922:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=874 comm="apparmor_parser"
[   16.018958] [drm] Initialized drm 1.1.0 20060810
[   16.071086] init: failsafe main process (996) killed by TERM signal
[   16.177876] type=1400 audit(1374766864.090:8): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=961 comm="apparmor_parser"
[   16.179154] type=1400 audit(1374766864.094:9): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=961 comm="apparmor_parser"
[   16.363201] Intel(R) Wireless WiFi driver for Linux, in-tree:d
[   16.363206] Copyright(c) 2003-2013 Intel Corporation
[   16.363304] iwlwifi 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
[   16.363682] iwlwifi 0000:01:00.0: irq 48 for MSI/MSI-X
[   16.365494] iwlwifi 0000:01:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
[   16.368239] type=1400 audit(1374766864.282:10): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=1113 comm="apparmor_parser"
[   16.369047] type=1400 audit(1374766864.282:11): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1113 comm="apparmor_parser"
[   16.866525] uvcvideo 1-1.4:1.0: usb_probe_interface
[   16.866532] uvcvideo 1-1.4:1.0: usb_probe_interface - got id
[   16.866574] uvcvideo: Found UVC 1.00 device WebCam SC-13HDL11431N (2232:1018)
[   16.886226] input: WebCam SC-13HDL11431N as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input5
[   16.886520] usbcore: registered new interface driver uvcvideo
[   16.886524] USB Video Class driver (1.1.1)
[   16.889344] usb 1-1.4: link qh16-0001/ffff8800be433440 start 2 [1/0 us]
[   16.889412] usb 1-1.4: unlink qh16-0001/ffff8800be433440 start 2 [1/0 us]
[   17.045591] [drm] Memory usable by graphics device = 2048M
[   17.045603] i915 0000:00:02.0: setting latency timer to 64
[   17.047203] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUG enabled
[   17.047209] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[   17.047212] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
[   17.047214] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_P2P disabled
[   17.047218] iwlwifi 0000:01:00.0: Detected Intel(R) Centrino(R) Advanced-N 6230 AGN, REV=0xB0
[   17.047269] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
[   17.086272] i915 0000:00:02.0: irq 49 for MSI/MSI-X
[   17.086290] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[   17.086292] [drm] Driver supports precise vblank timestamp query.
[   17.086471] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   17.096949] [drm] Wrong MCH_SSKPD value: 0x16040307
[   17.096952] [drm] This can cause pipe underruns and display issues.
[   17.096953] [drm] Please upgrade your BIOS to fix this.
[   17.111419] fbcon: inteldrmfb (fb0) is primary device
[   17.123155] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[   17.123687] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f00)
[   17.139295] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
[   17.145995] iwlwifi 0000:01:00.0: Radio type=0x1-0x2-0x0
[   17.146728] psmouse serio1: elantech: Synaptics capabilities query result 0x08, 0x17, 0x0c.
[   17.225230] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input6
[   17.418517] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
[   17.425140] iwlwifi 0000:01:00.0: Radio type=0x1-0x2-0x0
[   17.503109] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   18.159831] Console: switching to colour frame buffer device 170x48
[   18.162774] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[   18.162775] i915 0000:00:02.0: registered panic notifier
[   18.179605] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   18.180079] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input7
[   18.189993] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[   18.191692] snd_hda_intel 0000:00:1b.0: irq 50 for MSI/MSI-X
[   18.227264] init: alsa-restore main process (1191) terminated with status 19
[   18.246372] usb 1-1.2: link qh8-0e01/ffff8800c0dbacc0 start 3 [1/2 us]
[   18.261208] usb 1-1.2: unlink qh8-0e01/ffff8800c0dbacc0 start 3 [1/2 us]
[   18.263626] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[   18.265732] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[   18.267157] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[   18.307451] init: plymouth-splash main process (1274) terminated with status 1
[   18.318160] init: lightdm main process (1235) killed by TERM signal
[   18.705065] init: plymouth-stop pre-start process (1450) terminated with status 1
[   18.792682] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
[   18.888447] usb 1-1.4: usb auto-suspend, wakeup 0
[   23.706048] wlan0: authenticate with 00:04:0e:e4:00:3d
[   23.710711] wlan0: send auth to 00:04:0e:e4:00:3d (try 1/3)
[   23.712398] wlan0: authenticated
[   23.712639] iwlwifi 0000:01:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
[   23.712648] iwlwifi 0000:01:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
[   23.716689] wlan0: associate with 00:04:0e:e4:00:3d (try 1/3)
[   23.720200] wlan0: RX AssocResp from 00:04:0e:e4:00:3d (capab=0x411 status=0 aid=1)
[   23.726730] wlan0: associated
[   23.726850] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Chris Wilson July 25, 2013, 5:01 p.m. UTC | #14
On Thu, Jul 25, 2013 at 06:35:10PM +0200, Sedat Dilek wrote:
> On Thu, Jul 25, 2013 at 6:31 PM, Chris Wilson <chris@chris-wilson.co.uk> wrote:
> > On Thu, Jul 25, 2013 at 06:11:18PM +0200, Sedat Dilek wrote:
> >> Might be OT, but I cannot use my X graphics stack containing
> >> libdrm-2.4.46, mesa-9.1.5 and intel-ddx 2.21.12-git (tried also
> >> v2.21.11).
> >> Switching back to the one from Ubuntu/precise lets my X start.
> >>
> >>
> >> [    40.379] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
> >> [    40.379] (II) AIGLX: enabled GLX_INTEL_swap_event
> >> [    40.380] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
> >> [    40.380] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
> >> [    40.380] (II) AIGLX: Loaded and initialized i965
> >> [    40.380] (II) GLX: Initialized DRI2 GL provider for screen 0
> >> [    40.380]
> >> Fatal server error:
> >> [    40.380] failed to create screen resources
> >> [    40.380]
> >> Please consult the The X.Org Foundation support
> >>          at http://wiki.x.org
> >>  for help.
> >> [    40.380] Please also check the log file at "/var/log/Xorg.0.log"
> >> for additional information.
> >> [    40.380]
> >> [    40.380] (II) AIGLX: Suspending AIGLX clients for VT switch
> >> [    40.396]  ddxSigGiveUp: Closing log
> >> [    40.398] Server terminated with error (1). Closing log file.
> >
> > Please attach the full Xorg.0.log so that I can make a few guesses.
> 
> Linux-kernel: This happens with drm-intel-nightly pulled into next-20130725.

Basically boils down to either an object allocation failure or mmaping
failure. I think dmesg with drm.debug=7 is the next step.
-Chris
Sedat Dilek July 25, 2013, 5:15 p.m. UTC | #15
On Thu, Jul 25, 2013 at 7:01 PM, Chris Wilson <chris@chris-wilson.co.uk> wrote:
> On Thu, Jul 25, 2013 at 06:35:10PM +0200, Sedat Dilek wrote:
>> On Thu, Jul 25, 2013 at 6:31 PM, Chris Wilson <chris@chris-wilson.co.uk> wrote:
>> > On Thu, Jul 25, 2013 at 06:11:18PM +0200, Sedat Dilek wrote:
>> >> Might be OT, but I cannot use my X graphics stack containing
>> >> libdrm-2.4.46, mesa-9.1.5 and intel-ddx 2.21.12-git (tried also
>> >> v2.21.11).
>> >> Switching back to the one from Ubuntu/precise lets my X start.
>> >>
>> >>
>> >> [    40.379] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
>> >> [    40.379] (II) AIGLX: enabled GLX_INTEL_swap_event
>> >> [    40.380] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
>> >> [    40.380] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
>> >> [    40.380] (II) AIGLX: Loaded and initialized i965
>> >> [    40.380] (II) GLX: Initialized DRI2 GL provider for screen 0
>> >> [    40.380]
>> >> Fatal server error:
>> >> [    40.380] failed to create screen resources
>> >> [    40.380]
>> >> Please consult the The X.Org Foundation support
>> >>          at http://wiki.x.org
>> >>  for help.
>> >> [    40.380] Please also check the log file at "/var/log/Xorg.0.log"
>> >> for additional information.
>> >> [    40.380]
>> >> [    40.380] (II) AIGLX: Suspending AIGLX clients for VT switch
>> >> [    40.396]  ddxSigGiveUp: Closing log
>> >> [    40.398] Server terminated with error (1). Closing log file.
>> >
>> > Please attach the full Xorg.0.log so that I can make a few guesses.
>>
>> Linux-kernel: This happens with drm-intel-nightly pulled into next-20130725.
>
> Basically boils down to either an object allocation failure or mmaping
> failure. I think dmesg with drm.debug=7 is the next step.

Attached! Thanks for taking care.

- Sedat -

> -Chris
>
> --
> Chris Wilson, Intel Open Source Technology Centre
> --
> To unsubscribe from this list: send the line "unsubscribe linux-next" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.11.0-rc2-next20130725-6-iniza-small (sedat.dilek@gmail.com@fambox) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #1 SMP Thu Jul 25 17:34:28 CEST 2013
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz.next root=UUID=001AADA61AAD9964 loop=/ubuntu/disks/root.disk ro text drm.debug=7
[    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 [0x0204c000, 0x0204cfff] PGTABLE
[    0.000000] BRK [0x0204d000, 0x0204dfff] PGTABLE
[    0.000000] BRK [0x0204e000, 0x0204efff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x11fc00000-0x11fdfffff]
[    0.000000]  [mem 0x11fc00000-0x11fdfffff] page 2M
[    0.000000] BRK [0x0204f000, 0x0204ffff] 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 [0x02050000, 0x02050fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0xdafff000-0xdaffffff]
[    0.000000]  [mem 0xdafff000-0xdaffffff] page 4k
[    0.000000] RAMDISK: [mem 0x37962000-0x37ca8fff]
[    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 0x11fdf7000-0x11fdfbfff]
[    0.000000]  [ffffea0000000000-ffffea0003ffffff] PMD -> [ffff88011b400000-ffff88011edfffff] 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: 56 pages used for memmap
[    0.000000]   DMA zone: 156 pages reserved
[    0.000000]   DMA zone: 3996 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 12127 pages used for memmap
[    0.000000]   DMA32 zone: 886944 pages, LIFO batch:31
[    0.000000]   Normal zone: 1785 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: [mem 0x0009d000-0x0009dfff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x40000000-0x401fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xd9c9f000-0xdae7efff]
[    0.000000] PM: Registered nosave memory: [mem 0xdae7f000-0xdaf9efff]
[    0.000000] PM: Registered nosave memory: [mem 0xdaf9f000-0xdaffefff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb000000-0xdf9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xdfa00000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffd7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffd80000-0xffffffff]
[    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 29 pages/cpu @ffff88011fa00000 s87552 r8192 d23040 u262144
[    0.000000] pcpu-alloc: s87552 r8192 d23040 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: 1007376
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz.next root=UUID=001AADA61AAD9964 loop=/ubuntu/disks/root.disk ro text drm.debug=7
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    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: 3938460K/4086000K available (7119K kernel code, 1044K rwdata, 3132K rodata, 1332K init, 1984K bss, 147540K reserved)
[    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 VGA+ 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] ODEBUG: 0 of 0 active objects replaced
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.004000] tsc: Detected 1596.444 MHz processor
[    0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 3192.88 BogoMIPS (lpj=6385776)
[    0.000080] pid_max: default: 32768 minimum: 301
[    0.000246] Security Framework initialized
[    0.000304] AppArmor: AppArmor initialized
[    0.000340] Yama: becoming mindful.
[    0.000748] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.001857] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.002359] Mount-cache hash table entries: 256
[    0.002912] Initializing cgroup subsys memory
[    0.003010] Initializing cgroup subsys devices
[    0.003049] Initializing cgroup subsys freezer
[    0.003087] Initializing cgroup subsys blkio
[    0.003124] Initializing cgroup subsys perf_event
[    0.003163] Initializing cgroup subsys hugetlb
[    0.003250] Disabled fast string operations
[    0.003287] CPU: Physical Processor ID: 0
[    0.003324] CPU: Processor Core ID: 0
[    0.003363] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.003363] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.003428] mce: CPU supports 7 MCE banks
[    0.003478] CPU0: Thermal monitoring enabled (TM1)
[    0.003523] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
[    0.003523] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
[    0.003523] tlb_flushall_shift: 5
[    0.003694] Freeing SMP alternatives memory: 24K (ffffffff81e54000 - ffffffff81e5a000)
[    0.004784] ACPI: Core revision 20130626
[    0.015643] ACPI: All ACPI Tables successfully acquired
[    0.029570] ftrace: allocating 27066 entries in 106 pages
[    0.045111] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.084812] smpboot: CPU0: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz (fam: 06, model: 2a, stepping: 07)
[    0.085426] TSC deadline timer enabled
[    0.085438] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
[    0.085586] ... version:                3
[    0.085622] ... bit width:              48
[    0.085658] ... generic registers:      4
[    0.085694] ... value mask:             0000ffffffffffff
[    0.085732] ... max period:             0000ffffffffffff
[    0.085770] ... fixed-purpose events:   3
[    0.085806] ... event mask:             000000070000000f
[    0.098944] Disabled fast string operations
[    0.102127] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.113808] Disabled fast string operations
[    0.127518] Disabled fast string operations
[    0.087856] smpboot: Booting Node   0, Processors  #1 #2 #3
[    0.129653] Brought up 4 CPUs
[    0.129758] smpboot: Total of 4 processors activated (12771.55 BogoMIPS)
[    0.133845] devtmpfs: initialized
[    0.135899] EVM: security.selinux
[    0.135934] EVM: security.SMACK64
[    0.135969] EVM: security.capability
[    0.136099] PM: Registering ACPI NVS region [mem 0xdae7f000-0xdaf9efff] (1179648 bytes)
[    0.137637] regulator-dummy: no parameters
[    0.137825] NET: Registered protocol family 16
[    0.138171] cpuidle: using governor ladder
[    0.138208] cpuidle: using governor menu
[    0.138290] ACPI: bus type PCI registered
[    0.138441] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.138499] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.145312] PCI: Using configuration type 1 for base access
[    0.148709] bio: create slab <bio-0> at 0
[    0.149162] ACPI: Added _OSI(Module Device)
[    0.149200] ACPI: Added _OSI(Processor Device)
[    0.149237] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.149274] ACPI: Added _OSI(Processor Aggregator Device)
[    0.151076] ACPI: EC: Look up EC in DSDT
[    0.177486] ACPI: Executed 1 blocks of module-level executable AML code
[    0.183535] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.195221] ACPI: SSDT 00000000dae70718 00688 (v01  PmRef  Cpu0Cst 00003001 INTL 20061109)
[    0.195809] ACPI: Dynamic OEM Table Load:
[    0.195878] ACPI: SSDT           (null) 00688 (v01  PmRef  Cpu0Cst 00003001 INTL 20061109)
[    0.205927] ACPI: SSDT 00000000dae71a98 00303 (v01  PmRef    ApIst 00003000 INTL 20061109)
[    0.206595] ACPI: Dynamic OEM Table Load:
[    0.206664] ACPI: SSDT           (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20061109)
[    0.217848] ACPI: SSDT 00000000dae6fd98 00119 (v01  PmRef    ApCst 00003000 INTL 20061109)
[    0.218407] ACPI: Dynamic OEM Table Load:
[    0.218476] ACPI: SSDT           (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20061109)
[    0.231911] ACPI: Interpreter enabled
[    0.231962] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130626/hwxface-571)
[    0.232071] ACPI: (supports S0 S1 S3 S4 S5)
[    0.232108] ACPI: Using IOAPIC for interrupt routing
[    0.232201] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.232486] ACPI: No dock devices found.
[    0.256142] ACPI: Power Resource [FN00] (off)
[    0.256367] ACPI: Power Resource [FN01] (off)
[    0.256586] ACPI: Power Resource [FN02] (off)
[    0.256805] ACPI: Power Resource [FN03] (off)
[    0.257024] ACPI: Power Resource [FN04] (off)
[    0.258208] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.258582] \_SB_.PCI0:_OSC invalid UUID
[    0.258584] _OSC request data:1 8 0 
[    0.259555] PCI host bridge to bus 0000:00
[    0.259594] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.259635] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.259676] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.259716] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.259758] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfeafffff]
[    0.259800] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
[    0.259856] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
[    0.260009] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
[    0.260022] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit]
[    0.260030] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.260035] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    0.260215] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.260242] pci 0000:00:16.0: reg 0x10: [mem 0xf0705000-0xf070500f 64bit]
[    0.260327] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.260482] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[    0.260506] pci 0000:00:1a.0: reg 0x10: [mem 0xf070a000-0xf070a3ff]
[    0.260607] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.260713] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.260733] pci 0000:00:1b.0: reg 0x10: [mem 0xf0700000-0xf0703fff 64bit]
[    0.260811] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.260857] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.260963] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.261054] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.261103] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.261211] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
[    0.261301] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.261362] pci 0000:00:1c.3: System wakeup disabled by ACPI
[    0.261471] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[    0.261562] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.261693] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[    0.261717] pci 0000:00:1d.0: reg 0x10: [mem 0xf0709000-0xf07093ff]
[    0.261818] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.261922] pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
[    0.262118] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
[    0.262140] pci 0000:00:1f.2: reg 0x10: [io  0x3088-0x308f]
[    0.262150] pci 0000:00:1f.2: reg 0x14: [io  0x3094-0x3097]
[    0.262160] pci 0000:00:1f.2: reg 0x18: [io  0x3080-0x3087]
[    0.262170] pci 0000:00:1f.2: reg 0x1c: [io  0x3090-0x3093]
[    0.262180] pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
[    0.262190] pci 0000:00:1f.2: reg 0x24: [mem 0xf0708000-0xf07087ff]
[    0.262243] pci 0000:00:1f.2: PME# supported from D3hot
[    0.262359] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.262377] pci 0000:00:1f.3: reg 0x10: [mem 0xf0704000-0xf07040ff 64bit]
[    0.262401] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.262772] pci 0000:01:00.0: [8086:0091] type 00 class 0x028000
[    0.262953] pci 0000:01:00.0: reg 0x10: [mem 0xf0600000-0xf0601fff 64bit]
[    0.263692] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    0.263863] pci 0000:01:00.0: System wakeup disabled by ACPI
[    0.269794] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.269838] pci 0000:00:1c.0:   bridge window [mem 0xf0600000-0xf06fffff]
[    0.270018] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[    0.270088] pci 0000:02:00.0: reg 0x10: [io  0x2000-0x20ff]
[    0.270211] pci 0000:02:00.0: reg 0x18: [mem 0xf0404000-0xf0404fff 64bit pref]
[    0.270287] pci 0000:02:00.0: reg 0x20: [mem 0xf0400000-0xf0403fff 64bit pref]
[    0.270624] pci 0000:02:00.0: supports D1 D2
[    0.270626] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.270754] pci 0000:02:00.0: System wakeup disabled by ACPI
[    0.277728] pci 0000:00:1c.3: PCI bridge to [bus 02]
[    0.277791] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
[    0.277800] pci 0000:00:1c.3:   bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
[    0.277925] pci 0000:03:00.0: [1b21:1042] type 00 class 0x0c0330
[    0.277963] pci 0000:03:00.0: reg 0x10: [mem 0xf0500000-0xf0507fff 64bit]
[    0.278160] pci 0000:03:00.0: PME# supported from D3hot D3cold
[    0.285701] pci 0000:00:1c.4: PCI bridge to [bus 03]
[    0.285777] pci 0000:00:1c.4:   bridge window [mem 0xf0500000-0xf05fffff]
[    0.285960] \_SB_.PCI0:_OSC invalid UUID
[    0.285962] _OSC request data:1 1f 0 
[    0.285967] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[    0.286023] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
[    0.286973] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.287323] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.287717] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.288063] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.288410] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
[    0.288784] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.289176] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.289525] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
[    0.290374] ACPI: Enabled 4 GPEs in block 00 to 3F
[    0.290451] ACPI: \_SB_.PCI0: notify handler is installed
[    0.290513] Found 1 acpi root devices
[    0.290582] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.290938] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.290997] vgaarb: loaded
[    0.291030] vgaarb: bridge control possible 0000:00:02.0
[    0.291746] SCSI subsystem initialized
[    0.291784] ACPI: bus type ATA registered
[    0.291916] libata version 3.00 loaded.
[    0.291979] ACPI: bus type USB registered
[    0.292059] usbcore: registered new interface driver usbfs
[    0.292122] usbcore: registered new interface driver hub
[    0.292216] usbcore: registered new device driver usb
[    0.292600] PCI: Using ACPI for IRQ routing
[    0.294312] PCI: pci_cache_line_size set to 64 bytes
[    0.294422] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[    0.294425] e820: reserve RAM buffer [mem 0xd9c9f000-0xdbffffff]
[    0.294427] e820: reserve RAM buffer [mem 0xdb000000-0xdbffffff]
[    0.294429] e820: reserve RAM buffer [mem 0x11fe00000-0x11fffffff]
[    0.294673] NetLabel: Initializing
[    0.294709] NetLabel:  domain hash size = 128
[    0.294745] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.294828] NetLabel:  unlabeled traffic allowed by default
[    0.294963] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.295154] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.297216] Switched to clocksource hpet
[    0.314921] AppArmor: AppArmor Filesystem Enabled
[    0.315012] pnp: PnP ACPI init
[    0.315063] ACPI: bus type PNP registered
[    0.315518] pnp 00:00: [dma 4]
[    0.315561] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.315607] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
[    0.315774] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.315831] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.315909] system 00:04: [io  0x0680-0x069f] has been reserved
[    0.315952] system 00:04: [io  0x1000-0x100f] has been reserved
[    0.315993] system 00:04: [io  0x5000-0x5003] has been reserved
[    0.316033] system 00:04: [io  0xffff] has been reserved
[    0.316073] system 00:04: [io  0x0400-0x0453] could not be reserved
[    0.316114] system 00:04: [io  0x0458-0x047f] has been reserved
[    0.316155] system 00:04: [io  0x0500-0x057f] has been reserved
[    0.316195] system 00:04: [io  0x0a00-0x0a0f] has been reserved
[    0.316235] system 00:04: [io  0x164e-0x164f] has been reserved
[    0.316276] system 00:04: [io  0x5000-0x500f] could not be reserved
[    0.316318] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.316368] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.316459] system 00:06: [io  0x0454-0x0457] has been reserved
[    0.316501] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.316560] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.316643] pnp 00:08: Plug and Play ACPI device, IDs ETD0b00 SYN0002 PNP0f13 (active)
[    0.316955] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.316997] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.317039] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.317080] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.317122] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.317164] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.317216] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.317258] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.317301] system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
[    0.317344] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.317387] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.318154] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.318194] pnp: PnP ACPI: found 11 devices
[    0.318231] ACPI: bus type PNP unregistered
[    0.326317] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.326362] pci 0000:00:1c.0:   bridge window [mem 0xf0600000-0xf06fffff]
[    0.326412] pci 0000:00:1c.3: PCI bridge to [bus 02]
[    0.326453] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
[    0.326500] pci 0000:00:1c.3:   bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
[    0.326561] pci 0000:00:1c.4: PCI bridge to [bus 03]
[    0.326603] pci 0000:00:1c.4:   bridge window [mem 0xf0500000-0xf05fffff]
[    0.327077] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.327079] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.327081] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.327083] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfeafffff]
[    0.327085] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
[    0.327087] pci_bus 0000:01: resource 1 [mem 0xf0600000-0xf06fffff]
[    0.327090] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.327092] pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf04fffff 64bit pref]
[    0.327094] pci_bus 0000:03: resource 1 [mem 0xf0500000-0xf05fffff]
[    0.327229] NET: Registered protocol family 2
[    0.327643] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
[    0.327880] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes)
[    0.328211] TCP: Hash tables configured (established 32768 bind 32768)
[    0.328509] TCP: reno registered
[    0.328562] UDP hash table entries: 2048 (order: 5, 196608 bytes)
[    0.328665] UDP-Lite hash table entries: 2048 (order: 5, 196608 bytes)
[    0.328960] NET: Registered protocol family 1
[    0.329015] pci 0000:00:02.0: Boot video device
[    0.329800] PCI: CLS 64 bytes, default 64
[    0.330011] Trying to unpack rootfs image as initramfs...
[    0.405794] Freeing initrd memory: 3356K (ffff880037962000 - ffff880037ca9000)
[    0.405855] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.405897] software IO TLB [mem 0xd5c9f000-0xd9c9f000] (64MB) mapped at [ffff8800d5c9f000-ffff8800d9c9efff]
[    0.406334] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x28
[    0.406381] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x28
[    0.406433] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x28
[    0.406486] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x28
[    0.406610] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.406667] Scanning for low memory corruption every 60 seconds
[    0.407308] Initialise module verification
[    0.407410] audit: initializing netlink socket (disabled)
[    0.407470] type=2000 audit(1374779281.392:1): initialized
[    0.437664] bounce pool size: 64 pages
[    0.438226] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.438950] VFS: Disk quotas dquot_6.5.2
[    0.439028] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.439898] fuse init (API version 7.22)
[    0.440046] msgmni has been set to 7698
[    0.440753] Key type asymmetric registered
[    0.440791] Asymmetric key parser 'x509' registered
[    0.440878] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.440986] io scheduler noop registered
[    0.441023] io scheduler deadline registered (default)
[    0.441098] io scheduler cfq registered
[    0.441573] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.441652] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.441838] intel_idle: MWAIT substates: 0x21120
[    0.441840] intel_idle: v0.4 model 0x2A
[    0.441841] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.442616] ACPI: AC Adapter [ADP1] (off-line)
[    0.442944] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
[    0.443211] ACPI: Lid Switch [LID0]
[    0.443321] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    0.443387] ACPI: Power Button [PWRB]
[    0.443490] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.443551] ACPI: Power Button [PWRF]
[    0.443686] ACPI: Fan [FAN0] (off)
[    0.443774] ACPI: Fan [FAN1] (off)
[    0.443858] ACPI: Fan [FAN2] (off)
[    0.443944] ACPI: Fan [FAN3] (off)
[    0.444031] ACPI: Fan [FAN4] (off)
[    0.444150] ACPI: Requesting acpi_cpufreq
[    0.447825] thermal LNXTHERM:00: registered as thermal_zone0
[    0.447866] ACPI: Thermal Zone [TZ00] (69 C)
[    0.448279] thermal LNXTHERM:01: registered as thermal_zone1
[    0.448318] ACPI: Thermal Zone [TZ01] (30 C)
[    0.448405] GHES: HEST is not enabled!
[    0.448711] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.452494] Linux agpgart interface v0.103
[    0.455146] ACPI: Battery Slot [BAT1] (battery present)
[    0.455542] brd: module loaded
[    0.456971] loop: module loaded
[    0.457256] mei_me 0000:00:16.0: setting latency timer to 64
[    0.457305] mei_me 0000:00:16.0: irq 40 for MSI/MSI-X
[    0.461582] ahci 0000:00:1f.2: version 3.0
[    0.461810] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[    0.462014] ahci: SSS flag set, parallel bus scan disabled
[    0.477244] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1b impl SATA mode
[    0.477314] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pio slum part ems sxs apst 
[    0.477374] ahci 0000:00:1f.2: setting latency timer to 64
[    0.502128] scsi0 : ahci
[    0.502469] scsi1 : ahci
[    0.502723] scsi2 : ahci
[    0.502991] scsi3 : ahci
[    0.503261] scsi4 : ahci
[    0.503547] scsi5 : ahci
[    0.503681] ata1: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708100 irq 41
[    0.503738] ata2: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708180 irq 41
[    0.503791] ata3: DUMMY
[    0.503825] ata4: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708280 irq 41
[    0.503879] ata5: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708300 irq 41
[    0.503932] ata6: DUMMY
[    0.504838] libphy: Fixed MDIO Bus: probed
[    0.505167] tun: Universal TUN/TAP device driver, 1.6
[    0.505205] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.505352] PPP generic driver version 2.4.2
[    0.505515] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.505557] ehci_hcd: block sizes: qh 112 qtd 96 itd 192 sitd 96
[    0.505565] ehci-pci: EHCI PCI platform driver
[    0.505810] ehci-pci 0000:00:1a.0: setting latency timer to 64
[    0.505820] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    0.505865] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    0.505938] ehci-pci 0000:00:1a.0: debug port 2
[    0.505978] ehci-pci 0000:00:1a.0: reset hcs_params 0x200002 dbg=2 cc=0 pcc=0 ordered !ppc ports=2
[    0.505982] ehci-pci 0000:00:1a.0: reset hcc_params 36881 caching frame 1024 64 bit addr
[    0.506022] ehci-pci 0000:00:1a.0: reset command 0080002 (park)=0 ithresh=8 period=1024 Reset HALT
[    0.509913] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    0.509915] ehci-pci 0000:00:1a.0: supports USB remote wakeup
[    0.509964] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf070a000
[    0.510006] ehci-pci 0000:00:1a.0: init command 0010001 (park)=0 ithresh=1 period=1024 RUN
[    0.521169] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    0.521308] usb usb1: default language 0x0409
[    0.521330] usb usb1: udev 1, busnum 1, minor = 0
[    0.521332] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    0.521372] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.521425] usb usb1: Product: EHCI Host Controller
[    0.521461] usb usb1: Manufacturer: Linux 3.11.0-rc2-next20130725-6-iniza-small ehci_hcd
[    0.521515] usb usb1: SerialNumber: 0000:00:1a.0
[    0.521719] usb usb1: usb_probe_device
[    0.521722] usb usb1: configuration #1 chosen from 1 choice
[    0.521733] usb usb1: adding 1-0:1.0 (config #1, interface 0)
[    0.521764] hub 1-0:1.0: usb_probe_interface
[    0.521766] hub 1-0:1.0: usb_probe_interface - got id
[    0.521769] hub 1-0:1.0: USB hub found
[    0.521811] hub 1-0:1.0: 2 ports detected
[    0.521847] hub 1-0:1.0: standalone hub
[    0.521849] hub 1-0:1.0: no power switching (usb 1.0)
[    0.521850] hub 1-0:1.0: individual port over-current protection
[    0.521852] hub 1-0:1.0: power on to power good time: 20ms
[    0.521857] hub 1-0:1.0: local power source is good
[    0.521913] hub 1-0:1.0: trying to enable port power on non-switchable hub
[    0.522204] ehci-pci 0000:00:1d.0: setting latency timer to 64
[    0.522212] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    0.522257] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    0.522329] ehci-pci 0000:00:1d.0: debug port 2
[    0.522369] ehci-pci 0000:00:1d.0: reset hcs_params 0x200002 dbg=2 cc=0 pcc=0 ordered !ppc ports=2
[    0.522372] ehci-pci 0000:00:1d.0: reset hcc_params 36881 caching frame 1024 64 bit addr
[    0.522407] ehci-pci 0000:00:1d.0: reset command 0080002 (park)=0 ithresh=8 period=1024 Reset HALT
[    0.526288] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    0.526290] ehci-pci 0000:00:1d.0: supports USB remote wakeup
[    0.526333] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf0709000
[    0.526374] ehci-pci 0000:00:1d.0: init command 0010001 (park)=0 ithresh=1 period=1024 RUN
[    0.537170] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    0.537311] usb usb2: default language 0x0409
[    0.537333] usb usb2: udev 1, busnum 2, minor = 128
[    0.537335] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    0.537375] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.537428] usb usb2: Product: EHCI Host Controller
[    0.537464] usb usb2: Manufacturer: Linux 3.11.0-rc2-next20130725-6-iniza-small ehci_hcd
[    0.537518] usb usb2: SerialNumber: 0000:00:1d.0
[    0.537717] usb usb2: usb_probe_device
[    0.537720] usb usb2: configuration #1 chosen from 1 choice
[    0.537732] usb usb2: adding 2-0:1.0 (config #1, interface 0)
[    0.537763] hub 2-0:1.0: usb_probe_interface
[    0.537765] hub 2-0:1.0: usb_probe_interface - got id
[    0.537768] hub 2-0:1.0: USB hub found
[    0.537810] hub 2-0:1.0: 2 ports detected
[    0.537847] hub 2-0:1.0: standalone hub
[    0.537848] hub 2-0:1.0: no power switching (usb 1.0)
[    0.537850] hub 2-0:1.0: individual port over-current protection
[    0.537852] hub 2-0:1.0: power on to power good time: 20ms
[    0.537857] hub 2-0:1.0: local power source is good
[    0.537911] hub 2-0:1.0: trying to enable port power on non-switchable hub
[    0.537996] ehci-platform: EHCI generic platform driver
[    0.538053] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.538093] ohci_hcd: block sizes: ed 80 td 96
[    0.538100] ohci-pci: OHCI PCI platform driver
[    0.538156] ohci-platform: OHCI generic platform driver
[    0.538207] uhci_hcd: USB Universal Host Controller Interface driver
[    0.538496] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    0.538543] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 3
[    0.548310] xhci_hcd 0000:03:00.0: supports USB remote wakeup
[    0.548344] xhci_hcd 0000:03:00.0: irq 42 for MSI/MSI-X
[    0.548351] xhci_hcd 0000:03:00.0: irq 43 for MSI/MSI-X
[    0.548359] xhci_hcd 0000:03:00.0: irq 44 for MSI/MSI-X
[    0.548365] xhci_hcd 0000:03:00.0: irq 45 for MSI/MSI-X
[    0.548371] xhci_hcd 0000:03:00.0: irq 46 for MSI/MSI-X
[    0.548622] usb usb3: default language 0x0409
[    0.548634] usb usb3: udev 1, busnum 3, minor = 256
[    0.548636] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    0.548676] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.548729] usb usb3: Product: xHCI Host Controller
[    0.548765] usb usb3: Manufacturer: Linux 3.11.0-rc2-next20130725-6-iniza-small xhci_hcd
[    0.548819] usb usb3: SerialNumber: 0000:03:00.0
[    0.548961] usb usb3: usb_probe_device
[    0.548964] usb usb3: configuration #1 chosen from 1 choice
[    0.548968] xHCI xhci_add_endpoint called for root hub
[    0.548969] xHCI xhci_check_bandwidth called for root hub
[    0.548975] usb usb3: adding 3-0:1.0 (config #1, interface 0)
[    0.549002] hub 3-0:1.0: usb_probe_interface
[    0.549004] hub 3-0:1.0: usb_probe_interface - got id
[    0.549006] hub 3-0:1.0: USB hub found
[    0.549066] hub 3-0:1.0: 2 ports detected
[    0.549102] hub 3-0:1.0: standalone hub
[    0.549103] hub 3-0:1.0: no power switching (usb 1.0)
[    0.549104] hub 3-0:1.0: individual port over-current protection
[    0.549105] hub 3-0:1.0: Single TT
[    0.549107] hub 3-0:1.0: TT requires at most 8 FS bit times (666 ns)
[    0.549108] hub 3-0:1.0: power on to power good time: 20ms
[    0.549113] hub 3-0:1.0: local power source is good
[    0.549146] hub 3-0:1.0: trying to enable port power on non-switchable hub
[    0.549209] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    0.549250] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 4
[    0.549308] xhci_hcd 0000:03:00.0: supports USB remote wakeup
[    0.549340] usb usb4: skipped 1 descriptor after endpoint
[    0.549345] usb usb4: default language 0x0409
[    0.549355] usb usb4: udev 1, busnum 4, minor = 384
[    0.549357] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    0.549396] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.549448] usb usb4: Product: xHCI Host Controller
[    0.549485] usb usb4: Manufacturer: Linux 3.11.0-rc2-next20130725-6-iniza-small xhci_hcd
[    0.549538] usb usb4: SerialNumber: 0000:03:00.0
[    0.549677] usb usb4: usb_probe_device
[    0.549679] usb usb4: configuration #1 chosen from 1 choice
[    0.549683] xHCI xhci_add_endpoint called for root hub
[    0.549684] xHCI xhci_check_bandwidth called for root hub
[    0.549689] usb usb4: adding 4-0:1.0 (config #1, interface 0)
[    0.549716] hub 4-0:1.0: usb_probe_interface
[    0.549718] hub 4-0:1.0: usb_probe_interface - got id
[    0.549720] hub 4-0:1.0: USB hub found
[    0.549763] hub 4-0:1.0: 2 ports detected
[    0.549798] hub 4-0:1.0: standalone hub
[    0.549800] hub 4-0:1.0: no power switching (usb 1.0)
[    0.549801] hub 4-0:1.0: individual port over-current protection
[    0.549803] hub 4-0:1.0: TT requires at most 8 FS bit times (666 ns)
[    0.549804] hub 4-0:1.0: power on to power good time: 20ms
[    0.549808] hub 4-0:1.0: local power source is good
[    0.549841] hub 4-0:1.0: trying to enable port power on non-switchable hub
[    0.561281] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:EPAD] at 0x60,0x64 irq 1,12
[    0.567664] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.567707] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.567984] mousedev: PS/2 mouse device common for all mice
[    0.568497] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    0.568577] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    0.568735] device-mapper: uevent: version 1.0.3
[    0.568908] device-mapper: ioctl: 4.25.0-ioctl (2013-06-26) initialised: dm-devel@redhat.com
[    0.568971] Intel P-state driver initializing.
[    0.569051] Intel pstate controlling: cpu 0
[    0.569148] Intel pstate controlling: cpu 1
[    0.569210] Intel pstate controlling: cpu 2
[    0.569274] Intel pstate controlling: cpu 3
[    0.569387] ledtrig-cpu: registered to indicate activity on CPUs
[    0.569820] ashmem: initialized
[    0.570076] TCP: cubic registered
[    0.570458] NET: Registered protocol family 10
[    0.571096] NET: Registered protocol family 17
[    0.571155] Key type dns_resolver registered
[    0.571757] PM: Hibernation image not present or could not be loaded.
[    0.571768] Loading module verification certificates
[    0.573183] MODSIGN: Loaded cert 'Magrathea: Glacier signing key: a2ad22ff269cf3edb7bee68bb0ba84343d8fa185'
[    0.573282] registered taskstats version 1
[    0.576488] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    0.577875] Key type trusted registered
[    0.585834] Key type encrypted registered
[    0.593731] rtc_cmos 00:05: setting system clock to 2013-07-25 19:08:02 UTC (1374779282)
[    0.594506] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.594572] EDD information not available.
[    0.621119] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001803 0  ACK POWER sig=j CSC CONNECT
[    0.621134] hub 1-0:1.0: port 1: status 0501 change 0001
[    0.637109] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001803 0  ACK POWER sig=j CSC CONNECT
[    0.637123] hub 2-0:1.0: port 1: status 0501 change 0001
[    0.649154] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[    0.649180] hub 4-0:1.0: state 7 ports 2 chg 0000 evt 0000
[    0.649197] hub 3-0:1.0: hub_suspend
[    0.649209] usb usb3: bus auto-suspend, wakeup 1
[    0.649257] hub 4-0:1.0: hub_suspend
[    0.649262] usb usb4: bus auto-suspend, wakeup 1
[    0.657994] usb usb4: usb wakeup-resume
[    0.658005] usb usb4: usb auto-resume
[    0.669101] hub 4-0:1.0: hub_resume
[    0.669133] hub 4-0:1.0: port 1: status 0203 change 0001
[    0.721084] hub 1-0:1.0: state 7 ports 2 chg 0002 evt 0000
[    0.721113] hub 1-0:1.0: port 1, status 0501, change 0000, 480 Mb/s
[    0.777222] ehci-pci 0000:00:1a.0: port 1 reset complete, port enabled
[    0.777235] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    0.820978] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    0.822209] ata1.00: ATA-8: Hitachi HTS545050A7E380, GG2OA6C0, max UDMA/133
[    0.822284] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    0.823642] ata1.00: configured for UDMA/133
[    0.824162] scsi 0:0:0:0: Direct-Access     ATA      Hitachi HTS54505 GG2O PQ: 0 ANSI: 5
[    0.824870] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    0.824926] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    0.825027] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    0.825476] sd 0:0:0:0: [sda] Write Protect is off
[    0.825546] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    0.825787] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    0.832932] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    0.867519]  sda: sda1 sda2 sda3
[    0.869018] sd 0:0:0:0: [sda] Attached SCSI disk
[    0.889143] ehci-pci 0000:00:1a.0: port 1 reset complete, port enabled
[    0.889157] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    0.965319] usb 1-1: udev 2, busnum 1, minor = 1
[    0.965331] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    0.965407] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    0.965822] usb 1-1: usb_probe_device
[    0.965832] usb 1-1: configuration #1 chosen from 1 choice
[    0.966087] usb 1-1: adding 1-1:1.0 (config #1, interface 0)
[    0.966179] hub 1-1:1.0: usb_probe_interface
[    0.966185] hub 1-1:1.0: usb_probe_interface - got id
[    0.966193] hub 1-1:1.0: USB hub found
[    0.966427] hub 1-1:1.0: 6 ports detected
[    0.967062] hub 1-1:1.0: standalone hub
[    0.967067] hub 1-1:1.0: individual port power switching
[    0.967071] hub 1-1:1.0: individual port over-current protection
[    0.967074] hub 1-1:1.0: Single TT
[    0.967078] hub 1-1:1.0: TT requires at most 8 FS bit times (666 ns)
[    0.967082] hub 1-1:1.0: power on to power good time: 100ms
[    0.967579] hub 1-1:1.0: local power source is good
[    0.968034] hub 1-1:1.0: enabling power on all ports
[    0.969440] hub 2-0:1.0: state 7 ports 2 chg 0002 evt 0000
[    0.969460] hub 2-0:1.0: port 1, status 0501, change 0000, 480 Mb/s
[    1.025048] ehci-pci 0000:00:1d.0: port 1 reset complete, port enabled
[    1.025063] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    1.069737] hub 1-1:1.0: port 4: status 0101 change 0001
[    1.080800] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    1.136968] ehci-pci 0000:00:1d.0: port 1 reset complete, port enabled
[    1.136984] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    1.144748] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.145413] ata2.00: ATA-8: SanDisk iSSD P4 16GB, SSD 9.14, max UDMA/133
[    1.145493] ata2.00: 31277232 sectors, multi 1: LBA48 
[    1.146246] ata2.00: configured for UDMA/133
[    1.146806] scsi 1:0:0:0: Direct-Access     ATA      SanDisk iSSD P4  SSD  PQ: 0 ANSI: 5
[    1.147363] sd 1:0:0:0: [sdb] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
[    1.147432] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    1.147748] sd 1:0:0:0: [sdb] Write Protect is off
[    1.147817] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.147876] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.149258]  sdb: sdb1 sdb2
[    1.150277] sd 1:0:0:0: [sdb] Attached SCSI disk
[    1.168725] usb 1-1: link qh256-0001/ffff8801187695c0 start 1 [1/0 us]
[    1.213389] usb 2-1: udev 2, busnum 2, minor = 129
[    1.213400] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    1.213473] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.213891] usb 2-1: usb_probe_device
[    1.213901] usb 2-1: configuration #1 chosen from 1 choice
[    1.214164] usb 2-1: adding 2-1:1.0 (config #1, interface 0)
[    1.214253] hub 2-1:1.0: usb_probe_interface
[    1.214258] hub 2-1:1.0: usb_probe_interface - got id
[    1.214266] hub 2-1:1.0: USB hub found
[    1.214494] hub 2-1:1.0: 6 ports detected
[    1.214565] hub 2-1:1.0: standalone hub
[    1.214569] hub 2-1:1.0: individual port power switching
[    1.214573] hub 2-1:1.0: individual port over-current protection
[    1.214577] hub 2-1:1.0: Single TT
[    1.214581] hub 2-1:1.0: TT requires at most 8 FS bit times (666 ns)
[    1.214585] hub 2-1:1.0: power on to power good time: 100ms
[    1.214847] hub 2-1:1.0: local power source is good
[    1.215403] hub 2-1:1.0: enabling power on all ports
[    1.216872] hub 4-0:1.0: state 7 ports 2 chg 0002 evt 0000
[    1.216894] hub 4-0:1.0: port 1, status 0203, change 0000, 5.0 Gb/s
[    1.317832] hub 2-1:1.0: port 5: status 0101 change 0001
[    1.332203] usb 4-1: new SuperSpeed USB device number 2 using xhci_hcd
[    1.345186] usb 4-1: Parent hub missing LPM exit latency info.  Power management will be impacted.
[    1.345642] usb 4-1: skipped 1 descriptor after endpoint
[    1.345650] usb 4-1: skipped 1 descriptor after endpoint
[    1.345796] usb 4-1: default language 0x0409
[    1.346126] usb 4-1: udev 2, busnum 4, minor = 385
[    1.346132] usb 4-1: New USB device found, idVendor=174c, idProduct=55aa
[    1.346205] usb 4-1: New USB device strings: Mfr=2, Product=3, SerialNumber=1
[    1.346277] usb 4-1: Product: MEDION HDDrive-n-GO
[    1.346342] usb 4-1: Manufacturer: MEDION
[    1.346405] usb 4-1: SerialNumber: 3180000000000000092C
[    1.346782] usb 4-1: usb_probe_device
[    1.346788] usb 4-1: configuration #1 chosen from 1 choice
[    1.347887] usb 4-1: Successful Endpoint Configure command
[    1.347992] usb 4-1: adding 4-1:1.0 (config #1, interface 0)
[    1.348236] hub 1-1:1.0: state 7 ports 6 chg 0010 evt 0000
[    1.348405] hub 1-1:1.0: port 4, status 0101, change 0000, 12 Mb/s
[    1.404550] tsc: Refined TSC clocksource calibration: 1596.373 MHz
[    1.416564] usb 2-1: link qh256-0001/ffff8801187692c0 start 1 [1/0 us]
[    1.420757] usb 1-1.4: new high-speed USB device number 3 using ehci-pci
[    1.464518] ata4: SATA link down (SStatus 0 SControl 300)
[    1.662392] usb 1-1.4: skipped 1 descriptor after configuration
[    1.662403] usb 1-1.4: skipped 5 descriptors after interface
[    1.662411] usb 1-1.4: skipped 1 descriptor after endpoint
[    1.662415] usb 1-1.4: skipped 23 descriptors after interface
[    1.664600] usb 1-1.4: default language 0x0409
[    1.676832] usb 1-1.4: udev 3, busnum 1, minor = 2
[    1.676845] usb 1-1.4: New USB device found, idVendor=2232, idProduct=1018
[    1.676920] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.677009] usb 1-1.4: Product: WebCam SC-13HDL11431N
[    1.677074] usb 1-1.4: Manufacturer: 123
[    1.677464] usb 1-1.4: usb_probe_device
[    1.677471] usb 1-1.4: configuration #1 chosen from 1 choice
[    1.677676] usb 1-1.4: adding 1-1.4:1.0 (config #1, interface 0)
[    1.784302] ata5: SATA link down (SStatus 0 SControl 300)
[    1.786649] Freeing unused kernel memory: 1332K (ffffffff81d07000 - ffffffff81e54000)
[    1.786728] Write protecting the kernel read-only data: 12288k
[    1.791432] Freeing unused kernel memory: 1060K (ffff8800016f7000 - ffff880001800000)
[    1.795397] Freeing unused kernel memory: 964K (ffff880001b0f000 - ffff880001c00000)
[    1.830377] udevd[122]: starting version 175
[    1.849709] usb 1-1.4: adding 1-1.4:1.1 (config #1, interface 1)
[    1.849850] hub 2-1:1.0: state 7 ports 6 chg 0020 evt 0000
[    1.849972] hub 2-1:1.0: port 5, status 0101, change 0000, 12 Mb/s
[    1.920174] usb 2-1.5: new full-speed USB device number 3 using ehci-pci
[    1.981861] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    1.981949] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
[    1.982332] r8169 0000:02:00.0: irq 47 for MSI/MSI-X
[    1.982794] r8169 0000:02:00.0 eth0: RTL8168evl/8111evl at 0xffffc90000620000, e8:03:9a:36:17:a9, XID 0c900800 IRQ 47
[    1.982862] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    1.984677] usb-storage 4-1:1.0: usb_probe_interface
[    1.984688] usb-storage 4-1:1.0: usb_probe_interface - got id
[    1.984693] usb-storage 4-1:1.0: USB Mass Storage device detected
[    1.985399] scsi6 : usb-storage 4-1:1.0
[    1.985703] usbcore: registered new interface driver usb-storage
[    2.016483] usb 2-1.5: udev 3, busnum 2, minor = 130
[    2.016490] usb 2-1.5: New USB device found, idVendor=8086, idProduct=0189
[    2.016538] usb 2-1.5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.016777] usb 2-1.5: usb_probe_device
[    2.016782] usb 2-1.5: configuration #1 chosen from 1 choice
[    2.017362] usb 2-1.5: adding 2-1.5:1.0 (config #1, interface 0)
[    2.017552] usb 2-1.5: adding 2-1.5:1.1 (config #1, interface 1)
[    2.403844] Switched to clocksource tsc
[    2.852394] EXT4-fs (loop0): mounted filesystem with ordered data mode. Opts: (null)
[    2.983971] scsi 6:0:0:0: Direct-Access     ASMT     2105             0    PQ: 0 ANSI: 6
[    2.984596] sd 6:0:0:0: Attached scsi generic sg2 type 0
[    2.984673] sd 6:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    2.985172] sd 6:0:0:0: [sdc] Write Protect is off
[    2.985224] sd 6:0:0:0: [sdc] Mode Sense: 43 00 00 00
[    2.985641] sd 6:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.988158]  sdc: sdc1 sdc2 sdc3
[    2.990239] sd 6:0:0:0: [sdc] Attached SCSI disk
[   14.720743] Adding 262140k swap on /host/ubuntu/disks/swap.disk.  Priority:-1 extents:1 across:262140k FS
[   14.777646] EXT4-fs (loop0): re-mounted. Opts: errors=remount-ro
[   14.811665] udevd[608]: starting version 175
[   14.995692] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130626/utaddress-251)
[   14.995702] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   14.995709] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130626/utaddress-251)
[   14.995714] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   14.995717] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130626/utaddress-251)
[   14.995723] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   14.995725] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130626/utaddress-251)
[   14.995730] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   14.995732] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   15.135463] lp: driver loaded but no devices found
[   15.413491] wmi: Mapper loaded
[   15.417088] samsung_laptop: detected SABI interface: SwSmi@
[   15.417095] samsung_laptop: Backlight controlled by ACPI video driver
[   15.444379] cfg80211: Calling CRDA to update world regulatory domain
[   15.449920] ppdev: user-space parallel port driver
[   15.453995] cfg80211: World regulatory domain updated:
[   15.454000] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   15.454002] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   15.454004] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   15.454006] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   15.454008] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   15.454009] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   15.523896] Bluetooth: Core ver 2.16
[   15.523970] NET: Registered protocol family 31
[   15.523974] Bluetooth: HCI device and connection manager initialized
[   15.523997] Bluetooth: HCI socket layer initialized
[   15.524013] Bluetooth: L2CAP socket layer initialized
[   15.524049] Bluetooth: SCO socket layer initialized
[   15.961684] type=1400 audit(1374772097.872:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=863 comm="apparmor_parser"
[   15.962301] type=1400 audit(1374772097.876:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=863 comm="apparmor_parser"
[   15.962788] type=1400 audit(1374772097.876:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=863 comm="apparmor_parser"
[   15.963381] type=1400 audit(1374772097.876:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=798 comm="apparmor_parser"
[   15.964148] type=1400 audit(1374772097.876:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=798 comm="apparmor_parser"
[   15.964641] type=1400 audit(1374772097.876:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=798 comm="apparmor_parser"
[   16.025777] init: failsafe main process (972) killed by TERM signal
[   16.060956] btusb 2-1.5:1.0: usb_probe_interface
[   16.060963] btusb 2-1.5:1.0: usb_probe_interface - got id
[   16.061829] usbcore: registered new interface driver btusb
[   16.061944] usb 2-1.5: link qh1-0e01/ffff8800c0fbfa40 start 0 [1/2 us]
[   16.065196] Linux video capture interface: v2.00
[   16.104814] Bluetooth: RFCOMM TTY layer initialized
[   16.104844] Bluetooth: RFCOMM socket layer initialized
[   16.104847] Bluetooth: RFCOMM ver 1.11
[   16.200994] type=1400 audit(1374772098.112:8): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=931 comm="apparmor_parser"
[   16.202290] type=1400 audit(1374772098.116:9): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=931 comm="apparmor_parser"
[   16.202949] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   16.202953] Bluetooth: BNEP filters: protocol multicast
[   16.202969] Bluetooth: BNEP socket layer initialized
[   16.208001] [drm] Initialized drm 1.1.0 20060810
[   16.312156] type=1400 audit(1374772098.224:10): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=1093 comm="apparmor_parser"
[   16.312965] type=1400 audit(1374772098.224:11): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1093 comm="apparmor_parser"
[   16.868342] Intel(R) Wireless WiFi driver for Linux, in-tree:d
[   16.868357] Copyright(c) 2003-2013 Intel Corporation
[   16.868426] iwlwifi 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
[   16.868807] iwlwifi 0000:01:00.0: irq 48 for MSI/MSI-X
[   16.869739] iwlwifi 0000:01:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
[   17.178723] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f00)
[   17.193839] psmouse serio1: elantech: Synaptics capabilities query result 0x08, 0x17, 0x0c.
[   17.279668] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input4
[   17.302299] uvcvideo 1-1.4:1.0: usb_probe_interface
[   17.302308] uvcvideo 1-1.4:1.0: usb_probe_interface - got id
[   17.302356] uvcvideo: Found UVC 1.00 device WebCam SC-13HDL11431N (2232:1018)
[   17.326862] input: WebCam SC-13HDL11431N as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input5
[   17.327241] usbcore: registered new interface driver uvcvideo
[   17.327245] USB Video Class driver (1.1.1)
[   17.331337] [drm:drm_pci_init], 
[   17.331396] [drm:drm_get_pci_dev], 
[   17.331587] [drm:drm_get_minor], 
[   17.333433] [drm:drm_get_minor], new minor assigned 64
[   17.333438] [drm:drm_get_minor], 
[   17.333939] [drm:drm_get_minor], new minor assigned 0
[   17.334380] usb 1-1.4: link qh16-0001/ffff8800c173a6c0 start 2 [1/0 us]
[   17.334432] usb 1-1.4: unlink qh16-0001/ffff8800c173a6c0 start 2 [1/0 us]
[   17.333988] [drm:i915_dump_device_info], i915 device info: gen=6, pciid=0x0116 flags=is_mobile,need_gfx_hws,has_force_wake,has_fbc,has_hotplug,has_bsd_ring,has_blt_ring,has_llc,
[   17.334675] [drm] Memory usable by graphics device = 2048M
[   17.334679] [drm:i915_gem_gtt_init], GMADR size = 256M
[   17.334682] [drm:i915_gem_gtt_init], GTT stolen size = 64M
[   17.334690] i915 0000:00:02.0: setting latency timer to 64
[   17.373333] [drm:intel_detect_pch], Found CougarPoint PCH
[   17.374050] [drm:intel_opregion_setup], graphic opregion physical addr: 0xdaf1f018
[   17.374068] [drm:intel_opregion_setup], Public ACPI methods supported
[   17.374071] [drm:intel_opregion_setup], SWSCI supported
[   17.374073] [drm:intel_opregion_setup], ASLE supported
[   17.374147] i915 0000:00:02.0: irq 49 for MSI/MSI-X
[   17.374168] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[   17.374170] [drm] Driver supports precise vblank timestamp query.
[   17.374173] [drm:init_vbt_defaults], Set default to SSC at 100MHz
[   17.374177] [drm:intel_parse_bios], Using VBT from OpRegion: $VBT SANDYBRIDGE-M  d
[   17.374181] [drm:parse_general_features], BDB_GENERAL_FEATURES int_tv_support 0 int_crt_support 1 lvds_use_ssc 1 lvds_ssc_freq 120 display_clock_mode 0 fdi_rx_polarity_inverted 0
[   17.374185] [drm:parse_general_definitions], crt_ddc_bus_pin: 2
[   17.374191] [drm:parse_lfp_panel_data], Found panel mode in BIOS VBT tables:
[   17.374194] [drm:drm_mode_debug_printmodeline], Modeline 0:"1366x768" 0 70700 1366 1414 1446 1486 768 770 775 792 0x8 0xa
[   17.374200] [drm:parse_lfp_panel_data], VBT initial LVDS value 300300
[   17.374205] [drm:parse_sdvo_panel_data], Found SDVO panel mode in BIOS VBT tables:
[   17.374207] [drm:drm_mode_debug_printmodeline], Modeline 0:"1600x1200" 0 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x8 0xa
[   17.374212] [drm:parse_sdvo_device_mapping], No SDVO device info is found in VBT
[   17.374225] [drm:intel_dsm_pci_probe], no _DSM method for intel device
[   17.374236] [drm:i915_gem_init_stolen], found 67108864 bytes of stolen memory at dba00000
[   17.374240] [drm:drm_irq_install], irq=49
[   17.374339] [drm:intel_modeset_init], 2 display pipes available.
[   17.374493] [drm:intel_shared_dpll_init], 2 shared PLLs initialized
[   17.374499] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   17.375137] [drm:gmbus_xfer], GMBUS [i915 gmbus panel] NAK for addr: 0050 r(1)
[   17.375142] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus panel
[   17.375145] [drm:intel_lvds_init], using mode from VBT: 
[   17.375148] [drm:drm_mode_debug_printmodeline], Modeline 0:"1366x768" 0 70700 1366 1414 1446 1486 768 770 775 792 0x8 0xa
[   17.375157] [drm:intel_lvds_init], detected single-link lvds configuration
[   17.375162] [drm:drm_sysfs_connector_add], adding "LVDS-1" to sysfs
[   17.375298] [drm:drm_sysfs_hotplug_event], generating hotplug event
[   17.375449] [drm:intel_panel_get_backlight], get backlight PWM = 4648
[   17.375454] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[   17.375623] [drm:drm_sysfs_connector_add], adding "VGA-1" to sysfs
[   17.375727] [drm:drm_sysfs_hotplug_event], generating hotplug event
[   17.375803] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus dpb. force bit now 1
[   17.375854] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUG enabled
[   17.375859] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[   17.375862] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
[   17.375866] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_P2P disabled
[   17.375870] iwlwifi 0000:01:00.0: Detected Intel(R) Centrino(R) Advanced-N 6230 AGN, REV=0xB0
[   17.375947] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
[   17.376787] [drm:intel_sdvo_read_byte], i2c transfer returned -6
[   17.376790] [drm:intel_sdvo_init], No SDVO device found on SDVOB
[   17.376895] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus dpb. force bit now 0
[   17.376928] [drm:drm_sysfs_connector_add], adding "HDMI-A-1" to sysfs
[   17.377017] [drm:drm_sysfs_hotplug_event], generating hotplug event
[   17.377225] [drm:intel_dp_init_connector], Adding DP connector on port B
[   17.377231] [drm:drm_sysfs_connector_add], adding "DP-1" to sysfs
[   17.377332] [drm:drm_sysfs_hotplug_event], generating hotplug event
[   17.377365] [drm:intel_dp_i2c_init], i2c_init DPDDC-B
[   17.381981] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x7143003f
[   17.382015] [drm:intel_dp_i2c_aux_ch], aux_ch failed -110
[   17.385147] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x7143003f
[   17.385288] [drm:intel_dp_i2c_aux_ch], aux_ch failed -110
[   17.385512] [drm:ironlake_init_pch_refclk], has_panel 1 has_lvds 1 has_ck505 0
[   17.385519] [drm:ironlake_init_pch_refclk], Using SSC on panel
[   17.385935] [drm:i915_gem_setup_global_gtt], clearing unused GTT space: [0, 7fdff000]
[   17.389498] [drm:init_status_page], render ring hws offset: 0x00000000
[   17.389982] [drm:init_pipe_control], render ring pipe control offset: 0x00021000
[   17.390010] [drm:init_status_page], bsd ring hws offset: 0x00022000
[   17.390254] [drm:init_status_page], blitter ring hws offset: 0x00043000
[   17.390502] [drm:create_default_context], Default HW context loaded
[   17.390505] [drm:i915_gem_context_init], HW context support initialized
[   17.390777] [drm] Wrong MCH_SSKPD value: 0x16040307
[   17.390780] [drm] This can cause pipe underruns and display issues.
[   17.390782] [drm] Please upgrade your BIOS to fix this.
[   17.390853] [drm:intel_modeset_readout_hw_state], [CRTC:3] hw state readout: enabled
[   17.390858] [drm:intel_modeset_readout_hw_state], [CRTC:5] hw state readout: disabled
[   17.390871] [drm:intel_modeset_readout_hw_state], PCH DPLL A hw state readout: refcount 1, on 1
[   17.390883] [drm:intel_modeset_readout_hw_state], PCH DPLL B hw state readout: refcount 0, on 0
[   17.390893] [drm:intel_modeset_readout_hw_state], [ENCODER:8:LVDS-8] hw state readout: enabled, pipe=0
[   17.390898] [drm:intel_modeset_readout_hw_state], [ENCODER:12:DAC-12] hw state readout: disabled, pipe=0
[   17.390905] [drm:intel_modeset_readout_hw_state], [ENCODER:13:TMDS-13] hw state readout: disabled, pipe=0
[   17.390910] [drm:intel_modeset_readout_hw_state], [ENCODER:17:TMDS-17] hw state readout: disabled, pipe=0
[   17.390923] [drm:intel_modeset_readout_hw_state], [CONNECTOR:7:LVDS-1] hw state readout: enabled
[   17.390928] [drm:intel_modeset_readout_hw_state], [CONNECTOR:11:VGA-1] hw state readout: disabled
[   17.390935] [drm:intel_modeset_readout_hw_state], [CONNECTOR:14:HDMI-A-1] hw state readout: disabled
[   17.390941] [drm:intel_modeset_readout_hw_state], [CONNECTOR:18:DP-1] hw state readout: disabled
[   17.390950] [drm:intel_dump_pipe_config], [CRTC:3][setup_hw_state] config for pipe A
[   17.390952] [drm:intel_dump_pipe_config], cpu_transcoder: A
[   17.390955] [drm:intel_dump_pipe_config], pipe bpp: 0, dithering: 0
[   17.390957] [drm:intel_dump_pipe_config], fdi/pch: 1, lanes: 4, gmch_m: 1647429, gmch_n: 8388608, link_m: 137285, link_n: 524288, tu: 64
[   17.390961] [drm:intel_dump_pipe_config], requested mode:
[   17.390963] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 720 0 0 0 400 0 0 0 0x0 0x0
[   17.390967] [drm:intel_dump_pipe_config], adjusted mode:
[   17.390970] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 70699 0 0 0 0 0 0 0 0 0x0 0xa
[   17.390973] [drm:intel_dump_pipe_config], gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[   17.390976] [drm:intel_dump_pipe_config], pch pfit: pos: 0x00000000, size: 0x05560300
[   17.390979] [drm:intel_dump_pipe_config], ips: 0
[   17.390986] [drm:intel_dump_pipe_config], [CRTC:5][setup_hw_state] config for pipe B
[   17.390989] [drm:intel_dump_pipe_config], cpu_transcoder: B
[   17.390991] [drm:intel_dump_pipe_config], pipe bpp: 0, dithering: 0
[   17.390994] [drm:intel_dump_pipe_config], fdi/pch: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[   17.390997] [drm:intel_dump_pipe_config], requested mode:
[   17.391000] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[   17.391004] [drm:intel_dump_pipe_config], adjusted mode:
[   17.391006] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[   17.391009] [drm:intel_dump_pipe_config], gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[   17.391011] [drm:intel_dump_pipe_config], pch pfit: pos: 0x00000000, size: 0x00000000
[   17.391013] [drm:intel_dump_pipe_config], ips: 0
[   17.391018] [drm:intel_connector_check_state], [CONNECTOR:7:LVDS-1]
[   17.391034] [drm:check_encoder_state], [ENCODER:8:LVDS-8]
[   17.391039] [drm:check_encoder_state], [ENCODER:12:DAC-12]
[   17.391046] [drm:check_encoder_state], [ENCODER:13:TMDS-13]
[   17.391051] [drm:check_encoder_state], [ENCODER:17:TMDS-17]
[   17.391057] [drm:check_crtc_state], [CRTC:3]
[   17.391132] [drm:check_crtc_state], [CRTC:5]
[   17.391140] [drm:check_shared_dpll_state], PCH DPLL A
[   17.391151] [drm:check_shared_dpll_state], PCH DPLL B
[   17.391169] [drm:intel_crt_reset], pch crt adpa set to 0xf40000
[   17.391203] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1]
[   17.391206] [drm:intel_lvds_detect], [CONNECTOR:7:LVDS-1]
[   17.391217] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1] probed modes :
[   17.391220] [drm:drm_mode_debug_printmodeline], Modeline 19:"1366x768" 60 70700 1366 1414 1446 1486 768 770 775 792 0x8 0xa
[   17.391225] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1]
[   17.391228] [drm:intel_crt_detect], [CONNECTOR:11:VGA-1] force=1
[   17.391234] [drm:intel_ironlake_crt_detect_hotplug], trigger hotplug detect cycle: adpa=0xf40000
[   17.407784] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[   17.407789] [drm:intel_crt_detect], CRT not detected via hotplug
[   17.407963] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[   17.407970] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   17.407973] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[   17.407976] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[   17.408319] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   17.408322] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[   17.408325] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[   17.408329] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1] disconnected
[   17.408334] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1]
[   17.408338] [drm:intel_hdmi_detect], [CONNECTOR:14:HDMI-A-1]
[   17.408522] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[   17.408526] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[   17.408529] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1] disconnected
[   17.408533] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1]
[   17.408537] [drm:intel_dp_detect], [CONNECTOR:18:DP-1]
[   17.408541] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1] disconnected
[   17.408543] [drm:drm_setup_crtcs], 
[   17.408547] [drm:drm_enable_connectors], connector 7 enabled? yes
[   17.408550] [drm:drm_enable_connectors], connector 11 enabled? no
[   17.408553] [drm:drm_enable_connectors], connector 14 enabled? no
[   17.408555] [drm:drm_enable_connectors], connector 18 enabled? no
[   17.408558] [drm:drm_target_preferred], looking for cmdline mode on connector 7
[   17.408561] [drm:drm_target_preferred], looking for preferred mode on connector 7
[   17.408564] [drm:drm_target_preferred], found mode 1366x768
[   17.408566] [drm:drm_setup_crtcs], picking CRTCs for 8192x8192 config
[   17.408571] [drm:drm_setup_crtcs], desired mode 1366x768 set on crtc 3
[   17.408579] [drm:i915_gem_object_create_stolen], creating stolen object: size=408000
[   17.408589] [drm:i915_pages_create_for_stolen], offset=0x0, size=4227072
[   17.408626] [drm:drm_framebuffer_reference], FB ID: 21
[   17.409979] [drm:intelfb_create], allocated 1366x768 fb: 0x00072000, bo ffff8800ba320d00
[   17.410212] fbcon: inteldrmfb (fb0) is primary device
[   17.411203] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[   17.411208] [drm:intel_set_config_compute_mode_changes], inactive crtc, full mode set
[   17.411210] [drm:intel_set_config_compute_mode_changes], modes are different, full mode set
[   17.411214] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[   17.411217] [drm:drm_mode_debug_printmodeline], Modeline 20:"1366x768" 60 70700 1366 1414 1446 1486 768 770 775 792 0x8 0xa
[   17.411220] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   17.411224] [drm:intel_modeset_affected_pipes], set mode pipe masks: modeset: 1, prepare: 1, disable: 0
[   17.411231] [drm:connected_sink_compute_bpp], [CONNECTOR:7:LVDS-1] checking for sink bpp constrains
[   17.411236] [drm:ironlake_check_fdi_lanes], checking fdi config on pipe A, lanes 1
[   17.411238] [drm:intel_modeset_pipe_config], plane bpp: 24, pipe bpp: 24, dithering: 0
[   17.411240] [drm:intel_dump_pipe_config], [CRTC:3][modeset] config for pipe A
[   17.411241] [drm:intel_dump_pipe_config], cpu_transcoder: A
[   17.411243] [drm:intel_dump_pipe_config], pipe bpp: 24, dithering: 0
[   17.411245] [drm:intel_dump_pipe_config], fdi/pch: 1, lanes: 1, gmch_m: 3294858, gmch_n: 4194304, link_m: 137285, link_n: 524288, tu: 64
[   17.411247] [drm:intel_dump_pipe_config], requested mode:
[   17.411250] [drm:drm_mode_debug_printmodeline], Modeline 0:"1366x768" 60 70700 1366 1414 1446 1486 768 770 775 792 0x8 0xa
[   17.411252] [drm:intel_dump_pipe_config], adjusted mode:
[   17.411255] [drm:drm_mode_debug_printmodeline], Modeline 0:"1366x768" 60 70700 1366 1414 1446 1486 768 770 775 792 0x8 0xa
[   17.411257] [drm:intel_dump_pipe_config], gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[   17.411259] [drm:intel_dump_pipe_config], pch pfit: pos: 0x00000000, size: 0x00000000
[   17.411260] [drm:intel_dump_pipe_config], ips: 0
[   17.411263] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[   17.423604] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[   17.441151] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
[   17.447997] iwlwifi 0000:01:00.0: Radio type=0x1-0x2-0x0
[   17.721915] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
[   17.728515] iwlwifi 0000:01:00.0: Radio type=0x1-0x2-0x0
[   17.806722] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   17.944740] [drm:drm_calc_vbltimestamp_from_scanoutpos], crtc 0: Noop due to uninitialized mode.
[   17.976720] [drm:intel_disable_shared_dpll], disable PCH DPLL A (active 1, on? 1) for crtc 3
[   17.976724] [drm:intel_disable_shared_dpll], disabling PCH DPLL A
[   17.977132] [drm:intel_update_fbc], no output, disabling
[   17.977137] [drm:drm_vblank_get], enabling vblank on crtc 0, ret: -22
[   17.977139] [drm:ironlake_get_refclk], using SSC reference clock of 120 MHz
[   17.977160] [drm:intel_get_shared_dpll], CRTC:3 dropping existing PCH DPLL A
[   17.977161] [drm:intel_get_shared_dpll], CRTC:3 allocated PCH DPLL A
[   17.977162] [drm:intel_get_shared_dpll], using PCH DPLL A for pipe A
[   17.977163] [drm:intel_get_shared_dpll], setting up PCH DPLL A
[   17.977174] [drm:ironlake_update_plane], Writing base 00072000 00000000 0 0 5504
[   17.977176] [drm:intel_update_fbc], no output, disabling
[   17.977179] [drm:intel_crtc_mode_set], [ENCODER:8:LVDS-8] set [MODE:0:1366x768]
[   17.977182] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 6, cursor: 6
[   17.977184] [drm:ironlake_check_srwm], watermark 1: display plane 9, fbc lines 3, cursor 6
[   17.977186] [drm:ironlake_check_srwm], watermark 2: display plane 11, fbc lines 3, cursor 6
[   17.977188] [drm:ironlake_check_srwm], watermark 3: display plane 51, fbc lines 3, cursor 6
[   18.040667] [drm:ironlake_wait_for_vblank], vblank wait timed out
[   18.104621] [drm:ironlake_wait_for_vblank], vblank wait timed out
[   18.105424] [drm:gen6_fdi_link_train], FDI_RX_IIR 0x700
[   18.105426] [drm:gen6_fdi_link_train], FDI train 1 done.
[   18.106075] [drm:gen6_fdi_link_train], FDI_RX_IIR 0x600
[   18.106077] [drm:gen6_fdi_link_train], FDI train 2 done.
[   18.106078] [drm:gen6_fdi_link_train], FDI train done.
[   18.106081] [drm:ironlake_enable_shared_dpll], enable PCH DPLL A (active 0, on? 0)for crtc 3
[   18.106082] [drm:ironlake_enable_shared_dpll], enabling PCH DPLL A
[   18.107443] [drm:intel_update_fbc], disabled per chip default
[   18.368438] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[   18.376429] [drm:drm_calc_timestamping_constants], crtc 3: hwmode: htotal 1486, vtotal 792, vdisplay 768
[   18.376431] [drm:drm_calc_timestamping_constants], crtc 3: clock 70700 kHz framedur 16646562 linedur 21018, pixeldur 14
[   18.376437] [drm:intel_connector_check_state], [CONNECTOR:7:LVDS-1]
[   18.376442] [drm:check_encoder_state], [ENCODER:8:LVDS-8]
[   18.376444] [drm:check_encoder_state], [ENCODER:12:DAC-12]
[   18.376446] [drm:check_encoder_state], [ENCODER:13:TMDS-13]
[   18.376449] [drm:check_encoder_state], [ENCODER:17:TMDS-17]
[   18.376451] [drm:check_crtc_state], [CRTC:3]
[   18.376460] [drm:check_crtc_state], [CRTC:5]
[   18.376462] [drm:check_shared_dpll_state], PCH DPLL A
[   18.376465] [drm:check_shared_dpll_state], PCH DPLL B
[   18.376470] [drm:drm_framebuffer_reference], FB ID: 21
[   18.376472] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[   18.376475] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   18.376476] [drm:drm_framebuffer_reference], FB ID: 21
[   18.376477] [drm:drm_framebuffer_unreference], FB ID: 21
[   18.376530] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[   18.376532] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   18.376534] [drm:drm_framebuffer_reference], FB ID: 21
[   18.376534] [drm:drm_framebuffer_unreference], FB ID: 21
[   18.379671] Console: switching to colour frame buffer device 170x48
[   18.379675] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[   18.379677] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   18.379678] [drm:drm_framebuffer_reference], FB ID: 21
[   18.379679] [drm:drm_framebuffer_unreference], FB ID: 21
[   18.382657] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[   18.382659] i915 0000:00:02.0: registered panic notifier
[   18.400759] [drm:asle_set_backlight], bclp = 0x8000000f
[   18.400767] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[   18.400771] [drm:intel_panel_actually_set_backlight], set backlight PWM = 273
[   18.400977] [drm:asle_set_backlight], bclp = 0x800000ff
[   18.400981] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[   18.400984] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[   18.401357] init: alsa-restore main process (1160) terminated with status 19
[   18.401477] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   18.401615] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input6
[   18.402163] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[   18.402522] snd_hda_intel 0000:00:1b.0: irq 50 for MSI/MSI-X
[   18.473787] init: plymouth-splash main process (1277) terminated with status 1
[   18.479365] init: lightdm main process (1257) killed by TERM signal
[   18.501102] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[   18.501486] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[   18.501761] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[   18.601506] init: rc main process (1149) killed by TERM signal
[   18.621315] init: plymouth-stop pre-start process (1341) terminated with status 1
[   18.780600] [drm:intel_enable_rc6], Sandybridge: deep RC6 disabled
[   18.780610] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
[   19.779713] usb 1-1.4: usb auto-suspend, wakeup 0
[   19.795467] hub 1-1:1.0: hub_suspend
[   19.795488] usb 1-1: unlink qh256-0001/ffff8801187695c0 start 1 [1/0 us]
[   19.797777] usb 1-1: usb auto-suspend, wakeup 1
[   19.811429] hub 1-0:1.0: hub_suspend
[   19.811440] usb usb1: bus auto-suspend, wakeup 1
[   19.811444] ehci-pci 0000:00:1a.0: suspend root hub
[   24.011345] wlan0: authenticate with 00:04:0e:e4:00:3d
[   24.017226] wlan0: send auth to 00:04:0e:e4:00:3d (try 1/3)
[   24.019036] wlan0: authenticated
[   24.019315] iwlwifi 0000:01:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
[   24.019330] iwlwifi 0000:01:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
[   24.020459] wlan0: associate with 00:04:0e:e4:00:3d (try 1/3)
[   24.024480] wlan0: RX AssocResp from 00:04:0e:e4:00:3d (capab=0x411 status=0 aid=1)
[   24.031947] wlan0: associated
[   24.032073] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   62.378131] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[   62.378138] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   62.378141] [drm:drm_framebuffer_reference], FB ID: 21
[   62.378142] [drm:drm_framebuffer_unreference], FB ID: 21
[   62.382662] [drm:drm_stub_open], 
[   62.382669] [drm:drm_open_helper], pid = 1901, minor = 0
[   62.382676] [drm:i915_driver_open], 
[   62.382684] [drm:drm_setup], 
[   62.382717] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_VERSION
[   62.382724] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_VERSION
[   62.382741] [drm:drm_release], open_count = 1
[   62.382744] [drm:drm_release], pid = 1901, device = 0xe200, open_count = 1
[   62.382751] [drm:drm_lastclose], 
[   62.382756] [drm:intel_crtc_cursor_set], cursor off
[   62.382758] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[   62.382765] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   62.382769] [drm:drm_framebuffer_reference], FB ID: 21
[   62.382773] [drm:drm_framebuffer_unreference], FB ID: 21
[   62.382776] [drm:intel_crtc_cursor_set], cursor off
[   62.382780] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[   62.382784] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   62.382789] [drm:drm_framebuffer_reference], FB ID: 21
[   62.382791] [drm:drm_framebuffer_unreference], FB ID: 21
[   62.382795] [drm:drm_lastclose], driver lastclose completed
[   62.382799] [drm:drm_lastclose], lastclose completed
[   62.382951] [drm:drm_stub_open], 
[   62.382962] [drm:drm_open_helper], pid = 1901, minor = 0
[   62.382968] [drm:i915_driver_open], 
[   62.382975] [drm:drm_setup], 
[   62.383036] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_SET_VERSION
[   62.383047] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_GET_UNIQUE
[   62.383053] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_GET_UNIQUE
[   62.383112] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_VERSION
[   62.383120] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.383125] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETRESOURCES
[   62.383130] [drm:drm_mode_getresources], CRTC[2] CONNECTORS[4] ENCODERS[4]
[   62.383238] [drm:drm_release], open_count = 1
[   62.383243] [drm:drm_release], pid = 1901, device = 0xe200, open_count = 1
[   62.383250] [drm:drm_lastclose], 
[   62.383254] [drm:intel_crtc_cursor_set], cursor off
[   62.383257] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[   62.383263] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   62.383266] [drm:drm_framebuffer_reference], FB ID: 21
[   62.383269] [drm:drm_framebuffer_unreference], FB ID: 21
[   62.383272] [drm:intel_crtc_cursor_set], cursor off
[   62.383274] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[   62.383279] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   62.383282] [drm:drm_framebuffer_reference], FB ID: 21
[   62.383284] [drm:drm_framebuffer_unreference], FB ID: 21
[   62.383287] [drm:drm_lastclose], driver lastclose completed
[   62.383290] [drm:drm_lastclose], lastclose completed
[   62.384805] [drm:drm_stub_open], 
[   62.384810] [drm:drm_open_helper], pid = 1901, minor = 0
[   62.384815] [drm:i915_driver_open], 
[   62.384820] [drm:drm_setup], 
[   62.384837] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_VERSION
[   62.384842] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_VERSION
[   62.384848] [drm:drm_release], open_count = 1
[   62.384851] [drm:drm_release], pid = 1901, device = 0xe200, open_count = 1
[   62.384856] [drm:drm_lastclose], 
[   62.384860] [drm:intel_crtc_cursor_set], cursor off
[   62.384862] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[   62.384867] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   62.384869] [drm:drm_framebuffer_reference], FB ID: 21
[   62.384871] [drm:drm_framebuffer_unreference], FB ID: 21
[   62.384873] [drm:intel_crtc_cursor_set], cursor off
[   62.384874] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[   62.384877] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   62.384879] [drm:drm_framebuffer_reference], FB ID: 21
[   62.384880] [drm:drm_framebuffer_unreference], FB ID: 21
[   62.384882] [drm:drm_lastclose], driver lastclose completed
[   62.384884] [drm:drm_lastclose], lastclose completed
[   62.384958] [drm:drm_stub_open], 
[   62.384960] [drm:drm_open_helper], pid = 1901, minor = 0
[   62.384963] [drm:i915_driver_open], 
[   62.384967] [drm:drm_setup], 
[   62.384992] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_SET_VERSION
[   62.384998] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_GET_UNIQUE
[   62.385001] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_GET_UNIQUE
[   62.385018] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_SET_VERSION
[   62.385025] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.385131] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_GET_APERTURE
[   62.385143] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.385148] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.385151] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.385154] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.385157] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.385159] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.385162] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.385164] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.385183] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.385211] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_THROTTLE
[   62.385215] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.385218] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.385220] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.385223] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.385327] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETRESOURCES
[   62.385331] [drm:drm_mode_getresources], CRTC[2] CONNECTORS[4] ENCODERS[4]
[   62.385338] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETRESOURCES
[   62.385340] [drm:drm_mode_getresources], CRTC[2] CONNECTORS[4] ENCODERS[4]
[   62.385355] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCRTC
[   62.385364] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GET_PIPE_FROM_CRTC_ID
[   62.385372] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.385385] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCRTC
[   62.385388] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GET_PIPE_FROM_CRTC_ID
[   62.385391] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.385402] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[   62.385404] [drm:drm_mode_getconnector], [CONNECTOR:7:?]
[   62.385407] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1]
[   62.385409] [drm:intel_lvds_detect], [CONNECTOR:7:LVDS-1]
[   62.385415] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1] probed modes :
[   62.385418] [drm:drm_mode_debug_printmodeline], Modeline 19:"1366x768" 60 70700 1366 1414 1446 1486 768 770 775 792 0x8 0xa
[   62.385423] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[   62.385425] [drm:drm_mode_getconnector], [CONNECTOR:7:?]
[   62.385430] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETENCODER
[   62.385738] [drm:intel_panel_get_backlight], get backlight PWM = 4648
[   62.385763] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[   62.385766] [drm:drm_mode_getconnector], [CONNECTOR:11:?]
[   62.385768] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1]
[   62.385770] [drm:intel_crt_detect], [CONNECTOR:11:VGA-1] force=1
[   62.385774] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[   62.385775] [drm:intel_crt_detect], CRT not detected via hotplug
[   62.385953] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[   62.385963] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   62.385968] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[   62.385971] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[   62.386328] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   62.386332] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[   62.386336] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[   62.386341] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1] disconnected
[   62.386352] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[   62.386358] [drm:drm_mode_getconnector], [CONNECTOR:11:?]
[   62.386363] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1]
[   62.386367] [drm:intel_crt_detect], [CONNECTOR:11:VGA-1] force=1
[   62.386371] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[   62.386375] [drm:intel_crt_detect], CRT not detected via hotplug
[   62.386542] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[   62.386548] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   62.386551] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[   62.386554] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[   62.386930] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   62.386942] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[   62.386978] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[   62.387002] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1] disconnected
[   62.387011] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETENCODER
[   62.387064] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[   62.387068] [drm:drm_mode_getconnector], [CONNECTOR:14:?]
[   62.387072] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1]
[   62.387076] [drm:intel_hdmi_detect], [CONNECTOR:14:HDMI-A-1]
[   62.387242] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[   62.387246] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[   62.387248] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1] disconnected
[   62.387255] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[   62.387269] [drm:drm_mode_getconnector], [CONNECTOR:14:?]
[   62.387272] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1]
[   62.387275] [drm:intel_hdmi_detect], [CONNECTOR:14:HDMI-A-1]
[   62.387433] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[   62.387437] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[   62.387439] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1] disconnected
[   62.387448] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETENCODER
[   62.387483] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[   62.387486] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[   62.387490] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1]
[   62.387492] [drm:intel_dp_detect], [CONNECTOR:18:DP-1]
[   62.387497] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1] disconnected
[   62.387502] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[   62.387505] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[   62.387507] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1]
[   62.387510] [drm:intel_dp_detect], [CONNECTOR:18:DP-1]
[   62.387512] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1] disconnected
[   62.387518] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETENCODER
[   62.387573] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[   62.387577] [drm:drm_mode_getconnector], [CONNECTOR:7:?]
[   62.387580] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1]
[   62.387582] [drm:intel_lvds_detect], [CONNECTOR:7:LVDS-1]
[   62.387591] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1] probed modes :
[   62.387594] [drm:drm_mode_debug_printmodeline], Modeline 19:"1366x768" 60 70700 1366 1414 1446 1486 768 770 775 792 0x8 0xa
[   62.387601] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[   62.387603] [drm:drm_mode_getconnector], [CONNECTOR:7:?]
[   62.387612] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.387618] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.387630] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[   62.387633] [drm:drm_ioctl], ret = -22
[   62.387640] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.387647] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.387654] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.387659] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.388364] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[   62.388368] [drm:drm_mode_getconnector], [CONNECTOR:11:?]
[   62.388371] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1]
[   62.388374] [drm:intel_crt_detect], [CONNECTOR:11:VGA-1] force=1
[   62.388378] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[   62.388380] [drm:intel_crt_detect], CRT not detected via hotplug
[   62.388542] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[   62.388546] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   62.388549] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[   62.388551] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[   62.388895] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   62.388899] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[   62.388902] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[   62.388905] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1] disconnected
[   62.388912] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[   62.388914] [drm:drm_mode_getconnector], [CONNECTOR:11:?]
[   62.388917] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1]
[   62.388919] [drm:intel_crt_detect], [CONNECTOR:11:VGA-1] force=1
[   62.388923] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[   62.388926] [drm:intel_crt_detect], CRT not detected via hotplug
[   62.389093] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[   62.389098] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   62.389101] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[   62.389103] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[   62.389457] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   62.389460] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[   62.389463] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[   62.389467] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1] disconnected
[   62.389513] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[   62.389517] [drm:drm_mode_getconnector], [CONNECTOR:14:?]
[   62.389521] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1]
[   62.389524] [drm:intel_hdmi_detect], [CONNECTOR:14:HDMI-A-1]
[   62.389694] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[   62.389698] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[   62.389701] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1] disconnected
[   62.389709] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[   62.389713] [drm:drm_mode_getconnector], [CONNECTOR:14:?]
[   62.389717] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1]
[   62.389721] [drm:intel_hdmi_detect], [CONNECTOR:14:HDMI-A-1]
[   62.389889] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[   62.389894] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[   62.389898] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1] disconnected
[   62.389938] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[   62.389943] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[   62.389947] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1]
[   62.389951] [drm:intel_dp_detect], [CONNECTOR:18:DP-1]
[   62.389956] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1] disconnected
[   62.389962] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[   62.389965] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[   62.389968] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1]
[   62.389971] [drm:intel_dp_detect], [CONNECTOR:18:DP-1]
[   62.389976] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1] disconnected
[   62.390196] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.407256] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407280] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_TILING
[   62.407304] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407314] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407323] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407336] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407353] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407364] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_PWRITE
[   62.407377] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407386] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_PWRITE
[   62.407392] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407401] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_PWRITE
[   62.407407] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407416] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_PWRITE
[   62.407423] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407432] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_PWRITE
[   62.407439] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407448] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_PWRITE
[   62.407454] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407462] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_PWRITE
[   62.407468] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407479] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_PWRITE
[   62.407485] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407494] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_PWRITE
[   62.407504] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407518] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.407527] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.407548] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.407553] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407562] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.407568] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.407579] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.407583] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407592] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.407597] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.407612] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.407616] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407624] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.407630] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.407641] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.407644] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407653] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.407658] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.407669] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.407672] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407682] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.407687] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.407701] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.407705] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407716] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.407721] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.407732] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.407736] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407744] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.407749] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.407760] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.407764] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407773] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.407778] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.407791] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.407795] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407806] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.407811] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.407824] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.407828] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407837] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.407842] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.407853] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.407856] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407865] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.407870] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.407884] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.407887] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407896] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.407901] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.407912] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.407916] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407924] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.407929] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.407941] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.407945] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407955] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.407960] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.407975] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.407979] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.407988] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.407993] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408004] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408008] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408017] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408022] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408034] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408037] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408046] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408051] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408064] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408067] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408079] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408084] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408095] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408099] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408107] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408112] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408125] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408128] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408137] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408142] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408155] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408158] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408167] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408173] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408184] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408188] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408198] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408203] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408214] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408218] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408227] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408232] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408246] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408250] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408259] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408264] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408275] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408279] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408287] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408292] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408304] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408308] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408317] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408322] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408334] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408338] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408349] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408355] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408366] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408370] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408379] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408384] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408396] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408400] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408408] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408413] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408426] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408430] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408440] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408445] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408456] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408460] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408470] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408475] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408487] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408491] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408500] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408505] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408518] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408522] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408531] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408536] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408548] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408552] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408561] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408566] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408576] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408580] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408589] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408594] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408606] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408610] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408621] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408626] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408637] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408641] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408650] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408655] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408667] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408671] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408681] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408686] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408699] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408703] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408711] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408716] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408727] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408731] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408739] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408744] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408757] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408761] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408770] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408775] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408792] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408796] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408805] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408810] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408821] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408825] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408833] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408838] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408850] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408854] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408862] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408867] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408880] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408884] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408895] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408900] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408913] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408916] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408927] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408932] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408944] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408948] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408958] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408963] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.408976] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.408980] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.408988] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.408994] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409005] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.409008] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409017] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.409022] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409033] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.409036] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409045] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.409050] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409064] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.409068] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409077] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.409082] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409093] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.409096] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409105] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.409110] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409121] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.409125] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409134] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.409139] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409152] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.409155] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409168] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.409173] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409185] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.409188] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409197] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.409202] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409214] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.409218] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409227] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.409232] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409245] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.409248] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409257] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.409262] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409277] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.409280] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409289] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.409294] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409305] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.409309] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409318] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.409323] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409338] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.409341] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409350] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.409355] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409370] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.409373] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409382] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.409387] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409398] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.409401] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409412] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.409418] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409431] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.409434] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409446] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.409451] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409463] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.409469] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409478] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_PWRITE
[   62.409486] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409495] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.409501] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409507] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.409511] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409519] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.409524] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409556] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.409560] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.409569] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP
[   62.409574] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[   62.409580] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[   62.410226] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410234] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410239] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410244] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410250] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410254] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410274] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETPROPERTY
[   62.410338] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[   62.410340] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[   62.410413] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[   62.410416] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[   62.410440] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410444] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410448] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410452] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410458] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410461] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410465] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410468] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410472] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410476] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410481] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410484] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410492] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETPROPERTY
[   62.410503] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETPROPERTY
[   62.410508] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410511] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410515] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410519] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410523] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410526] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410530] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410534] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.410540] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETPROPERTY
[   62.410545] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETPROPERTY
[   62.410736] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.410956] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_SET_MASTER
[   62.410973] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_ADDFB
[   62.410989] [drm:drm_framebuffer_reference], FB ID: 22
[   62.410995] [drm:drm_mode_addfb], [FB:22]
[   62.411022] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETGAMMA
[   62.411079] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETCRTC
[   62.411084] [drm:drm_mode_setcrtc], [CRTC:3]
[   62.411088] [drm:drm_framebuffer_reference], FB ID: 22
[   62.411096] [drm:drm_mode_setcrtc], [CONNECTOR:7:LVDS-1]
[   62.411099] [drm:intel_crtc_set_config], [CRTC:3] [FB:22] #connectors=1 (x y) (0 0)
[   62.411106] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   62.415968] [drm:ironlake_update_plane], Writing base 0047A000 00000000 0 0 5632
[   62.423071] [drm:intel_update_fbc], disabled per chip default
[   62.423088] [drm:drm_framebuffer_reference], FB ID: 22
[   62.423093] [drm:drm_framebuffer_unreference], FB ID: 21
[   62.423097] [drm:drm_framebuffer_unreference], FB ID: 22
[   62.423131] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.423137] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.423153] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.423158] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.423163] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETPROPERTY
[   62.423169] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.423172] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.423175] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.423177] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.423181] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETPROPERTY
[   62.423185] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.423188] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.423190] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.423193] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[   62.423197] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETPROPERTY
[   62.423202] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETCRTC
[   62.423204] [drm:drm_mode_setcrtc], [CRTC:5]
[   62.423206] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[   62.423210] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   62.423212] [drm:drm_framebuffer_reference], FB ID: 22
[   62.423214] [drm:drm_framebuffer_unreference], FB ID: 22
[   62.598664] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_VERSION
[   62.598675] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_VERSION
[   62.599189] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_GET_APERTURE
[   62.599198] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.599204] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.599207] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.599209] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.599212] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.599215] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.599217] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.599220] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.599228] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.615489] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.615503] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.615508] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GETPARAM
[   62.615518] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.615546] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_TILING
[   62.615563] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_GEM_CLOSE
[   62.618388] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.618408] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_TILING
[   62.618453] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_CREATE
[   62.618465] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_SET_TILING
[   62.618479] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, I915_GEM_MMAP_GTT
[   62.618793] [drm:drm_ioctl], pid=1901, dev=0xe200, auth=1, DRM_IOCTL_DROP_MASTER
[   62.618829] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[   62.618835] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   62.618841] [drm:ironlake_update_plane], Writing base 00072000 00000000 0 0 5504
[   62.638969] [drm:intel_update_fbc], disabled per chip default
[   62.638983] [drm:drm_framebuffer_reference], FB ID: 21
[   62.638986] [drm:drm_framebuffer_unreference], FB ID: 22
[   62.638990] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[   62.638999] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   62.639003] [drm:drm_framebuffer_reference], FB ID: 21
[   62.639004] [drm:drm_framebuffer_unreference], FB ID: 21
[   62.639011] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[   62.639019] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   62.639022] [drm:drm_framebuffer_reference], FB ID: 21
[   62.639024] [drm:drm_framebuffer_unreference], FB ID: 21
[   62.639047] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[   62.639053] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   62.639056] [drm:drm_framebuffer_reference], FB ID: 21
[   62.639057] [drm:drm_framebuffer_unreference], FB ID: 21
[   62.644959] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[   62.644964] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   62.644966] [drm:drm_framebuffer_reference], FB ID: 21
[   62.644968] [drm:drm_framebuffer_unreference], FB ID: 21
[   62.655099] [drm:drm_release], open_count = 1
[   62.655108] [drm:drm_release], pid = 1901, device = 0xe200, open_count = 1
[   62.655115] [drm:__drm_framebuffer_unreference], FB ID: 0
[   62.655120] [drm:drm_framebuffer_unreference], FB ID: 0
[   62.655367] [drm:drm_lastclose], 
[   62.655374] [drm:intel_crtc_cursor_set], cursor off
[   62.655378] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[   62.655387] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   62.655392] [drm:drm_framebuffer_reference], FB ID: 21
[   62.655395] [drm:drm_framebuffer_unreference], FB ID: 21
[   62.655399] [drm:intel_crtc_cursor_set], cursor off
[   62.655402] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[   62.655407] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[   62.655411] [drm:drm_framebuffer_reference], FB ID: 21
[   62.655415] [drm:drm_framebuffer_unreference], FB ID: 21
[   62.655419] [drm:drm_lastclose], driver lastclose completed
[   62.655422] [drm:drm_lastclose], lastclose completed
diff mbox

Patch

diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c
index 67ec54f..b064a5a 100644
--- a/drivers/gpu/drm/i915/i915_dma.c
+++ b/drivers/gpu/drm/i915/i915_dma.c
@@ -1496,6 +1496,7 @@  int i915_driver_load(struct drm_device *dev, unsigned long flags)
 	dev_priv->info = info;
 
 	spin_lock_init(&dev_priv->irq_lock);
+	spin_lock_init(&dev_priv->gt_lock);
 	spin_lock_init(&dev_priv->gpu_error.lock);
 	spin_lock_init(&dev_priv->rps.lock);
 	spin_lock_init(&dev_priv->backlight.lock);
diff --git a/drivers/gpu/drm/i915/intel_pm.c b/drivers/gpu/drm/i915/intel_pm.c
index 6a347f5..51a2a60 100644
--- a/drivers/gpu/drm/i915/intel_pm.c
+++ b/drivers/gpu/drm/i915/intel_pm.c
@@ -5497,8 +5497,6 @@  void intel_gt_init(struct drm_device *dev)
 {
 	struct drm_i915_private *dev_priv = dev->dev_private;
 
-	spin_lock_init(&dev_priv->gt_lock);
-
 	if (IS_VALLEYVIEW(dev)) {
 		dev_priv->gt.force_wake_get = vlv_force_wake_get;
 		dev_priv->gt.force_wake_put = vlv_force_wake_put;