[Intel-gfx] linux-next: Tree for Aug 21 [ screen corruption in graphical mode ]

Sedat Dilek sedat.dilek at gmail.com
Thu Aug 22 13:22:37 CEST 2013


On Thu, Aug 22, 2013 at 1:13 PM, Sedat Dilek <sedat.dilek at gmail.com> wrote:
> On Thu, Aug 22, 2013 at 9:24 AM, Daniel Vetter <daniel at ffwll.ch> wrote:
>> On Thu, Aug 22, 2013 at 08:32:47AM +0200, Sedat Dilek wrote:
>>> It's independent of the applied patch.
>>> My problem goes away with SNA but still exists with UXA.
>>>
>>> As said in my previous analysis... switching back to Ubuntu's graphics
>>> did not show the symptoms, too.
>>>
>>> It's interesting to see, it is a problem of the intel-ddx.
>>
>> Nope, it's just that uxa and sna have completely different buffer object
>> usage patterns. Not the first time only one of them hits an issue ...
>>
>>> Anyway, SNA seems here to be approx. 20% faster in gtkperf-0.40, so I
>>> will use it.
>>>
>>> I am open and willing to test any patches you will provide.
>>> Please, let me know.
>>
>> Found a new bugger, please test the below patch.
>>
>> Thanks, Daniel
>> ---
>> diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
>> index ef92c69..e0bff07 100644
>> --- a/drivers/gpu/drm/i915/i915_gem.c
>> +++ b/drivers/gpu/drm/i915/i915_gem.c
>> @@ -2616,6 +2616,9 @@ int i915_vma_unbind(struct i915_vma *vma)
>>         drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
>>         int ret;
>>
>> +       /* For now we only ever use 1 vma per object */
>> +       WARN_ON(!list_is_singular(&obj->vma_list));
>> +
>>         if (list_empty(&vma->vma_link))
>>                 return 0;
>>
>> @@ -2661,7 +2664,9 @@ int i915_vma_unbind(struct i915_vma *vma)
>>         drm_mm_remove_node(&vma->node);
>>
>>  destroy:
>> -       i915_gem_vma_destroy(vma);
>> +       /* Keep the vma as a placeholder in the execbuffer reservation lists */
>> +       if (!list_empty(&vma->exec_list))
>> +               i915_gem_vma_destroy(vma);
>>
>>         /* Since the unbound list is global, only move to that list if
>>          * no more VMAs exist.
>> @@ -4171,10 +4176,6 @@ void i915_gem_vma_destroy(struct i915_vma *vma)
>>         WARN_ON(vma->node.allocated);
>>         list_del(&vma->vma_link);
>>
>> -       /* Keep the vma as a placeholder in the execbuffer reservation lists */
>> -       if (!list_empty(&vma->exec_list))
>> -               return;
>> -
>>         kfree(vma);
>>  }
>>
>
> dmesg (a lot of traces) and kernel-config attached.
>
> UXA causes still screen corruption.
>
> $ egrep -i 'uxa|sna|accelmethod' /var/log/Xorg.0.log
> [   118.951] (**) intel(0): Option "AccelMethod" "uxa"
> [   118.960] (II) UXA(0): Driver registered support for the following
> operations:
>
> - Sedat -
>
> Is "drm/i915: More vma fixups around unbind/destroy" the nearly same fix?
>
> [1] https://patchwork.kernel.org/patch/2848146/

With above [1] I see no traces.

