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

From: Sedat Dilek
Date: Thu Jul 25 2013 - 14:03:54 EST


On Thu, Jul 25, 2013 at 7:55 PM, Sedat Dilek <sedat.dilek@xxxxxxxxx> wrote:
> On Thu, Jul 25, 2013 at 7:52 PM, Sedat Dilek <sedat.dilek@xxxxxxxxx> wrote:
>> On Thu, Jul 25, 2013 at 7:26 PM, Chris Wilson <chris@xxxxxxxxxxxxxxxxxx> wrote:
>>> On Thu, Jul 25, 2013 at 07:15:03PM +0200, Sedat Dilek wrote:
>>>> On Thu, Jul 25, 2013 at 7:01 PM, Chris Wilson <chris@xxxxxxxxxxxxxxxxxx> wrote:
>>>> > Basically boils down to either an object allocation failure or mmaping
>>>> > failure. I think dmesg with drm.debug=7 is the next step.
>>>>
>>>> Attached! Thanks for taking care.
>>>
>>> Hmm, looks like i915_gem_map_gtt fails, but no reason given, so can you
>>> please apply this for more debug:
>>>
>>> diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
>>> index 0563661..34e09bf 100644
>>> --- a/drivers/gpu/drm/i915/i915_gem.c
>>> +++ b/drivers/gpu/drm/i915/i915_gem.c
>>> @@ -1630,24 +1630,29 @@ i915_gem_mmap_gtt(struct drm_file *file,
>>>
>>> obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
>>> if (&obj->base == NULL) {
>>> + DRM_DRIVER_DEBUG("Unknown object handle %d\n", handle);
>>> ret = -ENOENT;
>>> goto unlock;
>>> }
>>>
>>> if (obj->base.size > dev_priv->gtt.mappable_end) {
>>> + DRM_DRIVER_DEBUG("Object (%d) larger than mappable aperture (%d) > %d\n",
>>> + (int)obj->base.size, (int)dev_priv->gtt.mappable_end);
>>> ret = -E2BIG;
>>> goto out;
>>> }
>>>
>>> if (obj->madv != I915_MADV_WILLNEED) {
>>> - DRM_ERROR("Attempting to mmap a purgeable buffer\n");
>>> + DRM_DRIVER_DEBUG("Attempting to mmap a purgeable buffer\n");
>>> ret = -EINVAL;
>>> goto out;
>>> }
>>>
>>> ret = i915_gem_object_create_mmap_offset(obj);
>>> - if (ret)
>>> + if (ret) {
>>> + DRM_DRIVER_DEBUG("Failed to allocate mmap offset (ret=%d)\n", ret);
>>> goto out;
>>> + }
>>>
>>> *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
>>>
>>> --
>>
>> This does not apply... After refreshing and some cleanups... does not build:
>>
>> $ LANG=C LC_ALL=C make M=drivers/gpu/drm/i915
>> LD drivers/gpu/drm/i915/built-in.o
>> CC [M] drivers/gpu/drm/i915/i915_drv.o
>> CC [M] drivers/gpu/drm/i915/i915_dma.o
>> CC [M] drivers/gpu/drm/i915/i915_irq.o
>> CC [M] drivers/gpu/drm/i915/i915_debugfs.o
>> CC [M] drivers/gpu/drm/i915/i915_gpu_error.o
>> CC [M] drivers/gpu/drm/i915/i915_suspend.o
>> CC [M] drivers/gpu/drm/i915/i915_gem.o
>> drivers/gpu/drm/i915/i915_gem.c: In function 'i915_gem_mmap_gtt':
>> drivers/gpu/drm/i915/i915_gem.c:1538:3: error: implicit declaration of
>> function 'DRM_DRIVER_DEBUG' [-Werror=implicit-function-declaration]
>> cc1: some warnings being treated as errors
>> make[1]: *** [drivers/gpu/drm/i915/i915_gem.o] Error 1
>> make: *** [_module_drivers/gpu/drm/i915] Error 2
>>
>
> F*ck. Wrong patch refreshed.
>

New dmesg attached.

- S.

> - S.
>
>> - Sedat -
>>
>>> Chris Wilson, Intel Open Source Technology Centre
>>> --
>>> To unsubscribe from this list: send the line "unsubscribe linux-next" in
>>> the body of a message to majordomo@xxxxxxxxxxxxxxx
>>> More majordomo info at http://vger.kernel.org/majordomo-info.html
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 3.11.0-rc2-next20130725-6-iniza-small (sedat.dilek@xxxxxxxxx@fambox) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #1 SMP Thu Jul 25 17:34:28 CEST 2013
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz.next root=UUID=001AADA61AAD9964 loop=/ubuntu/disks/root.disk ro text drm.debug=7
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Centaur CentaurHauls
[ 0.000000] Disabled fast string operations
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000040200000-0x00000000d9c9efff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d9c9f000-0x00000000dae7efff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000dae7f000-0x00000000daf9efff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000daf9f000-0x00000000daffefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000dafff000-0x00000000daffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000db000000-0x00000000df9fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ffd80000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011fdfffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.6 present.
[ 0.000000] DMI: SAMSUNG ELECTRONICS CO., LTD. 530U3BI/530U4BI/530U4BH/530U3BI/530U4BI/530U4BH, BIOS 13XK 03/28/2013
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] No AGP bridge found
[ 0.000000] e820: last_pfn = 0x11fe00 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000000000 mask F80000000 write-back
[ 0.000000] 1 base 080000000 mask FC0000000 write-back
[ 0.000000] 2 base 0C0000000 mask FE0000000 write-back
[ 0.000000] 3 base 0DC000000 mask FFC000000 uncachable
[ 0.000000] 4 base 0DB000000 mask FFF000000 uncachable
[ 0.000000] 5 base 100000000 mask FE0000000 write-back
[ 0.000000] 6 base 11FE00000 mask FFFE00000 uncachable
[ 0.000000] 7 base 0FFC00000 mask FFFC00000 write-protect
[ 0.000000] 8 disabled
[ 0.000000] 9 disabled
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] e820: last_pfn = 0xdb000 max_arch_pfn = 0x400000000
[ 0.000000] found SMP MP-table at [mem 0x000f00e0-0x000f00ef] mapped at [ffff8800000f00e0]
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
[ 0.000000] reserving inaccessible SNB gfx pages
[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[ 0.000000] [mem 0x00000000-0x000fffff] page 4k
[ 0.000000] BRK [0x0204c000, 0x0204cfff] PGTABLE
[ 0.000000] BRK [0x0204d000, 0x0204dfff] PGTABLE
[ 0.000000] BRK [0x0204e000, 0x0204efff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x11fc00000-0x11fdfffff]
[ 0.000000] [mem 0x11fc00000-0x11fdfffff] page 2M
[ 0.000000] BRK [0x0204f000, 0x0204ffff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x11c000000-0x11fbfffff]
[ 0.000000] [mem 0x11c000000-0x11fbfffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x100000000-0x11bffffff]
[ 0.000000] [mem 0x100000000-0x11bffffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
[ 0.000000] [mem 0x00100000-0x001fffff] page 4k
[ 0.000000] [mem 0x00200000-0x1fffffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x20200000-0x3fffffff]
[ 0.000000] [mem 0x20200000-0x3fffffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x40200000-0xd9c9efff]
[ 0.000000] [mem 0x40200000-0xd9bfffff] page 2M
[ 0.000000] [mem 0xd9c00000-0xd9c9efff] page 4k
[ 0.000000] BRK [0x02050000, 0x02050fff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0xdafff000-0xdaffffff]
[ 0.000000] [mem 0xdafff000-0xdaffffff] page 4k
[ 0.000000] RAMDISK: [mem 0x37962000-0x37ca8fff]
[ 0.000000] ACPI: RSDP 00000000000f0100 00024 (v02 SECCSD)
[ 0.000000] ACPI: XSDT 00000000daffe170 0008C (v01 SECCSD LH43STAR 00000002 PTEC 00000002)
[ 0.000000] ACPI: FACP 00000000dafef000 0010C (v05 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: DSDT 00000000daff2000 083AC (v02 SECCSD SNB-CPT 00000000 INTL 20061109)
[ 0.000000] ACPI: FACS 00000000daf47000 00040
[ 0.000000] ACPI: SLIC 00000000daffd000 00176 (v01 SECCSD LH43STAR 00000002 PTEC 00000001)
[ 0.000000] ACPI: SSDT 00000000daffb000 01068 (v01 SECCSD PtidDevc 00001000 INTL 20061109)
[ 0.000000] ACPI: ASF! 00000000daff1000 000A5 (v32 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: HPET 00000000dafee000 00038 (v01 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: APIC 00000000dafed000 00098 (v03 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: MCFG 00000000dafec000 0003C (v01 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: SSDT 00000000dafeb000 00804 (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
[ 0.000000] ACPI: SSDT 00000000dafea000 00996 (v01 PmRef CpuPm 00003000 INTL 20061109)
[ 0.000000] ACPI: UEFI 00000000dafe9000 0003E (v01 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: UEFI 00000000dafe8000 00042 (v01 PTL COMBUF 00000001 PTL 00000001)
[ 0.000000] ACPI: UEFI 00000000dafe7000 0026A (v01 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: SSDT 00000000dafe6000 000D0 (v01 Iffs IffsAsl 00003000 INTL 20061109)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000011fdfffff]
[ 0.000000] Initmem setup node 0 [mem 0x00000000-0x11fdfffff]
[ 0.000000] NODE_DATA [mem 0x11fdf7000-0x11fdfbfff]
[ 0.000000] [ffffea0000000000-ffffea0003ffffff] PMD -> [ffff88011b400000-ffff88011edfffff] on node 0
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x00001000-0x00ffffff]
[ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
[ 0.000000] Normal [mem 0x100000000-0x11fdfffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
[ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
[ 0.000000] node 0: [mem 0x20200000-0x3fffffff]
[ 0.000000] node 0: [mem 0x40200000-0xd9c9efff]
[ 0.000000] node 0: [mem 0xdafff000-0xdaffffff]
[ 0.000000] node 0: [mem 0x100000000-0x11fdfffff]
[ 0.000000] On node 0 totalpages: 1021500
[ 0.000000] DMA zone: 56 pages used for memmap
[ 0.000000] DMA zone: 156 pages reserved
[ 0.000000] DMA zone: 3996 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 12127 pages used for memmap
[ 0.000000] DMA32 zone: 886944 pages, LIFO batch:31
[ 0.000000] Normal zone: 1785 pages used for memmap
[ 0.000000] Normal zone: 130560 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x408
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x0e] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 14, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ2 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 40
[ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x40000000-0x401fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xd9c9f000-0xdae7efff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdae7f000-0xdaf9efff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdaf9f000-0xdaffefff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdb000000-0xdf9fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdfa00000-0xf7ffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffd7ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xffd80000-0xffffffff]
[ 0.000000] e820: [mem 0xdfa00000-0xf7ffffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88011fa00000 s87552 r8192 d23040 u262144
[ 0.000000] pcpu-alloc: s87552 r8192 d23040 u262144 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1007376
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz.next root=UUID=001AADA61AAD9964 loop=/ubuntu/disks/root.disk ro text drm.debug=7
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[ 0.000000] Checking aperture...
[ 0.000000] No AGP bridge found
[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[ 0.000000] Memory: 3938460K/4086000K available (7119K kernel code, 1044K rwdata, 3132K rodata, 1332K init, 1984K bss, 147540K reserved)
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
[ 0.000000] NR_IRQS:16640 nr_irqs:744 16
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] allocated 16777216 bytes of page_cgroup
[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[ 0.000000] ODEBUG: 0 of 0 active objects replaced
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.004000] tsc: Detected 1596.346 MHz processor
[ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 3192.69 BogoMIPS (lpj=6385384)
[ 0.000080] pid_max: default: 32768 minimum: 301
[ 0.000245] Security Framework initialized
[ 0.000303] AppArmor: AppArmor initialized
[ 0.000340] Yama: becoming mindful.
[ 0.000749] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.001857] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.002361] Mount-cache hash table entries: 256
[ 0.002915] Initializing cgroup subsys memory
[ 0.003012] Initializing cgroup subsys devices
[ 0.003051] Initializing cgroup subsys freezer
[ 0.003089] Initializing cgroup subsys blkio
[ 0.003126] Initializing cgroup subsys perf_event
[ 0.003164] Initializing cgroup subsys hugetlb
[ 0.003251] Disabled fast string operations
[ 0.003289] CPU: Physical Processor ID: 0
[ 0.003325] CPU: Processor Core ID: 0
[ 0.003365] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.003365] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.003430] mce: CPU supports 7 MCE banks
[ 0.003481] CPU0: Thermal monitoring enabled (TM1)
[ 0.003526] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
[ 0.003526] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
[ 0.003526] tlb_flushall_shift: 5
[ 0.003698] Freeing SMP alternatives memory: 24K (ffffffff81e54000 - ffffffff81e5a000)
[ 0.004786] ACPI: Core revision 20130626
[ 0.015646] ACPI: All ACPI Tables successfully acquired
[ 0.031019] ftrace: allocating 27066 entries in 106 pages
[ 0.046598] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.086297] smpboot: CPU0: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz (fam: 06, model: 2a, stepping: 07)
[ 0.086910] TSC deadline timer enabled
[ 0.086922] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
[ 0.087071] ... version: 3
[ 0.087106] ... bit width: 48
[ 0.087142] ... generic registers: 4
[ 0.087178] ... value mask: 0000ffffffffffff
[ 0.087217] ... max period: 0000ffffffffffff
[ 0.087255] ... fixed-purpose events: 3
[ 0.087290] ... event mask: 000000070000000f
[ 0.100426] Disabled fast string operations
[ 0.103611] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.115290] Disabled fast string operations
[ 0.129002] Disabled fast string operations
[ 0.089340] smpboot: Booting Node 0, Processors #1 #2 #3
[ 0.131134] Brought up 4 CPUs
[ 0.131239] smpboot: Total of 4 processors activated (12770.76 BogoMIPS)
[ 0.135352] devtmpfs: initialized
[ 0.137407] EVM: security.selinux
[ 0.137442] EVM: security.SMACK64
[ 0.137476] EVM: security.capability
[ 0.137606] PM: Registering ACPI NVS region [mem 0xdae7f000-0xdaf9efff] (1179648 bytes)
[ 0.139147] regulator-dummy: no parameters
[ 0.139336] NET: Registered protocol family 16
[ 0.139682] cpuidle: using governor ladder
[ 0.139719] cpuidle: using governor menu
[ 0.139802] ACPI: bus type PCI registered
[ 0.139953] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 0.140012] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[ 0.146795] PCI: Using configuration type 1 for base access
[ 0.150196] bio: create slab <bio-0> at 0
[ 0.150651] ACPI: Added _OSI(Module Device)
[ 0.150689] ACPI: Added _OSI(Processor Device)
[ 0.150726] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.150763] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.152566] ACPI: EC: Look up EC in DSDT
[ 0.179001] ACPI: Executed 1 blocks of module-level executable AML code
[ 0.185053] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[ 0.196703] ACPI: SSDT 00000000dae70718 00688 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
[ 0.197290] ACPI: Dynamic OEM Table Load:
[ 0.197360] ACPI: SSDT (null) 00688 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
[ 0.207436] ACPI: SSDT 00000000dae71a98 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
[ 0.208103] ACPI: Dynamic OEM Table Load:
[ 0.208173] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
[ 0.219324] ACPI: SSDT 00000000dae6fd98 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
[ 0.219883] ACPI: Dynamic OEM Table Load:
[ 0.219952] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
[ 0.233489] ACPI: Interpreter enabled
[ 0.233539] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130626/hwxface-571)
[ 0.233648] ACPI: (supports S0 S1 S3 S4 S5)
[ 0.233685] ACPI: Using IOAPIC for interrupt routing
[ 0.233779] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.234064] ACPI: No dock devices found.
[ 0.257568] ACPI: Power Resource [FN00] (off)
[ 0.257791] ACPI: Power Resource [FN01] (off)
[ 0.258007] ACPI: Power Resource [FN02] (off)
[ 0.258222] ACPI: Power Resource [FN03] (off)
[ 0.258442] ACPI: Power Resource [FN04] (off)
[ 0.259627] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[ 0.260002] \_SB_.PCI0:_OSC invalid UUID
[ 0.260004] _OSC request data:1 8 0
[ 0.260975] PCI host bridge to bus 0000:00
[ 0.261015] pci_bus 0000:00: root bus resource [bus 00-3e]
[ 0.261055] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
[ 0.261096] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
[ 0.261136] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[ 0.261177] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfeafffff]
[ 0.261219] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
[ 0.261275] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
[ 0.261428] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
[ 0.261441] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit]
[ 0.261448] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[ 0.261454] pci 0000:00:02.0: reg 0x20: [io 0x3000-0x303f]
[ 0.261634] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[ 0.261661] pci 0000:00:16.0: reg 0x10: [mem 0xf0705000-0xf070500f 64bit]
[ 0.261746] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.261902] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[ 0.261926] pci 0000:00:1a.0: reg 0x10: [mem 0xf070a000-0xf070a3ff]
[ 0.262027] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.262132] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[ 0.262152] pci 0000:00:1b.0: reg 0x10: [mem 0xf0700000-0xf0703fff 64bit]
[ 0.262230] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.262276] pci 0000:00:1b.0: System wakeup disabled by ACPI
[ 0.262382] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[ 0.262473] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.262521] pci 0000:00:1c.0: System wakeup disabled by ACPI
[ 0.262630] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
[ 0.262719] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 0.262780] pci 0000:00:1c.3: System wakeup disabled by ACPI
[ 0.262885] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[ 0.262979] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.263106] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[ 0.263136] pci 0000:00:1d.0: reg 0x10: [mem 0xf0709000-0xf07093ff]
[ 0.263237] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.263341] pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
[ 0.263536] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
[ 0.263558] pci 0000:00:1f.2: reg 0x10: [io 0x3088-0x308f]
[ 0.263568] pci 0000:00:1f.2: reg 0x14: [io 0x3094-0x3097]
[ 0.263578] pci 0000:00:1f.2: reg 0x18: [io 0x3080-0x3087]
[ 0.263588] pci 0000:00:1f.2: reg 0x1c: [io 0x3090-0x3093]
[ 0.263598] pci 0000:00:1f.2: reg 0x20: [io 0x3060-0x307f]
[ 0.263609] pci 0000:00:1f.2: reg 0x24: [mem 0xf0708000-0xf07087ff]
[ 0.263661] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.263777] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[ 0.263795] pci 0000:00:1f.3: reg 0x10: [mem 0xf0704000-0xf07040ff 64bit]
[ 0.263820] pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf]
[ 0.264189] pci 0000:01:00.0: [8086:0091] type 00 class 0x028000
[ 0.264369] pci 0000:01:00.0: reg 0x10: [mem 0xf0600000-0xf0601fff 64bit]
[ 0.265104] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.265275] pci 0000:01:00.0: System wakeup disabled by ACPI
[ 0.271269] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.271313] pci 0000:00:1c.0: bridge window [mem 0xf0600000-0xf06fffff]
[ 0.271492] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[ 0.271562] pci 0000:02:00.0: reg 0x10: [io 0x2000-0x20ff]
[ 0.271685] pci 0000:02:00.0: reg 0x18: [mem 0xf0404000-0xf0404fff 64bit pref]
[ 0.271761] pci 0000:02:00.0: reg 0x20: [mem 0xf0400000-0xf0403fff 64bit pref]
[ 0.272090] pci 0000:02:00.0: supports D1 D2
[ 0.272092] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.272219] pci 0000:02:00.0: System wakeup disabled by ACPI
[ 0.279204] pci 0000:00:1c.3: PCI bridge to [bus 02]
[ 0.279266] pci 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
[ 0.279276] pci 0000:00:1c.3: bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
[ 0.279401] pci 0000:03:00.0: [1b21:1042] type 00 class 0x0c0330
[ 0.279439] pci 0000:03:00.0: reg 0x10: [mem 0xf0500000-0xf0507fff 64bit]
[ 0.279638] pci 0000:03:00.0: PME# supported from D3hot D3cold
[ 0.287174] pci 0000:00:1c.4: PCI bridge to [bus 03]
[ 0.287251] pci 0000:00:1c.4: bridge window [mem 0xf0500000-0xf05fffff]
[ 0.287434] \_SB_.PCI0:_OSC invalid UUID
[ 0.287436] _OSC request data:1 1f 0
[ 0.287441] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[ 0.287497] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
[ 0.288456] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[ 0.288805] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.289198] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[ 0.289543] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[ 0.289888] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
[ 0.290262] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.290654] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[ 0.291003] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
[ 0.291846] ACPI: Enabled 4 GPEs in block 00 to 3F
[ 0.291923] ACPI: \_SB_.PCI0: notify handler is installed
[ 0.291985] Found 1 acpi root devices
[ 0.292055] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[ 0.292409] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.292467] vgaarb: loaded
[ 0.292501] vgaarb: bridge control possible 0000:00:02.0
[ 0.293215] SCSI subsystem initialized
[ 0.293252] ACPI: bus type ATA registered
[ 0.293386] libata version 3.00 loaded.
[ 0.293449] ACPI: bus type USB registered
[ 0.293530] usbcore: registered new interface driver usbfs
[ 0.293593] usbcore: registered new interface driver hub
[ 0.293687] usbcore: registered new device driver usb
[ 0.294070] PCI: Using ACPI for IRQ routing
[ 0.295780] PCI: pci_cache_line_size set to 64 bytes
[ 0.295891] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[ 0.295894] e820: reserve RAM buffer [mem 0xd9c9f000-0xdbffffff]
[ 0.295896] e820: reserve RAM buffer [mem 0xdb000000-0xdbffffff]
[ 0.295898] e820: reserve RAM buffer [mem 0x11fe00000-0x11fffffff]
[ 0.296142] NetLabel: Initializing
[ 0.296178] NetLabel: domain hash size = 128
[ 0.296214] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.296298] NetLabel: unlabeled traffic allowed by default
[ 0.296433] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.296624] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.298685] Switched to clocksource hpet
[ 0.316395] AppArmor: AppArmor Filesystem Enabled
[ 0.316485] pnp: PnP ACPI init
[ 0.316536] ACPI: bus type PNP registered
[ 0.316982] pnp 00:00: [dma 4]
[ 0.317025] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[ 0.317071] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
[ 0.317237] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
[ 0.317295] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[ 0.317374] system 00:04: [io 0x0680-0x069f] has been reserved
[ 0.317417] system 00:04: [io 0x1000-0x100f] has been reserved
[ 0.317457] system 00:04: [io 0x5000-0x5003] has been reserved
[ 0.317498] system 00:04: [io 0xffff] has been reserved
[ 0.317538] system 00:04: [io 0x0400-0x0453] could not be reserved
[ 0.317579] system 00:04: [io 0x0458-0x047f] has been reserved
[ 0.317619] system 00:04: [io 0x0500-0x057f] has been reserved
[ 0.317659] system 00:04: [io 0x0a00-0x0a0f] has been reserved
[ 0.317700] system 00:04: [io 0x164e-0x164f] has been reserved
[ 0.317740] system 00:04: [io 0x5000-0x500f] could not be reserved
[ 0.317782] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.317833] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.317925] system 00:06: [io 0x0454-0x0457] has been reserved
[ 0.317966] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[ 0.318025] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[ 0.318110] pnp 00:08: Plug and Play ACPI device, IDs ETD0b00 SYN0002 PNP0f13 (active)
[ 0.318422] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.318465] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.318507] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.318548] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.318590] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
[ 0.318632] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.318684] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.318726] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.318769] system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
[ 0.318811] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.318854] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.319621] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.319660] pnp: PnP ACPI: found 11 devices
[ 0.319697] ACPI: bus type PNP unregistered
[ 0.327791] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.327835] pci 0000:00:1c.0: bridge window [mem 0xf0600000-0xf06fffff]
[ 0.327886] pci 0000:00:1c.3: PCI bridge to [bus 02]
[ 0.327926] pci 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
[ 0.327974] pci 0000:00:1c.3: bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
[ 0.328035] pci 0000:00:1c.4: PCI bridge to [bus 03]
[ 0.328077] pci 0000:00:1c.4: bridge window [mem 0xf0500000-0xf05fffff]
[ 0.328548] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 0.328550] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 0.328552] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 0.328555] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfeafffff]
[ 0.328556] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
[ 0.328559] pci_bus 0000:01: resource 1 [mem 0xf0600000-0xf06fffff]
[ 0.328561] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
[ 0.328563] pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf04fffff 64bit pref]
[ 0.328565] pci_bus 0000:03: resource 1 [mem 0xf0500000-0xf05fffff]
[ 0.328700] NET: Registered protocol family 2
[ 0.329112] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
[ 0.329348] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes)
[ 0.329678] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.329975] TCP: reno registered
[ 0.330028] UDP hash table entries: 2048 (order: 5, 196608 bytes)
[ 0.330132] UDP-Lite hash table entries: 2048 (order: 5, 196608 bytes)
[ 0.330428] NET: Registered protocol family 1
[ 0.330485] pci 0000:00:02.0: Boot video device
[ 0.331273] PCI: CLS 64 bytes, default 64
[ 0.331485] Trying to unpack rootfs image as initramfs...
[ 0.407321] Freeing initrd memory: 3356K (ffff880037962000 - ffff880037ca9000)
[ 0.407381] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.407422] software IO TLB [mem 0xd5c9f000-0xd9c9f000] (64MB) mapped at [ffff8800d5c9f000-ffff8800d9c9efff]
[ 0.407861] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x28
[ 0.407909] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x28
[ 0.407960] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x28
[ 0.408013] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x28
[ 0.408137] microcode: Microcode Update Driver: v2.00 <tigran@xxxxxxxxxxxxxxxxxxxx>, Peter Oruba
[ 0.408195] Scanning for low memory corruption every 60 seconds
[ 0.408837] Initialise module verification
[ 0.408939] audit: initializing netlink socket (disabled)
[ 0.408999] type=2000 audit(1374782239.392:1): initialized
[ 0.439177] bounce pool size: 64 pages
[ 0.439739] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.440461] VFS: Disk quotas dquot_6.5.2
[ 0.440539] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.441409] fuse init (API version 7.22)
[ 0.441556] msgmni has been set to 7698
[ 0.442263] Key type asymmetric registered
[ 0.442300] Asymmetric key parser 'x509' registered
[ 0.442386] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[ 0.442497] io scheduler noop registered
[ 0.442534] io scheduler deadline registered (default)
[ 0.442665] io scheduler cfq registered
[ 0.443080] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 0.443159] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 0.443345] intel_idle: MWAIT substates: 0x21120
[ 0.443346] intel_idle: v0.4 model 0x2A
[ 0.443348] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 0.444120] ACPI: AC Adapter [ADP1] (off-line)
[ 0.444501] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
[ 0.444703] ACPI: Lid Switch [LID0]
[ 0.444837] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[ 0.444898] ACPI: Power Button [PWRB]
[ 0.445000] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.445056] ACPI: Power Button [PWRF]
[ 0.445191] ACPI: Fan [FAN0] (off)
[ 0.445279] ACPI: Fan [FAN1] (off)
[ 0.445363] ACPI: Fan [FAN2] (off)
[ 0.445448] ACPI: Fan [FAN3] (off)
[ 0.445535] ACPI: Fan [FAN4] (off)
[ 0.445655] ACPI: Requesting acpi_cpufreq
[ 0.449361] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.449401] ACPI: Thermal Zone [TZ00] (71 C)
[ 0.449815] thermal LNXTHERM:01: registered as thermal_zone1
[ 0.449854] ACPI: Thermal Zone [TZ01] (30 C)
[ 0.449941] GHES: HEST is not enabled!
[ 0.450220] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.953030] Linux agpgart interface v0.103
[ 0.955879] ACPI: Battery Slot [BAT1] (battery present)
[ 0.956610] brd: module loaded
[ 0.958160] loop: module loaded
[ 0.958445] mei_me 0000:00:16.0: setting latency timer to 64
[ 0.958494] mei_me 0000:00:16.0: irq 40 for MSI/MSI-X
[ 0.962032] ahci 0000:00:1f.2: version 3.0
[ 0.962238] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[ 0.962455] ahci: SSS flag set, parallel bus scan disabled
[ 0.978340] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1b impl SATA mode
[ 0.978414] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pio slum part ems sxs apst
[ 0.978474] ahci 0000:00:1f.2: setting latency timer to 64
[ 1.003231] scsi0 : ahci
[ 1.003587] scsi1 : ahci
[ 1.003836] scsi2 : ahci
[ 1.004125] scsi3 : ahci
[ 1.004385] scsi4 : ahci
[ 1.004667] scsi5 : ahci
[ 1.004803] ata1: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708100 irq 41
[ 1.004859] ata2: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708180 irq 41
[ 1.004912] ata3: DUMMY
[ 1.004946] ata4: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708280 irq 41
[ 1.005000] ata5: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708300 irq 41
[ 1.005054] ata6: DUMMY
[ 1.005998] libphy: Fixed MDIO Bus: probed
[ 1.006327] tun: Universal TUN/TAP device driver, 1.6
[ 1.006366] tun: (C) 1999-2004 Max Krasnyansky <maxk@xxxxxxxxxxxx>
[ 1.006501] PPP generic driver version 2.4.2
[ 1.006667] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.006709] ehci_hcd: block sizes: qh 112 qtd 96 itd 192 sitd 96
[ 1.006719] ehci-pci: EHCI PCI platform driver
[ 1.006967] ehci-pci 0000:00:1a.0: setting latency timer to 64
[ 1.006977] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 1.007023] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 1.007095] ehci-pci 0000:00:1a.0: debug port 2
[ 1.007135] ehci-pci 0000:00:1a.0: reset hcs_params 0x200002 dbg=2 cc=0 pcc=0 ordered !ppc ports=2
[ 1.007139] ehci-pci 0000:00:1a.0: reset hcc_params 36881 caching frame 1024 64 bit addr
[ 1.007178] ehci-pci 0000:00:1a.0: reset command 0080002 (park)=0 ithresh=8 period=1024 Reset HALT
[ 1.011067] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[ 1.011069] ehci-pci 0000:00:1a.0: supports USB remote wakeup
[ 1.011110] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf070a000
[ 1.011150] ehci-pci 0000:00:1a.0: init command 0010001 (park)=0 ithresh=1 period=1024 RUN
[ 1.022280] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 1.022422] usb usb1: default language 0x0409
[ 1.022436] usb usb1: udev 1, busnum 1, minor = 0
[ 1.022447] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.022487] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.022539] usb usb1: Product: EHCI Host Controller
[ 1.022585] usb usb1: Manufacturer: Linux 3.11.0-rc2-next20130725-6-iniza-small ehci_hcd
[ 1.022640] usb usb1: SerialNumber: 0000:00:1a.0
[ 1.022919] usb usb1: usb_probe_device
[ 1.022923] usb usb1: configuration #1 chosen from 1 choice
[ 1.022937] usb usb1: adding 1-0:1.0 (config #1, interface 0)
[ 1.022972] hub 1-0:1.0: usb_probe_interface
[ 1.022974] hub 1-0:1.0: usb_probe_interface - got id
[ 1.022978] hub 1-0:1.0: USB hub found
[ 1.023022] hub 1-0:1.0: 2 ports detected
[ 1.023058] hub 1-0:1.0: standalone hub
[ 1.023060] hub 1-0:1.0: no power switching (usb 1.0)
[ 1.023062] hub 1-0:1.0: individual port over-current protection
[ 1.023063] hub 1-0:1.0: power on to power good time: 20ms
[ 1.023069] hub 1-0:1.0: local power source is good
[ 1.023124] hub 1-0:1.0: trying to enable port power on non-switchable hub
[ 1.023414] ehci-pci 0000:00:1d.0: setting latency timer to 64
[ 1.023422] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 1.023468] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 1.023538] ehci-pci 0000:00:1d.0: debug port 2
[ 1.023578] ehci-pci 0000:00:1d.0: reset hcs_params 0x200002 dbg=2 cc=0 pcc=0 ordered !ppc ports=2
[ 1.023581] ehci-pci 0000:00:1d.0: reset hcc_params 36881 caching frame 1024 64 bit addr
[ 1.023622] ehci-pci 0000:00:1d.0: reset command 0080002 (park)=0 ithresh=8 period=1024 Reset HALT
[ 1.027504] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 1.027505] ehci-pci 0000:00:1d.0: supports USB remote wakeup
[ 1.027551] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf0709000
[ 1.027591] ehci-pci 0000:00:1d.0: init command 0010001 (park)=0 ithresh=1 period=1024 RUN
[ 1.038273] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 1.038413] usb usb2: default language 0x0409
[ 1.038435] usb usb2: udev 1, busnum 2, minor = 128
[ 1.038437] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.038477] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.038530] usb usb2: Product: EHCI Host Controller
[ 1.038567] usb usb2: Manufacturer: Linux 3.11.0-rc2-next20130725-6-iniza-small ehci_hcd
[ 1.038628] usb usb2: SerialNumber: 0000:00:1d.0
[ 1.038903] usb usb2: usb_probe_device
[ 1.038908] usb usb2: configuration #1 chosen from 1 choice
[ 1.038920] usb usb2: adding 2-0:1.0 (config #1, interface 0)
[ 1.038952] hub 2-0:1.0: usb_probe_interface
[ 1.038954] hub 2-0:1.0: usb_probe_interface - got id
[ 1.038957] hub 2-0:1.0: USB hub found
[ 1.039000] hub 2-0:1.0: 2 ports detected
[ 1.039036] hub 2-0:1.0: standalone hub
[ 1.039038] hub 2-0:1.0: no power switching (usb 1.0)
[ 1.039039] hub 2-0:1.0: individual port over-current protection
[ 1.039041] hub 2-0:1.0: power on to power good time: 20ms
[ 1.039046] hub 2-0:1.0: local power source is good
[ 1.039104] hub 2-0:1.0: trying to enable port power on non-switchable hub
[ 1.039189] ehci-platform: EHCI generic platform driver
[ 1.039245] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.039284] ohci_hcd: block sizes: ed 80 td 96
[ 1.039292] ohci-pci: OHCI PCI platform driver
[ 1.039348] ohci-platform: OHCI generic platform driver
[ 1.039400] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.039702] xhci_hcd 0000:03:00.0: xHCI Host Controller
[ 1.039746] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 3
[ 1.049508] xhci_hcd 0000:03:00.0: supports USB remote wakeup
[ 1.049541] xhci_hcd 0000:03:00.0: irq 42 for MSI/MSI-X
[ 1.049548] xhci_hcd 0000:03:00.0: irq 43 for MSI/MSI-X
[ 1.049554] xhci_hcd 0000:03:00.0: irq 44 for MSI/MSI-X
[ 1.049560] xhci_hcd 0000:03:00.0: irq 45 for MSI/MSI-X
[ 1.049568] xhci_hcd 0000:03:00.0: irq 46 for MSI/MSI-X
[ 1.049818] usb usb3: default language 0x0409
[ 1.049829] usb usb3: udev 1, busnum 3, minor = 256
[ 1.049831] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.049872] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.049924] usb usb3: Product: xHCI Host Controller
[ 1.049960] usb usb3: Manufacturer: Linux 3.11.0-rc2-next20130725-6-iniza-small xhci_hcd
[ 1.050014] usb usb3: SerialNumber: 0000:03:00.0
[ 1.050241] usb usb3: usb_probe_device
[ 1.050245] usb usb3: configuration #1 chosen from 1 choice
[ 1.050249] xHCI xhci_add_endpoint called for root hub
[ 1.050251] xHCI xhci_check_bandwidth called for root hub
[ 1.050258] usb usb3: adding 3-0:1.0 (config #1, interface 0)
[ 1.050288] hub 3-0:1.0: usb_probe_interface
[ 1.050290] hub 3-0:1.0: usb_probe_interface - got id
[ 1.050292] hub 3-0:1.0: USB hub found
[ 1.050337] hub 3-0:1.0: 2 ports detected
[ 1.050373] hub 3-0:1.0: standalone hub
[ 1.050374] hub 3-0:1.0: no power switching (usb 1.0)
[ 1.050375] hub 3-0:1.0: individual port over-current protection
[ 1.050377] hub 3-0:1.0: Single TT
[ 1.050378] hub 3-0:1.0: TT requires at most 8 FS bit times (666 ns)
[ 1.050380] hub 3-0:1.0: power on to power good time: 20ms
[ 1.050384] hub 3-0:1.0: local power source is good
[ 1.050418] hub 3-0:1.0: trying to enable port power on non-switchable hub
[ 1.050482] xhci_hcd 0000:03:00.0: xHCI Host Controller
[ 1.050524] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 4
[ 1.050584] xhci_hcd 0000:03:00.0: supports USB remote wakeup
[ 1.050619] usb usb4: skipped 1 descriptor after endpoint
[ 1.050624] usb usb4: default language 0x0409
[ 1.050634] usb usb4: udev 1, busnum 4, minor = 384
[ 1.050636] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[ 1.050676] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.050727] usb usb4: Product: xHCI Host Controller
[ 1.050764] usb usb4: Manufacturer: Linux 3.11.0-rc2-next20130725-6-iniza-small xhci_hcd
[ 1.050817] usb usb4: SerialNumber: 0000:03:00.0
[ 1.051027] usb usb4: usb_probe_device
[ 1.051030] usb usb4: configuration #1 chosen from 1 choice
[ 1.051036] xHCI xhci_add_endpoint called for root hub
[ 1.051037] xHCI xhci_check_bandwidth called for root hub
[ 1.051045] usb usb4: adding 4-0:1.0 (config #1, interface 0)
[ 1.051073] hub 4-0:1.0: usb_probe_interface
[ 1.051075] hub 4-0:1.0: usb_probe_interface - got id
[ 1.051077] hub 4-0:1.0: USB hub found
[ 1.051122] hub 4-0:1.0: 2 ports detected
[ 1.051157] hub 4-0:1.0: standalone hub
[ 1.051159] hub 4-0:1.0: no power switching (usb 1.0)
[ 1.051160] hub 4-0:1.0: individual port over-current protection
[ 1.051162] hub 4-0:1.0: TT requires at most 8 FS bit times (666 ns)
[ 1.051163] hub 4-0:1.0: power on to power good time: 20ms
[ 1.051168] hub 4-0:1.0: local power source is good
[ 1.051202] hub 4-0:1.0: trying to enable port power on non-switchable hub
[ 1.062377] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:EPAD] at 0x60,0x64 irq 1,12
[ 1.068702] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.068747] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.069185] mousedev: PS/2 mouse device common for all mice
[ 1.069859] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[ 1.069936] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 1.070069] device-mapper: uevent: version 1.0.3
[ 1.070229] device-mapper: ioctl: 4.25.0-ioctl (2013-06-26) initialised: dm-devel@xxxxxxxxxx
[ 1.070291] Intel P-state driver initializing.
[ 1.070342] Intel pstate controlling: cpu 0
[ 1.070418] Intel pstate controlling: cpu 1
[ 1.070481] Intel pstate controlling: cpu 2
[ 1.070544] Intel pstate controlling: cpu 3
[ 1.070657] ledtrig-cpu: registered to indicate activity on CPUs
[ 1.071183] ashmem: initialized
[ 1.071475] TCP: cubic registered
[ 1.071739] NET: Registered protocol family 10
[ 1.072380] NET: Registered protocol family 17
[ 1.072441] Key type dns_resolver registered
[ 1.073007] PM: Hibernation image not present or could not be loaded.
[ 1.073014] Loading module verification certificates
[ 1.074428] MODSIGN: Loaded cert 'Magrathea: Glacier signing key: a2ad22ff269cf3edb7bee68bb0ba84343d8fa185'
[ 1.074528] registered taskstats version 1
[ 1.077825] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[ 1.079705] Key type trusted registered
[ 1.087823] Key type encrypted registered
[ 1.096332] rtc_cmos 00:05: setting system clock to 2013-07-25 19:57:20 UTC (1374782240)
[ 1.097171] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 1.097241] EDD information not available.
[ 1.122246] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001803 0 ACK POWER sig=j CSC CONNECT
[ 1.122257] hub 1-0:1.0: port 1: status 0501 change 0001
[ 1.138236] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001803 0 ACK POWER sig=j CSC CONNECT
[ 1.138251] hub 2-0:1.0: port 1: status 0501 change 0001
[ 1.150271] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000
[ 1.150303] hub 4-0:1.0: state 7 ports 2 chg 0000 evt 0000
[ 1.150539] hub 3-0:1.0: hub_suspend
[ 1.150556] usb usb3: bus auto-suspend, wakeup 1
[ 1.150610] hub 4-0:1.0: hub_suspend
[ 1.150616] usb usb4: bus auto-suspend, wakeup 1
[ 1.159192] usb usb4: usb wakeup-resume
[ 1.159203] usb usb4: usb auto-resume
[ 1.170211] hub 4-0:1.0: hub_resume
[ 1.170242] hub 4-0:1.0: port 1: status 0203 change 0001
[ 1.222191] hub 1-0:1.0: state 7 ports 2 chg 0002 evt 0000
[ 1.222231] hub 1-0:1.0: port 1, status 0501, change 0000, 480 Mb/s
[ 1.278368] ehci-pci 0000:00:1a.0: port 1 reset complete, port enabled
[ 1.278381] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001005 0 ACK POWER sig=se0 PE CONNECT
[ 1.322091] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.323321] ata1.00: ATA-8: Hitachi HTS545050A7E380, GG2OA6C0, max UDMA/133
[ 1.323398] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 1.324774] ata1.00: configured for UDMA/133
[ 1.325295] scsi 0:0:0:0: Direct-Access ATA Hitachi HTS54505 GG2O PQ: 0 ANSI: 5
[ 1.325925] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[ 1.326024] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 1.326163] sd 0:0:0:0: [sda] 4096-byte physical blocks
[ 1.326786] sd 0:0:0:0: [sda] Write Protect is off
[ 1.326858] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.327081] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.334049] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 1.377866] sda: sda1 sda2 sda3
[ 1.379220] sd 0:0:0:0: [sda] Attached SCSI disk
[ 1.390289] ehci-pci 0000:00:1a.0: port 1 reset complete, port enabled
[ 1.390303] ehci-pci 0000:00:1a.0: GetStatus port:1 status 001005 0 ACK POWER sig=se0 PE CONNECT
[ 1.406033] tsc: Refined TSC clocksource calibration: 1596.373 MHz
[ 1.466714] usb 1-1: udev 2, busnum 1, minor = 1
[ 1.466725] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[ 1.466796] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.467181] usb 1-1: usb_probe_device
[ 1.467190] usb 1-1: configuration #1 chosen from 1 choice
[ 1.467489] usb 1-1: adding 1-1:1.0 (config #1, interface 0)
[ 1.467569] hub 1-1:1.0: usb_probe_interface
[ 1.467574] hub 1-1:1.0: usb_probe_interface - got id
[ 1.467581] hub 1-1:1.0: USB hub found
[ 1.468251] hub 1-1:1.0: 6 ports detected
[ 1.468311] hub 1-1:1.0: standalone hub
[ 1.468314] hub 1-1:1.0: individual port power switching
[ 1.468317] hub 1-1:1.0: individual port over-current protection
[ 1.468320] hub 1-1:1.0: Single TT
[ 1.468323] hub 1-1:1.0: TT requires at most 8 FS bit times (666 ns)
[ 1.468327] hub 1-1:1.0: power on to power good time: 100ms
[ 1.468825] hub 1-1:1.0: local power source is good
[ 1.469247] hub 1-1:1.0: enabling power on all ports
[ 1.470316] hub 2-0:1.0: state 7 ports 2 chg 0002 evt 0000
[ 1.470334] hub 2-0:1.0: port 1, status 0501, change 0000, 480 Mb/s
[ 1.526190] ehci-pci 0000:00:1d.0: port 1 reset complete, port enabled
[ 1.526205] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001005 0 ACK POWER sig=se0 PE CONNECT
[ 1.570886] hub 1-1:1.0: port 4: status 0101 change 0001
[ 1.581921] usb 2-1: new high-speed USB device number 2 using ehci-pci
[ 1.638113] ehci-pci 0000:00:1d.0: port 1 reset complete, port enabled
[ 1.638129] ehci-pci 0000:00:1d.0: GetStatus port:1 status 001005 0 ACK POWER sig=se0 PE CONNECT
[ 1.645865] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.646531] ata2.00: ATA-8: SanDisk iSSD P4 16GB, SSD 9.14, max UDMA/133
[ 1.646611] ata2.00: 31277232 sectors, multi 1: LBA48
[ 1.647363] ata2.00: configured for UDMA/133
[ 1.647997] scsi 1:0:0:0: Direct-Access ATA SanDisk iSSD P4 SSD PQ: 0 ANSI: 5
[ 1.648563] sd 1:0:0:0: [sdb] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
[ 1.648623] sd 1:0:0:0: Attached scsi generic sg1 type 0
[ 1.648973] sd 1:0:0:0: [sdb] Write Protect is off
[ 1.649043] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 1.649101] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.650500] sdb: sdb1 sdb2
[ 1.651535] sd 1:0:0:0: [sdb] Attached SCSI disk
[ 1.669841] usb 1-1: link qh256-0001/ffff880118771e40 start 1 [1/0 us]
[ 1.714540] usb 2-1: udev 2, busnum 2, minor = 129
[ 1.714551] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[ 1.714625] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.715054] usb 2-1: usb_probe_device
[ 1.715064] usb 2-1: configuration #1 chosen from 1 choice
[ 1.715309] usb 2-1: adding 2-1:1.0 (config #1, interface 0)
[ 1.715396] hub 2-1:1.0: usb_probe_interface
[ 1.715401] hub 2-1:1.0: usb_probe_interface - got id
[ 1.715409] hub 2-1:1.0: USB hub found
[ 1.715639] hub 2-1:1.0: 6 ports detected
[ 1.715709] hub 2-1:1.0: standalone hub
[ 1.715713] hub 2-1:1.0: individual port power switching
[ 1.715717] hub 2-1:1.0: individual port over-current protection
[ 1.715721] hub 2-1:1.0: Single TT
[ 1.715725] hub 2-1:1.0: TT requires at most 8 FS bit times (666 ns)
[ 1.715729] hub 2-1:1.0: power on to power good time: 100ms
[ 1.715993] hub 2-1:1.0: local power source is good
[ 1.716529] hub 2-1:1.0: enabling power on all ports
[ 1.717900] hub 4-0:1.0: state 7 ports 2 chg 0002 evt 0000
[ 1.717924] hub 4-0:1.0: port 1, status 0203, change 0000, 5.0 Gb/s
[ 1.818962] hub 2-1:1.0: port 5: status 0101 change 0001
[ 1.833370] usb 4-1: new SuperSpeed USB device number 2 using xhci_hcd
[ 1.846298] usb 4-1: Parent hub missing LPM exit latency info. Power management will be impacted.
[ 1.846731] usb 4-1: skipped 1 descriptor after endpoint
[ 1.846740] usb 4-1: skipped 1 descriptor after endpoint
[ 1.846885] usb 4-1: default language 0x0409
[ 1.847217] usb 4-1: udev 2, busnum 4, minor = 385
[ 1.847223] usb 4-1: New USB device found, idVendor=174c, idProduct=55aa
[ 1.847297] usb 4-1: New USB device strings: Mfr=2, Product=3, SerialNumber=1
[ 1.847367] usb 4-1: Product: MEDION HDDrive-n-GO
[ 1.847432] usb 4-1: Manufacturer: MEDION
[ 1.847495] usb 4-1: SerialNumber: 3180000000000000092C
[ 1.847877] usb 4-1: usb_probe_device
[ 1.847883] usb 4-1: configuration #1 chosen from 1 choice
[ 1.848958] usb 4-1: Successful Endpoint Configure command
[ 1.849096] usb 4-1: adding 4-1:1.0 (config #1, interface 0)
[ 1.849335] hub 1-1:1.0: state 7 ports 6 chg 0010 evt 0000
[ 1.849563] hub 1-1:1.0: port 4, status 0101, change 0000, 12 Mb/s
[ 1.917693] usb 2-1: link qh256-0001/ffff880118771b40 start 1 [1/0 us]
[ 1.921890] usb 1-1.4: new high-speed USB device number 3 using ehci-pci
[ 1.965641] ata4: SATA link down (SStatus 0 SControl 300)
[ 2.159539] usb 1-1.4: skipped 1 descriptor after configuration
[ 2.159551] usb 1-1.4: skipped 5 descriptors after interface
[ 2.159558] usb 1-1.4: skipped 1 descriptor after endpoint
[ 2.159563] usb 1-1.4: skipped 23 descriptors after interface
[ 2.161748] usb 1-1.4: default language 0x0409
[ 2.174003] usb 1-1.4: udev 3, busnum 1, minor = 2
[ 2.174014] usb 1-1.4: New USB device found, idVendor=2232, idProduct=1018
[ 2.174090] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.174179] usb 1-1.4: Product: WebCam SC-13HDL11431N
[ 2.174244] usb 1-1.4: Manufacturer: 123
[ 2.174632] usb 1-1.4: usb_probe_device
[ 2.174639] usb 1-1.4: configuration #1 chosen from 1 choice
[ 2.174781] usb 1-1.4: adding 1-1.4:1.0 (config #1, interface 0)
[ 2.285406] ata5: SATA link down (SStatus 0 SControl 300)
[ 2.287466] Freeing unused kernel memory: 1332K (ffffffff81d07000 - ffffffff81e54000)
[ 2.287532] Write protecting the kernel read-only data: 12288k
[ 2.291525] Freeing unused kernel memory: 1060K (ffff8800016f7000 - ffff880001800000)
[ 2.295024] Freeing unused kernel memory: 964K (ffff880001b0f000 - ffff880001c00000)
[ 2.328266] udevd[122]: starting version 175
[ 2.346841] usb 1-1.4: adding 1-1.4:1.1 (config #1, interface 1)
[ 2.349364] hub 2-1:1.0: state 7 ports 6 chg 0020 evt 0000
[ 2.349493] hub 2-1:1.0: port 5, status 0101, change 0000, 12 Mb/s
[ 2.405607] Switched to clocksource tsc
[ 2.421315] usb 2-1.5: new full-speed USB device number 3 using ehci-pci
[ 2.477826] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[ 2.477915] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 2.478299] r8169 0000:02:00.0: irq 47 for MSI/MSI-X
[ 2.484218] r8169 0000:02:00.0 eth0: RTL8168evl/8111evl at 0xffffc90000620000, e8:03:9a:36:17:a9, XID 0c900800 IRQ 47
[ 2.484287] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[ 2.489471] usb-storage 4-1:1.0: usb_probe_interface
[ 2.489480] usb-storage 4-1:1.0: usb_probe_interface - got id
[ 2.489484] usb-storage 4-1:1.0: USB Mass Storage device detected
[ 2.489640] scsi6 : usb-storage 4-1:1.0
[ 2.489860] usbcore: registered new interface driver usb-storage
[ 2.517629] usb 2-1.5: udev 3, busnum 2, minor = 130
[ 2.517635] usb 2-1.5: New USB device found, idVendor=8086, idProduct=0189
[ 2.517683] usb 2-1.5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.517902] usb 2-1.5: usb_probe_device
[ 2.517907] usb 2-1.5: configuration #1 chosen from 1 choice
[ 2.518379] usb 2-1.5: adding 2-1.5:1.0 (config #1, interface 0)
[ 2.518586] usb 2-1.5: adding 2-1.5:1.1 (config #1, interface 1)
[ 3.418320] EXT4-fs (loop0): mounted filesystem with ordered data mode. Opts: (null)
[ 3.488921] scsi 6:0:0:0: Direct-Access ASMT 2105 0 PQ: 0 ANSI: 6
[ 3.489919] sd 6:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[ 3.490223] sd 6:0:0:0: Attached scsi generic sg2 type 0
[ 3.490485] sd 6:0:0:0: [sdc] Write Protect is off
[ 3.490552] sd 6:0:0:0: [sdc] Mode Sense: 43 00 00 00
[ 3.491025] sd 6:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 3.494927] sdc: sdc1 sdc2 sdc3
[ 3.497380] sd 6:0:0:0: [sdc] Attached SCSI disk
[ 15.552036] Adding 262140k swap on /host/ubuntu/disks/swap.disk. Priority:-1 extents:1 across:262140k FS
[ 15.610018] EXT4-fs (loop0): re-mounted. Opts: errors=remount-ro
[ 15.643803] udevd[629]: starting version 175
[ 15.841820] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130626/utaddress-251)
[ 15.841831] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 15.841836] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130626/utaddress-251)
[ 15.841843] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 15.841845] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130626/utaddress-251)
[ 15.841851] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 15.841853] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130626/utaddress-251)
[ 15.841859] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 15.841861] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 16.264168] Bluetooth: Core ver 2.16
[ 16.266667] NET: Registered protocol family 31
[ 16.266673] Bluetooth: HCI device and connection manager initialized
[ 16.266690] Bluetooth: HCI socket layer initialized
[ 16.266703] Bluetooth: L2CAP socket layer initialized
[ 16.266733] Bluetooth: SCO socket layer initialized
[ 16.315511] lp: driver loaded but no devices found
[ 16.465573] samsung_laptop: detected SABI interface: SwSmi@
[ 16.465577] samsung_laptop: Backlight controlled by ACPI video driver
[ 16.473292] wmi: Mapper loaded
[ 16.485849] cfg80211: Calling CRDA to update world regulatory domain
[ 16.494056] cfg80211: World regulatory domain updated:
[ 16.494060] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 16.494062] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 16.494064] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 16.494065] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 16.494067] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 16.494068] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 16.537005] type=1400 audit(1374775055.949:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=700 comm="apparmor_parser"
[ 16.537605] type=1400 audit(1374775055.949:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=700 comm="apparmor_parser"
[ 16.537986] type=1400 audit(1374775055.949:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=700 comm="apparmor_parser"
[ 16.538640] type=1400 audit(1374775055.949:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=821 comm="apparmor_parser"
[ 16.539248] type=1400 audit(1374775055.953:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=821 comm="apparmor_parser"
[ 16.539620] type=1400 audit(1374775055.953:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=821 comm="apparmor_parser"
[ 16.703197] btusb 2-1.5:1.0: usb_probe_interface
[ 16.703203] btusb 2-1.5:1.0: usb_probe_interface - got id
[ 16.704307] usbcore: registered new interface driver btusb
[ 16.704356] usb 2-1.5: link qh1-0e01/ffff8800c0cfef40 start 0 [1/2 us]
[ 16.706951] Linux video capture interface: v2.00
[ 16.971392] [drm] Initialized drm 1.1.0 20060810
[ 17.203824] init: failsafe main process (962) killed by TERM signal
[ 17.215608] ppdev: user-space parallel port driver
[ 17.232130] Intel(R) Wireless WiFi driver for Linux, in-tree:d
[ 17.232135] Copyright(c) 2003-2013 Intel Corporation
[ 17.232237] iwlwifi 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 17.232603] iwlwifi 0000:01:00.0: irq 48 for MSI/MSI-X
[ 17.233541] iwlwifi 0000:01:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
[ 17.278747] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 17.278753] Bluetooth: BNEP filters: protocol multicast
[ 17.278771] Bluetooth: BNEP socket layer initialized
[ 17.369053] Bluetooth: RFCOMM TTY layer initialized
[ 17.369081] Bluetooth: RFCOMM socket layer initialized
[ 17.369084] Bluetooth: RFCOMM ver 1.11
[ 17.442709] type=1400 audit(1374775056.857:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=1106 comm="apparmor_parser"
[ 17.443525] type=1400 audit(1374775056.857:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1106 comm="apparmor_parser"
[ 17.444043] type=1400 audit(1374775056.857:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1106 comm="apparmor_parser"
[ 17.581495] uvcvideo 1-1.4:1.0: usb_probe_interface
[ 17.581505] uvcvideo 1-1.4:1.0: usb_probe_interface - got id
[ 17.581564] uvcvideo: Found UVC 1.00 device WebCam SC-13HDL11431N (2232:1018)
[ 17.601146] input: WebCam SC-13HDL11431N as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input4
[ 17.601454] usbcore: registered new interface driver uvcvideo
[ 17.601459] USB Video Class driver (1.1.1)
[ 17.604992] usb 1-1.4: link qh16-0001/ffff8800bd386c40 start 2 [1/0 us]
[ 17.605071] usb 1-1.4: unlink qh16-0001/ffff8800bd386c40 start 2 [1/0 us]
[ 17.785346] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f00)
[ 17.800487] psmouse serio1: elantech: Synaptics capabilities query result 0x08, 0x17, 0x0c.
[ 17.872430] type=1400 audit(1374775057.285:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/telepathy/mission-control-5" pid=1109 comm="apparmor_parser"
[ 17.886964] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input5
[ 18.080723] i915: module verification failed: signature and/or required key missing - tainting kernel
[ 18.086642] [drm:drm_pci_init],
[ 18.086676] [drm:drm_get_pci_dev],
[ 18.086997] [drm:drm_get_minor],
[ 18.088733] [drm:drm_get_minor], new minor assigned 64
[ 18.088739] [drm:drm_get_minor],
[ 18.089329] [drm:drm_get_minor], new minor assigned 0
[ 18.089398] [drm:i915_dump_device_info], i915 device info: gen=6, pciid=0x0116 flags=is_mobile,need_gfx_hws,has_force_wake,has_fbc,has_hotplug,has_bsd_ring,has_blt_ring,has_llc,
[ 18.090358] [drm] Memory usable by graphics device = 2048M
[ 18.090363] [drm:i915_gem_gtt_init], GMADR size = 256M
[ 18.090366] [drm:i915_gem_gtt_init], GTT stolen size = 64M
[ 18.090377] i915 0000:00:02.0: setting latency timer to 64
[ 18.127425] [drm:intel_detect_pch], Found CougarPoint PCH
[ 18.127839] [drm:intel_opregion_setup], graphic opregion physical addr: 0xdaf1f018
[ 18.127857] [drm:intel_opregion_setup], Public ACPI methods supported
[ 18.127860] [drm:intel_opregion_setup], SWSCI supported
[ 18.127863] [drm:intel_opregion_setup], ASLE supported
[ 18.127927] i915 0000:00:02.0: irq 49 for MSI/MSI-X
[ 18.127941] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[ 18.127943] [drm] Driver supports precise vblank timestamp query.
[ 18.127945] [drm:init_vbt_defaults], Set default to SSC at 100MHz
[ 18.127947] [drm:intel_parse_bios], Using VBT from OpRegion: $VBT SANDYBRIDGE-M d
[ 18.127950] [drm:parse_general_features], BDB_GENERAL_FEATURES int_tv_support 0 int_crt_support 1 lvds_use_ssc 1 lvds_ssc_freq 120 display_clock_mode 0 fdi_rx_polarity_inverted 0
[ 18.127952] [drm:parse_general_definitions], crt_ddc_bus_pin: 2
[ 18.127957] [drm:parse_lfp_panel_data], Found panel mode in BIOS VBT tables:
[ 18.127959] [drm:drm_mode_debug_printmodeline], Modeline 0:"1366x768" 0 70700 1366 1414 1446 1486 768 770 775 792 0x8 0xa
[ 18.127962] [drm:parse_lfp_panel_data], VBT initial LVDS value 300300
[ 18.127965] [drm:parse_sdvo_panel_data], Found SDVO panel mode in BIOS VBT tables:
[ 18.127967] [drm:drm_mode_debug_printmodeline], Modeline 0:"1600x1200" 0 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x8 0xa
[ 18.127970] [drm:parse_sdvo_device_mapping], No SDVO device info is found in VBT
[ 18.127980] [drm:intel_dsm_pci_probe], no _DSM method for intel device
[ 18.127987] [drm:i915_gem_init_stolen], found 67108864 bytes of stolen memory at dba00000
[ 18.127991] [drm:drm_irq_install], irq=49
[ 18.128059] [drm:intel_modeset_init], 2 display pipes available.
[ 18.128149] [drm:intel_shared_dpll_init], 2 shared PLLs initialized
[ 18.128153] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 18.128656] [drm:gmbus_xfer], GMBUS [i915 gmbus panel] NAK for addr: 0050 r(1)
[ 18.128662] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus panel
[ 18.128665] [drm:intel_lvds_init], using mode from VBT:
[ 18.128666] [drm:drm_mode_debug_printmodeline], Modeline 0:"1366x768" 0 70700 1366 1414 1446 1486 768 770 775 792 0x8 0xa
[ 18.128675] [drm:intel_lvds_init], detected single-link lvds configuration
[ 18.128679] [drm:drm_sysfs_connector_add], adding "LVDS-1" to sysfs
[ 18.128740] [drm:drm_sysfs_hotplug_event], generating hotplug event
[ 18.128774] [drm:intel_panel_get_backlight], get backlight PWM = 4648
[ 18.128778] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[ 18.128853] [drm:drm_sysfs_connector_add], adding "VGA-1" to sysfs
[ 18.128913] [drm:drm_sysfs_hotplug_event], generating hotplug event
[ 18.128953] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus dpb. force bit now 1
[ 18.129367] [drm:intel_sdvo_read_byte], i2c transfer returned -6
[ 18.129369] [drm:intel_sdvo_init], No SDVO device found on SDVOB
[ 18.129420] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus dpb. force bit now 0
[ 18.129450] [drm:drm_sysfs_connector_add], adding "HDMI-A-1" to sysfs
[ 18.129503] [drm:drm_sysfs_hotplug_event], generating hotplug event
[ 18.129552] [drm:intel_dp_init_connector], Adding DP connector on port B
[ 18.129557] [drm:drm_sysfs_connector_add], adding "DP-1" to sysfs
[ 18.129618] [drm:drm_sysfs_hotplug_event], generating hotplug event
[ 18.129649] [drm:intel_dp_i2c_init], i2c_init DPDDC-B
[ 18.132479] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x7143003f
[ 18.132487] [drm:intel_dp_i2c_aux_ch], aux_ch failed -110
[ 18.134915] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x7143003f
[ 18.134924] [drm:intel_dp_i2c_aux_ch], aux_ch failed -110
[ 18.135074] [drm:ironlake_init_pch_refclk], has_panel 1 has_lvds 1 has_ck505 0
[ 18.135080] [drm:ironlake_init_pch_refclk], Using SSC on panel
[ 18.135487] [drm:i915_gem_setup_global_gtt], clearing unused GTT space: [0, 7fdff000]
[ 18.136570] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUG enabled
[ 18.136576] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[ 18.136579] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
[ 18.136582] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_P2P disabled
[ 18.136585] iwlwifi 0000:01:00.0: Detected Intel(R) Centrino(R) Advanced-N 6230 AGN, REV=0xB0
[ 18.136638] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
[ 18.139491] [drm:init_status_page], render ring hws offset: 0x00000000
[ 18.139982] [drm:init_pipe_control], render ring pipe control offset: 0x00021000
[ 18.140007] [drm:init_status_page], bsd ring hws offset: 0x00022000
[ 18.140254] [drm:init_status_page], blitter ring hws offset: 0x00043000
[ 18.140528] [drm:create_default_context], Default HW context loaded
[ 18.140531] [drm:i915_gem_context_init], HW context support initialized
[ 18.140754] [drm] Wrong MCH_SSKPD value: 0x16040307
[ 18.140757] [drm] This can cause pipe underruns and display issues.
[ 18.140758] [drm] Please upgrade your BIOS to fix this.
[ 18.140791] [drm:intel_modeset_readout_hw_state], [CRTC:3] hw state readout: enabled
[ 18.140816] [drm:intel_modeset_readout_hw_state], [CRTC:5] hw state readout: disabled
[ 18.140822] [drm:intel_modeset_readout_hw_state], PCH DPLL A hw state readout: refcount 1, on 1
[ 18.140852] [drm:intel_modeset_readout_hw_state], PCH DPLL B hw state readout: refcount 0, on 0
[ 18.140857] [drm:intel_modeset_readout_hw_state], [ENCODER:8:LVDS-8] hw state readout: enabled, pipe=0
[ 18.140861] [drm:intel_modeset_readout_hw_state], [ENCODER:12:DAC-12] hw state readout: disabled, pipe=0
[ 18.140888] [drm:intel_modeset_readout_hw_state], [ENCODER:13:TMDS-13] hw state readout: disabled, pipe=0
[ 18.140892] [drm:intel_modeset_readout_hw_state], [ENCODER:17:TMDS-17] hw state readout: disabled, pipe=0
[ 18.140897] [drm:intel_modeset_readout_hw_state], [CONNECTOR:7:LVDS-1] hw state readout: enabled
[ 18.140925] [drm:intel_modeset_readout_hw_state], [CONNECTOR:11:VGA-1] hw state readout: disabled
[ 18.140928] [drm:intel_modeset_readout_hw_state], [CONNECTOR:14:HDMI-A-1] hw state readout: disabled
[ 18.140932] [drm:intel_modeset_readout_hw_state], [CONNECTOR:18:DP-1] hw state readout: disabled
[ 18.140959] [drm:intel_dump_pipe_config], [CRTC:3][setup_hw_state] config for pipe A
[ 18.140962] [drm:intel_dump_pipe_config], cpu_transcoder: A
[ 18.140964] [drm:intel_dump_pipe_config], pipe bpp: 0, dithering: 0
[ 18.140967] [drm:intel_dump_pipe_config], fdi/pch: 1, lanes: 4, gmch_m: 1647429, gmch_n: 8388608, link_m: 137285, link_n: 524288, tu: 64
[ 18.140970] [drm:intel_dump_pipe_config], requested mode:
[ 18.140972] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 720 0 0 0 400 0 0 0 0x0 0x0
[ 18.140976] [drm:intel_dump_pipe_config], adjusted mode:
[ 18.140978] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 70699 0 0 0 0 0 0 0 0 0x0 0xa
[ 18.140981] [drm:intel_dump_pipe_config], gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[ 18.140984] [drm:intel_dump_pipe_config], pch pfit: pos: 0x00000000, size: 0x05560300
[ 18.140987] [drm:intel_dump_pipe_config], ips: 0
[ 18.140996] [drm:intel_dump_pipe_config], [CRTC:5][setup_hw_state] config for pipe B
[ 18.140998] [drm:intel_dump_pipe_config], cpu_transcoder: B
[ 18.141000] [drm:intel_dump_pipe_config], pipe bpp: 0, dithering: 0
[ 18.141002] [drm:intel_dump_pipe_config], fdi/pch: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[ 18.141004] [drm:intel_dump_pipe_config], requested mode:
[ 18.141006] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[ 18.141009] [drm:intel_dump_pipe_config], adjusted mode:
[ 18.141011] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[ 18.141015] [drm:intel_dump_pipe_config], gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[ 18.141018] [drm:intel_dump_pipe_config], pch pfit: pos: 0x00000000, size: 0x00000000
[ 18.141020] [drm:intel_dump_pipe_config], ips: 0
[ 18.141032] [drm:intel_connector_check_state], [CONNECTOR:7:LVDS-1]
[ 18.141039] [drm:check_encoder_state], [ENCODER:8:LVDS-8]
[ 18.141067] [drm:check_encoder_state], [ENCODER:12:DAC-12]
[ 18.141071] [drm:check_encoder_state], [ENCODER:13:TMDS-13]
[ 18.141074] [drm:check_encoder_state], [ENCODER:17:TMDS-17]
[ 18.141101] [drm:check_crtc_state], [CRTC:3]
[ 18.141139] [drm:check_crtc_state], [CRTC:5]
[ 18.141142] [drm:check_shared_dpll_state], PCH DPLL A
[ 18.141173] [drm:check_shared_dpll_state], PCH DPLL B
[ 18.141182] [drm:intel_crt_reset], pch crt adpa set to 0xf40000
[ 18.141215] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1]
[ 18.141218] [drm:intel_lvds_detect], [CONNECTOR:7:LVDS-1]
[ 18.141227] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1] probed modes :
[ 18.141230] [drm:drm_mode_debug_printmodeline], Modeline 19:"1366x768" 60 70700 1366 1414 1446 1486 768 770 775 792 0x8 0xa
[ 18.141235] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1]
[ 18.141238] [drm:intel_crt_detect], [CONNECTOR:11:VGA-1] force=1
[ 18.141245] [drm:intel_ironlake_crt_detect_hotplug], trigger hotplug detect cycle: adpa=0xf40000
[ 18.154057] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[ 18.154063] [drm:intel_crt_detect], CRT not detected via hotplug
[ 18.154223] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[ 18.154229] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[ 18.154232] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[ 18.154235] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[ 18.154580] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[ 18.154583] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[ 18.154586] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[ 18.154590] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1] disconnected
[ 18.154595] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1]
[ 18.154599] [drm:intel_hdmi_detect], [CONNECTOR:14:HDMI-A-1]
[ 18.154759] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[ 18.154764] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[ 18.154768] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1] disconnected
[ 18.154772] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1]
[ 18.154775] [drm:intel_dp_detect], [CONNECTOR:18:DP-1]
[ 18.154780] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1] disconnected
[ 18.154783] [drm:drm_setup_crtcs],
[ 18.154787] [drm:drm_enable_connectors], connector 7 enabled? yes
[ 18.154790] [drm:drm_enable_connectors], connector 11 enabled? no
[ 18.154793] [drm:drm_enable_connectors], connector 14 enabled? no
[ 18.154795] [drm:drm_enable_connectors], connector 18 enabled? no
[ 18.154797] [drm:drm_target_preferred], looking for cmdline mode on connector 7
[ 18.154800] [drm:drm_target_preferred], looking for preferred mode on connector 7
[ 18.154802] [drm:drm_target_preferred], found mode 1366x768
[ 18.154804] [drm:drm_setup_crtcs], picking CRTCs for 8192x8192 config
[ 18.154809] [drm:drm_setup_crtcs], desired mode 1366x768 set on crtc 3
[ 18.154817] [drm:i915_gem_object_create_stolen], creating stolen object: size=408000
[ 18.154827] [drm:i915_pages_create_for_stolen], offset=0x0, size=4227072
[ 18.154864] [drm:drm_framebuffer_reference], FB ID: 21
[ 18.156258] [drm:intelfb_create], allocated 1366x768 fb: 0x00072000, bo ffff8800bd070d00
[ 18.156505] fbcon: inteldrmfb (fb0) is primary device
[ 18.158395] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[ 18.158399] [drm:intel_set_config_compute_mode_changes], inactive crtc, full mode set
[ 18.158401] [drm:intel_set_config_compute_mode_changes], modes are different, full mode set
[ 18.158405] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[ 18.158408] [drm:drm_mode_debug_printmodeline], Modeline 20:"1366x768" 60 70700 1366 1414 1446 1486 768 770 775 792 0x8 0xa
[ 18.158411] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 18.158416] [drm:intel_modeset_affected_pipes], set mode pipe masks: modeset: 1, prepare: 1, disable: 0
[ 18.158421] [drm:connected_sink_compute_bpp], [CONNECTOR:7:LVDS-1] checking for sink bpp constrains
[ 18.158427] [drm:ironlake_check_fdi_lanes], checking fdi config on pipe A, lanes 1
[ 18.158429] [drm:intel_modeset_pipe_config], plane bpp: 24, pipe bpp: 24, dithering: 0
[ 18.158431] [drm:intel_dump_pipe_config], [CRTC:3][modeset] config for pipe A
[ 18.158432] [drm:intel_dump_pipe_config], cpu_transcoder: A
[ 18.158434] [drm:intel_dump_pipe_config], pipe bpp: 24, dithering: 0
[ 18.158436] [drm:intel_dump_pipe_config], fdi/pch: 1, lanes: 1, gmch_m: 3294858, gmch_n: 4194304, link_m: 137285, link_n: 524288, tu: 64
[ 18.158438] [drm:intel_dump_pipe_config], requested mode:
[ 18.158441] [drm:drm_mode_debug_printmodeline], Modeline 0:"1366x768" 60 70700 1366 1414 1446 1486 768 770 775 792 0x8 0xa
[ 18.158442] [drm:intel_dump_pipe_config], adjusted mode:
[ 18.158445] [drm:drm_mode_debug_printmodeline], Modeline 0:"1366x768" 60 70700 1366 1414 1446 1486 768 770 775 792 0x8 0xa
[ 18.158447] [drm:intel_dump_pipe_config], gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[ 18.158449] [drm:intel_dump_pipe_config], pch pfit: pos: 0x00000000, size: 0x00000000
[ 18.158450] [drm:intel_dump_pipe_config], ips: 0
[ 18.158453] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[ 18.177069] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[ 18.189701] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
[ 18.196340] iwlwifi 0000:01:00.0: Radio type=0x1-0x2-0x0
[ 18.470865] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
[ 18.477489] iwlwifi 0000:01:00.0: Radio type=0x1-0x2-0x0
[ 18.555767] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 18.693683] [drm:drm_calc_vbltimestamp_from_scanoutpos], crtc 0: Noop due to uninitialized mode.
[ 18.717670] [drm:intel_disable_shared_dpll], disable PCH DPLL A (active 1, on? 1) for crtc 3
[ 18.717674] [drm:intel_disable_shared_dpll], disabling PCH DPLL A
[ 18.718081] [drm:intel_update_fbc], no output, disabling
[ 18.718086] [drm:drm_vblank_get], enabling vblank on crtc 0, ret: -22
[ 18.718088] [drm:ironlake_get_refclk], using SSC reference clock of 120 MHz
[ 18.718109] [drm:intel_get_shared_dpll], CRTC:3 dropping existing PCH DPLL A
[ 18.718110] [drm:intel_get_shared_dpll], CRTC:3 allocated PCH DPLL A
[ 18.718111] [drm:intel_get_shared_dpll], using PCH DPLL A for pipe A
[ 18.718111] [drm:intel_get_shared_dpll], setting up PCH DPLL A
[ 18.718123] [drm:ironlake_update_plane], Writing base 00072000 00000000 0 0 5504
[ 18.718125] [drm:intel_update_fbc], no output, disabling
[ 18.718128] [drm:intel_crtc_mode_set], [ENCODER:8:LVDS-8] set [MODE:0:1366x768]
[ 18.718131] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 6, cursor: 6
[ 18.718133] [drm:ironlake_check_srwm], watermark 1: display plane 9, fbc lines 3, cursor 6
[ 18.718135] [drm:ironlake_check_srwm], watermark 2: display plane 11, fbc lines 3, cursor 6
[ 18.718137] [drm:ironlake_check_srwm], watermark 3: display plane 51, fbc lines 3, cursor 6
[ 18.781611] [drm:ironlake_wait_for_vblank], vblank wait timed out
[ 18.845570] [drm:ironlake_wait_for_vblank], vblank wait timed out
[ 18.846374] [drm:gen6_fdi_link_train], FDI_RX_IIR 0x700
[ 18.846376] [drm:gen6_fdi_link_train], FDI train 1 done.
[ 18.847025] [drm:gen6_fdi_link_train], FDI_RX_IIR 0x600
[ 18.847027] [drm:gen6_fdi_link_train], FDI train 2 done.
[ 18.847027] [drm:gen6_fdi_link_train], FDI train done.
[ 18.847030] [drm:ironlake_enable_shared_dpll], enable PCH DPLL A (active 0, on? 0)for crtc 3
[ 18.847031] [drm:ironlake_enable_shared_dpll], enabling PCH DPLL A
[ 18.848392] [drm:intel_update_fbc], disabled per chip default
[ 19.149355] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[ 19.165342] [drm:drm_calc_timestamping_constants], crtc 3: hwmode: htotal 1486, vtotal 792, vdisplay 768
[ 19.165343] [drm:drm_calc_timestamping_constants], crtc 3: clock 70700 kHz framedur 16646562 linedur 21018, pixeldur 14
[ 19.165348] [drm:intel_connector_check_state], [CONNECTOR:7:LVDS-1]
[ 19.165354] [drm:check_encoder_state], [ENCODER:8:LVDS-8]
[ 19.165356] [drm:check_encoder_state], [ENCODER:12:DAC-12]
[ 19.165358] [drm:check_encoder_state], [ENCODER:13:TMDS-13]
[ 19.165360] [drm:check_encoder_state], [ENCODER:17:TMDS-17]
[ 19.165362] [drm:check_crtc_state], [CRTC:3]
[ 19.165373] [drm:check_crtc_state], [CRTC:5]
[ 19.165374] [drm:check_shared_dpll_state], PCH DPLL A
[ 19.165378] [drm:check_shared_dpll_state], PCH DPLL B
[ 19.165383] [drm:drm_framebuffer_reference], FB ID: 21
[ 19.165385] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[ 19.165388] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 19.165389] [drm:drm_framebuffer_reference], FB ID: 21
[ 19.165391] [drm:drm_framebuffer_unreference], FB ID: 21
[ 19.165442] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[ 19.165445] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 19.165446] [drm:drm_framebuffer_reference], FB ID: 21
[ 19.165447] [drm:drm_framebuffer_unreference], FB ID: 21
[ 19.168578] Console: switching to colour frame buffer device 170x48
[ 19.168582] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[ 19.168584] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 19.168585] [drm:drm_framebuffer_reference], FB ID: 21
[ 19.168586] [drm:drm_framebuffer_unreference], FB ID: 21
[ 19.171565] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[ 19.171566] i915 0000:00:02.0: registered panic notifier
[ 19.188965] [drm:asle_set_backlight], bclp = 0x8000000f
[ 19.188973] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[ 19.188976] [drm:intel_panel_actually_set_backlight], set backlight PWM = 273
[ 19.189209] [drm:asle_set_backlight], bclp = 0x800000ff
[ 19.189214] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[ 19.189217] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[ 19.189733] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 19.189862] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input6
[ 19.190833] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[ 19.191188] snd_hda_intel 0000:00:1b.0: irq 50 for MSI/MSI-X
[ 19.228590] init: alsa-restore main process (1180) terminated with status 19
[ 19.302315] init: lightdm main process (1214) killed by TERM signal
[ 19.304353] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[ 19.304548] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[ 19.304689] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[ 19.313420] init: plymouth-splash main process (1247) terminated with status 2
[ 19.476816] init: rc main process (1160) killed by TERM signal
[ 19.495376] init: plymouth-stop pre-start process (1347) terminated with status 1
[ 19.817380] [drm:intel_enable_rc6], Sandybridge: deep RC6 disabled
[ 19.817390] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
[ 19.821065] usb 1-1.4: usb auto-suspend, wakeup 0
[ 19.836914] hub 1-1:1.0: hub_suspend
[ 19.836929] usb 1-1: unlink qh256-0001/ffff880118771e40 start 1 [1/0 us]
[ 19.839320] usb 1-1: usb auto-suspend, wakeup 1
[ 19.852904] hub 1-0:1.0: hub_suspend
[ 19.852919] usb usb1: bus auto-suspend, wakeup 1
[ 19.852925] ehci-pci 0000:00:1a.0: suspend root hub
[ 24.806361] wlan0: authenticate with 00:04:0e:e4:00:3d
[ 24.812024] wlan0: send auth to 00:04:0e:e4:00:3d (try 1/3)
[ 24.813729] wlan0: authenticated
[ 24.814022] iwlwifi 0000:01:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
[ 24.814028] iwlwifi 0000:01:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
[ 24.817399] wlan0: associate with 00:04:0e:e4:00:3d (try 1/3)
[ 24.820975] wlan0: RX AssocResp from 00:04:0e:e4:00:3d (capab=0x411 status=0 aid=1)
[ 24.828052] wlan0: associated
[ 24.828074] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 60.397956] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[ 60.397964] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 60.397967] [drm:drm_framebuffer_reference], FB ID: 21
[ 60.397969] [drm:drm_framebuffer_unreference], FB ID: 21
[ 60.403394] [drm:drm_stub_open],
[ 60.403401] [drm:drm_open_helper], pid = 1972, minor = 0
[ 60.403408] [drm:i915_driver_open],
[ 60.403416] [drm:drm_setup],
[ 60.403451] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_VERSION
[ 60.403459] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_VERSION
[ 60.403476] [drm:drm_release], open_count = 1
[ 60.403480] [drm:drm_release], pid = 1972, device = 0xe200, open_count = 1
[ 60.403488] [drm:drm_lastclose],
[ 60.403493] [drm:intel_crtc_cursor_set], cursor off
[ 60.403496] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[ 60.403502] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 60.403507] [drm:drm_framebuffer_reference], FB ID: 21
[ 60.403509] [drm:drm_framebuffer_unreference], FB ID: 21
[ 60.403511] [drm:intel_crtc_cursor_set], cursor off
[ 60.403513] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[ 60.403517] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 60.403520] [drm:drm_framebuffer_reference], FB ID: 21
[ 60.403522] [drm:drm_framebuffer_unreference], FB ID: 21
[ 60.403525] [drm:drm_lastclose], driver lastclose completed
[ 60.403527] [drm:drm_lastclose], lastclose completed
[ 60.403639] [drm:drm_stub_open],
[ 60.403642] [drm:drm_open_helper], pid = 1972, minor = 0
[ 60.403646] [drm:i915_driver_open],
[ 60.403651] [drm:drm_setup],
[ 60.403692] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_SET_VERSION
[ 60.403702] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_GET_UNIQUE
[ 60.403707] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_GET_UNIQUE
[ 60.403760] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_VERSION
[ 60.403768] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.403773] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETRESOURCES
[ 60.403777] [drm:drm_mode_getresources], CRTC[2] CONNECTORS[4] ENCODERS[4]
[ 60.403881] [drm:drm_release], open_count = 1
[ 60.403885] [drm:drm_release], pid = 1972, device = 0xe200, open_count = 1
[ 60.403891] [drm:drm_lastclose],
[ 60.403894] [drm:intel_crtc_cursor_set], cursor off
[ 60.403897] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[ 60.403901] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 60.403904] [drm:drm_framebuffer_reference], FB ID: 21
[ 60.403907] [drm:drm_framebuffer_unreference], FB ID: 21
[ 60.403909] [drm:intel_crtc_cursor_set], cursor off
[ 60.403911] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[ 60.403914] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 60.403917] [drm:drm_framebuffer_reference], FB ID: 21
[ 60.403919] [drm:drm_framebuffer_unreference], FB ID: 21
[ 60.403921] [drm:drm_lastclose], driver lastclose completed
[ 60.403923] [drm:drm_lastclose], lastclose completed
[ 60.405836] [drm:drm_stub_open],
[ 60.405843] [drm:drm_open_helper], pid = 1972, minor = 0
[ 60.405851] [drm:i915_driver_open],
[ 60.405859] [drm:drm_setup],
[ 60.405891] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_VERSION
[ 60.405898] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_VERSION
[ 60.405908] [drm:drm_release], open_count = 1
[ 60.405913] [drm:drm_release], pid = 1972, device = 0xe200, open_count = 1
[ 60.405921] [drm:drm_lastclose],
[ 60.405926] [drm:intel_crtc_cursor_set], cursor off
[ 60.405930] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[ 60.405939] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 60.405943] [drm:drm_framebuffer_reference], FB ID: 21
[ 60.405946] [drm:drm_framebuffer_unreference], FB ID: 21
[ 60.405949] [drm:intel_crtc_cursor_set], cursor off
[ 60.405952] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[ 60.405956] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 60.405960] [drm:drm_framebuffer_reference], FB ID: 21
[ 60.405963] [drm:drm_framebuffer_unreference], FB ID: 21
[ 60.405967] [drm:drm_lastclose], driver lastclose completed
[ 60.405970] [drm:drm_lastclose], lastclose completed
[ 60.406128] [drm:drm_stub_open],
[ 60.406132] [drm:drm_open_helper], pid = 1972, minor = 0
[ 60.406138] [drm:i915_driver_open],
[ 60.406145] [drm:drm_setup],
[ 60.406193] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_SET_VERSION
[ 60.406203] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_GET_UNIQUE
[ 60.406209] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_GET_UNIQUE
[ 60.406240] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_SET_VERSION
[ 60.406252] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.406441] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_GET_APERTURE
[ 60.406459] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.406469] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.406473] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.406479] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.406485] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.406490] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.406495] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.406500] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.406530] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.406579] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_THROTTLE
[ 60.406585] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.406590] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.406596] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.406602] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.406791] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETRESOURCES
[ 60.406797] [drm:drm_mode_getresources], CRTC[2] CONNECTORS[4] ENCODERS[4]
[ 60.406807] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETRESOURCES
[ 60.406812] [drm:drm_mode_getresources], CRTC[2] CONNECTORS[4] ENCODERS[4]
[ 60.406835] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCRTC
[ 60.406850] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GET_PIPE_FROM_CRTC_ID
[ 60.406864] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.406889] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCRTC
[ 60.406896] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GET_PIPE_FROM_CRTC_ID
[ 60.406902] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.406922] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 60.406926] [drm:drm_mode_getconnector], [CONNECTOR:7:?]
[ 60.406930] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1]
[ 60.406934] [drm:intel_lvds_detect], [CONNECTOR:7:LVDS-1]
[ 60.406944] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1] probed modes :
[ 60.406949] [drm:drm_mode_debug_printmodeline], Modeline 19:"1366x768" 60 70700 1366 1414 1446 1486 768 770 775 792 0x8 0xa
[ 60.406958] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 60.406961] [drm:drm_mode_getconnector], [CONNECTOR:7:?]
[ 60.406972] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETENCODER
[ 60.407572] [drm:intel_panel_get_backlight], get backlight PWM = 4648
[ 60.407617] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 60.407621] [drm:drm_mode_getconnector], [CONNECTOR:11:?]
[ 60.407625] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1]
[ 60.407629] [drm:intel_crt_detect], [CONNECTOR:11:VGA-1] force=1
[ 60.407633] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[ 60.407637] [drm:intel_crt_detect], CRT not detected via hotplug
[ 60.407819] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[ 60.407829] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[ 60.407834] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[ 60.407838] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[ 60.408248] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[ 60.408253] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[ 60.408256] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[ 60.408261] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1] disconnected
[ 60.408273] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 60.408279] [drm:drm_mode_getconnector], [CONNECTOR:11:?]
[ 60.408285] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1]
[ 60.408288] [drm:intel_crt_detect], [CONNECTOR:11:VGA-1] force=1
[ 60.408293] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[ 60.408297] [drm:intel_crt_detect], CRT not detected via hotplug
[ 60.408789] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[ 60.408794] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[ 60.408797] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[ 60.408800] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[ 60.409159] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[ 60.409164] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[ 60.409168] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[ 60.409172] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1] disconnected
[ 60.409183] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETENCODER
[ 60.409248] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 60.409254] [drm:drm_mode_getconnector], [CONNECTOR:14:?]
[ 60.409259] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1]
[ 60.409263] [drm:intel_hdmi_detect], [CONNECTOR:14:HDMI-A-1]
[ 60.409430] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[ 60.409436] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[ 60.409440] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1] disconnected
[ 60.409450] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 60.409455] [drm:drm_mode_getconnector], [CONNECTOR:14:?]
[ 60.409459] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1]
[ 60.409463] [drm:intel_hdmi_detect], [CONNECTOR:14:HDMI-A-1]
[ 60.409635] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[ 60.409640] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[ 60.409644] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1] disconnected
[ 60.409657] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETENCODER
[ 60.409707] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 60.409712] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[ 60.409717] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1]
[ 60.409721] [drm:intel_dp_detect], [CONNECTOR:18:DP-1]
[ 60.409726] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1] disconnected
[ 60.409733] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 60.409736] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[ 60.409740] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1]
[ 60.409743] [drm:intel_dp_detect], [CONNECTOR:18:DP-1]
[ 60.409748] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1] disconnected
[ 60.409757] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETENCODER
[ 60.409834] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 60.409838] [drm:drm_mode_getconnector], [CONNECTOR:7:?]
[ 60.409843] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1]
[ 60.409847] [drm:intel_lvds_detect], [CONNECTOR:7:LVDS-1]
[ 60.409858] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1] probed modes :
[ 60.409861] [drm:drm_mode_debug_printmodeline], Modeline 19:"1366x768" 60 70700 1366 1414 1446 1486 768 770 775 792 0x8 0xa
[ 60.409870] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 60.409874] [drm:drm_mode_getconnector], [CONNECTOR:7:?]
[ 60.409886] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.409894] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.409909] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPBLOB
[ 60.409915] [drm:drm_ioctl], ret = -22
[ 60.409925] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.409933] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.409943] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.409951] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.410967] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 60.410973] [drm:drm_mode_getconnector], [CONNECTOR:11:?]
[ 60.410978] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1]
[ 60.410982] [drm:intel_crt_detect], [CONNECTOR:11:VGA-1] force=1
[ 60.410987] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[ 60.410991] [drm:intel_crt_detect], CRT not detected via hotplug
[ 60.411165] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[ 60.411171] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[ 60.411174] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[ 60.411177] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[ 60.411535] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[ 60.411540] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[ 60.411543] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[ 60.411547] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1] disconnected
[ 60.411556] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 60.411560] [drm:drm_mode_getconnector], [CONNECTOR:11:?]
[ 60.411564] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1]
[ 60.411568] [drm:intel_crt_detect], [CONNECTOR:11:VGA-1] force=1
[ 60.411573] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[ 60.411577] [drm:intel_crt_detect], CRT not detected via hotplug
[ 60.411749] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[ 60.411754] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[ 60.411757] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[ 60.411760] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[ 60.412146] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[ 60.412151] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[ 60.412154] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[ 60.412158] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:11:VGA-1] disconnected
[ 60.412659] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 60.412667] [drm:drm_mode_getconnector], [CONNECTOR:14:?]
[ 60.412672] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1]
[ 60.412676] [drm:intel_hdmi_detect], [CONNECTOR:14:HDMI-A-1]
[ 60.412843] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[ 60.412849] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[ 60.412854] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1] disconnected
[ 60.412863] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 60.412868] [drm:drm_mode_getconnector], [CONNECTOR:14:?]
[ 60.412872] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1]
[ 60.412876] [drm:intel_hdmi_detect], [CONNECTOR:14:HDMI-A-1]
[ 60.413036] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[ 60.413042] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[ 60.413046] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:14:HDMI-A-1] disconnected
[ 60.413094] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 60.413099] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[ 60.413103] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1]
[ 60.413107] [drm:intel_dp_detect], [CONNECTOR:18:DP-1]
[ 60.413112] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1] disconnected
[ 60.413119] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETCONNECTOR
[ 60.413124] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[ 60.413128] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1]
[ 60.413131] [drm:intel_dp_detect], [CONNECTOR:18:DP-1]
[ 60.413136] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:DP-1] disconnected
[ 60.413358] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.426873] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.426909] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_TILING
[ 60.426940] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.426953] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.426964] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.426979] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.426995] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427007] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_PWRITE
[ 60.427023] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427034] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_PWRITE
[ 60.427043] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427053] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_PWRITE
[ 60.427061] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427074] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_PWRITE
[ 60.427087] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427101] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_PWRITE
[ 60.427109] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427122] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_PWRITE
[ 60.427129] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427140] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_PWRITE
[ 60.427147] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427159] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_PWRITE
[ 60.427167] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427179] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_PWRITE
[ 60.427189] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427202] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427213] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427235] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427240] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427252] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427258] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427273] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427277] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427290] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427296] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427314] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427319] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427329] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427336] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427351] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427356] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427369] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427376] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427389] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427394] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427404] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427411] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427427] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427432] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427442] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427448] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427462] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427467] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427477] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427483] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427498] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427503] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427513] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427519] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427535] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427539] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427550] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427556] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427571] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427576] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427591] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427597] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427611] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427615] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427626] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427632] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427648] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427653] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427666] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427672] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427688] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427692] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427706] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427712] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427726] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427731] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427743] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427749] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427765] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427770] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427780] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427786] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427800] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427805] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427815] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427821] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427835] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427839] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427850] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427856] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427874] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427878] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427891] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427897] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427911] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427916] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427926] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427932] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427947] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427951] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427961] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.427967] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.427983] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.427988] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.427998] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428005] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428020] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428025] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428133] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428168] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428200] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428205] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428216] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428222] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428241] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428245] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428255] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428261] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428275] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428279] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428289] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428295] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428308] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428312] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428325] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428331] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428348] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428352] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428362] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428367] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428381] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428385] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428395] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428400] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428414] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428418] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428432] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428440] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428456] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428469] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428485] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428497] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428512] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428517] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428529] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428535] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428550] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428554] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428565] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428570] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428585] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428590] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428599] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428605] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428618] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428622] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428633] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428639] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428652] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428656] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428666] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428671] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428688] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428692] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428705] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428712] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428740] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428750] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428769] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428777] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428793] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428797] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428806] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428812] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428827] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428832] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428841] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428847] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428859] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428864] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428876] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428883] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428899] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428903] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428913] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428919] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428933] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428938] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428951] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428957] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.428970] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.428974] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.428985] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.428996] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429034] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429051] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429067] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429073] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429089] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429094] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429104] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429110] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429122] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429126] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429136] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429142] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429155] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429159] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429171] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429177] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429191] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429196] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429206] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429212] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429226] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429230] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429243] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429249] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429262] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429266] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429281] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429289] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429318] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429323] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429333] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429338] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429352] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429356] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429366] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429371] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429385] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429389] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429399] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429405] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429423] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429427] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429441] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429453] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429473] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429477] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429487] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429492] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429505] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429509] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429519] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429532] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429552] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429556] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429566] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429572] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429585] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429593] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429608] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429616] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429629] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429634] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429644] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429650] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429664] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429672] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429682] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429688] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429706] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429710] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429720] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429726] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429739] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429743] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429753] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429759] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429779] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429783] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429796] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429802] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429815] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429825] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429836] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_PWRITE
[ 60.429844] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429854] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429861] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429868] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429873] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429884] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429890] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429927] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.429932] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.429945] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP
[ 60.429951] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_DOMAIN
[ 60.429960] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SW_FINISH
[ 60.430654] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.430663] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.430670] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.430676] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.430683] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.430688] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.430712] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETPROPERTY
[ 60.430786] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[ 60.430789] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[ 60.430886] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[ 60.430890] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[ 60.430935] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.430943] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.430951] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.430957] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.430968] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.430974] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.430979] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.430985] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.430993] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.431000] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.431008] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.431014] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.431029] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETPROPERTY
[ 60.431048] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETPROPERTY
[ 60.431058] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.431064] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.431072] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.431078] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.431087] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.431093] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.431100] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.431107] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.431118] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETPROPERTY
[ 60.431127] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETPROPERTY
[ 60.431436] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.432002] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_SET_MASTER
[ 60.432016] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_ADDFB
[ 60.432027] [drm:drm_framebuffer_reference], FB ID: 22
[ 60.432030] [drm:drm_mode_addfb], [FB:22]
[ 60.432083] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETGAMMA
[ 60.432147] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETCRTC
[ 60.432152] [drm:drm_mode_setcrtc], [CRTC:3]
[ 60.432155] [drm:drm_framebuffer_reference], FB ID: 22
[ 60.432163] [drm:drm_mode_setcrtc], [CONNECTOR:7:LVDS-1]
[ 60.432166] [drm:intel_crtc_set_config], [CRTC:3] [FB:22] #connectors=1 (x y) (0 0)
[ 60.432176] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 60.438050] [drm:ironlake_update_plane], Writing base 0047A000 00000000 0 0 5632
[ 60.444188] [drm:intel_update_fbc], disabled per chip default
[ 60.444201] [drm:drm_framebuffer_reference], FB ID: 22
[ 60.444204] [drm:drm_framebuffer_unreference], FB ID: 21
[ 60.444207] [drm:drm_framebuffer_unreference], FB ID: 22
[ 60.444236] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.444243] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.444252] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.444258] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.444265] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETPROPERTY
[ 60.444271] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.444275] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.444279] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.444283] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.444288] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETPROPERTY
[ 60.444293] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.444297] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.444301] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.444304] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_GETPROPERTY
[ 60.444309] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETPROPERTY
[ 60.444315] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_MODE_SETCRTC
[ 60.444318] [drm:drm_mode_setcrtc], [CRTC:5]
[ 60.444321] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[ 60.444326] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 60.444329] [drm:drm_framebuffer_reference], FB ID: 22
[ 60.444331] [drm:drm_framebuffer_unreference], FB ID: 22
[ 60.618229] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_VERSION
[ 60.618240] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_VERSION
[ 60.618707] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_GET_APERTURE
[ 60.618717] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.618722] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.618725] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.618728] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.618731] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.618734] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.618737] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.618740] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.618750] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.634906] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.634920] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.634925] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GETPARAM
[ 60.634935] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.634956] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_TILING
[ 60.634973] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_GEM_CLOSE
[ 60.637842] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.637866] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_TILING
[ 60.637917] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_CREATE
[ 60.637930] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_SET_TILING
[ 60.637948] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, I915_GEM_MMAP_GTT
[ 60.638287] [drm:drm_ioctl], pid=1972, dev=0xe200, auth=1, DRM_IOCTL_DROP_MASTER
[ 60.638313] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[ 60.638319] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 60.638327] [drm:ironlake_update_plane], Writing base 00072000 00000000 0 0 5504
[ 60.644095] [drm:intel_update_fbc], disabled per chip default
[ 60.644107] [drm:drm_framebuffer_reference], FB ID: 21
[ 60.644109] [drm:drm_framebuffer_unreference], FB ID: 22
[ 60.644112] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[ 60.644119] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 60.644121] [drm:drm_framebuffer_reference], FB ID: 21
[ 60.644122] [drm:drm_framebuffer_unreference], FB ID: 21
[ 60.644127] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[ 60.644133] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 60.644135] [drm:drm_framebuffer_reference], FB ID: 21
[ 60.644136] [drm:drm_framebuffer_unreference], FB ID: 21
[ 60.644151] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[ 60.644155] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 60.644157] [drm:drm_framebuffer_reference], FB ID: 21
[ 60.644158] [drm:drm_framebuffer_unreference], FB ID: 21
[ 60.648149] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[ 60.648152] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 60.648154] [drm:drm_framebuffer_reference], FB ID: 21
[ 60.648155] [drm:drm_framebuffer_unreference], FB ID: 21
[ 60.653252] [drm:drm_release], open_count = 1
[ 60.653259] [drm:drm_release], pid = 1972, device = 0xe200, open_count = 1
[ 60.653264] [drm:__drm_framebuffer_unreference], FB ID: 0
[ 60.653267] [drm:drm_framebuffer_unreference], FB ID: 0
[ 60.653440] [drm:drm_lastclose],
[ 60.653446] [drm:intel_crtc_cursor_set], cursor off
[ 60.653449] [drm:intel_crtc_set_config], [CRTC:3] [FB:21] #connectors=1 (x y) (0 0)
[ 60.653456] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 60.653459] [drm:drm_framebuffer_reference], FB ID: 21
[ 60.653461] [drm:drm_framebuffer_unreference], FB ID: 21
[ 60.653463] [drm:intel_crtc_cursor_set], cursor off
[ 60.653465] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[ 60.653468] [drm:intel_modeset_stage_output_state], [CONNECTOR:7:LVDS-1] to [CRTC:3]
[ 60.653471] [drm:drm_framebuffer_reference], FB ID: 21
[ 60.653472] [drm:drm_framebuffer_unreference], FB ID: 21
[ 60.653475] [drm:drm_lastclose], driver lastclose completed
[ 60.653477] [drm:drm_lastclose], lastclose completed