- Sedat -
-------------- next part --------------
[    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-rc6-next20130821-1-iniza-small (sedat.dilek at gmail.com@fambox) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #1 SMP Wed Aug 21 11:53:15 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 [0x0204e000, 0x0204efff] PGTABLE
[    0.000000] BRK [0x0204f000, 0x0204ffff] PGTABLE
[    0.000000] BRK [0x02050000, 0x02050fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x11fc00000-0x11fdfffff]
[    0.000000]  [mem 0x11fc00000-0x11fdfffff] page 2M
[    0.000000] BRK [0x02051000, 0x02051fff] 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 [0x02052000, 0x02052fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0xdafff000-0xdaffffff]
[    0.000000]  [mem 0xdafff000-0xdaffffff] page 4k
[    0.000000] RAMDISK: [mem 0x37968000-0x37cabfff]
[    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 s87488 r8192 d23104 u262144
[    0.000000] pcpu-alloc: s87488 r8192 d23104 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: 3938464K/4086000K available (7211K kernel code, 1055K rwdata, 3184K rodata, 1328K init, 1988K bss, 147536K 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.358 MHz processor
[    0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 3192.71 BogoMIPS (lpj=6385432)
[    0.000080] pid_max: default: 32768 minimum: 301
[    0.000245] Security Framework initialized
[    0.000306] AppArmor: AppArmor initialized
[    0.000343] Yama: becoming mindful.
[    0.000777] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.001897] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.002398] Mount-cache hash table entries: 256
[    0.002959] Initializing cgroup subsys memory
[    0.003056] Initializing cgroup subsys devices
[    0.003094] Initializing cgroup subsys freezer
[    0.003132] Initializing cgroup subsys blkio
[    0.003169] Initializing cgroup subsys perf_event
[    0.003210] Initializing cgroup subsys hugetlb
[    0.003298] Disabled fast string operations
[    0.003336] CPU: Physical Processor ID: 0
[    0.003371] CPU: Processor Core ID: 0
[    0.003411] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.003411] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.003476] mce: CPU supports 7 MCE banks
[    0.003527] CPU0: Thermal monitoring enabled (TM1)
[    0.003572] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
[    0.003572] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
[    0.003572] tlb_flushall_shift: 5
[    0.003746] Freeing SMP alternatives memory: 24K (ffffffff81e55000 - ffffffff81e5b000)
[    0.004788] ACPI: Core revision 20130725
[    0.015274] ACPI: All ACPI Tables successfully acquired
[    0.029272] ftrace: allocating 27261 entries in 107 pages
[    0.044778] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.084475] smpboot: CPU0: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz (fam: 06, model: 2a, stepping: 07)
[    0.085087] TSC deadline timer enabled
[    0.085098] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
[    0.085246] ... version:                3
[    0.085282] ... bit width:              48
[    0.085318] ... generic registers:      4
[    0.085354] ... value mask:             0000ffffffffffff
[    0.085392] ... max period:             0000ffffffffffff
[    0.085429] ... fixed-purpose events:   3
[    0.085465] ... event mask:             000000070000000f
[    0.098546] Disabled fast string operations
[    0.101729] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.113310] Disabled fast string operations
[    0.127023] Disabled fast string operations
[    0.087474] smpboot: Booting Node   0, Processors  #1 #2 #3
[    0.129158] Brought up 4 CPUs
[    0.129260] smpboot: Total of 4 processors activated (12770.86 BogoMIPS)
[    0.133371] devtmpfs: initialized
[    0.135372] EVM: security.selinux
[    0.135408] EVM: security.SMACK64
[    0.135442] EVM: security.capability
[    0.135560] PM: Registering ACPI NVS region [mem 0xdae7f000-0xdaf9efff] (1179648 bytes)
[    0.137082] regulator-dummy: no parameters
[    0.137274] NET: Registered protocol family 16
[    0.137610] cpuidle: using governor ladder
[    0.137647] cpuidle: using governor menu
[    0.137721] ACPI: bus type PCI registered
[    0.137869] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.137927] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.144874] PCI: Using configuration type 1 for base access
[    0.148212] bio: create slab <bio-0> at 0
[    0.148662] ACPI: Added _OSI(Module Device)
[    0.148699] ACPI: Added _OSI(Processor Device)
[    0.148736] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.148774] ACPI: Added _OSI(Processor Aggregator Device)
[    0.150460] ACPI: EC: Look up EC in DSDT
[    0.173012] ACPI: Executed 1 blocks of module-level executable AML code
[    0.178885] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.190672] ACPI: SSDT 00000000dae70718 00688 (v01  PmRef  Cpu0Cst 00003001 INTL 20061109)
[    0.191232] ACPI: Dynamic OEM Table Load:
[    0.191302] ACPI: SSDT           (null) 00688 (v01  PmRef  Cpu0Cst 00003001 INTL 20061109)
[    0.201450] ACPI: SSDT 00000000dae71a98 00303 (v01  PmRef    ApIst 00003000 INTL 20061109)
[    0.202087] ACPI: Dynamic OEM Table Load:
[    0.202157] ACPI: SSDT           (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20061109)
[    0.213345] ACPI: SSDT 00000000dae6fd98 00119 (v01  PmRef    ApCst 00003000 INTL 20061109)
[    0.213877] ACPI: Dynamic OEM Table Load:
[    0.213946] ACPI: SSDT           (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20061109)
[    0.227209] ACPI: Interpreter enabled
[    0.227259] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130725/hwxface-571)
[    0.227367] ACPI: (supports S0 S1 S3 S4 S5)
[    0.227404] ACPI: Using IOAPIC for interrupt routing
[    0.227498] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.227770] ACPI: No dock devices found.
[    0.251428] ACPI: Power Resource [FN00] (off)
[    0.251644] ACPI: Power Resource [FN01] (off)
[    0.251856] ACPI: Power Resource [FN02] (off)
[    0.252065] ACPI: Power Resource [FN03] (off)
[    0.252314] ACPI: Power Resource [FN04] (off)
[    0.253419] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.253787] \_SB_.PCI0:_OSC invalid UUID
[    0.253789] _OSC request data:1 8 0 
[    0.254689] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.254801] PCI host bridge to bus 0000:00
[    0.254839] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.254879] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.254920] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.254961] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.255002] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfeafffff]
[    0.255044] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
[    0.255100] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
[    0.255249] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
[    0.255262] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit]
[    0.255269] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.255274] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    0.255441] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.255467] pci 0000:00:16.0: reg 0x10: [mem 0xf0705000-0xf070500f 64bit]
[    0.255551] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.255698] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[    0.255722] pci 0000:00:1a.0: reg 0x10: [mem 0xf070a000-0xf070a3ff]
[    0.255821] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.255962] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.255980] pci 0000:00:1b.0: reg 0x10: [mem 0xf0700000-0xf0703fff 64bit]
[    0.256057] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.256136] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.256241] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.256330] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.256412] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.256523] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
[    0.256610] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.256691] pci 0000:00:1c.3: System wakeup disabled by ACPI
[    0.256796] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[    0.256883] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.257035] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[    0.257059] pci 0000:00:1d.0: reg 0x10: [mem 0xf0709000-0xf07093ff]
[    0.257163] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.257305] pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
[    0.257541] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
[    0.257564] pci 0000:00:1f.2: reg 0x10: [io  0x3088-0x308f]
[    0.257574] pci 0000:00:1f.2: reg 0x14: [io  0x3094-0x3097]
[    0.257583] pci 0000:00:1f.2: reg 0x18: [io  0x3080-0x3087]
[    0.257593] pci 0000:00:1f.2: reg 0x1c: [io  0x3090-0x3093]
[    0.257602] pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
[    0.257612] pci 0000:00:1f.2: reg 0x24: [mem 0xf0708000-0xf07087ff]
[    0.257663] pci 0000:00:1f.2: PME# supported from D3hot
[    0.257794] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.257812] pci 0000:00:1f.3: reg 0x10: [mem 0xf0704000-0xf07040ff 64bit]
[    0.257836] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.258217] pci 0000:01:00.0: [8086:0091] type 00 class 0x028000
[    0.258398] pci 0000:01:00.0: reg 0x10: [mem 0xf0600000-0xf0601fff 64bit]
[    0.259132] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    0.259301] pci 0000:01:00.0: System wakeup disabled by ACPI
[    0.265290] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.265334] pci 0000:00:1c.0:   bridge window [mem 0xf0600000-0xf06fffff]
[    0.265502] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[    0.265571] pci 0000:02:00.0: reg 0x10: [io  0x2000-0x20ff]
[    0.265689] pci 0000:02:00.0: reg 0x18: [mem 0xf0404000-0xf0404fff 64bit pref]
[    0.265764] pci 0000:02:00.0: reg 0x20: [mem 0xf0400000-0xf0403fff 64bit pref]
[    0.266091] pci 0000:02:00.0: supports D1 D2
[    0.266093] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.266219] pci 0000:02:00.0: System wakeup disabled by ACPI
[    0.273225] pci 0000:00:1c.3: PCI bridge to [bus 02]
[    0.273287] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
[    0.273296] pci 0000:00:1c.3:   bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
[    0.273420] pci 0000:03:00.0: [1b21:1042] type 00 class 0x0c0330
[    0.273458] pci 0000:03:00.0: reg 0x10: [mem 0xf0500000-0xf0507fff 64bit]
[    0.273656] pci 0000:03:00.0: PME# supported from D3hot D3cold
[    0.281195] pci 0000:00:1c.4: PCI bridge to [bus 03]
[    0.281272] pci 0000:00:1c.4:   bridge window [mem 0xf0500000-0xf05fffff]
[    0.281453] \_SB_.PCI0:_OSC invalid UUID
[    0.281454] _OSC request data:1 1f 0 
[    0.281459] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[    0.281515] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
[    0.282414] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.282759] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.283149] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.283492] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.283833] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
[    0.284203] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.284591] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.284933] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
[    0.285758] ACPI: Enabled 4 GPEs in block 00 to 3F
[    0.285835] ACPI: \_SB_.PCI0: notify handler is installed
[    0.285892] Found 1 acpi root devices
[    0.285958] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.286241] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.286299] vgaarb: loaded
[    0.286333] vgaarb: bridge control possible 0000:00:02.0
[    0.287037] SCSI subsystem initialized
[    0.287074] ACPI: bus type ATA registered
[    0.287224] libata version 3.00 loaded.
[    0.287278] ACPI: bus type USB registered
[    0.287364] usbcore: registered new interface driver usbfs
[    0.287422] usbcore: registered new interface driver hub
[    0.287513] usbcore: registered new device driver usb
[    0.287899] PCI: Using ACPI for IRQ routing
[    0.289609] PCI: pci_cache_line_size set to 64 bytes
[    0.289715] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[    0.289718] e820: reserve RAM buffer [mem 0xd9c9f000-0xdbffffff]
[    0.289720] e820: reserve RAM buffer [mem 0xdb000000-0xdbffffff]
[    0.289722] e820: reserve RAM buffer [mem 0x11fe00000-0x11fffffff]
[    0.289964] NetLabel: Initializing
[    0.289999] NetLabel:  domain hash size = 128
[    0.290035] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.290120] NetLabel:  unlabeled traffic allowed by default
[    0.290245] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.290435] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.292497] Switched to clocksource hpet
[    0.309808] AppArmor: AppArmor Filesystem Enabled
[    0.309898] pnp: PnP ACPI init
[    0.309948] ACPI: bus type PNP registered
[    0.310395] pnp 00:00: [dma 4]
[    0.310437] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.310478] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
[    0.310646] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.310698] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.310775] system 00:04: [io  0x0680-0x069f] has been reserved
[    0.310817] system 00:04: [io  0x1000-0x100f] has been reserved
[    0.310857] system 00:04: [io  0x5000-0x5003] has been reserved
[    0.310898] system 00:04: [io  0xffff] has been reserved
[    0.310940] system 00:04: [io  0x0400-0x0453] could not be reserved
[    0.310981] system 00:04: [io  0x0458-0x047f] has been reserved
[    0.311022] system 00:04: [io  0x0500-0x057f] has been reserved
[    0.311062] system 00:04: [io  0x0a00-0x0a0f] has been reserved
[    0.311103] system 00:04: [io  0x164e-0x164f] has been reserved
[    0.311144] system 00:04: [io  0x5000-0x500f] could not be reserved
[    0.311186] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.311232] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.311320] system 00:06: [io  0x0454-0x0457] has been reserved
[    0.311361] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.311420] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.311502] pnp 00:08: Plug and Play ACPI device, IDs ETD0b00 SYN0002 PNP0f13 (active)
[    0.311808] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.311851] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.311893] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.311935] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.311977] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.312019] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.312060] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.312102] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.312144] system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
[    0.312186] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.312229] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.312953] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.312991] pnp: PnP ACPI: found 11 devices
[    0.313027] ACPI: bus type PNP unregistered
[    0.321034] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.321078] pci 0000:00:1c.0:   bridge window [mem 0xf0600000-0xf06fffff]
[    0.321128] pci 0000:00:1c.3: PCI bridge to [bus 02]
[    0.321168] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
[    0.321215] pci 0000:00:1c.3:   bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
[    0.321276] pci 0000:00:1c.4: PCI bridge to [bus 03]
[    0.321318] pci 0000:00:1c.4:   bridge window [mem 0xf0500000-0xf05fffff]
[    0.321775] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.321778] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.321780] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.321782] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfeafffff]
[    0.321784] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
[    0.321786] pci_bus 0000:01: resource 1 [mem 0xf0600000-0xf06fffff]
[    0.321788] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.321790] pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf04fffff 64bit pref]
[    0.321792] pci_bus 0000:03: resource 1 [mem 0xf0500000-0xf05fffff]
[    0.321928] NET: Registered protocol family 2
[    0.322337] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
[    0.322583] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes)
[    0.322901] TCP: Hash tables configured (established 32768 bind 32768)
[    0.323202] TCP: reno registered
[    0.323256] UDP hash table entries: 2048 (order: 5, 196608 bytes)
[    0.323365] UDP-Lite hash table entries: 2048 (order: 5, 196608 bytes)
[    0.323654] NET: Registered protocol family 1
[    0.323710] pci 0000:00:02.0: Boot video device
[    0.324459] PCI: CLS 64 bytes, default 64
[    0.324689] Trying to unpack rootfs image as initramfs...
[    0.400687] Freeing initrd memory: 3344K (ffff880037968000 - ffff880037cac000)
[    0.400747] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.400789] software IO TLB [mem 0xd5c9f000-0xd9c9f000] (64MB) mapped at [ffff8800d5c9f000-ffff8800d9c9efff]
[    0.401201] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x28
[    0.401252] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x28
[    0.401303] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x28
[    0.401351] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x28
[    0.401473] microcode: Microcode Update Driver: v2.00 <tigran at aivazian.fsnet.co.uk>, Peter Oruba
[    0.401531] Scanning for low memory corruption every 60 seconds
[    0.402190] Initialise module verification
[    0.402292] audit: initializing netlink socket (disabled)
[    0.402852] type=2000 audit(1377177523.392:1): initialized
[    0.433805] bounce pool size: 64 pages
[    0.433866] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.434584] VFS: Disk quotas dquot_6.5.2
[    0.434663] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.435535] fuse init (API version 7.22)
[    0.435675] msgmni has been set to 7698
[    0.436377] Key type asymmetric registered
[    0.436434] Asymmetric key parser 'x509' registered
[    0.436519] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.436633] io scheduler noop registered
[    0.436671] io scheduler deadline registered (default)
[    0.436745] io scheduler cfq registered
[    0.437150] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.437229] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.437422] intel_idle: MWAIT substates: 0x21120
[    0.437423] intel_idle: v0.4 model 0x2A
[    0.437425] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.438182] ACPI: AC Adapter [ADP1] (on-line)
[    0.438520] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
[    0.438774] ACPI: Lid Switch [LID0]
[    0.438881] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    0.438941] ACPI: Power Button [PWRB]
[    0.439041] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.439097] ACPI: Power Button [PWRF]
[    0.439230] ACPI: Fan [FAN0] (off)
[    0.439315] ACPI: Fan [FAN1] (off)
[    0.439397] ACPI: Fan [FAN2] (off)
[    0.439484] ACPI: Fan [FAN3] (off)
[    0.439569] ACPI: Fan [FAN4] (off)
[    0.439685] ACPI: Requesting acpi_cpufreq
[    0.443083] thermal LNXTHERM:00: registered as thermal_zone0
[    0.443126] ACPI: Thermal Zone [TZ00] (66 C)
[    0.443574] thermal LNXTHERM:01: registered as thermal_zone1
[    0.443614] ACPI: Thermal Zone [TZ01] (30 C)
[    0.443700] GHES: HEST is not enabled!
[    0.444033] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.449142] ACPI: Battery Slot [BAT1] (battery present)
[    0.449160] Linux agpgart interface v0.103
[    0.451776] brd: module loaded
[    0.453086] loop: module loaded
[    0.453343] mei_me 0000:00:16.0: setting latency timer to 64
[    0.453390] mei_me 0000:00:16.0: irq 40 for MSI/MSI-X
[    0.456622] ahci 0000:00:1f.2: version 3.0
[    0.456774] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[    0.456970] ahci: SSS flag set, parallel bus scan disabled
[    0.472522] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1b impl SATA mode
[    0.472592] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pio slum part ems sxs apst 
[    0.472652] ahci 0000:00:1f.2: setting latency timer to 64
[    0.497340] scsi0 : ahci
[    0.497638] scsi1 : ahci
[    0.497826] scsi2 : ahci
[    0.498015] scsi3 : ahci
[    0.498199] scsi4 : ahci
[    0.498384] scsi5 : ahci
[    0.498495] ata1: SATA max UDMA/133 abar m2048 at 0xf0708000 port 0xf0708100 irq 41
[    0.498548] ata2: SATA max UDMA/133 abar m2048 at 0xf0708000 port 0xf0708180 irq 41
[    0.498601] ata3: DUMMY
[    0.498633] ata4: SATA max UDMA/133 abar m2048 at 0xf0708000 port 0xf0708280 irq 41
[    0.498685] ata5: SATA max UDMA/133 abar m2048 at 0xf0708000 port 0xf0708300 irq 41
[    0.498737] ata6: DUMMY
[    0.499785] libphy: Fixed MDIO Bus: probed
[    0.500098] tun: Universal TUN/TAP device driver, 1.6
[    0.500136] tun: (C) 1999-2004 Max Krasnyansky <maxk at qualcomm.com>
[    0.500274] PPP generic driver version 2.4.2
[    0.500452] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.500494] ehci_hcd: block sizes: qh 112 qtd 96 itd 192 sitd 96
[    0.500502] ehci-pci: EHCI PCI platform driver
[    0.500746] ehci-pci 0000:00:1a.0: setting latency timer to 64
[    0.500756] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    0.500800] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    0.500872] ehci-pci 0000:00:1a.0: debug port 2
[    0.500912] ehci-pci 0000:00:1a.0: reset hcs_params 0x200002 dbg=2 cc=0 pcc=0 ordered !ppc ports=2
[    0.500916] ehci-pci 0000:00:1a.0: reset hcc_params 36881 caching frame 1024 64 bit addr
[    0.500953] ehci-pci 0000:00:1a.0: reset command 0080002 (park)=0 ithresh=8 period=1024 Reset HALT
[    0.504844] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    0.504846] ehci-pci 0000:00:1a.0: supports USB remote wakeup
[    0.504894] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf070a000
[    0.504937] ehci-pci 0000:00:1a.0: init command 0010001 (park)=0 ithresh=1 period=1024 RUN
[    0.516369] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    0.516515] usb usb1: default language 0x0409
[    0.516536] usb usb1: udev 1, busnum 1, minor = 0
[    0.516538] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    0.516578] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.516630] usb usb1: Product: EHCI Host Controller
[    0.516667] usb usb1: Manufacturer: Linux 3.11.0-rc6-next20130821-1-iniza-small ehci_hcd
[    0.516721] usb usb1: SerialNumber: 0000:00:1a.0
[    0.516920] usb usb1: usb_probe_device
[    0.516923] usb usb1: configuration #1 chosen from 1 choice
[    0.516935] usb usb1: adding 1-0:1.0 (config #1, interface 0)
[    0.516965] hub 1-0:1.0: usb_probe_interface
[    0.516967] hub 1-0:1.0: usb_probe_interface - got id
[    0.516969] hub 1-0:1.0: USB hub found
[    0.517012] hub 1-0:1.0: 2 ports detected
[    0.517047] hub 1-0:1.0: standalone hub
[    0.517048] hub 1-0:1.0: no power switching (usb 1.0)
[    0.517050] hub 1-0:1.0: individual port over-current protection
[    0.517051] hub 1-0:1.0: power on to power good time: 20ms
[    0.517062] hub 1-0:1.0: local power source is good
[    0.517108] hub 1-0:1.0: trying to enable port power on non-switchable hub
[    0.517338] ehci-pci 0000:00:1d.0: setting latency timer to 64
[    0.517344] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    0.517386] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    0.517452] ehci-pci 0000:00:1d.0: debug port 2
[    0.517490] ehci-pci 0000:00:1d.0: reset hcs_params 0x200002 dbg=2 cc=0 pcc=0 ordered !ppc ports=2
[    0.517494] ehci-pci 0000:00:1d.0: reset hcc_params 36881 caching frame 1024 64 bit addr
[    0.517525] ehci-pci 0000:00:1d.0: reset command 0080002 (park)=0 ithresh=8 period=1024 Reset HALT
[    0.521402] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    0.521403] ehci-pci 0000:00:1d.0: supports USB remote wakeup
[    0.521443] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf0709000
[    0.521484] ehci-pci 0000:00:1d.0: init command 0010001 (park)=0 ithresh=1 period=1024 RUN
[    0.532343] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    0.532442] usb usb2: default language 0x0409
[    0.532462] usb usb2: udev 1, busnum 2, minor = 128
[    0.532464] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    0.532504] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.532556] usb usb2: Product: EHCI Host Controller
[    0.532592] usb usb2: Manufacturer: Linux 3.11.0-rc6-next20130821-1-iniza-small ehci_hcd
[    0.532646] usb usb2: SerialNumber: 0000:00:1d.0
[    0.532835] usb usb2: usb_probe_device
[    0.532837] usb usb2: configuration #1 chosen from 1 choice
[    0.532849] usb usb2: adding 2-0:1.0 (config #1, interface 0)
[    0.532876] hub 2-0:1.0: usb_probe_interface
[    0.532877] hub 2-0:1.0: usb_probe_interface - got id
[    0.532879] hub 2-0:1.0: USB hub found
[    0.532924] hub 2-0:1.0: 2 ports detected
[    0.532959] hub 2-0:1.0: standalone hub
[    0.532960] hub 2-0:1.0: no power switching (usb 1.0)
[    0.532961] hub 2-0:1.0: individual port over-current protection
[    0.532963] hub 2-0:1.0: power on to power good time: 20ms
[    0.532973] hub 2-0:1.0: local power source is good
[    0.533016] hub 2-0:1.0: trying to enable port power on non-switchable hub
[    0.533089] ehci-platform: EHCI generic platform driver
[    0.533140] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.533179] ohci_hcd: block sizes: ed 80 td 96
[    0.533184] ohci-pci: OHCI PCI platform driver
[    0.533235] ohci-platform: OHCI generic platform driver
[    0.533286] uhci_hcd: USB Universal Host Controller Interface driver
[    0.533530] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    0.533572] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 3
[    0.533651] xhci_hcd 0000:03:00.0: xHCI capability registers at ffffc90000650000:
[    0.533654] xhci_hcd 0000:03:00.0: CAPLENGTH AND HCIVERSION 0x960020:
[    0.533656] xhci_hcd 0000:03:00.0: CAPLENGTH: 0x20
[    0.533657] xhci_hcd 0000:03:00.0: HCIVERSION: 0x96
[    0.533661] xhci_hcd 0000:03:00.0: HCSPARAMS 1: 0x4000820
[    0.533662] xhci_hcd 0000:03:00.0:   Max device slots: 32
[    0.533664] xhci_hcd 0000:03:00.0:   Max interrupters: 8
[    0.533665] xhci_hcd 0000:03:00.0:   Max ports: 4
[    0.533668] xhci_hcd 0000:03:00.0: HCSPARAMS 2: 0x17f1
[    0.533670] xhci_hcd 0000:03:00.0:   Isoc scheduling threshold: 1
[    0.533671] xhci_hcd 0000:03:00.0:   Maximum allowed segments in event ring: 15
[    0.533675] xhci_hcd 0000:03:00.0: HCSPARAMS 3 0x0:
[    0.533676] xhci_hcd 0000:03:00.0:   Worst case U1 device exit latency: 0
[    0.533677] xhci_hcd 0000:03:00.0:   Worst case U2 device exit latency: 0
[    0.533681] xhci_hcd 0000:03:00.0: HCC PARAMS 0x200f180:
[    0.533682] xhci_hcd 0000:03:00.0:   HC generates 32 bit addresses
[    0.533684] xhci_hcd 0000:03:00.0:   FIXME: more HCCPARAMS debugging
[    0.533687] xhci_hcd 0000:03:00.0: RTSOFF 0x1000:
[    0.533689] xhci_hcd 0000:03:00.0: xHCI operational registers at ffffc90000650020:
[    0.533692] xhci_hcd 0000:03:00.0: USBCMD 0x0:
[    0.533694] xhci_hcd 0000:03:00.0:   HC is being stopped
[    0.533695] xhci_hcd 0000:03:00.0:   HC has finished hard reset
[    0.533696] xhci_hcd 0000:03:00.0:   Event Interrupts disabled
[    0.533698] xhci_hcd 0000:03:00.0:   Host System Error Interrupts disabled
[    0.533699] xhci_hcd 0000:03:00.0:   HC has finished light reset
[    0.533702] xhci_hcd 0000:03:00.0: USBSTS 0x9:
[    0.533703] xhci_hcd 0000:03:00.0:   Event ring is not empty
[    0.533705] xhci_hcd 0000:03:00.0:   No Host System Error
[    0.533706] xhci_hcd 0000:03:00.0:   HC is halted
[    0.533710] xhci_hcd 0000:03:00.0: ffffc90000650420 port status reg = 0x1203
[    0.533714] xhci_hcd 0000:03:00.0: ffffc90000650424 port power reg = 0x0
[    0.533717] xhci_hcd 0000:03:00.0: ffffc90000650428 port link reg = 0x0
[    0.533721] xhci_hcd 0000:03:00.0: ffffc9000065042c port reserved reg = 0x0
[    0.533725] xhci_hcd 0000:03:00.0: ffffc90000650430 port status reg = 0x2a0
[    0.533728] xhci_hcd 0000:03:00.0: ffffc90000650434 port power reg = 0x0
[    0.533732] xhci_hcd 0000:03:00.0: ffffc90000650438 port link reg = 0x0
[    0.533735] xhci_hcd 0000:03:00.0: ffffc9000065043c port reserved reg = 0x0
[    0.533739] xhci_hcd 0000:03:00.0: ffffc90000650440 port status reg = 0x2a0
[    0.533743] xhci_hcd 0000:03:00.0: ffffc90000650444 port power reg = 0x0
[    0.533746] xhci_hcd 0000:03:00.0: ffffc90000650448 port link reg = 0x0
[    0.533750] xhci_hcd 0000:03:00.0: ffffc9000065044c port reserved reg = 0x0
[    0.533754] xhci_hcd 0000:03:00.0: ffffc90000650450 port status reg = 0x2a0
[    0.533757] xhci_hcd 0000:03:00.0: ffffc90000650454 port power reg = 0x0
[    0.533761] xhci_hcd 0000:03:00.0: ffffc90000650458 port link reg = 0x0
[    0.533764] xhci_hcd 0000:03:00.0: ffffc9000065045c port reserved reg = 0x0
[    0.533766] xhci_hcd 0000:03:00.0: // Halt the HC
[    0.533773] xhci_hcd 0000:03:00.0: Resetting HCD
[    0.533777] xhci_hcd 0000:03:00.0: // Reset the HC
[    0.543316] xhci_hcd 0000:03:00.0: Wait for controller to be ready for doorbell rings
[    0.543320] xhci_hcd 0000:03:00.0: Reset complete
[    0.543321] xhci_hcd 0000:03:00.0: Calling HCD init
[    0.543323] xhci_hcd 0000:03:00.0: xhci_init
[    0.543325] xhci_hcd 0000:03:00.0: xHCI doesn't need link TRB QUIRK
[    0.543329] xhci_hcd 0000:03:00.0: Supported page size register = 0x1
[    0.543331] xhci_hcd 0000:03:00.0: Supported page size of 4K
[    0.543332] xhci_hcd 0000:03:00.0: HCD page size set to 4K
[    0.543336] xhci_hcd 0000:03:00.0: // xHC can handle at most 32 device slots.
[    0.543340] xhci_hcd 0000:03:00.0: // Setting Max device slots reg = 0x20.
[    0.543344] xhci_hcd 0000:03:00.0: // Device context base array address = 0x3797e000 (DMA), ffff88003797e000 (virt)
[    0.543353] xhci_hcd 0000:03:00.0: Allocated command ring at ffff8800379549c0
[    0.543355] xhci_hcd 0000:03:00.0: First segment DMA is 0x3797f000
[    0.543361] xhci_hcd 0000:03:00.0: // Setting command ring address to 0x20
[    0.543367] xhci_hcd 0000:03:00.0: // xHC command ring deq ptr low bits + flags = @00000000
[    0.543368] xhci_hcd 0000:03:00.0: // xHC command ring deq ptr high bits = @00000000
[    0.543379] xhci_hcd 0000:03:00.0: // Doorbell array is located at offset 0x1800 from cap regs base addr
[    0.543381] xhci_hcd 0000:03:00.0: // xHCI capability registers at ffffc90000650000:
[    0.543385] xhci_hcd 0000:03:00.0: // @ffffc90000650000 = 0x960020 (CAPLENGTH AND HCIVERSION)
[    0.543387] xhci_hcd 0000:03:00.0: //   CAPLENGTH: 0x20
[    0.543388] xhci_hcd 0000:03:00.0: // xHCI operational registers at ffffc90000650020:
[    0.543392] xhci_hcd 0000:03:00.0: // @ffffc90000650018 = 0x1000 RTSOFF
[    0.543394] xhci_hcd 0000:03:00.0: // xHCI runtime registers at ffffc90000651000:
[    0.543398] xhci_hcd 0000:03:00.0: // @ffffc90000650014 = 0x1800 DBOFF
[    0.543400] xhci_hcd 0000:03:00.0: // Doorbell array at ffffc90000651800:
[    0.543401] xhci_hcd 0000:03:00.0: xHCI runtime registers at ffffc90000651000:
[    0.543406] xhci_hcd 0000:03:00.0:   ffffc90000651000: Microframe index = 0x0
[    0.543423] xhci_hcd 0000:03:00.0: // Allocating event ring
[    0.543429] xhci_hcd 0000:03:00.0: TRB math tests passed.
[    0.543432] xhci_hcd 0000:03:00.0: // Allocated event ring segment table at 0x37981000
[    0.543434] xhci_hcd 0000:03:00.0: Set ERST to 0; private num segs = 1, virt addr = ffff880037981000, dma addr = 0x37981000
[    0.543438] xhci_hcd 0000:03:00.0: // Write ERST size = 1 to ir_set 0 (some bits preserved)
[    0.543440] xhci_hcd 0000:03:00.0: // Set ERST entries to point to event ring.
[    0.543441] xhci_hcd 0000:03:00.0: // Set ERST base address for ir_set 0 = 0x37981000
[    0.543452] xhci_hcd 0000:03:00.0: // Write event ring dequeue pointer, preserving EHB bit
[    0.543454] xhci_hcd 0000:03:00.0: Wrote ERST address to ir_set 0.
[    0.543458] xhci_hcd 0000:03:00.0: Allocating 0 scratchpad buffers
[    0.543484] xhci_hcd 0000:03:00.0: Ext Cap ffffc90000650810, port offset = 1, count = 2, revision = 0x3
[    0.543491] xhci_hcd 0000:03:00.0: Ext Cap ffffc90000650820, port offset = 3, count = 2, revision = 0x2
[    0.543493] xhci_hcd 0000:03:00.0: xHCI 0.96: support USB2 software lpm
[    0.543494] xhci_hcd 0000:03:00.0: Found 2 USB 2.0 ports and 2 USB 3.0 ports.
[    0.543497] xhci_hcd 0000:03:00.0: USB 2.0 port at index 2, addr = ffffc90000650440
[    0.543499] xhci_hcd 0000:03:00.0: USB 2.0 port at index 3, addr = ffffc90000650450
[    0.543501] xhci_hcd 0000:03:00.0: USB 3.0 port at index 0, addr = ffffc90000650420
[    0.543503] xhci_hcd 0000:03:00.0: USB 3.0 port at index 1, addr = ffffc90000650430
[    0.543507] xhci_hcd 0000:03:00.0: Finished xhci_init
[    0.543508] xhci_hcd 0000:03:00.0: Called HCD init
[    0.543513] xhci_hcd 0000:03:00.0: Got SBRN 48
[    0.543522] xhci_hcd 0000:03:00.0: MWI active
[    0.543523] xhci_hcd 0000:03:00.0: Finished xhci_pci_reinit
[    0.543525] xhci_hcd 0000:03:00.0: supports USB remote wakeup
[    0.543527] xhci_hcd 0000:03:00.0: xhci_run
[    0.543562] xhci_hcd 0000:03:00.0: irq 42 for MSI/MSI-X
[    0.543569] xhci_hcd 0000:03:00.0: irq 43 for MSI/MSI-X
[    0.543577] xhci_hcd 0000:03:00.0: irq 44 for MSI/MSI-X
[    0.543586] xhci_hcd 0000:03:00.0: irq 45 for MSI/MSI-X
[    0.543594] xhci_hcd 0000:03:00.0: irq 46 for MSI/MSI-X
[    0.543827] xhci_hcd 0000:03:00.0: Command ring memory map follows:
[    0.543830] xhci_hcd 0000:03:00.0: @000000003797f000 00000000 00000000 00000000 00000000
[    0.543832] xhci_hcd 0000:03:00.0: @000000003797f010 00000000 00000000 00000000 00000000
[    0.543834] xhci_hcd 0000:03:00.0: @000000003797f020 00000000 00000000 00000000 00000000
[    0.543836] xhci_hcd 0000:03:00.0: @000000003797f030 00000000 00000000 00000000 00000000
[    0.543838] xhci_hcd 0000:03:00.0: @000000003797f040 00000000 00000000 00000000 00000000
[    0.543840] xhci_hcd 0000:03:00.0: @000000003797f050 00000000 00000000 00000000 00000000
[    0.543842] xhci_hcd 0000:03:00.0: @000000003797f060 00000000 00000000 00000000 00000000
[    0.543844] xhci_hcd 0000:03:00.0: @000000003797f070 00000000 00000000 00000000 00000000
[    0.543845] xhci_hcd 0000:03:00.0: @000000003797f080 00000000 00000000 00000000 00000000
[    0.543847] xhci_hcd 0000:03:00.0: @000000003797f090 00000000 00000000 00000000 00000000
[    0.543849] xhci_hcd 0000:03:00.0: @000000003797f0a0 00000000 00000000 00000000 00000000
[    0.543851] xhci_hcd 0000:03:00.0: @000000003797f0b0 00000000 00000000 00000000 00000000
[    0.543853] xhci_hcd 0000:03:00.0: @000000003797f0c0 00000000 00000000 00000000 00000000
[    0.543855] xhci_hcd 0000:03:00.0: @000000003797f0d0 00000000 00000000 00000000 00000000
[    0.543857] xhci_hcd 0000:03:00.0: @000000003797f0e0 00000000 00000000 00000000 00000000
[    0.543859] xhci_hcd 0000:03:00.0: @000000003797f0f0 00000000 00000000 00000000 00000000
[    0.543861] xhci_hcd 0000:03:00.0: @000000003797f100 00000000 00000000 00000000 00000000
[    0.543863] xhci_hcd 0000:03:00.0: @000000003797f110 00000000 00000000 00000000 00000000
[    0.543865] xhci_hcd 0000:03:00.0: @000000003797f120 00000000 00000000 00000000 00000000
[    0.543867] xhci_hcd 0000:03:00.0: @000000003797f130 00000000 00000000 00000000 00000000
[    0.543869] xhci_hcd 0000:03:00.0: @000000003797f140 00000000 00000000 00000000 00000000
[    0.543871] xhci_hcd 0000:03:00.0: @000000003797f150 00000000 00000000 00000000 00000000
[    0.543873] xhci_hcd 0000:03:00.0: @000000003797f160 00000000 00000000 00000000 00000000
[    0.543875] xhci_hcd 0000:03:00.0: @000000003797f170 00000000 00000000 00000000 00000000
[    0.543877] xhci_hcd 0000:03:00.0: @000000003797f180 00000000 00000000 00000000 00000000
[    0.543879] xhci_hcd 0000:03:00.0: @000000003797f190 00000000 00000000 00000000 00000000
[    0.543881] xhci_hcd 0000:03:00.0: @000000003797f1a0 00000000 00000000 00000000 00000000
[    0.543882] xhci_hcd 0000:03:00.0: @000000003797f1b0 00000000 00000000 00000000 00000000
[    0.543884] xhci_hcd 0000:03:00.0: @000000003797f1c0 00000000 00000000 00000000 00000000
[    0.543886] xhci_hcd 0000:03:00.0: @000000003797f1d0 00000000 00000000 00000000 00000000
[    0.543888] xhci_hcd 0000:03:00.0: @000000003797f1e0 00000000 00000000 00000000 00000000
[    0.543890] xhci_hcd 0000:03:00.0: @000000003797f1f0 00000000 00000000 00000000 00000000
[    0.543892] xhci_hcd 0000:03:00.0: @000000003797f200 00000000 00000000 00000000 00000000
[    0.543894] xhci_hcd 0000:03:00.0: @000000003797f210 00000000 00000000 00000000 00000000
[    0.543896] xhci_hcd 0000:03:00.0: @000000003797f220 00000000 00000000 00000000 00000000
[    0.543898] xhci_hcd 0000:03:00.0: @000000003797f230 00000000 00000000 00000000 00000000
[    0.543900] xhci_hcd 0000:03:00.0: @000000003797f240 00000000 00000000 00000000 00000000
[    0.543902] xhci_hcd 0000:03:00.0: @000000003797f250 00000000 00000000 00000000 00000000
[    0.543904] xhci_hcd 0000:03:00.0: @000000003797f260 00000000 00000000 00000000 00000000
[    0.543906] xhci_hcd 0000:03:00.0: @000000003797f270 00000000 00000000 00000000 00000000
[    0.543908] xhci_hcd 0000:03:00.0: @000000003797f280 00000000 00000000 00000000 00000000
[    0.543910] xhci_hcd 0000:03:00.0: @000000003797f290 00000000 00000000 00000000 00000000
[    0.543912] xhci_hcd 0000:03:00.0: @000000003797f2a0 00000000 00000000 00000000 00000000
[    0.543914] xhci_hcd 0000:03:00.0: @000000003797f2b0 00000000 00000000 00000000 00000000
[    0.543916] xhci_hcd 0000:03:00.0: @000000003797f2c0 00000000 00000000 00000000 00000000
[    0.543917] xhci_hcd 0000:03:00.0: @000000003797f2d0 00000000 00000000 00000000 00000000
[    0.543919] xhci_hcd 0000:03:00.0: @000000003797f2e0 00000000 00000000 00000000 00000000
[    0.543921] xhci_hcd 0000:03:00.0: @000000003797f2f0 00000000 00000000 00000000 00000000
[    0.543923] xhci_hcd 0000:03:00.0: @000000003797f300 00000000 00000000 00000000 00000000
[    0.543925] xhci_hcd 0000:03:00.0: @000000003797f310 00000000 00000000 00000000 00000000
[    0.543927] xhci_hcd 0000:03:00.0: @000000003797f320 00000000 00000000 00000000 00000000
[    0.543929] xhci_hcd 0000:03:00.0: @000000003797f330 00000000 00000000 00000000 00000000
[    0.543931] xhci_hcd 0000:03:00.0: @000000003797f340 00000000 00000000 00000000 00000000
[    0.543933] xhci_hcd 0000:03:00.0: @000000003797f350 00000000 00000000 00000000 00000000
[    0.543935] xhci_hcd 0000:03:00.0: @000000003797f360 00000000 00000000 00000000 00000000
[    0.543937] xhci_hcd 0000:03:00.0: @000000003797f370 00000000 00000000 00000000 00000000
[    0.543939] xhci_hcd 0000:03:00.0: @000000003797f380 00000000 00000000 00000000 00000000
[    0.543941] xhci_hcd 0000:03:00.0: @000000003797f390 00000000 00000000 00000000 00000000
[    0.543943] xhci_hcd 0000:03:00.0: @000000003797f3a0 00000000 00000000 00000000 00000000
[    0.543945] xhci_hcd 0000:03:00.0: @000000003797f3b0 00000000 00000000 00000000 00000000
[    0.543946] xhci_hcd 0000:03:00.0: @000000003797f3c0 00000000 00000000 00000000 00000000
[    0.543948] xhci_hcd 0000:03:00.0: @000000003797f3d0 00000000 00000000 00000000 00000000
[    0.543950] xhci_hcd 0000:03:00.0: @000000003797f3e0 00000000 00000000 00000000 00000000
[    0.543952] xhci_hcd 0000:03:00.0: @000000003797f3f0 3797f000 00000000 00000000 00001802
[    0.543954] xhci_hcd 0000:03:00.0:   Ring has not been updated
[    0.543956] xhci_hcd 0000:03:00.0: Ring deq = ffff88003797f000 (virt), 0x3797f000 (dma)
[    0.543958] xhci_hcd 0000:03:00.0: Ring deq updated 0 times
[    0.543960] xhci_hcd 0000:03:00.0: Ring enq = ffff88003797f000 (virt), 0x3797f000 (dma)
[    0.543961] xhci_hcd 0000:03:00.0: Ring enq updated 0 times
[    0.543968] xhci_hcd 0000:03:00.0: // xHC command ring deq ptr low bits + flags = @00000000
[    0.543969] xhci_hcd 0000:03:00.0: // xHC command ring deq ptr high bits = @00000000
[    0.543971] xhci_hcd 0000:03:00.0: ERST memory map follows:
[    0.543973] xhci_hcd 0000:03:00.0: @0000000037981000 3797f400 00000000 00000040 00000000
[    0.543975] xhci_hcd 0000:03:00.0: Event ring:
[    0.543977] xhci_hcd 0000:03:00.0: @000000003797f400 00000000 00000000 00000000 00000000
[    0.543978] xhci_hcd 0000:03:00.0: @000000003797f410 00000000 00000000 00000000 00000000
[    0.543980] xhci_hcd 0000:03:00.0: @000000003797f420 00000000 00000000 00000000 00000000
[    0.543982] xhci_hcd 0000:03:00.0: @000000003797f430 00000000 00000000 00000000 00000000
[    0.543984] xhci_hcd 0000:03:00.0: @000000003797f440 00000000 00000000 00000000 00000000
[    0.543986] xhci_hcd 0000:03:00.0: @000000003797f450 00000000 00000000 00000000 00000000
[    0.543988] xhci_hcd 0000:03:00.0: @000000003797f460 00000000 00000000 00000000 00000000
[    0.543990] xhci_hcd 0000:03:00.0: @000000003797f470 00000000 00000000 00000000 00000000
[    0.543992] xhci_hcd 0000:03:00.0: @000000003797f480 00000000 00000000 00000000 00000000
[    0.543994] xhci_hcd 0000:03:00.0: @000000003797f490 00000000 00000000 00000000 00000000
[    0.543996] xhci_hcd 0000:03:00.0: @000000003797f4a0 00000000 00000000 00000000 00000000
[    0.543998] xhci_hcd 0000:03:00.0: @000000003797f4b0 00000000 00000000 00000000 00000000
[    0.544000] xhci_hcd 0000:03:00.0: @000000003797f4c0 00000000 00000000 00000000 00000000
[    0.544002] xhci_hcd 0000:03:00.0: @000000003797f4d0 00000000 00000000 00000000 00000000
[    0.544004] xhci_hcd 0000:03:00.0: @000000003797f4e0 00000000 00000000 00000000 00000000
[    0.544005] xhci_hcd 0000:03:00.0: @000000003797f4f0 00000000 00000000 00000000 00000000
[    0.544007] xhci_hcd 0000:03:00.0: @000000003797f500 00000000 00000000 00000000 00000000
[    0.544009] xhci_hcd 0000:03:00.0: @000000003797f510 00000000 00000000 00000000 00000000
[    0.544011] xhci_hcd 0000:03:00.0: @000000003797f520 00000000 00000000 00000000 00000000
[    0.544013] xhci_hcd 0000:03:00.0: @000000003797f530 00000000 00000000 00000000 00000000
[    0.544015] xhci_hcd 0000:03:00.0: @000000003797f540 00000000 00000000 00000000 00000000
[    0.544017] xhci_hcd 0000:03:00.0: @000000003797f550 00000000 00000000 00000000 00000000
[    0.544019] xhci_hcd 0000:03:00.0: @000000003797f560 00000000 00000000 00000000 00000000
[    0.544021] xhci_hcd 0000:03:00.0: @000000003797f570 00000000 00000000 00000000 00000000
[    0.544023] xhci_hcd 0000:03:00.0: @000000003797f580 00000000 00000000 00000000 00000000
[    0.544025] xhci_hcd 0000:03:00.0: @000000003797f590 00000000 00000000 00000000 00000000
[    0.544027] xhci_hcd 0000:03:00.0: @000000003797f5a0 00000000 00000000 00000000 00000000
[    0.544029] xhci_hcd 0000:03:00.0: @000000003797f5b0 00000000 00000000 00000000 00000000
[    0.544031] xhci_hcd 0000:03:00.0: @000000003797f5c0 00000000 00000000 00000000 00000000
[    0.544033] xhci_hcd 0000:03:00.0: @000000003797f5d0 00000000 00000000 00000000 00000000
[    0.544035] xhci_hcd 0000:03:00.0: @000000003797f5e0 00000000 00000000 00000000 00000000
[    0.544037] xhci_hcd 0000:03:00.0: @000000003797f5f0 00000000 00000000 00000000 00000000
[    0.544038] xhci_hcd 0000:03:00.0: @000000003797f600 00000000 00000000 00000000 00000000
[    0.544040] xhci_hcd 0000:03:00.0: @000000003797f610 00000000 00000000 00000000 00000000
[    0.544042] xhci_hcd 0000:03:00.0: @000000003797f620 00000000 00000000 00000000 00000000
[    0.544044] xhci_hcd 0000:03:00.0: @000000003797f630 00000000 00000000 00000000 00000000
[    0.544046] xhci_hcd 0000:03:00.0: @000000003797f640 00000000 00000000 00000000 00000000
[    0.544048] xhci_hcd 0000:03:00.0: @000000003797f650 00000000 00000000 00000000 00000000
[    0.544050] xhci_hcd 0000:03:00.0: @000000003797f660 00000000 00000000 00000000 00000000
[    0.544052] xhci_hcd 0000:03:00.0: @000000003797f670 00000000 00000000 00000000 00000000
[    0.544054] xhci_hcd 0000:03:00.0: @000000003797f680 00000000 00000000 00000000 00000000
[    0.544056] xhci_hcd 0000:03:00.0: @000000003797f690 00000000 00000000 00000000 00000000
[    0.544058] xhci_hcd 0000:03:00.0: @000000003797f6a0 00000000 00000000 00000000 00000000
[    0.544060] xhci_hcd 0000:03:00.0: @000000003797f6b0 00000000 00000000 00000000 00000000
[    0.544062] xhci_hcd 0000:03:00.0: @000000003797f6c0 00000000 00000000 00000000 00000000
[    0.544063] xhci_hcd 0000:03:00.0: @000000003797f6d0 00000000 00000000 00000000 00000000
[    0.544065] xhci_hcd 0000:03:00.0: @000000003797f6e0 00000000 00000000 00000000 00000000
[    0.544067] xhci_hcd 0000:03:00.0: @000000003797f6f0 00000000 00000000 00000000 00000000
[    0.544069] xhci_hcd 0000:03:00.0: @000000003797f700 00000000 00000000 00000000 00000000
[    0.544071] xhci_hcd 0000:03:00.0: @000000003797f710 00000000 00000000 00000000 00000000
[    0.544073] xhci_hcd 0000:03:00.0: @000000003797f720 00000000 00000000 00000000 00000000
[    0.544075] xhci_hcd 0000:03:00.0: @000000003797f730 00000000 00000000 00000000 00000000
[    0.544077] xhci_hcd 0000:03:00.0: @000000003797f740 00000000 00000000 00000000 00000000
[    0.544079] xhci_hcd 0000:03:00.0: @000000003797f750 00000000 00000000 00000000 00000000
[    0.544081] xhci_hcd 0000:03:00.0: @000000003797f760 00000000 00000000 00000000 00000000
[    0.544083] xhci_hcd 0000:03:00.0: @000000003797f770 00000000 00000000 00000000 00000000
[    0.544085] xhci_hcd 0000:03:00.0: @000000003797f780 00000000 00000000 00000000 00000000
[    0.544087] xhci_hcd 0000:03:00.0: @000000003797f790 00000000 00000000 00000000 00000000
[    0.544089] xhci_hcd 0000:03:00.0: @000000003797f7a0 00000000 00000000 00000000 00000000
[    0.544091] xhci_hcd 0000:03:00.0: @000000003797f7b0 00000000 00000000 00000000 00000000
[    0.544092] xhci_hcd 0000:03:00.0: @000000003797f7c0 00000000 00000000 00000000 00000000
[    0.544094] xhci_hcd 0000:03:00.0: @000000003797f7d0 00000000 00000000 00000000 00000000
[    0.544096] xhci_hcd 0000:03:00.0: @000000003797f7e0 00000000 00000000 00000000 00000000
[    0.544098] xhci_hcd 0000:03:00.0: @000000003797f7f0 00000000 00000000 00000000 00000000
[    0.544100] xhci_hcd 0000:03:00.0:   Ring has not been updated
[    0.544102] xhci_hcd 0000:03:00.0: Ring deq = ffff88003797f400 (virt), 0x3797f400 (dma)
[    0.544103] xhci_hcd 0000:03:00.0: Ring deq updated 0 times
[    0.544105] xhci_hcd 0000:03:00.0: Ring enq = ffff88003797f400 (virt), 0x3797f400 (dma)
[    0.544107] xhci_hcd 0000:03:00.0: Ring enq updated 0 times
[    0.544113] xhci_hcd 0000:03:00.0: ERST deq = 64'h3797f400
[    0.544114] xhci_hcd 0000:03:00.0: // Set the interrupt modulation register
[    0.544120] xhci_hcd 0000:03:00.0: // Enable interrupts, cmd = 0x4.
[    0.544124] xhci_hcd 0000:03:00.0: // Enabling event ring interrupter ffffc90000651020 by writing 0x2 to irq_pending
[    0.544129] xhci_hcd 0000:03:00.0:   ffffc90000651020: ir_set[0]
[    0.544130] xhci_hcd 0000:03:00.0:   ffffc90000651020: ir_set.pending = 0x2
[    0.544142] xhci_hcd 0000:03:00.0:   ffffc90000651024: ir_set.control = 0xa0
[    0.544146] xhci_hcd 0000:03:00.0:   ffffc90000651028: ir_set.erst_size = 0x1
[    0.544154] xhci_hcd 0000:03:00.0:   ffffc90000651030: ir_set.erst_base = @37981000
[    0.544160] xhci_hcd 0000:03:00.0:   ffffc90000651038: ir_set.erst_dequeue = @3797f400
[    0.544161] xhci_hcd 0000:03:00.0: Finished xhci_run for USB2 roothub
[    0.544189] usb usb3: default language 0x0409
[    0.544208] usb usb3: udev 1, busnum 3, minor = 256
[    0.544210] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    0.544250] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.544310] usb usb3: Product: xHCI Host Controller
[    0.544364] usb usb3: Manufacturer: Linux 3.11.0-rc6-next20130821-1-iniza-small xhci_hcd
[    0.544425] usb usb3: SerialNumber: 0000:03:00.0
[    0.544611] usb usb3: usb_probe_device
[    0.544613] usb usb3: configuration #1 chosen from 1 choice
[    0.544617] xHCI xhci_add_endpoint called for root hub
[    0.544618] xHCI xhci_check_bandwidth called for root hub
[    0.544629] usb usb3: adding 3-0:1.0 (config #1, interface 0)
[    0.544657] hub 3-0:1.0: usb_probe_interface
[    0.544659] hub 3-0:1.0: usb_probe_interface - got id
[    0.544661] hub 3-0:1.0: USB hub found
[    0.544709] hub 3-0:1.0: 2 ports detected
[    0.544745] hub 3-0:1.0: standalone hub
[    0.544746] hub 3-0:1.0: no power switching (usb 1.0)
[    0.544747] hub 3-0:1.0: individual port over-current protection
[    0.544748] hub 3-0:1.0: Single TT
[    0.544750] hub 3-0:1.0: TT requires at most 8 FS bit times (666 ns)
[    0.544751] hub 3-0:1.0: power on to power good time: 20ms
[    0.544761] hub 3-0:1.0: local power source is good
[    0.544793] hub 3-0:1.0: trying to enable port power on non-switchable hub
[    0.544801] xhci_hcd 0000:03:00.0: set port power, actual port 0 status  = 0x2a0
[    0.544814] xhci_hcd 0000:03:00.0: set port power, actual port 1 status  = 0x2a0
[    0.544865] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    0.544905] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 4
[    0.544963] xhci_hcd 0000:03:00.0: supports USB remote wakeup
[    0.544967] xhci_hcd 0000:03:00.0: // Turn on HC, cmd = 0x5.
[    0.544977] xhci_hcd 0000:03:00.0: Finished xhci_run for USB3 roothub
[    0.545013] usb usb4: skipped 1 descriptor after endpoint
[    0.545021] usb usb4: default language 0x0409
[    0.545040] usb usb4: udev 1, busnum 4, minor = 384
[    0.545042] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    0.545082] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.545133] usb usb4: Product: xHCI Host Controller
[    0.545169] usb usb4: Manufacturer: Linux 3.11.0-rc6-next20130821-1-iniza-small xhci_hcd
[    0.545223] usb usb4: SerialNumber: 0000:03:00.0
[    0.545403] usb usb4: usb_probe_device
[    0.545405] usb usb4: configuration #1 chosen from 1 choice
[    0.545408] xHCI xhci_add_endpoint called for root hub
[    0.545409] xHCI xhci_check_bandwidth called for root hub
[    0.545418] usb usb4: adding 4-0:1.0 (config #1, interface 0)
[    0.545445] hub 4-0:1.0: usb_probe_interface
[    0.545446] hub 4-0:1.0: usb_probe_interface - got id
[    0.545448] hub 4-0:1.0: USB hub found
[    0.545497] hub 4-0:1.0: 2 ports detected
[    0.545532] hub 4-0:1.0: standalone hub
[    0.545533] hub 4-0:1.0: no power switching (usb 1.0)
[    0.545534] hub 4-0:1.0: individual port over-current protection
[    0.545536] hub 4-0:1.0: TT requires at most 8 FS bit times (666 ns)
[    0.545537] hub 4-0:1.0: power on to power good time: 20ms
[    0.545547] hub 4-0:1.0: local power source is good
[    0.545575] hub 4-0:1.0: trying to enable port power on non-switchable hub
[    0.545582] xhci_hcd 0000:03:00.0: set port power, actual port 0 status  = 0x2a0
[    0.545595] xhci_hcd 0000:03:00.0: set port power, actual port 1 status  = 0x2a0
[    0.556543] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:EPAD] at 0x60,0x64 irq 1,12
[    0.562936] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.562978] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.563395] mousedev: PS/2 mouse device common for all mice
[    0.564058] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    0.564136] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    0.564326] device-mapper: uevent: version 1.0.3
[    0.564518] device-mapper: ioctl: 4.26.0-ioctl (2013-08-15) initialised: dm-devel at redhat.com
[    0.564586] Intel P-state driver initializing.
[    0.564634] Intel pstate controlling: cpu 0
[    0.564708] Intel pstate controlling: cpu 1
[    0.564777] Intel pstate controlling: cpu 2
[    0.564842] Intel pstate controlling: cpu 3
[    0.564955] ledtrig-cpu: registered to indicate activity on CPUs
[    0.565344] ashmem: initialized
[    0.565581] TCP: cubic registered
[    0.565790] NET: Registered protocol family 10
[    0.566299] NET: Registered protocol family 17
[    0.566352] Key type dns_resolver registered
[    0.566820] PM: Hibernation image not present or could not be loaded.
[    0.566826] Loading module verification certificates
[    0.567934] MODSIGN: Loaded cert 'Magrathea: Glacier signing key: 2cc6cde21be0bdd4ba50309970aed567d305e6c9'
[    0.568019] registered taskstats version 1
[    0.570977] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    0.571976] Key type trusted registered
[    0.578592] Key type encrypted registered
[    0.585155] AppArmor: AppArmor sha1 policy hashing enabled
[    0.585797] rtc_cmos 00:05: setting system clock to 2013-08-22 13:18:44 UTC (1377177524)
[    0.586287] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.586327] EDD information not available.
[    0.616511] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001803 0  ACK POWER sig=j CSC CONNECT
[    0.616550] hub 1-0:1.0: port 1: status 0501 change 0001
[    0.632394] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001803 0  ACK POWER sig=j CSC CONNECT
[    0.632439] hub 2-0:1.0: port 1: status 0501 change 0001
[    0.644394] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[    0.644403] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[    0.644435] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[    0.644439] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[    0.644467] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2e0
[    0.644470] xhci_hcd 0000:03:00.0: Get port status returned 0x2e0
[    0.644488] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[    0.644491] xhci_hcd 0000:03:00.0: Get port status returned 0x2a0
[    0.644514] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[    0.644536] hub 4-0:1.0: state 7 ports 2 chg 0000 evt 0000
[    0.644564] hub 3-0:1.0: hub_suspend
[    0.644593] usb usb3: bus auto-suspend, wakeup 1
[    0.644612] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[    0.644635] xhci_hcd 0000:03:00.0: set port remote wake mask, actual port 0 status  = 0xe0002e0
[    0.644664] xhci_hcd 0000:03:00.0: set port remote wake mask, actual port 1 status  = 0xe0002a0
[    0.644679] hub 4-0:1.0: hub_suspend
[    0.644691] usb usb4: bus auto-suspend, wakeup 1
[    0.644704] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[    0.653074] xhci_hcd 0000:03:00.0: Port Status Change Event for port 1
[    0.653084] xhci_hcd 0000:03:00.0: resume root hub
[    0.653100] xhci_hcd 0000:03:00.0: handle_port_status: starting port polling.
[    0.653140] usb usb4: usb wakeup-resume
[    0.653146] usb usb4: usb auto-resume
[    0.664356] hub 4-0:1.0: hub_resume
[    0.664380] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x21203
[    0.664385] xhci_hcd 0000:03:00.0: Get port status returned 0x10203
[    0.664412] hub 4-0:1.0: port 1: status 0203 change 0001
[    0.664425] xhci_hcd 0000:03:00.0: clear port connect change, actual port 0 status  = 0x1203
[    0.664443] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[    0.664447] xhci_hcd 0000:03:00.0: Get port status returned 0x2a0
[    0.716384] hub 1-0:1.0: state 7 ports 2 chg 0002 evt 0000
[    0.716493] hub 1-0:1.0: port 1, status 0501, change 0000, 480 Mb/s
[    0.772239] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[    0.772530] ehci-pci 0000:00:1a.0: port 1 reset complete, port enabled
[    0.772543] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    0.816255] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    0.817521] ata1.00: ATA-8: Hitachi HTS545050A7E380, GG2OA6C0, max UDMA/133
[    0.817597] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    0.819046] ata1.00: configured for UDMA/133
[    0.819557] scsi 0:0:0:0: Direct-Access     ATA      Hitachi HTS54505 GG2O PQ: 0 ANSI: 5
[    0.820226] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    0.820250] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    0.820380] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    0.820918] sd 0:0:0:0: [sda] Write Protect is off
[    0.820989] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    0.821205] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    0.828228] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    0.839201]  sda: sda1 sda2 sda3
[    0.840465] sd 0:0:0:0: [sda] Attached SCSI disk
[    0.884450] ehci-pci 0000:00:1a.0: port 1 reset complete, port enabled
[    0.884464] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    0.960896] usb 1-1: udev 2, busnum 1, minor = 1
[    0.960907] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    0.961521] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    0.961891] usb 1-1: usb_probe_device
[    0.961899] usb 1-1: configuration #1 chosen from 1 choice
[    0.962137] usb 1-1: adding 1-1:1.0 (config #1, interface 0)
[    0.962219] hub 1-1:1.0: usb_probe_interface
[    0.962225] hub 1-1:1.0: usb_probe_interface - got id
[    0.962231] hub 1-1:1.0: USB hub found
[    0.962490] hub 1-1:1.0: 6 ports detected
[    0.962555] hub 1-1:1.0: standalone hub
[    0.962559] hub 1-1:1.0: individual port power switching
[    0.962563] hub 1-1:1.0: individual port over-current protection
[    0.962566] hub 1-1:1.0: Single TT
[    0.962569] hub 1-1:1.0: TT requires at most 8 FS bit times (666 ns)
[    0.962572] hub 1-1:1.0: power on to power good time: 100ms
[    0.962809] hub 1-1:1.0: local power source is good
[    0.963265] hub 1-1:1.0: enabling power on all ports
[    0.964450] hub 2-0:1.0: state 7 ports 2 chg 0002 evt 0000
[    0.964535] hub 2-0:1.0: port 1, status 0501, change 0000, 480 Mb/s
[    1.020351] ehci-pci 0000:00:1d.0: port 1 reset complete, port enabled
[    1.020364] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    1.064549] hub 1-1:1.0: port 2: status 0101 change 0001
[    1.065295] hub 1-1:1.0: port 4: status 0101 change 0001
[    1.076089] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    1.132274] ehci-pci 0000:00:1d.0: port 1 reset complete, port enabled
[    1.132289] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    1.140023] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.140690] ata2.00: ATA-8: SanDisk iSSD P4 16GB, SSD 9.14, max UDMA/133
[    1.140769] ata2.00: 31277232 sectors, multi 1: LBA48 
[    1.141515] ata2.00: configured for UDMA/133
[    1.142049] scsi 1:0:0:0: Direct-Access     ATA      SanDisk iSSD P4  SSD  PQ: 0 ANSI: 5
[    1.142590] sd 1:0:0:0: [sdb] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
[    1.142640] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    1.142960] sd 1:0:0:0: [sdb] Write Protect is off
[    1.143030] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.143088] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.144487]  sdb: sdb1 sdb2
[    1.145662] sd 1:0:0:0: [sdb] Attached SCSI disk
[    1.164023] usb 1-1: link qh256-0001/ffff8800379d96c0 start 1 [1/0 us]
[    1.208720] usb 2-1: udev 2, busnum 2, minor = 129
[    1.208731] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    1.208801] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.209189] usb 2-1: usb_probe_device
[    1.209197] usb 2-1: configuration #1 chosen from 1 choice
[    1.209460] usb 2-1: adding 2-1:1.0 (config #1, interface 0)
[    1.209537] hub 2-1:1.0: usb_probe_interface
[    1.209541] hub 2-1:1.0: usb_probe_interface - got id
[    1.209548] hub 2-1:1.0: USB hub found
[    1.209825] hub 2-1:1.0: 6 ports detected
[    1.209891] hub 2-1:1.0: standalone hub
[    1.209895] hub 2-1:1.0: individual port power switching
[    1.209898] hub 2-1:1.0: individual port over-current protection
[    1.209901] hub 2-1:1.0: Single TT
[    1.209905] hub 2-1:1.0: TT requires at most 8 FS bit times (666 ns)
[    1.209908] hub 2-1:1.0: power on to power good time: 100ms
[    1.210187] hub 2-1:1.0: local power source is good
[    1.210775] hub 2-1:1.0: enabling power on all ports
[    1.211667] hub 4-0:1.0: state 7 ports 2 chg 0002 evt 0000
[    1.211685] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x1203
[    1.211689] xhci_hcd 0000:03:00.0: Get port status returned 0x203
[    1.211709] hub 4-0:1.0: port 1, status 0203, change 0000, 5.0 Gb/s
[    1.211722] xhci_hcd 0000:03:00.0: // Ding dong!
[    1.211924] xhci_hcd 0000:03:00.0: Slot 1 output ctx = 0x37a31000 (dma)
[    1.211938] xhci_hcd 0000:03:00.0: Slot 1 input ctx = 0x37a32000 (dma)
[    1.211959] xhci_hcd 0000:03:00.0: Set slot id 1 dcbaa entry ffff88003797e008 to 0x37a31000
[    1.211974] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x1203
[    1.211977] xhci_hcd 0000:03:00.0: Get port status returned 0x203
[    1.211999] xhci_hcd 0000:03:00.0: set port reset, actual port 0 status  = 0x1211
[    1.212009] xhci_hcd 0000:03:00.0: Port Status Change Event for port 1
[    1.212016] xhci_hcd 0000:03:00.0: handle_port_status: starting port polling.
[    1.267944] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x201203
[    1.267953] xhci_hcd 0000:03:00.0: Get port status returned 0x100203
[    1.309138] hub 2-1:1.0: port 5: status 0101 change 0001
[    1.323881] xhci_hcd 0000:03:00.0: clear port reset change, actual port 0 status  = 0x1203
[    1.323916] xhci_hcd 0000:03:00.0: clear port warm(BH) reset change, actual port 0 status  = 0x1203
[    1.323936] xhci_hcd 0000:03:00.0: clear port link state change, actual port 0 status  = 0x1203
[    1.323954] xhci_hcd 0000:03:00.0: clear port connect change, actual port 0 status  = 0x1203
[    1.323974] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x1203
[    1.323978] xhci_hcd 0000:03:00.0: Get port status returned 0x203
[    1.323993] xhci_hcd 0000:03:00.0: Set root hub portnum to 1
[    1.323996] xhci_hcd 0000:03:00.0: Set fake root hub portnum to 1
[    1.324000] xhci_hcd 0000:03:00.0: udev->tt =           (null)
[    1.324004] xhci_hcd 0000:03:00.0: udev->ttport = 0x0
[    1.324008] xhci_hcd 0000:03:00.0: Slot ID 1 Input Context:
[    1.324014] xhci_hcd 0000:03:00.0: @ffff880037a32000 (virt) @37a32000 (dma) 0x000000 - drop flags
[    1.324018] xhci_hcd 0000:03:00.0: @ffff880037a32004 (virt) @37a32004 (dma) 0x000003 - add flags
[    1.324023] xhci_hcd 0000:03:00.0: @ffff880037a32008 (virt) @37a32008 (dma) 0x000000 - rsvd2[0]
[    1.324027] xhci_hcd 0000:03:00.0: @ffff880037a3200c (virt) @37a3200c (dma) 0x000000 - rsvd2[1]
[    1.324031] xhci_hcd 0000:03:00.0: @ffff880037a32010 (virt) @37a32010 (dma) 0x000000 - rsvd2[2]
[    1.324035] xhci_hcd 0000:03:00.0: @ffff880037a32014 (virt) @37a32014 (dma) 0x000000 - rsvd2[3]
[    1.324039] xhci_hcd 0000:03:00.0: @ffff880037a32018 (virt) @37a32018 (dma) 0x000000 - rsvd2[4]
[    1.324043] xhci_hcd 0000:03:00.0: @ffff880037a3201c (virt) @37a3201c (dma) 0x000000 - rsvd2[5]
[    1.324047] xhci_hcd 0000:03:00.0: Slot Context:
[    1.324051] xhci_hcd 0000:03:00.0: @ffff880037a32020 (virt) @37a32020 (dma) 0x8400000 - dev_info
[    1.324055] xhci_hcd 0000:03:00.0: @ffff880037a32024 (virt) @37a32024 (dma) 0x010000 - dev_info2
[    1.324059] xhci_hcd 0000:03:00.0: @ffff880037a32028 (virt) @37a32028 (dma) 0x000000 - tt_info
[    1.324063] xhci_hcd 0000:03:00.0: @ffff880037a3202c (virt) @37a3202c (dma) 0x000000 - dev_state
[    1.324067] xhci_hcd 0000:03:00.0: @ffff880037a32030 (virt) @37a32030 (dma) 0x000000 - rsvd[0]
[    1.324071] xhci_hcd 0000:03:00.0: @ffff880037a32034 (virt) @37a32034 (dma) 0x000000 - rsvd[1]
[    1.324075] xhci_hcd 0000:03:00.0: @ffff880037a32038 (virt) @37a32038 (dma) 0x000000 - rsvd[2]
[    1.324079] xhci_hcd 0000:03:00.0: @ffff880037a3203c (virt) @37a3203c (dma) 0x000000 - rsvd[3]
[    1.324084] xhci_hcd 0000:03:00.0: IN Endpoint 00 Context (ep_index 00):
[    1.324088] xhci_hcd 0000:03:00.0: @ffff880037a32040 (virt) @37a32040 (dma) 0x000000 - ep_info
[    1.324092] xhci_hcd 0000:03:00.0: @ffff880037a32044 (virt) @37a32044 (dma) 0x2000026 - ep_info2
[    1.324096] xhci_hcd 0000:03:00.0: @ffff880037a32048 (virt) @37a32048 (dma) 0x3797f801 - deq
[    1.324100] xhci_hcd 0000:03:00.0: @ffff880037a32050 (virt) @37a32050 (dma) 0x000000 - tx_info
[    1.324105] xhci_hcd 0000:03:00.0: @ffff880037a32054 (virt) @37a32054 (dma) 0x000000 - rsvd[0]
[    1.324109] xhci_hcd 0000:03:00.0: @ffff880037a32058 (virt) @37a32058 (dma) 0x000000 - rsvd[1]
[    1.324113] xhci_hcd 0000:03:00.0: @ffff880037a3205c (virt) @37a3205c (dma) 0x000000 - rsvd[2]
[    1.324117] xhci_hcd 0000:03:00.0: OUT Endpoint 01 Context (ep_index 01):
[    1.324121] xhci_hcd 0000:03:00.0: @ffff880037a32060 (virt) @37a32060 (dma) 0x000000 - ep_info
[    1.324125] xhci_hcd 0000:03:00.0: @ffff880037a32064 (virt) @37a32064 (dma) 0x000000 - ep_info2
[    1.324129] xhci_hcd 0000:03:00.0: @ffff880037a32068 (virt) @37a32068 (dma) 0x000000 - deq
[    1.324133] xhci_hcd 0000:03:00.0: @ffff880037a32070 (virt) @37a32070 (dma) 0x000000 - tx_info
[    1.324137] xhci_hcd 0000:03:00.0: @ffff880037a32074 (virt) @37a32074 (dma) 0x000000 - rsvd[0]
[    1.324141] xhci_hcd 0000:03:00.0: @ffff880037a32078 (virt) @37a32078 (dma) 0x000000 - rsvd[1]
[    1.324145] xhci_hcd 0000:03:00.0: @ffff880037a3207c (virt) @37a3207c (dma) 0x000000 - rsvd[2]
[    1.324149] xhci_hcd 0000:03:00.0: IN Endpoint 01 Context (ep_index 02):
[    1.324153] xhci_hcd 0000:03:00.0: @ffff880037a32080 (virt) @37a32080 (dma) 0x000000 - ep_info
[    1.324157] xhci_hcd 0000:03:00.0: @ffff880037a32084 (virt) @37a32084 (dma) 0x000000 - ep_info2
[    1.324161] xhci_hcd 0000:03:00.0: @ffff880037a32088 (virt) @37a32088 (dma) 0x000000 - deq
[    1.324165] xhci_hcd 0000:03:00.0: @ffff880037a32090 (virt) @37a32090 (dma) 0x000000 - tx_info
[    1.324169] xhci_hcd 0000:03:00.0: @ffff880037a32094 (virt) @37a32094 (dma) 0x000000 - rsvd[0]
[    1.324173] xhci_hcd 0000:03:00.0: @ffff880037a32098 (virt) @37a32098 (dma) 0x000000 - rsvd[1]
[    1.324177] xhci_hcd 0000:03:00.0: @ffff880037a3209c (virt) @37a3209c (dma) 0x000000 - rsvd[2]
[    1.324182] xhci_hcd 0000:03:00.0: // Ding dong!
[    1.327733] xhci_hcd 0000:03:00.0: Successful Address Device command
[    1.327749] xhci_hcd 0000:03:00.0: Op regs DCBAA ptr = 0x0000003797e000
[    1.327756] xhci_hcd 0000:03:00.0: Slot ID 1 dcbaa entry @ffff88003797e008 = 0x00000037a31000
[    1.327760] xhci_hcd 0000:03:00.0: Output Context DMA address = 0x37a31000
[    1.327792] xhci_hcd 0000:03:00.0: Slot ID 1 Input Context:
[    1.327798] xhci_hcd 0000:03:00.0: @ffff880037a32000 (virt) @37a32000 (dma) 0x000000 - drop flags
[    1.327802] xhci_hcd 0000:03:00.0: @ffff880037a32004 (virt) @37a32004 (dma) 0x000003 - add flags
[    1.327807] xhci_hcd 0000:03:00.0: @ffff880037a32008 (virt) @37a32008 (dma) 0x000000 - rsvd2[0]
[    1.327811] xhci_hcd 0000:03:00.0: @ffff880037a3200c (virt) @37a3200c (dma) 0x000000 - rsvd2[1]
[    1.327815] xhci_hcd 0000:03:00.0: @ffff880037a32010 (virt) @37a32010 (dma) 0x000000 - rsvd2[2]
[    1.327819] xhci_hcd 0000:03:00.0: @ffff880037a32014 (virt) @37a32014 (dma) 0x000000 - rsvd2[3]
[    1.327824] xhci_hcd 0000:03:00.0: @ffff880037a32018 (virt) @37a32018 (dma) 0x000000 - rsvd2[4]
[    1.327828] xhci_hcd 0000:03:00.0: @ffff880037a3201c (virt) @37a3201c (dma) 0x000000 - rsvd2[5]
[    1.327831] xhci_hcd 0000:03:00.0: Slot Context:
[    1.327836] xhci_hcd 0000:03:00.0: @ffff880037a32020 (virt) @37a32020 (dma) 0x8400000 - dev_info
[    1.327840] xhci_hcd 0000:03:00.0: @ffff880037a32024 (virt) @37a32024 (dma) 0x010000 - dev_info2
[    1.327844] xhci_hcd 0000:03:00.0: @ffff880037a32028 (virt) @37a32028 (dma) 0x000000 - tt_info
[    1.327848] xhci_hcd 0000:03:00.0: @ffff880037a3202c (virt) @37a3202c (dma) 0x000000 - dev_state
[    1.327852] xhci_hcd 0000:03:00.0: @ffff880037a32030 (virt) @37a32030 (dma) 0x000000 - rsvd[0]
[    1.327856] xhci_hcd 0000:03:00.0: @ffff880037a32034 (virt) @37a32034 (dma) 0x000000 - rsvd[1]
[    1.327860] xhci_hcd 0000:03:00.0: @ffff880037a32038 (virt) @37a32038 (dma) 0x000000 - rsvd[2]
[    1.327864] xhci_hcd 0000:03:00.0: @ffff880037a3203c (virt) @37a3203c (dma) 0x000000 - rsvd[3]
[    1.327869] xhci_hcd 0000:03:00.0: IN Endpoint 00 Context (ep_index 00):
[    1.327873] xhci_hcd 0000:03:00.0: @ffff880037a32040 (virt) @37a32040 (dma) 0x000000 - ep_info
[    1.327878] xhci_hcd 0000:03:00.0: @ffff880037a32044 (virt) @37a32044 (dma) 0x2000026 - ep_info2
[    1.327882] xhci_hcd 0000:03:00.0: @ffff880037a32048 (virt) @37a32048 (dma) 0x3797f801 - deq
[    1.327886] xhci_hcd 0000:03:00.0: @ffff880037a32050 (virt) @37a32050 (dma) 0x000000 - tx_info
[    1.327890] xhci_hcd 0000:03:00.0: @ffff880037a32054 (virt) @37a32054 (dma) 0x000000 - rsvd[0]
[    1.327894] xhci_hcd 0000:03:00.0: @ffff880037a32058 (virt) @37a32058 (dma) 0x000000 - rsvd[1]
[    1.327898] xhci_hcd 0000:03:00.0: @ffff880037a3205c (virt) @37a3205c (dma) 0x000000 - rsvd[2]
[    1.327902] xhci_hcd 0000:03:00.0: OUT Endpoint 01 Context (ep_index 01):
[    1.327906] xhci_hcd 0000:03:00.0: @ffff880037a32060 (virt) @37a32060 (dma) 0x000000 - ep_info
[    1.327910] xhci_hcd 0000:03:00.0: @ffff880037a32064 (virt) @37a32064 (dma) 0x000000 - ep_info2
[    1.327914] xhci_hcd 0000:03:00.0: @ffff880037a32068 (virt) @37a32068 (dma) 0x000000 - deq
[    1.327918] xhci_hcd 0000:03:00.0: @ffff880037a32070 (virt) @37a32070 (dma) 0x000000 - tx_info
[    1.327922] xhci_hcd 0000:03:00.0: @ffff880037a32074 (virt) @37a32074 (dma) 0x000000 - rsvd[0]
[    1.327927] xhci_hcd 0000:03:00.0: @ffff880037a32078 (virt) @37a32078 (dma) 0x000000 - rsvd[1]
[    1.327931] xhci_hcd 0000:03:00.0: @ffff880037a3207c (virt) @37a3207c (dma) 0x000000 - rsvd[2]
[    1.327935] xhci_hcd 0000:03:00.0: IN Endpoint 01 Context (ep_index 02):
[    1.327939] xhci_hcd 0000:03:00.0: @ffff880037a32080 (virt) @37a32080 (dma) 0x000000 - ep_info
[    1.327943] xhci_hcd 0000:03:00.0: @ffff880037a32084 (virt) @37a32084 (dma) 0x000000 - ep_info2
[    1.327947] xhci_hcd 0000:03:00.0: @ffff880037a32088 (virt) @37a32088 (dma) 0x000000 - deq
[    1.327951] xhci_hcd 0000:03:00.0: @ffff880037a32090 (virt) @37a32090 (dma) 0x000000 - tx_info
[    1.327955] xhci_hcd 0000:03:00.0: @ffff880037a32094 (virt) @37a32094 (dma) 0x000000 - rsvd[0]
[    1.327959] xhci_hcd 0000:03:00.0: @ffff880037a32098 (virt) @37a32098 (dma) 0x000000 - rsvd[1]
[    1.327963] xhci_hcd 0000:03:00.0: @ffff880037a3209c (virt) @37a3209c (dma) 0x000000 - rsvd[2]
[    1.327967] xhci_hcd 0000:03:00.0: Slot ID 1 Output Context:
[    1.327970] xhci_hcd 0000:03:00.0: Slot Context:
[    1.327974] xhci_hcd 0000:03:00.0: @ffff880037a31000 (virt) @37a31000 (dma) 0x8400000 - dev_info
[    1.327978] xhci_hcd 0000:03:00.0: @ffff880037a31004 (virt) @37a31004 (dma) 0x010000 - dev_info2
[    1.327982] xhci_hcd 0000:03:00.0: @ffff880037a31008 (virt) @37a31008 (dma) 0x000000 - tt_info
[    1.327986] xhci_hcd 0000:03:00.0: @ffff880037a3100c (virt) @37a3100c (dma) 0x10000001 - dev_state
[    1.327990] xhci_hcd 0000:03:00.0: @ffff880037a31010 (virt) @37a31010 (dma) 0x000000 - rsvd[0]
[    1.327994] xhci_hcd 0000:03:00.0: @ffff880037a31014 (virt) @37a31014 (dma) 0x000000 - rsvd[1]
[    1.327998] xhci_hcd 0000:03:00.0: @ffff880037a31018 (virt) @37a31018 (dma) 0x000000 - rsvd[2]
[    1.328002] xhci_hcd 0000:03:00.0: @ffff880037a3101c (virt) @37a3101c (dma) 0x000000 - rsvd[3]
[    1.328006] xhci_hcd 0000:03:00.0: IN Endpoint 00 Context (ep_index 00):
[    1.328010] xhci_hcd 0000:03:00.0: @ffff880037a31020 (virt) @37a31020 (dma) 0x000001 - ep_info
[    1.328014] xhci_hcd 0000:03:00.0: @ffff880037a31024 (virt) @37a31024 (dma) 0x2000026 - ep_info2
[    1.328018] xhci_hcd 0000:03:00.0: @ffff880037a31028 (virt) @37a31028 (dma) 0x3797f801 - deq
[    1.328022] xhci_hcd 0000:03:00.0: @ffff880037a31030 (virt) @37a31030 (dma) 0x000000 - tx_info
[    1.328026] xhci_hcd 0000:03:00.0: @ffff880037a31034 (virt) @37a31034 (dma) 0x008004 - rsvd[0]
[    1.328030] xhci_hcd 0000:03:00.0: @ffff880037a31038 (virt) @37a31038 (dma) 0x030000 - rsvd[1]
[    1.328034] xhci_hcd 0000:03:00.0: @ffff880037a3103c (virt) @37a3103c (dma) 0x000008 - rsvd[2]
[    1.328038] xhci_hcd 0000:03:00.0: OUT Endpoint 01 Context (ep_index 01):
[    1.328042] xhci_hcd 0000:03:00.0: @ffff880037a31040 (virt) @37a31040 (dma) 0x000000 - ep_info
[    1.328046] xhci_hcd 0000:03:00.0: @ffff880037a31044 (virt) @37a31044 (dma) 0x000000 - ep_info2
[    1.328050] xhci_hcd 0000:03:00.0: @ffff880037a31048 (virt) @37a31048 (dma) 0x000000 - deq
[    1.328053] xhci_hcd 0000:03:00.0: @ffff880037a31050 (virt) @37a31050 (dma) 0x000000 - tx_info
[    1.328057] xhci_hcd 0000:03:00.0: @ffff880037a31054 (virt) @37a31054 (dma) 0x000000 - rsvd[0]
[    1.328062] xhci_hcd 0000:03:00.0: @ffff880037a31058 (virt) @37a31058 (dma) 0x000000 - rsvd[1]
[    1.328065] xhci_hcd 0000:03:00.0: @ffff880037a3105c (virt) @37a3105c (dma) 0x000000 - rsvd[2]
[    1.328069] xhci_hcd 0000:03:00.0: IN Endpoint 01 Context (ep_index 02):
[    1.328073] xhci_hcd 0000:03:00.0: @ffff880037a31060 (virt) @37a31060 (dma) 0x000000 - ep_info
[    1.328077] xhci_hcd 0000:03:00.0: @ffff880037a31064 (virt) @37a31064 (dma) 0x000000 - ep_info2
[    1.328081] xhci_hcd 0000:03:00.0: @ffff880037a31068 (virt) @37a31068 (dma) 0x000000 - deq
[    1.328085] xhci_hcd 0000:03:00.0: @ffff880037a31070 (virt) @37a31070 (dma) 0x000000 - tx_info
[    1.328089] xhci_hcd 0000:03:00.0: @ffff880037a31074 (virt) @37a31074 (dma) 0x000000 - rsvd[0]
[    1.328093] xhci_hcd 0000:03:00.0: @ffff880037a31078 (virt) @37a31078 (dma) 0x000000 - rsvd[1]
[    1.328097] xhci_hcd 0000:03:00.0: @ffff880037a3107c (virt) @37a3107c (dma) 0x000000 - rsvd[2]
[    1.328101] xhci_hcd 0000:03:00.0: Internal device address = 2
[    1.328109] usb 4-1: new SuperSpeed USB device number 2 using xhci_hcd
[    1.344435] usb 4-1: Parent hub missing LPM exit latency info.  Power management will be impacted.
[    1.344892] usb 4-1: skipped 1 descriptor after endpoint
[    1.344901] usb 4-1: skipped 1 descriptor after endpoint
[    1.344955] xhci_hcd 0000:03:00.0: Waiting for status stage event
[    1.344980] usb 4-1: default language 0x0409
[    1.345083] xhci_hcd 0000:03:00.0: Waiting for status stage event
[    1.345228] xhci_hcd 0000:03:00.0: Waiting for status stage event
[    1.345368] xhci_hcd 0000:03:00.0: Waiting for status stage event
[    1.345427] usb 4-1: udev 2, busnum 4, minor = 385
[    1.345434] usb 4-1: New USB device found, idVendor=174c, idProduct=55aa
[    1.345509] usb 4-1: New USB device strings: Mfr=2, Product=3, SerialNumber=1
[    1.345582] usb 4-1: Product: MEDION HDDrive-n-GO
[    1.345648] usb 4-1: Manufacturer: MEDION
[    1.345712] usb 4-1: SerialNumber: 3180000000000000092C
[    1.346151] usb 4-1: usb_probe_device
[    1.346160] usb 4-1: configuration #1 chosen from 1 choice
[    1.346189] xhci_hcd 0000:03:00.0: add ep 0x81, slot id 1, new drop flags = 0x0, new add flags = 0x8, new slot info = 0x18400000
[    1.346209] xhci_hcd 0000:03:00.0: add ep 0x2, slot id 1, new drop flags = 0x0, new add flags = 0x18, new slot info = 0x20400000
[    1.346214] xhci_hcd 0000:03:00.0: xhci_check_bandwidth called for udev ffff880118515000
[    1.346218] xhci_hcd 0000:03:00.0: New Input Control Context:
[    1.346224] xhci_hcd 0000:03:00.0: @ffff880037a32000 (virt) @37a32000 (dma) 0x000000 - drop flags
[    1.346228] xhci_hcd 0000:03:00.0: @ffff880037a32004 (virt) @37a32004 (dma) 0x000019 - add flags
[    1.346233] xhci_hcd 0000:03:00.0: @ffff880037a32008 (virt) @37a32008 (dma) 0x000000 - rsvd2[0]
[    1.346237] xhci_hcd 0000:03:00.0: @ffff880037a3200c (virt) @37a3200c (dma) 0x000000 - rsvd2[1]
[    1.346241] xhci_hcd 0000:03:00.0: @ffff880037a32010 (virt) @37a32010 (dma) 0x000000 - rsvd2[2]
[    1.346245] xhci_hcd 0000:03:00.0: @ffff880037a32014 (virt) @37a32014 (dma) 0x000000 - rsvd2[3]
[    1.346249] xhci_hcd 0000:03:00.0: @ffff880037a32018 (virt) @37a32018 (dma) 0x000000 - rsvd2[4]
[    1.346253] xhci_hcd 0000:03:00.0: @ffff880037a3201c (virt) @37a3201c (dma) 0x000000 - rsvd2[5]
[    1.346257] xhci_hcd 0000:03:00.0: Slot Context:
[    1.346261] xhci_hcd 0000:03:00.0: @ffff880037a32020 (virt) @37a32020 (dma) 0x20400000 - dev_info
[    1.346265] xhci_hcd 0000:03:00.0: @ffff880037a32024 (virt) @37a32024 (dma) 0x010000 - dev_info2
[    1.346269] xhci_hcd 0000:03:00.0: @ffff880037a32028 (virt) @37a32028 (dma) 0x000000 - tt_info
[    1.346273] xhci_hcd 0000:03:00.0: @ffff880037a3202c (virt) @37a3202c (dma) 0x000000 - dev_state
[    1.346277] xhci_hcd 0000:03:00.0: @ffff880037a32030 (virt) @37a32030 (dma) 0x000000 - rsvd[0]
[    1.346282] xhci_hcd 0000:03:00.0: @ffff880037a32034 (virt) @37a32034 (dma) 0x000000 - rsvd[1]
[    1.346286] xhci_hcd 0000:03:00.0: @ffff880037a32038 (virt) @37a32038 (dma) 0x000000 - rsvd[2]
[    1.346290] xhci_hcd 0000:03:00.0: @ffff880037a3203c (virt) @37a3203c (dma) 0x000000 - rsvd[3]
[    1.346294] xhci_hcd 0000:03:00.0: IN Endpoint 00 Context (ep_index 00):
[    1.346298] xhci_hcd 0000:03:00.0: @ffff880037a32040 (virt) @37a32040 (dma) 0x000000 - ep_info
[    1.346302] xhci_hcd 0000:03:00.0: @ffff880037a32044 (virt) @37a32044 (dma) 0x2000026 - ep_info2
[    1.346306] xhci_hcd 0000:03:00.0: @ffff880037a32048 (virt) @37a32048 (dma) 0x3797f801 - deq
[    1.346311] xhci_hcd 0000:03:00.0: @ffff880037a32050 (virt) @37a32050 (dma) 0x000000 - tx_info
[    1.346315] xhci_hcd 0000:03:00.0: @ffff880037a32054 (virt) @37a32054 (dma) 0x000000 - rsvd[0]
[    1.346319] xhci_hcd 0000:03:00.0: @ffff880037a32058 (virt) @37a32058 (dma) 0x000000 - rsvd[1]
[    1.346323] xhci_hcd 0000:03:00.0: @ffff880037a3205c (virt) @37a3205c (dma) 0x000000 - rsvd[2]
[    1.346327] xhci_hcd 0000:03:00.0: OUT Endpoint 01 Context (ep_index 01):
[    1.346331] xhci_hcd 0000:03:00.0: @ffff880037a32060 (virt) @37a32060 (dma) 0x000000 - ep_info
[    1.346335] xhci_hcd 0000:03:00.0: @ffff880037a32064 (virt) @37a32064 (dma) 0x000000 - ep_info2
[    1.346339] xhci_hcd 0000:03:00.0: @ffff880037a32068 (virt) @37a32068 (dma) 0x000000 - deq
[    1.346343] xhci_hcd 0000:03:00.0: @ffff880037a32070 (virt) @37a32070 (dma) 0x000000 - tx_info
[    1.346347] xhci_hcd 0000:03:00.0: @ffff880037a32074 (virt) @37a32074 (dma) 0x000000 - rsvd[0]
[    1.346351] xhci_hcd 0000:03:00.0: @ffff880037a32078 (virt) @37a32078 (dma) 0x000000 - rsvd[1]
[    1.346355] xhci_hcd 0000:03:00.0: @ffff880037a3207c (virt) @37a3207c (dma) 0x000000 - rsvd[2]
[    1.346359] xhci_hcd 0000:03:00.0: IN Endpoint 01 Context (ep_index 02):
[    1.346363] xhci_hcd 0000:03:00.0: @ffff880037a32080 (virt) @37a32080 (dma) 0x000000 - ep_info
[    1.346367] xhci_hcd 0000:03:00.0: @ffff880037a32084 (virt) @37a32084 (dma) 0x4000f36 - ep_info2
[    1.346371] xhci_hcd 0000:03:00.0: @ffff880037a32088 (virt) @37a32088 (dma) 0x37a33401 - deq
[    1.346374] xhci_hcd 0000:03:00.0: @ffff880037a32090 (virt) @37a32090 (dma) 0x000000 - tx_info
[    1.346378] xhci_hcd 0000:03:00.0: @ffff880037a32094 (virt) @37a32094 (dma) 0x000000 - rsvd[0]
[    1.346383] xhci_hcd 0000:03:00.0: @ffff880037a32098 (virt) @37a32098 (dma) 0x000000 - rsvd[1]
[    1.346387] xhci_hcd 0000:03:00.0: @ffff880037a3209c (virt) @37a3209c (dma) 0x000000 - rsvd[2]
[    1.346390] xhci_hcd 0000:03:00.0: OUT Endpoint 02 Context (ep_index 03):
[    1.346394] xhci_hcd 0000:03:00.0: @ffff880037a320a0 (virt) @37a320a0 (dma) 0x000000 - ep_info
[    1.346398] xhci_hcd 0000:03:00.0: @ffff880037a320a4 (virt) @37a320a4 (dma) 0x4000f16 - ep_info2
[    1.346402] xhci_hcd 0000:03:00.0: @ffff880037a320a8 (virt) @37a320a8 (dma) 0x37a36001 - deq
[    1.346406] xhci_hcd 0000:03:00.0: @ffff880037a320b0 (virt) @37a320b0 (dma) 0x000000 - tx_info
[    1.346410] xhci_hcd 0000:03:00.0: @ffff880037a320b4 (virt) @37a320b4 (dma) 0x000000 - rsvd[0]
[    1.346414] xhci_hcd 0000:03:00.0: @ffff880037a320b8 (virt) @37a320b8 (dma) 0x000000 - rsvd[1]
[    1.346418] xhci_hcd 0000:03:00.0: @ffff880037a320bc (virt) @37a320bc (dma) 0x000000 - rsvd[2]
[    1.346423] xhci_hcd 0000:03:00.0: // Ding dong!
[    1.347490] xhci_hcd 0000:03:00.0: Completed config ep cmd
[    1.347544] xhci_hcd 0000:03:00.0: Successful Endpoint Configure command
[    1.347550] xhci_hcd 0000:03:00.0: Output context after successful config ep cmd:
[    1.347555] xhci_hcd 0000:03:00.0: Slot Context:
[    1.347561] xhci_hcd 0000:03:00.0: @ffff880037a31000 (virt) @37a31000 (dma) 0x20400000 - dev_info
[    1.347566] xhci_hcd 0000:03:00.0: @ffff880037a31004 (virt) @37a31004 (dma) 0x010000 - dev_info2
[    1.347570] xhci_hcd 0000:03:00.0: @ffff880037a31008 (virt) @37a31008 (dma) 0x000000 - tt_info
[    1.347575] xhci_hcd 0000:03:00.0: @ffff880037a3100c (virt) @37a3100c (dma) 0x18000001 - dev_state
[    1.347579] xhci_hcd 0000:03:00.0: @ffff880037a31010 (virt) @37a31010 (dma) 0x000000 - rsvd[0]
[    1.347584] xhci_hcd 0000:03:00.0: @ffff880037a31014 (virt) @37a31014 (dma) 0x000000 - rsvd[1]
[    1.347588] xhci_hcd 0000:03:00.0: @ffff880037a31018 (virt) @37a31018 (dma) 0x000000 - rsvd[2]
[    1.347592] xhci_hcd 0000:03:00.0: @ffff880037a3101c (virt) @37a3101c (dma) 0x000000 - rsvd[3]
[    1.347596] xhci_hcd 0000:03:00.0: IN Endpoint 00 Context (ep_index 00):
[    1.347601] xhci_hcd 0000:03:00.0: @ffff880037a31020 (virt) @37a31020 (dma) 0x000001 - ep_info
[    1.347605] xhci_hcd 0000:03:00.0: @ffff880037a31024 (virt) @37a31024 (dma) 0x2000026 - ep_info2
[    1.347609] xhci_hcd 0000:03:00.0: @ffff880037a31028 (virt) @37a31028 (dma) 0x3797f9e1 - deq
[    1.347613] xhci_hcd 0000:03:00.0: @ffff880037a31030 (virt) @37a31030 (dma) 0x000000 - tx_info
[    1.347617] xhci_hcd 0000:03:00.0: @ffff880037a31034 (virt) @37a31034 (dma) 0x008004 - rsvd[0]
[    1.347622] xhci_hcd 0000:03:00.0: @ffff880037a31038 (virt) @37a31038 (dma) 0x030000 - rsvd[1]
[    1.347626] xhci_hcd 0000:03:00.0: @ffff880037a3103c (virt) @37a3103c (dma) 0x000000 - rsvd[2]
[    1.347630] xhci_hcd 0000:03:00.0: OUT Endpoint 01 Context (ep_index 01):
[    1.347634] xhci_hcd 0000:03:00.0: @ffff880037a31040 (virt) @37a31040 (dma) 0x000000 - ep_info
[    1.347638] xhci_hcd 0000:03:00.0: @ffff880037a31044 (virt) @37a31044 (dma) 0x000000 - ep_info2
[    1.347642] xhci_hcd 0000:03:00.0: @ffff880037a31048 (virt) @37a31048 (dma) 0x000000 - deq
[    1.347646] xhci_hcd 0000:03:00.0: @ffff880037a31050 (virt) @37a31050 (dma) 0x000000 - tx_info
[    1.347650] xhci_hcd 0000:03:00.0: @ffff880037a31054 (virt) @37a31054 (dma) 0x000000 - rsvd[0]
[    1.347654] xhci_hcd 0000:03:00.0: @ffff880037a31058 (virt) @37a31058 (dma) 0x000000 - rsvd[1]
[    1.347658] xhci_hcd 0000:03:00.0: @ffff880037a3105c (virt) @37a3105c (dma) 0x000000 - rsvd[2]
[    1.347662] xhci_hcd 0000:03:00.0: IN Endpoint 01 Context (ep_index 02):
[    1.347666] xhci_hcd 0000:03:00.0: @ffff880037a31060 (virt) @37a31060 (dma) 0x000001 - ep_info
[    1.347670] xhci_hcd 0000:03:00.0: @ffff880037a31064 (virt) @37a31064 (dma) 0x4000f36 - ep_info2
[    1.347674] xhci_hcd 0000:03:00.0: @ffff880037a31068 (virt) @37a31068 (dma) 0x37a33401 - deq
[    1.347678] xhci_hcd 0000:03:00.0: @ffff880037a31070 (virt) @37a31070 (dma) 0x000000 - tx_info
[    1.347682] xhci_hcd 0000:03:00.0: @ffff880037a31074 (virt) @37a31074 (dma) 0x000002 - rsvd[0]
[    1.347686] xhci_hcd 0000:03:00.0: @ffff880037a31078 (virt) @37a31078 (dma) 0x030000 - rsvd[1]
[    1.347690] xhci_hcd 0000:03:00.0: @ffff880037a3107c (virt) @37a3107c (dma) 0x000000 - rsvd[2]
[    1.347694] xhci_hcd 0000:03:00.0: OUT Endpoint 02 Context (ep_index 03):
[    1.347698] xhci_hcd 0000:03:00.0: @ffff880037a31080 (virt) @37a31080 (dma) 0x000001 - ep_info
[    1.347702] xhci_hcd 0000:03:00.0: @ffff880037a31084 (virt) @37a31084 (dma) 0x4000f16 - ep_info2
[    1.347706] xhci_hcd 0000:03:00.0: @ffff880037a31088 (virt) @37a31088 (dma) 0x37a36001 - deq
[    1.347710] xhci_hcd 0000:03:00.0: @ffff880037a31090 (virt) @37a31090 (dma) 0x000000 - tx_info
[    1.347714] xhci_hcd 0000:03:00.0: @ffff880037a31094 (virt) @37a31094 (dma) 0x000000 - rsvd[0]
[    1.347718] xhci_hcd 0000:03:00.0: @ffff880037a31098 (virt) @37a31098 (dma) 0x030000 - rsvd[1]
[    1.347722] xhci_hcd 0000:03:00.0: @ffff880037a3109c (virt) @37a3109c (dma) 0x000000 - rsvd[2]
[    1.347731] xhci_hcd 0000:03:00.0: Endpoint 0x81 not halted, refusing to reset.
[    1.347736] xhci_hcd 0000:03:00.0: Endpoint 0x2 not halted, refusing to reset.
[    1.347874] usb 4-1: adding 4-1:1.0 (config #1, interface 0)
[    1.348139] hub 1-1:1.0: state 7 ports 6 chg 0014 evt 0000
[    1.348344] hub 1-1:1.0: port 2, status 0101, change 0000, 12 Mb/s
[    1.395806] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[    1.399827] tsc: Refined TSC clocksource calibration: 1596.373 MHz
[    1.407855] usb 2-1: link qh256-0001/ffff8800379d93c0 start 1 [1/0 us]
[    1.420054] usb 1-1.2: new low-speed USB device number 3 using ehci-pci
[    1.459772] ata4: SATA link down (SStatus 0 SControl 300)
[    1.515001] usb 1-1.2: skipped 1 descriptor after interface
[    1.515475] usb 1-1.2: default language 0x0409
[    1.518153] usb 1-1.2: udev 3, busnum 1, minor = 2
[    1.518165] usb 1-1.2: New USB device found, idVendor=046d, idProduct=c00e
[    1.518240] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.518328] usb 1-1.2: Product: USB-PS/2 Optical Mouse
[    1.518393] usb 1-1.2: Manufacturer: Logitech
[    1.518824] usb 1-1.2: usb_probe_device
[    1.518833] usb 1-1.2: configuration #1 chosen from 1 choice
[    1.519521] usb 1-1.2: adding 1-1.2:1.0 (config #1, interface 0)
[    1.519968] hub 1-1:1.0: port 4, status 0101, change 0000, 12 Mb/s
[    1.591934] usb 1-1.4: new high-speed USB device number 4 using ehci-pci
[    1.779568] ata5: SATA link down (SStatus 0 SControl 300)
[    1.782327] Freeing unused kernel memory: 1328K (ffffffff81d09000 - ffffffff81e55000)
[    1.782417] Write protecting the kernel read-only data: 12288k
[    1.787532] Freeing unused kernel memory: 972K (ffff88000170d000 - ffff880001800000)
[    1.791948] Freeing unused kernel memory: 912K (ffff880001b1c000 - ffff880001c00000)
[    1.829437] usb 1-1.4: skipped 1 descriptor after configuration
[    1.829445] usb 1-1.4: skipped 5 descriptors after interface
[    1.829452] usb 1-1.4: skipped 1 descriptor after endpoint
[    1.829457] usb 1-1.4: skipped 23 descriptors after interface
[    1.830253] udevd[121]: starting version 175
[    1.831664] usb 1-1.4: default language 0x0409
[    1.845167] usb 1-1.4: udev 4, busnum 1, minor = 3
[    1.845176] usb 1-1.4: New USB device found, idVendor=2232, idProduct=1018
[    1.845232] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.845299] usb 1-1.4: Product: WebCam SC-13HDL11431N
[    1.845346] usb 1-1.4: Manufacturer: 123
[    1.845624] usb 1-1.4: usb_probe_device
[    1.845629] usb 1-1.4: configuration #1 chosen from 1 choice
[    1.845775] usb 1-1.4: adding 1-1.4:1.0 (config #1, interface 0)
[    2.017794] usb 1-1.4: adding 1-1.4:1.1 (config #1, interface 1)
[    2.017940] hub 2-1:1.0: state 7 ports 6 chg 0020 evt 0000
[    2.018053] hub 2-1:1.0: port 5, status 0101, change 0000, 12 Mb/s
[    2.087591] usb 2-1.5: new full-speed USB device number 3 using ehci-pci
[    2.184278] usb 2-1.5: udev 3, busnum 2, minor = 130
[    2.184289] usb 2-1.5: New USB device found, idVendor=8086, idProduct=0189
[    2.184365] usb 2-1.5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.184819] usb 2-1.5: usb_probe_device
[    2.184829] usb 2-1.5: configuration #1 chosen from 1 choice
[    2.185536] usb 2-1.5: adding 2-1.5:1.0 (config #1, interface 0)
[    2.185753] usb 2-1.5: adding 2-1.5:1.1 (config #1, interface 1)
[    2.185975] hub 2-1:1.0: state 7 ports 6 chg 0000 evt 0020
[    2.399216] Switched to clocksource tsc
[    2.495708] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    2.495802] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
[    2.496185] r8169 0000:02:00.0: irq 47 for MSI/MSI-X
[    2.496656] r8169 0000:02:00.0 eth0: RTL8168evl/8111evl at 0xffffc90000620000, e8:03:9a:36:17:a9, XID 0c900800 IRQ 47
[    2.496721] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    2.498903] hidraw: raw HID events driver (C) Jiri Kosina
[    2.500642] usb-storage 4-1:1.0: usb_probe_interface
[    2.500653] usb-storage 4-1:1.0: usb_probe_interface - got id
[    2.500658] usb-storage 4-1:1.0: USB Mass Storage device detected
[    2.500864] scsi6 : usb-storage 4-1:1.0
[    2.503533] usbhid 1-1.2:1.0: usb_probe_interface
[    2.503538] usbhid 1-1.2:1.0: usb_probe_interface - got id
[    2.506573] usbcore: registered new interface driver usbhid
[    2.506619] usbhid: USB HID core driver
[    2.506637] usbcore: registered new interface driver usb-storage
[    2.547213] 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.547592] 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
[    3.256958] EXT4-fs (loop0): mounted filesystem with ordered data mode. Opts: (null)
[    3.502821] scsi 6:0:0:0: Direct-Access     ASMT     2105             0    PQ: 0 ANSI: 6
[    3.503571] sd 6:0:0:0: Attached scsi generic sg2 type 0
[    3.503795] sd 6:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    3.504014] xhci_hcd 0000:03:00.0: ep 0x81 - asked for 192 bytes, 124 bytes untransferred
[    3.504022] xhci_hcd 0000:03:00.0: Giveback URB ffff880037b3e240, len = 68, expected = 192, status = -121
[    3.504131] xhci_hcd 0000:03:00.0: Stalled endpoint
[    3.504142] xhci_hcd 0000:03:00.0: Giveback URB ffff88003785dc80, len = 0, expected = 13, status = -32
[    3.504225] xhci_hcd 0000:03:00.0: Queueing reset endpoint command
[    3.504230] xhci_hcd 0000:03:00.0: Cleaning up stalled endpoint ring
[    3.504233] xhci_hcd 0000:03:00.0: Finding segment containing stopped TRB.
[    3.504236] xhci_hcd 0000:03:00.0: Finding endpoint context
[    3.504238] xhci_hcd 0000:03:00.0: Finding segment containing last TRB in TD.
[    3.504242] xhci_hcd 0000:03:00.0: Cycle state = 0x1
[    3.504245] xhci_hcd 0000:03:00.0: New dequeue segment = ffff880037860b20 (virtual)
[    3.504248] xhci_hcd 0000:03:00.0: New dequeue pointer = 0x37a33470 (DMA)
[    3.504251] xhci_hcd 0000:03:00.0: Queueing new dequeue state
[    3.504255] xhci_hcd 0000:03:00.0: Set TR Deq Ptr cmd, new deq seg = ffff880037860b20 (0x37a33400 dma), new deq ptr = ffff880037a33470 (0x37a33470 dma), new cycle = 1
[    3.504259] xhci_hcd 0000:03:00.0: // Ding dong!
[    3.504267] xhci_hcd 0000:03:00.0: WARN halted endpoint, queueing URB anyway.
[    3.504369] xhci_hcd 0000:03:00.0: Ignoring reset ep completion code of 1
[    3.504443] xhci_hcd 0000:03:00.0: Successful Set TR Deq Ptr cmd, deq = @37a33471
[    3.504563] sd 6:0:0:0: [sdc] Write Protect is off
[    3.504622] sd 6:0:0:0: [sdc] Mode Sense: 43 00 00 00
[    3.504733] xhci_hcd 0000:03:00.0: ep 0x81 - asked for 192 bytes, 124 bytes untransferred
[    3.504740] xhci_hcd 0000:03:00.0: Giveback URB ffff8800d4027bc0, len = 68, expected = 192, status = -121
[    3.504814] xhci_hcd 0000:03:00.0: Stalled endpoint
[    3.504818] xhci_hcd 0000:03:00.0: Giveback URB ffff88003785dc80, len = 0, expected = 13, status = -32
[    3.504868] xhci_hcd 0000:03:00.0: Queueing reset endpoint command
[    3.504872] xhci_hcd 0000:03:00.0: Cleaning up stalled endpoint ring
[    3.504875] xhci_hcd 0000:03:00.0: Finding segment containing stopped TRB.
[    3.504878] xhci_hcd 0000:03:00.0: Finding endpoint context
[    3.504881] xhci_hcd 0000:03:00.0: Finding segment containing last TRB in TD.
[    3.504884] xhci_hcd 0000:03:00.0: Cycle state = 0x1
[    3.504887] xhci_hcd 0000:03:00.0: New dequeue segment = ffff880037860b20 (virtual)
[    3.504890] xhci_hcd 0000:03:00.0: New dequeue pointer = 0x37a334a0 (DMA)
[    3.504892] xhci_hcd 0000:03:00.0: Queueing new dequeue state
[    3.504897] xhci_hcd 0000:03:00.0: Set TR Deq Ptr cmd, new deq seg = ffff880037860b20 (0x37a33400 dma), new deq ptr = ffff880037a334a0 (0x37a334a0 dma), new cycle = 1
[    3.504900] xhci_hcd 0000:03:00.0: // Ding dong!
[    3.504907] xhci_hcd 0000:03:00.0: WARN halted endpoint, queueing URB anyway.
[    3.504972] xhci_hcd 0000:03:00.0: Ignoring reset ep completion code of 1
[    3.505046] xhci_hcd 0000:03:00.0: Successful Set TR Deq Ptr cmd, deq = @37a334a1
[    3.505132] sd 6:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.505731] xhci_hcd 0000:03:00.0: ep 0x81 - asked for 192 bytes, 124 bytes untransferred
[    3.505736] xhci_hcd 0000:03:00.0: Giveback URB ffff880037b3e540, len = 68, expected = 192, status = -121
[    3.505808] xhci_hcd 0000:03:00.0: Stalled endpoint
[    3.505812] xhci_hcd 0000:03:00.0: Giveback URB ffff88003785dc80, len = 0, expected = 13, status = -32
[    3.505861] xhci_hcd 0000:03:00.0: Queueing reset endpoint command
[    3.505864] xhci_hcd 0000:03:00.0: Cleaning up stalled endpoint ring
[    3.505867] xhci_hcd 0000:03:00.0: Finding segment containing stopped TRB.
[    3.505869] xhci_hcd 0000:03:00.0: Finding endpoint context
[    3.505872] xhci_hcd 0000:03:00.0: Finding segment containing last TRB in TD.
[    3.505875] xhci_hcd 0000:03:00.0: Cycle state = 0x1
[    3.505878] xhci_hcd 0000:03:00.0: New dequeue segment = ffff880037860b20 (virtual)
[    3.505881] xhci_hcd 0000:03:00.0: New dequeue pointer = 0x37a33500 (DMA)
[    3.505883] xhci_hcd 0000:03:00.0: Queueing new dequeue state
[    3.505887] xhci_hcd 0000:03:00.0: Set TR Deq Ptr cmd, new deq seg = ffff880037860b20 (0x37a33400 dma), new deq ptr = ffff880037a33500 (0x37a33500 dma), new cycle = 1
[    3.505890] xhci_hcd 0000:03:00.0: // Ding dong!
[    3.505896] xhci_hcd 0000:03:00.0: WARN halted endpoint, queueing URB anyway.
[    3.505961] xhci_hcd 0000:03:00.0: Ignoring reset ep completion code of 1
[    3.506035] xhci_hcd 0000:03:00.0: Successful Set TR Deq Ptr cmd, deq = @37a33501
[    3.506205] xhci_hcd 0000:03:00.0: ep 0x81 - asked for 192 bytes, 124 bytes untransferred
[    3.506210] xhci_hcd 0000:03:00.0: Giveback URB ffff8800d5030780, len = 68, expected = 192, status = -121
[    3.506294] xhci_hcd 0000:03:00.0: Stalled endpoint
[    3.506298] xhci_hcd 0000:03:00.0: Giveback URB ffff88003785dc80, len = 0, expected = 13, status = -32
[    3.506353] xhci_hcd 0000:03:00.0: Queueing reset endpoint command
[    3.506356] xhci_hcd 0000:03:00.0: Cleaning up stalled endpoint ring
[    3.506359] xhci_hcd 0000:03:00.0: Finding segment containing stopped TRB.
[    3.506362] xhci_hcd 0000:03:00.0: Finding endpoint context
[    3.506364] xhci_hcd 0000:03:00.0: Finding segment containing last TRB in TD.
[    3.506367] xhci_hcd 0000:03:00.0: Cycle state = 0x1
[    3.506370] xhci_hcd 0000:03:00.0: New dequeue segment = ffff880037860b20 (virtual)
[    3.506373] xhci_hcd 0000:03:00.0: New dequeue pointer = 0x37a33530 (DMA)
[    3.506375] xhci_hcd 0000:03:00.0: Queueing new dequeue state
[    3.506379] xhci_hcd 0000:03:00.0: Set TR Deq Ptr cmd, new deq seg = ffff880037860b20 (0x37a33400 dma), new deq ptr = ffff880037a33530 (0x37a33530 dma), new cycle = 1
[    3.506382] xhci_hcd 0000:03:00.0: // Ding dong!
[    3.506388] xhci_hcd 0000:03:00.0: WARN halted endpoint, queueing URB anyway.
[    3.506454] xhci_hcd 0000:03:00.0: Ignoring reset ep completion code of 1
[    3.506528] xhci_hcd 0000:03:00.0: Successful Set TR Deq Ptr cmd, deq = @37a33531
[    3.507008]  sdc: sdc1 sdc2 sdc3
[    3.507925] xhci_hcd 0000:03:00.0: ep 0x81 - asked for 192 bytes, 124 bytes untransferred
[    3.507930] xhci_hcd 0000:03:00.0: Giveback URB ffff8800d50303c0, len = 68, expected = 192, status = -121
[    3.508002] xhci_hcd 0000:03:00.0: Stalled endpoint
[    3.508006] xhci_hcd 0000:03:00.0: Giveback URB ffff88003785dc80, len = 0, expected = 13, status = -32
[    3.508054] xhci_hcd 0000:03:00.0: Queueing reset endpoint command
[    3.508058] xhci_hcd 0000:03:00.0: Cleaning up stalled endpoint ring
[    3.508060] xhci_hcd 0000:03:00.0: Finding segment containing stopped TRB.
[    3.508063] xhci_hcd 0000:03:00.0: Finding endpoint context
[    3.508066] xhci_hcd 0000:03:00.0: Finding segment containing last TRB in TD.
[    3.508068] xhci_hcd 0000:03:00.0: Cycle state = 0x1
[    3.508071] xhci_hcd 0000:03:00.0: New dequeue segment = ffff880037860b20 (virtual)
[    3.508074] xhci_hcd 0000:03:00.0: New dequeue pointer = 0x37a335e0 (DMA)
[    3.508076] xhci_hcd 0000:03:00.0: Queueing new dequeue state
[    3.508080] xhci_hcd 0000:03:00.0: Set TR Deq Ptr cmd, new deq seg = ffff880037860b20 (0x37a33400 dma), new deq ptr = ffff880037a335e0 (0x37a335e0 dma), new cycle = 1
[    3.508083] xhci_hcd 0000:03:00.0: // Ding dong!
[    3.508090] xhci_hcd 0000:03:00.0: WARN halted endpoint, queueing URB anyway.
[    3.508155] xhci_hcd 0000:03:00.0: Ignoring reset ep completion code of 1
[    3.508229] xhci_hcd 0000:03:00.0: Successful Set TR Deq Ptr cmd, deq = @37a335e1
[    3.508398] xhci_hcd 0000:03:00.0: ep 0x81 - asked for 192 bytes, 124 bytes untransferred
[    3.508402] xhci_hcd 0000:03:00.0: Giveback URB ffff8800d5030300, len = 68, expected = 192, status = -121
[    3.508475] xhci_hcd 0000:03:00.0: Stalled endpoint
[    3.508479] xhci_hcd 0000:03:00.0: Giveback URB ffff88003785dc80, len = 0, expected = 13, status = -32
[    3.508529] xhci_hcd 0000:03:00.0: Queueing reset endpoint command
[    3.508532] xhci_hcd 0000:03:00.0: Cleaning up stalled endpoint ring
[    3.508535] xhci_hcd 0000:03:00.0: Finding segment containing stopped TRB.
[    3.508537] xhci_hcd 0000:03:00.0: Finding endpoint context
[    3.508540] xhci_hcd 0000:03:00.0: Finding segment containing last TRB in TD.
[    3.508543] xhci_hcd 0000:03:00.0: Cycle state = 0x1
[    3.508545] xhci_hcd 0000:03:00.0: New dequeue segment = ffff880037860b20 (virtual)
[    3.508548] xhci_hcd 0000:03:00.0: New dequeue pointer = 0x37a33610 (DMA)
[    3.508551] xhci_hcd 0000:03:00.0: Queueing new dequeue state
[    3.508554] xhci_hcd 0000:03:00.0: Set TR Deq Ptr cmd, new deq seg = ffff880037860b20 (0x37a33400 dma), new deq ptr = ffff880037a33610 (0x37a33610 dma), new cycle = 1
[    3.508557] xhci_hcd 0000:03:00.0: // Ding dong!
[    3.508564] xhci_hcd 0000:03:00.0: WARN halted endpoint, queueing URB anyway.
[    3.508629] xhci_hcd 0000:03:00.0: Ignoring reset ep completion code of 1
[    3.508703] xhci_hcd 0000:03:00.0: Successful Set TR Deq Ptr cmd, deq = @37a33611
[    3.508787] sd 6:0:0:0: [sdc] Attached SCSI disk
[   26.771583] Adding 262140k swap on /host/ubuntu/disks/swap.disk.  Priority:-1 extents:1 across:262140k FS
[   26.796782] EXT4-fs (loop0): re-mounted. Opts: errors=remount-ro
[   26.824541] udevd[602]: starting version 175
[   27.008205] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130725/utaddress-251)
[   27.008218] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   27.008224] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
[   27.008229] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   27.008231] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
[   27.008236] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   27.008239] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
[   27.008243] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   27.008245] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   27.174963] xhci_hcd 0000:03:00.0: ep 0x81 - asked for 96 bytes, 74 bytes untransferred
[   27.174970] xhci_hcd 0000:03:00.0: Giveback URB ffff880037b3e540, len = 22, expected = 96, status = -121
[   27.175043] xhci_hcd 0000:03:00.0: Stalled endpoint
[   27.175049] xhci_hcd 0000:03:00.0: Giveback URB ffff88003785dc80, len = 0, expected = 13, status = -32
[   27.175106] xhci_hcd 0000:03:00.0: Queueing reset endpoint command
[   27.175110] xhci_hcd 0000:03:00.0: Cleaning up stalled endpoint ring
[   27.175114] xhci_hcd 0000:03:00.0: Finding segment containing stopped TRB.
[   27.175117] xhci_hcd 0000:03:00.0: Finding endpoint context
[   27.175119] xhci_hcd 0000:03:00.0: Finding segment containing last TRB in TD.
[   27.175122] xhci_hcd 0000:03:00.0: Cycle state = 0x1
[   27.175124] xhci_hcd 0000:03:00.0: New dequeue segment = ffff880037860b20 (virtual)
[   27.175127] xhci_hcd 0000:03:00.0: New dequeue pointer = 0x37a33680 (DMA)
[   27.175129] xhci_hcd 0000:03:00.0: Queueing new dequeue state
[   27.175133] xhci_hcd 0000:03:00.0: Set TR Deq Ptr cmd, new deq seg = ffff880037860b20 (0x37a33400 dma), new deq ptr = ffff880037a33680 (0x37a33680 dma), new cycle = 1
[   27.175137] xhci_hcd 0000:03:00.0: // Ding dong!
[   27.175143] xhci_hcd 0000:03:00.0: WARN halted endpoint, queueing URB anyway.
[   27.175211] xhci_hcd 0000:03:00.0: Ignoring reset ep completion code of 1
[   27.175288] xhci_hcd 0000:03:00.0: Successful Set TR Deq Ptr cmd, deq = @37a33681
[   27.213133] xhci_hcd 0000:03:00.0: ep 0x81 - asked for 254 bytes, 178 bytes untransferred
[   27.213142] xhci_hcd 0000:03:00.0: Giveback URB ffff8800d4027980, len = 76, expected = 254, status = -121
[   27.213212] xhci_hcd 0000:03:00.0: Stalled endpoint
[   27.213217] xhci_hcd 0000:03:00.0: Giveback URB ffff88003785dc80, len = 0, expected = 13, status = -32
[   27.213263] xhci_hcd 0000:03:00.0: Queueing reset endpoint command
[   27.213267] xhci_hcd 0000:03:00.0: Cleaning up stalled endpoint ring
[   27.213270] xhci_hcd 0000:03:00.0: Finding segment containing stopped TRB.
[   27.213272] xhci_hcd 0000:03:00.0: Finding endpoint context
[   27.213275] xhci_hcd 0000:03:00.0: Finding segment containing last TRB in TD.
[   27.213278] xhci_hcd 0000:03:00.0: Cycle state = 0x1
[   27.213280] xhci_hcd 0000:03:00.0: New dequeue segment = ffff880037860b20 (virtual)
[   27.213284] xhci_hcd 0000:03:00.0: New dequeue pointer = 0x37a336c0 (DMA)
[   27.213286] xhci_hcd 0000:03:00.0: Queueing new dequeue state
[   27.213290] xhci_hcd 0000:03:00.0: Set TR Deq Ptr cmd, new deq seg = ffff880037860b20 (0x37a33400 dma), new deq ptr = ffff880037a336c0 (0x37a336c0 dma), new cycle = 1
[   27.213294] xhci_hcd 0000:03:00.0: // Ding dong!
[   27.213300] xhci_hcd 0000:03:00.0: WARN halted endpoint, queueing URB anyway.
[   27.213369] xhci_hcd 0000:03:00.0: Ignoring reset ep completion code of 1
[   27.213446] xhci_hcd 0000:03:00.0: Successful Set TR Deq Ptr cmd, deq = @37a336c1
[   27.213772] xhci_hcd 0000:03:00.0: ep 0x81 - asked for 254 bytes, 230 bytes untransferred
[   27.213778] xhci_hcd 0000:03:00.0: Giveback URB ffff8800d4027980, len = 24, expected = 254, status = -121
[   27.213850] xhci_hcd 0000:03:00.0: Stalled endpoint
[   27.213856] xhci_hcd 0000:03:00.0: Giveback URB ffff88003785dc80, len = 0, expected = 13, status = -32
[   27.213902] xhci_hcd 0000:03:00.0: Queueing reset endpoint command
[   27.213906] xhci_hcd 0000:03:00.0: Cleaning up stalled endpoint ring
[   27.213909] xhci_hcd 0000:03:00.0: Finding segment containing stopped TRB.
[   27.213912] xhci_hcd 0000:03:00.0: Finding endpoint context
[   27.213915] xhci_hcd 0000:03:00.0: Finding segment containing last TRB in TD.
[   27.213917] xhci_hcd 0000:03:00.0: Cycle state = 0x1
[   27.213919] xhci_hcd 0000:03:00.0: New dequeue segment = ffff880037860b20 (virtual)
[   27.213922] xhci_hcd 0000:03:00.0: New dequeue pointer = 0x37a33700 (DMA)
[   27.213925] xhci_hcd 0000:03:00.0: Queueing new dequeue state
[   27.213929] xhci_hcd 0000:03:00.0: Set TR Deq Ptr cmd, new deq seg = ffff880037860b20 (0x37a33400 dma), new deq ptr = ffff880037a33700 (0x37a33700 dma), new cycle = 1
[   27.213932] xhci_hcd 0000:03:00.0: // Ding dong!
[   27.213939] xhci_hcd 0000:03:00.0: WARN halted endpoint, queueing URB anyway.
[   27.214007] xhci_hcd 0000:03:00.0: Ignoring reset ep completion code of 1
[   27.214084] xhci_hcd 0000:03:00.0: Successful Set TR Deq Ptr cmd, deq = @37a33701
[   27.383685] lp: driver loaded but no devices found
[   27.401656] type=1400 audit(1377170351.333:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=703 comm="apparmor_parser"
[   27.401673] type=1400 audit(1377170351.333:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=703 comm="apparmor_parser"
[   27.401687] type=1400 audit(1377170351.333:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=703 comm="apparmor_parser"
[   27.402071] wmi: Mapper loaded
[   27.403032] type=1400 audit(1377170351.333:5): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=703 comm="apparmor_parser"
[   27.403050] type=1400 audit(1377170351.333:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=703 comm="apparmor_parser"
[   27.403222] samsung_laptop: detected SABI interface: SwSmi@
[   27.403225] samsung_laptop: Backlight controlled by ACPI video driver
[   27.409171] type=1400 audit(1377170351.337:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=703 comm="apparmor_parser"
[   27.421487] cfg80211: Calling CRDA to update world regulatory domain
[   27.429453] cfg80211: World regulatory domain updated:
[   27.429458] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   27.429460] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   27.429462] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   27.429464] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   27.429465] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   27.429467] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   27.520646] Bluetooth: Core ver 2.16
[   27.520702] NET: Registered protocol family 31
[   27.520706] Bluetooth: HCI device and connection manager initialized
[   27.520723] Bluetooth: HCI socket layer initialized
[   27.520735] Bluetooth: L2CAP socket layer initialized
[   27.520761] Bluetooth: SCO socket layer initialized
[   27.578670] init: failsafe main process (925) killed by TERM signal
[   27.590515] [drm] Initialized drm 1.1.0 20060810
[   27.593546] Linux video capture interface: v2.00
[   27.696165] ppdev: user-space parallel port driver
[   27.738697] xhci_hcd 0000:03:00.0: ep 0x81 - asked for 96 bytes, 74 bytes untransferred
[   27.738703] xhci_hcd 0000:03:00.0: Giveback URB ffff8801184cc540, len = 22, expected = 96, status = -121
[   27.738768] xhci_hcd 0000:03:00.0: Stalled endpoint
[   27.738771] xhci_hcd 0000:03:00.0: Giveback URB ffff88003785dc80, len = 0, expected = 13, status = -32
[   27.738815] xhci_hcd 0000:03:00.0: Queueing reset endpoint command
[   27.738820] xhci_hcd 0000:03:00.0: Cleaning up stalled endpoint ring
[   27.738823] xhci_hcd 0000:03:00.0: Finding segment containing stopped TRB.
[   27.738825] xhci_hcd 0000:03:00.0: Finding endpoint context
[   27.738827] xhci_hcd 0000:03:00.0: Finding segment containing last TRB in TD.
[   27.738829] xhci_hcd 0000:03:00.0: Cycle state = 0x0
[   27.738831] xhci_hcd 0000:03:00.0: New dequeue segment = ffff880037860b00 (virtual)
[   27.738833] xhci_hcd 0000:03:00.0: New dequeue pointer = 0x37a33b10 (DMA)
[   27.738835] xhci_hcd 0000:03:00.0: Queueing new dequeue state
[   27.738839] xhci_hcd 0000:03:00.0: Set TR Deq Ptr cmd, new deq seg = ffff880037860b00 (0x37a33800 dma), new deq ptr = ffff880037a33b10 (0x37a33b10 dma), new cycle = 0
[   27.738841] xhci_hcd 0000:03:00.0: // Ding dong!
[   27.738847] xhci_hcd 0000:03:00.0: WARN halted endpoint, queueing URB anyway.
[   27.738915] xhci_hcd 0000:03:00.0: Ignoring reset ep completion code of 1
[   27.738991] xhci_hcd 0000:03:00.0: Successful Set TR Deq Ptr cmd, deq = @37a33b10
[   27.866927] type=1400 audit(1377170351.797:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=1072 comm="apparmor_parser"
[   27.866941] type=1400 audit(1377170351.797:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1072 comm="apparmor_parser"
[   27.866950] type=1400 audit(1377170351.797:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1072 comm="apparmor_parser"
[   27.868113] type=1400 audit(1377170351.797:11): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1072 comm="apparmor_parser"
[   28.021465] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   28.021470] Bluetooth: BNEP filters: protocol multicast
[   28.021485] Bluetooth: BNEP socket layer initialized
[   28.206752] btusb 2-1.5:1.0: usb_probe_interface
[   28.206759] btusb 2-1.5:1.0: usb_probe_interface - got id
[   28.208216] usbcore: registered new interface driver btusb
[   28.208599] usb 2-1.5: link qh1-0e01/ffff8800c86b6240 start 0 [1/2 us]
[   28.209511] Bluetooth: RFCOMM TTY layer initialized
[   28.209542] Bluetooth: RFCOMM socket layer initialized
[   28.209544] Bluetooth: RFCOMM ver 1.11
[   28.378345] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f00)
[   28.393388] psmouse serio1: elantech: Synaptics capabilities query result 0x08, 0x17, 0x0c.
[   28.468420] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input5
[   28.517174] Intel(R) Wireless WiFi driver for Linux, in-tree:d
[   28.517179] Copyright(c) 2003-2013 Intel Corporation
[   28.517376] iwlwifi 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
[   28.517543] iwlwifi 0000:01:00.0: irq 48 for MSI/MSI-X
[   28.725340] iwlwifi 0000:01:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
[   29.112967] uvcvideo 1-1.4:1.0: usb_probe_interface
[   29.112974] uvcvideo 1-1.4:1.0: usb_probe_interface - got id
[   29.113030] uvcvideo: Found UVC 1.00 device WebCam SC-13HDL11431N (2232:1018)
[   29.132377] 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
[   29.132518] usbcore: registered new interface driver uvcvideo
[   29.132521] USB Video Class driver (1.1.1)
[   29.135975] usb 1-1.4: link qh16-0001/ffff8800c86b62c0 start 2 [1/0 us]
[   29.136042] usb 1-1.4: unlink qh16-0001/ffff8800c86b62c0 start 2 [1/0 us]
[   29.178014] i915: module verification failed: signature and/or required key missing - tainting kernel
[   29.183298] [drm] Memory usable by graphics device = 2048M
[   29.183308] i915 0000:00:02.0: setting latency timer to 64
[   29.217011] i915 0000:00:02.0: irq 49 for MSI/MSI-X
[   29.217027] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[   29.217028] [drm] Driver supports precise vblank timestamp query.
[   29.217209] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   29.227839] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUG enabled
[   29.227845] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[   29.227848] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
[   29.227851] iwlwifi 0000:01:00.0: Detected Intel(R) Centrino(R) Advanced-N 6230 AGN, REV=0xB0
[   29.227953] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
[   29.232651] [drm] Wrong MCH_SSKPD value: 0x16040307
[   29.232655] [drm] This can cause pipe underruns and display issues.
[   29.232656] [drm] Please upgrade your BIOS to fix this.
[   29.250134] fbcon: inteldrmfb (fb0) is primary device
[   29.272221] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[   29.288752] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
[   29.295429] iwlwifi 0000:01:00.0: Radio type=0x1-0x2-0x0
[   29.568876] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
[   29.575507] iwlwifi 0000:01:00.0: Radio type=0x1-0x2-0x0
[   29.653465] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   30.202218] Console: switching to colour frame buffer device 170x48
[   30.204830] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[   30.204832] i915 0000:00:02.0: registered panic notifier
[   30.222576] acpi device:33: registered as cooling_device9
[   30.223061] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   30.223853] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input7
[   30.230580] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[   30.231008] snd_hda_intel 0000:00:1b.0: irq 50 for MSI/MSI-X
[   30.268015] init: alsa-restore main process (1181) terminated with status 19
[   30.276248] usb 1-1.2: link qh8-0e01/ffff880075744cc0 start 3 [1/2 us]
[   30.291378] usb 1-1.2: unlink qh8-0e01/ffff880075744cc0 start 3 [1/2 us]
[   30.308740] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[   30.311660] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[   30.311936] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[   30.779338] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
[   30.917318] ehci-pci 0000:00:1a.0: reused qh ffff880075744cc0 schedule
[   30.917326] usb 1-1.2: link qh8-0e01/ffff880075744cc0 start 3 [1/2 us]
[   31.790601] usb 1-1.4: usb auto-suspend, wakeup 0
[   32.854611] usb usb3: usb auto-resume
[   32.854630] hub 3-0:1.0: hub_resume
[   32.854640] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   32.854642] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   32.854658] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   32.854660] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   32.854677] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   32.854686] hub 3-0:1.0: hub_suspend
[   32.854703] usb usb3: bus auto-suspend, wakeup 1
[   32.854716] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   32.854754] usb usb3: usb auto-resume
[   32.865455] hub 3-0:1.0: hub_resume
[   32.865466] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   32.865469] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   32.865488] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   32.865491] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   32.865511] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   32.865526] hub 3-0:1.0: hub_suspend
[   32.865540] usb usb3: bus auto-suspend, wakeup 1
[   32.865554] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   32.866116] usb 1-1.4: usb auto-resume
[   32.913588] usb 1-1.4: finish resume
[   32.920170] usb usb3: usb auto-resume
[   32.920190] hub 3-0:1.0: hub_resume
[   32.920199] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   32.920201] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   32.920218] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   32.920220] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   32.920242] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   32.920257] hub 3-0:1.0: hub_suspend
[   32.920272] usb usb3: bus auto-suspend, wakeup 1
[   32.920287] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   32.920306] usb usb3: usb auto-resume
[   32.929418] hub 3-0:1.0: hub_resume
[   32.929436] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   32.929439] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   32.929452] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   32.929453] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   32.929469] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   32.929485] hub 3-0:1.0: hub_suspend
[   32.929500] usb usb3: bus auto-suspend, wakeup 1
[   32.929514] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   32.930530] usb usb3: usb auto-resume
[   32.941399] hub 3-0:1.0: hub_resume
[   32.941412] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   32.941414] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   32.941429] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   32.941431] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   32.941448] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   32.941477] hub 3-0:1.0: hub_suspend
[   32.941492] usb usb3: bus auto-suspend, wakeup 1
[   32.941507] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   32.941558] usb usb3: usb auto-resume
[   32.953386] hub 3-0:1.0: hub_resume
[   32.953397] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   32.953398] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   32.953413] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   32.953415] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   32.953429] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   32.953440] hub 3-0:1.0: hub_suspend
[   32.953457] usb usb3: bus auto-suspend, wakeup 1
[   32.953472] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   32.960415] usb usb3: usb auto-resume
[   32.969391] hub 3-0:1.0: hub_resume
[   32.969406] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   32.969410] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   32.969432] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   32.969434] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   32.969450] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   32.969477] hub 3-0:1.0: hub_suspend
[   32.969492] usb usb3: bus auto-suspend, wakeup 1
[   32.969506] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   32.969559] usb usb3: usb auto-resume
[   32.981434] hub 3-0:1.0: hub_resume
[   32.981446] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   32.981448] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   32.981461] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   32.981463] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   32.981477] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   32.981488] hub 3-0:1.0: hub_suspend
[   32.981506] usb usb3: bus auto-suspend, wakeup 1
[   32.981522] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   32.995050] usb usb3: usb auto-resume
[   32.995071] hub 3-0:1.0: hub_resume
[   32.995080] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   32.995082] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   32.995099] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   32.995101] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   32.995116] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   32.995144] hub 3-0:1.0: hub_suspend
[   32.995160] usb usb3: bus auto-suspend, wakeup 1
[   32.995175] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   32.995231] usb usb3: usb auto-resume
[   33.005375] hub 3-0:1.0: hub_resume
[   33.005391] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   33.005394] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.005412] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   33.005415] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.005435] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   33.005445] hub 3-0:1.0: hub_suspend
[   33.005464] usb usb3: bus auto-suspend, wakeup 1
[   33.005478] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   33.007966] usb usb3: usb auto-resume
[   33.017405] hub 3-0:1.0: hub_resume
[   33.017436] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   33.017439] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.017454] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   33.017456] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.017470] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   33.017494] hub 3-0:1.0: hub_suspend
[   33.017507] usb usb3: bus auto-suspend, wakeup 1
[   33.017522] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   33.017572] usb usb3: usb auto-resume
[   33.029352] hub 3-0:1.0: hub_resume
[   33.029381] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   33.029384] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.029403] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   33.029405] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.029430] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   33.029456] hub 3-0:1.0: hub_suspend
[   33.029475] usb usb3: bus auto-suspend, wakeup 1
[   33.029490] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   33.030729] usb usb3: usb auto-resume
[   33.041338] hub 3-0:1.0: hub_resume
[   33.041360] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   33.041363] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.041380] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   33.041382] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.041402] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   33.041413] hub 3-0:1.0: hub_suspend
[   33.041442] usb usb3: bus auto-suspend, wakeup 1
[   33.041469] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   33.041554] usb usb3: usb auto-resume
[   33.053340] hub 3-0:1.0: hub_resume
[   33.053353] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   33.053357] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.053380] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   33.053393] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.053430] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   33.053451] hub 3-0:1.0: hub_suspend
[   33.053468] usb usb3: bus auto-suspend, wakeup 1
[   33.053483] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   33.061089] usb usb3: usb auto-resume
[   33.069363] hub 3-0:1.0: hub_resume
[   33.069379] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   33.069382] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.069402] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   33.069404] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.069457] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   33.069478] hub 3-0:1.0: hub_suspend
[   33.069495] usb usb3: bus auto-suspend, wakeup 1
[   33.069510] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   33.069542] usb usb3: usb auto-resume
[   33.081489] hub 3-0:1.0: hub_resume
[   33.081505] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   33.081510] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.081531] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   33.081535] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.081595] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   33.081628] hub 3-0:1.0: hub_suspend
[   33.081644] usb usb3: bus auto-suspend, wakeup 1
[   33.081658] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   33.083075] usb usb3: usb auto-resume
[   33.093394] hub 3-0:1.0: hub_resume
[   33.093419] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   33.093423] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.093456] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   33.093459] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.093526] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   33.093556] hub 3-0:1.0: hub_suspend
[   33.093579] usb usb3: bus auto-suspend, wakeup 1
[   33.093597] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   33.093614] usb usb3: usb auto-resume
[   33.105378] hub 3-0:1.0: hub_resume
[   33.105400] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   33.105404] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.105430] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   33.105434] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.105461] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   33.105480] hub 3-0:1.0: hub_suspend
[   33.105504] usb usb3: bus auto-suspend, wakeup 1
[   33.105522] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   33.109501] usb usb3: usb auto-resume
[   33.121280] hub 3-0:1.0: hub_resume
[   33.121299] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   33.121303] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.121327] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   33.121330] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.121357] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   33.121392] hub 3-0:1.0: hub_suspend
[   33.121411] usb usb3: bus auto-suspend, wakeup 1
[   33.121427] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   33.121510] usb usb3: usb auto-resume
[   33.133282] hub 3-0:1.0: hub_resume
[   33.133299] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   33.133301] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.133319] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   33.133321] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.133337] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   33.133351] hub 3-0:1.0: hub_suspend
[   33.133368] usb usb3: bus auto-suspend, wakeup 1
[   33.133384] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   33.134966] usb usb3: usb auto-resume
[   33.145275] hub 3-0:1.0: hub_resume
[   33.145292] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   33.145295] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.145316] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   33.145319] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.145339] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   33.145373] hub 3-0:1.0: hub_suspend
[   33.145396] usb usb3: bus auto-suspend, wakeup 1
[   33.145412] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   33.145485] usb usb3: usb auto-resume
[   33.157254] hub 3-0:1.0: hub_resume
[   33.157270] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   33.157273] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.157295] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   33.157298] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   33.157318] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   33.157339] hub 3-0:1.0: hub_suspend
[   33.157356] usb usb3: bus auto-suspend, wakeup 1
[   33.157371] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.161273] usb usb3: usb auto-resume
[   34.161295] hub 3-0:1.0: hub_resume
[   34.161305] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.161306] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.161382] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.161386] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.161509] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.161531] hub 3-0:1.0: hub_suspend
[   34.161570] usb usb3: bus auto-suspend, wakeup 1
[   34.161600] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.163650] usb usb3: usb auto-resume
[   34.172567] hub 3-0:1.0: hub_resume
[   34.172594] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.172600] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.172642] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.172645] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.172735] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.172751] hub 3-0:1.0: hub_suspend
[   34.172764] usb usb3: bus auto-suspend, wakeup 1
[   34.172778] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.172797] usb usb3: usb auto-resume
[   34.184579] hub 3-0:1.0: hub_resume
[   34.184606] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.184612] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.184661] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.184663] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.184690] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.184704] hub 3-0:1.0: hub_suspend
[   34.184720] usb usb3: bus auto-suspend, wakeup 1
[   34.184735] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.186010] usb usb3: usb auto-resume
[   34.196578] hub 3-0:1.0: hub_resume
[   34.196593] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.196596] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.196693] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.196698] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.196834] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.196872] hub 3-0:1.0: hub_suspend
[   34.196890] usb usb3: bus auto-suspend, wakeup 1
[   34.196905] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.196924] usb usb3: usb auto-resume
[   34.208514] hub 3-0:1.0: hub_resume
[   34.208527] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.208530] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.208547] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.208549] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.208570] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.208589] hub 3-0:1.0: hub_suspend
[   34.208606] usb usb3: bus auto-suspend, wakeup 1
[   34.208622] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.219750] usb usb3: usb auto-resume
[   34.228581] hub 3-0:1.0: hub_resume
[   34.228602] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.228605] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.228637] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.228642] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.228693] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.228736] hub 3-0:1.0: hub_suspend
[   34.228756] usb usb3: bus auto-suspend, wakeup 1
[   34.228773] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.228856] usb usb3: usb auto-resume
[   34.240485] hub 3-0:1.0: hub_resume
[   34.240499] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.240503] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.240561] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.240565] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.240589] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.240601] hub 3-0:1.0: hub_suspend
[   34.240625] usb usb3: bus auto-suspend, wakeup 1
[   34.240639] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.241482] usb usb3: usb auto-resume
[   34.252556] hub 3-0:1.0: hub_resume
[   34.252574] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.252578] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.252600] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.252602] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.252665] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.252700] hub 3-0:1.0: hub_suspend
[   34.252717] usb usb3: bus auto-suspend, wakeup 1
[   34.252732] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.252746] usb usb3: usb auto-resume
[   34.264547] hub 3-0:1.0: hub_resume
[   34.264577] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.264580] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.264613] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.264615] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.264665] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.264700] hub 3-0:1.0: hub_suspend
[   34.264717] usb usb3: bus auto-suspend, wakeup 1
[   34.264732] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.266282] usb usb3: usb auto-resume
[   34.276504] hub 3-0:1.0: hub_resume
[   34.276518] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.276521] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.276554] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.276556] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.276615] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.276647] hub 3-0:1.0: hub_suspend
[   34.276662] usb usb3: bus auto-suspend, wakeup 1
[   34.276677] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.276698] usb usb3: usb auto-resume
[   34.288497] hub 3-0:1.0: hub_resume
[   34.288512] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.288515] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.288536] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.288538] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.288595] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.288617] hub 3-0:1.0: hub_suspend
[   34.288645] usb usb3: bus auto-suspend, wakeup 1
[   34.288659] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.290145] usb usb3: usb auto-resume
[   34.300524] hub 3-0:1.0: hub_resume
[   34.300538] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.300541] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.300560] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.300563] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.300617] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.300640] hub 3-0:1.0: hub_suspend
[   34.300659] usb usb3: bus auto-suspend, wakeup 1
[   34.300674] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.300698] usb usb3: usb auto-resume
[   34.312482] hub 3-0:1.0: hub_resume
[   34.312497] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.312501] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.312524] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.312527] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.312583] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.312607] hub 3-0:1.0: hub_suspend
[   34.312627] usb usb3: bus auto-suspend, wakeup 1
[   34.312643] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.316799] usb usb3: usb auto-resume
[   34.328494] hub 3-0:1.0: hub_resume
[   34.328509] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.328512] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.328534] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.328537] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.328586] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.328619] hub 3-0:1.0: hub_suspend
[   34.328690] usb usb3: bus auto-suspend, wakeup 1
[   34.328709] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.328790] usb usb3: usb auto-resume
[   34.340462] hub 3-0:1.0: hub_resume
[   34.340477] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.340493] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.340559] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.340565] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.340626] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.340648] hub 3-0:1.0: hub_suspend
[   34.340665] usb usb3: bus auto-suspend, wakeup 1
[   34.340680] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.344825] usb usb3: usb auto-resume
[   34.356467] hub 3-0:1.0: hub_resume
[   34.356484] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.356489] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.356522] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.356527] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.356701] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.356720] hub 3-0:1.0: hub_suspend
[   34.356737] usb usb3: bus auto-suspend, wakeup 1
[   34.356751] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.356816] usb usb3: usb auto-resume
[   34.368443] hub 3-0:1.0: hub_resume
[   34.368458] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.368462] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.368510] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.368513] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.368566] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.368603] hub 3-0:1.0: hub_suspend
[   34.368618] usb usb3: bus auto-suspend, wakeup 1
[   34.368632] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.369776] usb usb3: usb auto-resume
[   34.380431] hub 3-0:1.0: hub_resume
[   34.380446] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.380450] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.380473] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.380476] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.380532] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.380556] hub 3-0:1.0: hub_suspend
[   34.380577] usb usb3: bus auto-suspend, wakeup 1
[   34.380592] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.380623] usb usb3: usb auto-resume
[   34.392435] hub 3-0:1.0: hub_resume
[   34.392452] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.392456] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.392480] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.392483] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.392544] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.392569] hub 3-0:1.0: hub_suspend
[   34.392591] usb usb3: bus auto-suspend, wakeup 1
[   34.392608] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.399155] usb usb3: usb auto-resume
[   34.408433] hub 3-0:1.0: hub_resume
[   34.408453] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.408457] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.408491] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.408495] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.408532] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.408590] hub 3-0:1.0: hub_suspend
[   34.408657] usb usb3: bus auto-suspend, wakeup 1
[   34.408690] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.408780] usb usb3: usb auto-resume
[   34.420403] hub 3-0:1.0: hub_resume
[   34.420434] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.420438] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.420475] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.420478] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.420538] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.420577] hub 3-0:1.0: hub_suspend
[   34.420597] usb usb3: bus auto-suspend, wakeup 1
[   34.420613] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.422252] usb usb3: usb auto-resume
[   34.432435] hub 3-0:1.0: hub_resume
[   34.432450] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.432454] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.432473] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.432476] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.432533] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.432558] hub 3-0:1.0: hub_suspend
[   34.432579] usb usb3: bus auto-suspend, wakeup 1
[   34.432595] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.432652] usb usb3: usb auto-resume
[   34.444386] hub 3-0:1.0: hub_resume
[   34.444402] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.444407] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.444431] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.444434] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.444493] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.444519] hub 3-0:1.0: hub_suspend
[   34.444541] usb usb3: bus auto-suspend, wakeup 1
[   34.444557] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.446128] usb usb3: usb auto-resume
[   34.456419] hub 3-0:1.0: hub_resume
[   34.456435] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.456439] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.456461] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.456464] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.456524] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.456550] hub 3-0:1.0: hub_suspend
[   34.456572] usb usb3: bus auto-suspend, wakeup 1
[   34.456589] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.456622] usb usb3: usb auto-resume
[   34.468370] hub 3-0:1.0: hub_resume
[   34.468387] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.468391] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.468415] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.468418] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.468479] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.468505] hub 3-0:1.0: hub_suspend
[   34.468527] usb usb3: bus auto-suspend, wakeup 1
[   34.468544] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.470228] usb usb3: usb auto-resume
[   34.480403] hub 3-0:1.0: hub_resume
[   34.480420] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.480424] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.480445] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.480448] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.480509] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.480535] hub 3-0:1.0: hub_suspend
[   34.480557] usb usb3: bus auto-suspend, wakeup 1
[   34.480573] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.480606] usb usb3: usb auto-resume
[   34.492353] hub 3-0:1.0: hub_resume
[   34.492370] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.492374] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.492399] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.492402] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.492461] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.492487] hub 3-0:1.0: hub_suspend
[   34.492509] usb usb3: bus auto-suspend, wakeup 1
[   34.492526] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.494218] usb usb3: usb auto-resume
[   34.504385] hub 3-0:1.0: hub_resume
[   34.504402] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.504406] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.504428] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.504431] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.504492] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.504518] hub 3-0:1.0: hub_suspend
[   34.504540] usb usb3: bus auto-suspend, wakeup 1
[   34.504557] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.504590] usb usb3: usb auto-resume
[   34.516336] hub 3-0:1.0: hub_resume
[   34.516353] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.516357] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.516381] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.516384] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.516443] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.516470] hub 3-0:1.0: hub_suspend
[   34.516492] usb usb3: bus auto-suspend, wakeup 1
[   34.516508] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.519587] usb usb3: usb auto-resume
[   34.528375] hub 3-0:1.0: hub_resume
[   34.528406] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.528410] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.528518] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.528525] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.528591] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.528616] hub 3-0:1.0: hub_suspend
[   34.528637] usb usb3: bus auto-suspend, wakeup 1
[   34.528652] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.528712] usb usb3: usb auto-resume
[   34.540325] hub 3-0:1.0: hub_resume
[   34.540354] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.540358] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.540395] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.540398] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.540460] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.540497] hub 3-0:1.0: hub_suspend
[   34.540517] usb usb3: bus auto-suspend, wakeup 1
[   34.540533] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.544419] usb usb3: usb auto-resume
[   34.556320] hub 3-0:1.0: hub_resume
[   34.556340] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.556344] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.556378] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.556382] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.556491] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.556515] hub 3-0:1.0: hub_suspend
[   34.556535] usb usb3: bus auto-suspend, wakeup 1
[   34.556551] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.556572] usb usb3: usb auto-resume
[   34.568300] hub 3-0:1.0: hub_resume
[   34.568316] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.568321] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.568345] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.568348] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.568408] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.568434] hub 3-0:1.0: hub_suspend
[   34.568456] usb usb3: bus auto-suspend, wakeup 1
[   34.568472] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.570101] usb usb3: usb auto-resume
[   34.580332] hub 3-0:1.0: hub_resume
[   34.580349] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.580353] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.580375] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.580378] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.580437] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.580463] hub 3-0:1.0: hub_suspend
[   34.580485] usb usb3: bus auto-suspend, wakeup 1
[   34.580502] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.580563] usb usb3: usb auto-resume
[   34.592284] hub 3-0:1.0: hub_resume
[   34.592300] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.592304] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.592329] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.592332] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.592392] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.592418] hub 3-0:1.0: hub_suspend
[   34.592440] usb usb3: bus auto-suspend, wakeup 1
[   34.592456] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.594338] usb usb3: usb auto-resume
[   34.604316] hub 3-0:1.0: hub_resume
[   34.604333] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.604337] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.604358] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.604361] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.604420] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.604446] hub 3-0:1.0: hub_suspend
[   34.604468] usb usb3: bus auto-suspend, wakeup 1
[   34.604485] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.604518] usb usb3: usb auto-resume
[   34.616265] hub 3-0:1.0: hub_resume
[   34.616282] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.616286] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.616311] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.616314] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.616376] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.616402] hub 3-0:1.0: hub_suspend
[   34.616424] usb usb3: bus auto-suspend, wakeup 1
[   34.616439] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.618307] usb usb3: usb auto-resume
[   34.628300] hub 3-0:1.0: hub_resume
[   34.628317] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.628321] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.628343] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.628346] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.628406] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.628432] hub 3-0:1.0: hub_suspend
[   34.628454] usb usb3: bus auto-suspend, wakeup 1
[   34.628471] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.628504] usb usb3: usb auto-resume
[   34.640248] hub 3-0:1.0: hub_resume
[   34.640265] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.640269] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.640293] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.640297] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.640358] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.640384] hub 3-0:1.0: hub_suspend
[   34.640406] usb usb3: bus auto-suspend, wakeup 1
[   34.640422] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.642843] usb usb3: usb auto-resume
[   34.652338] hub 3-0:1.0: hub_resume
[   34.652359] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.652363] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.652467] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.652474] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.652543] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.652570] hub 3-0:1.0: hub_suspend
[   34.652592] usb usb3: bus auto-suspend, wakeup 1
[   34.652609] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   34.652628] usb usb3: usb auto-resume
[   34.664233] hub 3-0:1.0: hub_resume
[   34.664268] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   34.664272] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.664310] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   34.664313] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   34.664375] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   34.664411] hub 3-0:1.0: hub_suspend
[   34.664433] usb usb3: bus auto-suspend, wakeup 1
[   34.664449] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   35.667422] usb usb3: usb auto-resume
[   35.667483] hub 3-0:1.0: hub_resume
[   35.667496] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   35.667499] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.667535] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   35.667538] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.667605] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   35.667626] hub 3-0:1.0: hub_suspend
[   35.667647] usb usb3: bus auto-suspend, wakeup 1
[   35.667665] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   35.667747] usb usb3: usb auto-resume
[   35.679630] hub 3-0:1.0: hub_resume
[   35.679661] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   35.679666] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.679770] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   35.679777] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.679913] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   35.679950] hub 3-0:1.0: hub_suspend
[   35.679971] usb usb3: bus auto-suspend, wakeup 1
[   35.679989] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   35.683968] usb usb3: usb auto-resume
[   35.695578] hub 3-0:1.0: hub_resume
[   35.695605] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   35.695612] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.695649] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   35.695652] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.695712] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   35.695760] hub 3-0:1.0: hub_suspend
[   35.695825] usb usb3: bus auto-suspend, wakeup 1
[   35.695845] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   35.695946] usb usb3: usb auto-resume
[   35.707544] hub 3-0:1.0: hub_resume
[   35.707568] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   35.707573] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.707657] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   35.707664] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.707735] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   35.707770] hub 3-0:1.0: hub_suspend
[   35.707791] usb usb3: bus auto-suspend, wakeup 1
[   35.707807] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   35.712241] usb usb3: usb auto-resume
[   35.723551] hub 3-0:1.0: hub_resume
[   35.723590] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   35.723598] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.723691] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   35.723698] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.723746] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   35.723785] hub 3-0:1.0: hub_suspend
[   35.723845] usb usb3: bus auto-suspend, wakeup 1
[   35.723863] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   35.723956] usb usb3: usb auto-resume
[   35.735466] hub 3-0:1.0: hub_resume
[   35.735486] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   35.735490] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.735561] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   35.735567] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.735637] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   35.735662] hub 3-0:1.0: hub_suspend
[   35.735682] usb usb3: bus auto-suspend, wakeup 1
[   35.735698] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   35.737313] usb usb3: usb auto-resume
[   35.747497] hub 3-0:1.0: hub_resume
[   35.747519] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   35.747524] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.747550] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   35.747553] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.747633] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   35.747657] hub 3-0:1.0: hub_suspend
[   35.747677] usb usb3: bus auto-suspend, wakeup 1
[   35.747693] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   35.747707] usb usb3: usb auto-resume
[   35.759503] hub 3-0:1.0: hub_resume
[   35.759527] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   35.759532] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.759560] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   35.759563] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.759620] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   35.759648] hub 3-0:1.0: hub_suspend
[   35.759670] usb usb3: bus auto-suspend, wakeup 1
[   35.759687] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   35.762654] usb usb3: usb auto-resume
[   35.771512] hub 3-0:1.0: hub_resume
[   35.771548] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   35.771553] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.771656] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   35.771663] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.771782] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   35.771806] hub 3-0:1.0: hub_suspend
[   35.771826] usb usb3: bus auto-suspend, wakeup 1
[   35.771842] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   35.771868] usb usb3: usb auto-resume
[   35.783493] hub 3-0:1.0: hub_resume
[   35.783518] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   35.783522] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.783550] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   35.783553] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.783611] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   35.783638] hub 3-0:1.0: hub_suspend
[   35.783660] usb usb3: bus auto-suspend, wakeup 1
[   35.783677] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   35.788726] usb usb3: usb auto-resume
[   35.799526] hub 3-0:1.0: hub_resume
[   35.799547] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   35.799550] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.799621] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   35.799628] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.799691] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   35.799717] hub 3-0:1.0: hub_suspend
[   35.799737] usb usb3: bus auto-suspend, wakeup 1
[   35.799754] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   35.799771] usb usb3: usb auto-resume
[   35.811480] hub 3-0:1.0: hub_resume
[   35.811505] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   35.811509] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.811534] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   35.811537] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.811593] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   35.811618] hub 3-0:1.0: hub_suspend
[   35.811639] usb usb3: bus auto-suspend, wakeup 1
[   35.811655] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   35.815476] usb usb3: usb auto-resume
[   35.827477] hub 3-0:1.0: hub_resume
[   35.827496] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   35.827500] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.827543] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   35.827546] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.827651] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   35.827675] hub 3-0:1.0: hub_suspend
[   35.827693] usb usb3: bus auto-suspend, wakeup 1
[   35.827709] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   35.827722] usb usb3: usb auto-resume
[   35.839445] hub 3-0:1.0: hub_resume
[   35.839477] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   35.839481] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.839518] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   35.839520] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.839576] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   35.839609] hub 3-0:1.0: hub_suspend
[   35.839628] usb usb3: bus auto-suspend, wakeup 1
[   35.839643] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   35.849873] wlan0: authenticate with 00:04:0e:e4:00:3d
[   35.854542] wlan0: send auth to 00:04:0e:e4:00:3d (try 1/3)
[   35.856287] wlan0: authenticated
[   35.856489] iwlwifi 0000:01:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
[   35.856495] iwlwifi 0000:01:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
[   35.859324] wlan0: associate with 00:04:0e:e4:00:3d (try 1/3)
[   35.862795] wlan0: RX AssocResp from 00:04:0e:e4:00:3d (capab=0x411 status=0 aid=1)
[   35.869569] wlan0: associated
[   35.869690] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   35.887217] usb usb3: usb auto-resume
[   35.887242] hub 3-0:1.0: hub_resume
[   35.887256] xhci_hcd 0000:03:00.0: get port status, actual port 0 status  = 0x2a0
[   35.887260] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.887298] xhci_hcd 0000:03:00.0: get port status, actual port 1 status  = 0x2a0
[   35.887300] xhci_hcd 0000:03:00.0: Get port status returned 0x100
[   35.887501] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[   35.887520] hub 3-0:1.0: hub_suspend
[   35.887540] usb usb3: bus auto-suspend, wakeup 1
[   35.887556] xhci_hcd 0000:03:00.0: xhci_hub_status_data: stopping port polling.
[   36.223130] usb 1-1.2: unlink qh8-0e01/ffff880075744cc0 start 3 [1/2 us]
[   37.886247] usb 1-1.4: usb auto-suspend, wakeup 0


More information about the Intel-gfx mailing list