Re: [BUGFIX v2 0/4] fix bug 56531, 59501 and 59581

From: Alexander E. Patrakov
Date: Fri Jun 21 2013 - 00:36:18 EST


2013/6/21 Rafael J. Wysocki <rjw@xxxxxxx>:
> On Wednesday, June 19, 2013 11:18:41 AM Alexander E. Patrakov wrote:
>> 2013/6/19 Rafael J. Wysocki <rjw@xxxxxxx>:
>> > OK, let's try to untangle this a bit.
>> >
>> > If you applyt patches [1/4] and [4/4] from the $subject series only, what
>> > does remain unfixed?
>>
>> [not tested, can do so in 12 hours if needed]
>>
>> I think there will be problems on undocking and/or on the second
>> docking, as described in comments #6 - #8 of
>> https://bugzilla.kernel.org/show_bug.cgi?id=59501
>
> OK, I think I have something that might work. It may not solve all problems,
> but maybe it helps a bit. Unfortunately, I can't really test it, so please do
> if you can.
>
> Please apply [1/4] and [4/4] and the one below and see what happens.

Tested on top of 3.10-rc6.

Attached dmesg output for the following testcase: boot undocked, dock,
undock, dock.

The initial dock went OK. The subsequent undock resulted in the blue
led on the dock cable turning off quickly, but in PCI devices slowly,
one-by-one, disappearing from the bus. Also, there were "acpi_handle
corrupt" messages in dmesg. The subsequent dock resulted in no devices
added to the bus. So - your patch is not a good replacement for
patches 2 and 3 in the original series.

>
> Thanks,
> Rafael
>
>
> ---
> Rationale:
> acpiphp_glue.c:disable_device() trims the underlying ACPI device objects
> after removing the companion PCI devices, so the dock station code
> doesn't need to trim them separately for the dependent devices handled
> by acpiphp.
>
> Moreover, acpiphp_glue.c is the only user of
> [un]register_hotplug_dock_device(), so *all* devices on the
> ds->hotplug_devices list are handled by acpiphp and ops is set for all
> of them.
>
> This means that (1) the ds->hotplug_devices list is not necessary (we
> can always walk ds->dependent_devices instead and look for those that
> have dd->ops set) and (2) we don't need to call
> dock_remove_acpi_device(dd->handle) on eject for any of those devices,
> because dd->ops->handler() is going to take care of the ACPI device
> objects trimming for them anyway.
>
> Taking the above into account make the following changes:
> (1) Drop hotplug_devices from struct dock_station.
> (2) Drop dock_{add|del}_hotplug_device()
> (3) Make [un]register_hotplug_dock_device() [un]set 'ops' and
> 'context' for the given device under ds->hp_lock.
> (4) Add hot_remove_dock_devices() that walks ds->dependent_devices and
> either calls dd->ops->handler(), if present, or trims the underlying
> ACPI device object, otherwise.
> (5) Replace hotplug_dock_devices(ds, ACPI_NOTIFY_EJECT_REQUEST) calls
> with hot_remove_dock_devices(ds).
> (6) Rename hotplug_dock_devices() to hot_add_dock_devices() and make
> it only handle bus check and device check requests. Make it walk
> ds->dependent_devices instead of ds->hotplug devices.
> (7) Make dock_event() walk ds->dependent_devices (instead of
> ds->hotplug devices) under ds->hp_lock.
> ---
> drivers/acpi/dock.c | 111 ++++++++++++++++++++++++----------------------------
> 1 file changed, 53 insertions(+), 58 deletions(-)
>
> Index: linux-pm/drivers/acpi/dock.c
> ===================================================================
> --- linux-pm.orig/drivers/acpi/dock.c
> +++ linux-pm/drivers/acpi/dock.c
> @@ -66,7 +66,6 @@ struct dock_station {
> spinlock_t dd_lock;
> struct mutex hp_lock;
> struct list_head dependent_devices;
> - struct list_head hotplug_devices;
>
> struct list_head sibling;
> struct platform_device *dock_device;
> @@ -121,38 +120,6 @@ add_dock_dependent_device(struct dock_st
> }
>
> /**
> - * dock_add_hotplug_device - associate a hotplug handler with the dock station
> - * @ds: The dock station
> - * @dd: The dependent device struct
> - *
> - * Add the dependent device to the dock's hotplug device list
> - */
> -static void
> -dock_add_hotplug_device(struct dock_station *ds,
> - struct dock_dependent_device *dd)
> -{
> - mutex_lock(&ds->hp_lock);
> - list_add_tail(&dd->hotplug_list, &ds->hotplug_devices);
> - mutex_unlock(&ds->hp_lock);
> -}
> -
> -/**
> - * dock_del_hotplug_device - remove a hotplug handler from the dock station
> - * @ds: The dock station
> - * @dd: the dependent device struct
> - *
> - * Delete the dependent device from the dock's hotplug device list
> - */
> -static void
> -dock_del_hotplug_device(struct dock_station *ds,
> - struct dock_dependent_device *dd)
> -{
> - mutex_lock(&ds->hp_lock);
> - list_del(&dd->hotplug_list);
> - mutex_unlock(&ds->hp_lock);
> -}
> -
> -/**
> * find_dock_dependent_device - get a device dependent on this dock
> * @ds: the dock station
> * @handle: the acpi_handle of the device we want
> @@ -342,40 +309,60 @@ static void dock_remove_acpi_device(acpi
> }
>
> /**
> - * hotplug_dock_devices - insert or remove devices on the dock station
> - * @ds: the dock station
> - * @event: either bus check or eject request
> + * hot_remove_dock_devices - Remove devices on a dock station.
> + * @ds: Dock station to remove devices for.
> + *
> + * For each device depending on @ds, if a dock event handler is registered,
> + * call it for the device, or trim the underlying ACPI device object otherwise.
> + *
> + * Dock event handlers are responsible for trimming the underlying ACPI device
> + * objects if present.
> + */
> +static void hot_remove_dock_devices(struct dock_station *ds)
> +{
> + struct dock_dependent_device *dd;
> +
> + mutex_lock(&ds->hp_lock);
> +
> + list_for_each_entry(dd, &ds->dependent_devices, list) {
> + if (dd->ops && dd->ops->handler)
> + dd->ops->handler(dd->handle, ACPI_NOTIFY_EJECT_REQUEST,
> + dd->context);
> + else
> + dock_remove_acpi_device(dd->handle);
> + }
> +
> + mutex_unlock(&ds->hp_lock);
> +}
> +
> +/**
> + * hot_add_dock_devices - Insert devices on a dock station.
> + * @ds: Dock station to insert devices for.
> *
> * Some devices on the dock station need to have drivers called
> * to perform hotplug operations after a dock event has occurred.
> * Traverse the list of dock devices that have registered a
> * hotplug handler, and call the handler.
> */
> -static void hotplug_dock_devices(struct dock_station *ds, u32 event)
> +static void hot_add_dock_devices(struct dock_station *ds, u32 event)
> {
> struct dock_dependent_device *dd;
>
> mutex_lock(&ds->hp_lock);
>
> - /*
> - * First call driver specific hotplug functions
> - */
> - list_for_each_entry(dd, &ds->hotplug_devices, hotplug_list)
> + /* First call driver specific hotplug event handlers. */
> + list_for_each_entry(dd, &ds->dependent_devices, list)
> if (dd->ops && dd->ops->handler)
> dd->ops->handler(dd->handle, event, dd->context);
>
> /*
> - * Now make sure that an acpi_device is created for each
> - * dependent device, or removed if this is an eject request.
> - * This will cause acpi_drivers to be stopped/started if they
> - * exist
> + * Now make sure that an acpi_device is created for each dependent
> + * device. That will cause scan handlers to attach to devices objects
> + * or acpi_drivers to be started if they exist.
> */
> - list_for_each_entry(dd, &ds->dependent_devices, list) {
> - if (event == ACPI_NOTIFY_EJECT_REQUEST)
> - dock_remove_acpi_device(dd->handle);
> - else
> - dock_create_acpi_device(dd->handle);
> - }
> + list_for_each_entry(dd, &ds->dependent_devices, list)
> + dock_create_acpi_device(dd->handle);
> +
> mutex_unlock(&ds->hp_lock);
> }
>
> @@ -398,10 +385,14 @@ static void dock_event(struct dock_stati
> if (num == DOCK_EVENT)
> kobject_uevent_env(&dev->kobj, KOBJ_CHANGE, envp);
>
> - list_for_each_entry(dd, &ds->hotplug_devices, hotplug_list)
> + mutex_lock(&ds->hp_lock);
> +
> + list_for_each_entry(dd, &ds->dependent_devices, list)
> if (dd->ops && dd->ops->uevent)
> dd->ops->uevent(dd->handle, event, dd->context);
>
> + mutex_unlock(&ds->hp_lock);
> +
> if (num != DOCK_EVENT)
> kobject_uevent_env(&dev->kobj, KOBJ_CHANGE, envp);
> }
> @@ -598,9 +589,10 @@ register_hotplug_dock_device(acpi_handle
> */
> dd = find_dock_dependent_device(dock_station, handle);
> if (dd) {
> + mutex_lock(&dock_station->hp_lock);
> dd->ops = ops;
> dd->context = context;
> - dock_add_hotplug_device(dock_station, dd);
> + mutex_unlock(&dock_station->hp_lock);
> ret = 0;
> }
> }
> @@ -623,8 +615,12 @@ void unregister_hotplug_dock_device(acpi
>
> list_for_each_entry(dock_station, &dock_stations, sibling) {
> dd = find_dock_dependent_device(dock_station, handle);
> - if (dd)
> - dock_del_hotplug_device(dock_station, dd);
> + if (dd) {
> + mutex_lock(&dock_station->hp_lock);
> + dd->ops = NULL;
> + dd->context = NULL;
> + mutex_unlock(&dock_station->hp_lock);
> + }
> }
> }
> EXPORT_SYMBOL_GPL(unregister_hotplug_dock_device);
> @@ -649,7 +645,7 @@ static int handle_eject_request(struct d
> */
> dock_event(ds, event, UNDOCK_EVENT);
>
> - hotplug_dock_devices(ds, ACPI_NOTIFY_EJECT_REQUEST);
> + hot_remove_dock_devices(ds);
> undock(ds);
> dock_lock(ds, 0);
> eject_dock(ds);
> @@ -708,7 +704,7 @@ static void dock_notify(acpi_handle hand
> }
> atomic_notifier_call_chain(&dock_notifier_list,
> event, NULL);
> - hotplug_dock_devices(ds, event);
> + hot_add_dock_devices(ds, event);
> complete_dock(ds);
> dock_event(ds, event, DOCK_EVENT);
> dock_lock(ds, 1);
> @@ -953,7 +949,6 @@ static int __init dock_add(acpi_handle h
> mutex_init(&dock_station->hp_lock);
> spin_lock_init(&dock_station->dd_lock);
> INIT_LIST_HEAD(&dock_station->sibling);
> - INIT_LIST_HEAD(&dock_station->hotplug_devices);
> ATOMIC_INIT_NOTIFIER_HEAD(&dock_notifier_list);
> INIT_LIST_HEAD(&dock_station->dependent_devices);
>
>
>
>
> --
> I speak only for myself.
> Rafael J. Wysocki, Intel Open Source Technology Center.



--
Alexander E. Patrakov
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 3.10.0-rc6-rafael (root@aep-vaio) (gcc version 4.6.3 (Gentoo 4.6.3 p1.11, pie-0.5.2) ) #1 SMP PREEMPT Fri Jun 21 10:11:50 YEKT 2013
[ 0.000000] Command line: root=/dev/vaio/gentoo64a-root rd.luks.uuid=luks-54ed2bf3-fb3d-4442-b8be-2f0cfda6a521 acpiphp.debug=1 initrd=/boot/initramfs.img BOOT_IMAGE=/boot/vmlinuz
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008f3ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000008f400-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000009ae3efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000009ae3f000-0x000000009aebefff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000009aebf000-0x000000009afbefff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000009afbf000-0x000000009affefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000009afff000-0x000000009affffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000009b000000-0x000000009f9fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] 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-0x000000025fdfffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.6 present.
[ 0.000000] DMI: Sony Corporation VPCZ23A4R/VAIO, BIOS R1013H5 05/21/2012
[ 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 = 0x25fe00 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-E7FFF write-protect
[ 0.000000] E8000-EFFFF write-combining
[ 0.000000] F0000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000000000 mask F80000000 write-back
[ 0.000000] 1 base 080000000 mask FE0000000 write-back
[ 0.000000] 2 base 09B000000 mask FFF000000 uncachable
[ 0.000000] 3 base 09C000000 mask FFC000000 uncachable
[ 0.000000] 4 base 0FFC00000 mask FFFC00000 write-protect
[ 0.000000] 5 base 100000000 mask F00000000 write-back
[ 0.000000] 6 base 200000000 mask FC0000000 write-back
[ 0.000000] 7 base 240000000 mask FF0000000 write-back
[ 0.000000] 8 base 250000000 mask FF0000000 write-back
[ 0.000000] 9 base 25FE00000 mask FFFE00000 uncachable
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] e820: last_pfn = 0x9b000 max_arch_pfn = 0x400000000
[ 0.000000] found SMP MP-table at [mem 0x000fe1b0-0x000fe1bf] mapped at [ffff8800000fe1b0]
[ 0.000000] Base memory trampoline at [ffff880000089000] 89000 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 [0x026ba000, 0x026bafff] PGTABLE
[ 0.000000] BRK [0x026bb000, 0x026bbfff] PGTABLE
[ 0.000000] BRK [0x026bc000, 0x026bcfff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x25fc00000-0x25fdfffff]
[ 0.000000] [mem 0x25fc00000-0x25fdfffff] page 2M
[ 0.000000] BRK [0x026bd000, 0x026bdfff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x25c000000-0x25fbfffff]
[ 0.000000] [mem 0x25c000000-0x25fbfffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x200000000-0x25bffffff]
[ 0.000000] [mem 0x200000000-0x25bffffff] page 2M
[ 0.000000] BRK [0x026be000, 0x026befff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x00100000-0x9ae3efff]
[ 0.000000] [mem 0x00100000-0x001fffff] page 4k
[ 0.000000] [mem 0x00200000-0x9adfffff] page 2M
[ 0.000000] [mem 0x9ae00000-0x9ae3efff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x9afff000-0x9affffff]
[ 0.000000] [mem 0x9afff000-0x9affffff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
[ 0.000000] [mem 0x100000000-0x1ffffffff] page 2M
[ 0.000000] RAMDISK: [mem 0x7f652000-0x7fffefff]
[ 0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 Sony)
[ 0.000000] ACPI: XSDT 000000009affe120 00094 (v01 Sony VAIO 20120521 01000013)
[ 0.000000] ACPI: FACP 000000009affc000 000F4 (v04 Sony VAIO 20120521 ACPI 00040000)
[ 0.000000] ACPI: DSDT 000000009aff0000 08607 (v01 Sony VAIO 20120521 ACPI 00040000)
[ 0.000000] ACPI: FACS 000000009af6e000 00040
[ 0.000000] ACPI: ASF! 000000009affd000 000A5 (v32 Sony VAIO 20120521 ACPI 00040000)
[ 0.000000] ACPI: HPET 000000009affb000 00038 (v01 Sony VAIO 20120521 ACPI 00040000)
[ 0.000000] ACPI: APIC 000000009affa000 0008C (v02 Sony VAIO 20120521 ACPI 00040000)
[ 0.000000] ACPI: MCFG 000000009aff9000 0003C (v01 Sony VAIO 20120521 ACPI 00040000)
[ 0.000000] ACPI: SLIC 000000009afef000 00176 (v01 Sony VAIO 20120521 ACPI 00040000)
[ 0.000000] ACPI: WDAT 000000009afee000 00224 (v01 Sony VAIO 20120521 ACPI 00040000)
[ 0.000000] ACPI: SSDT 000000009afed000 00CA6 (v01 Sony VAIO 20120521 ACPI 00040000)
[ 0.000000] ACPI: BOOT 000000009afeb000 00028 (v01 Sony VAIO 20120521 ACPI 00040000)
[ 0.000000] ACPI: SSDT 000000009afe9000 0022B (v01 Sony VAIO 20120521 ACPI 00040000)
[ 0.000000] ACPI: ASPT 000000009afe6000 00034 (v07 Sony VAIO 20120521 ACPI 00040000)
[ 0.000000] ACPI: SSDT 000000009afe5000 00846 (v01 Sony VAIO 20120521 ACPI 00040000)
[ 0.000000] ACPI: SSDT 000000009afe4000 00996 (v01 Sony VAIO 20120521 ACPI 00040000)
[ 0.000000] ACPI: SSDT 000000009afe3000 00EE8 (v01 Sony VAIO 20120521 ACPI 00040000)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000025fdfffff]
[ 0.000000] Initmem setup node 0 [mem 0x00000000-0x25fdfffff]
[ 0.000000] NODE_DATA [mem 0x25fdf4000-0x25fdf8fff]
[ 0.000000] [ffffea0000000000-ffffea00097fffff] PMD -> [ffff880257400000-ffff88025f3fffff] on node 0
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x00001000-0x00ffffff]
[ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
[ 0.000000] Normal [mem 0x100000000-0x25fdfffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x00001000-0x0008efff]
[ 0.000000] node 0: [mem 0x00100000-0x9ae3efff]
[ 0.000000] node 0: [mem 0x9afff000-0x9affffff]
[ 0.000000] node 0: [mem 0x100000000-0x25fdfffff]
[ 0.000000] On node 0 totalpages: 2075598
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 142 pages reserved
[ 0.000000] DMA zone: 3982 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 9849 pages used for memmap
[ 0.000000] DMA32 zone: 630336 pages, LIFO batch:31
[ 0.000000] Normal zone: 22520 pages used for memmap
[ 0.000000] Normal zone: 1441280 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: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ2 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 40
[ 0.000000] PM: Registered nosave memory: 000000000008f000 - 0000000000090000
[ 0.000000] PM: Registered nosave memory: 0000000000090000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[ 0.000000] PM: Registered nosave memory: 000000009ae3f000 - 000000009aebf000
[ 0.000000] PM: Registered nosave memory: 000000009aebf000 - 000000009afbf000
[ 0.000000] PM: Registered nosave memory: 000000009afbf000 - 000000009afff000
[ 0.000000] PM: Registered nosave memory: 000000009b000000 - 000000009fa00000
[ 0.000000] PM: Registered nosave memory: 000000009fa00000 - 00000000e0000000
[ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
[ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000feb00000
[ 0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000
[ 0.000000] PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000
[ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000
[ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
[ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
[ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
[ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffd80000
[ 0.000000] PM: Registered nosave memory: 00000000ffd80000 - 0000000100000000
[ 0.000000] e820: [mem 0x9fa00000-0xdfffffff] available for PCI devices
[ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88025fa00000 s83904 r8192 d22592 u262144
[ 0.000000] pcpu-alloc: s83904 r8192 d22592 u262144 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2043023
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: root=/dev/vaio/gentoo64a-root rd.luks.uuid=luks-54ed2bf3-fb3d-4442-b8be-2f0cfda6a521 acpiphp.debug=1 initrd=/boot/initramfs.img BOOT_IMAGE=/boot/vmlinuz
[ 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: 8069704k/9959424k available (6577k kernel code, 1657032k absent, 232688k reserved, 6465k data, 980k init)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.000000] Preemptible hierarchical RCU implementation.
[ 0.000000] CONFIG_RCU_FANOUT set to non-default value of 32
[ 0.000000] Additional per-CPU info printed with stalls.
[ 0.000000] NR_IRQS:4352 nr_irqs:744 16
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[ 0.000000] ... MAX_LOCKDEP_SUBCLASSES: 8
[ 0.000000] ... MAX_LOCK_DEPTH: 48
[ 0.000000] ... MAX_LOCKDEP_KEYS: 8191
[ 0.000000] ... CLASSHASH_SIZE: 4096
[ 0.000000] ... MAX_LOCKDEP_ENTRIES: 16384
[ 0.000000] ... MAX_LOCKDEP_CHAINS: 32768
[ 0.000000] ... CHAINHASH_SIZE: 16384
[ 0.000000] memory used by lock dependency info: 5855 kB
[ 0.000000] per task-struct memory footprint: 1920 bytes
[ 0.000000] allocated 33554432 bytes of page_cgroup
[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[ 0.000000] kmemleak: Kernel memory leak detector disabled
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.001000] tsc: Detected 2793.673 MHz processor
[ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 5587.34 BogoMIPS (lpj=2793673)
[ 0.000123] pid_max: default: 32768 minimum: 301
[ 0.000239] Security Framework initialized
[ 0.000829] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[ 0.002411] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.003110] Mount-cache hash table entries: 256
[ 0.003793] Initializing cgroup subsys memory
[ 0.003887] Initializing cgroup subsys devices
[ 0.003959] Initializing cgroup subsys freezer
[ 0.004511] Initializing cgroup subsys blkio
[ 0.004569] Initializing cgroup subsys net_prio
[ 0.004628] Initializing cgroup subsys hugetlb
[ 0.004732] CPU: Physical Processor ID: 0
[ 0.004789] CPU: Processor Core ID: 0
[ 0.004847] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.004944] mce: CPU supports 7 MCE banks
[ 0.005010] CPU0: Thermal monitoring enabled (TM1)
[ 0.005080] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
tlb_flushall_shift: 5
[ 0.005345] Freeing SMP alternatives: 24k freed
[ 0.005411] ACPI: Core revision 20130328
[ 0.016590] ACPI: All ACPI Tables successfully acquired
[ 0.028977] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.039058] smpboot: CPU0: Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz (fam: 06, model: 2a, stepping: 07)
[ 0.039259] TSC deadline timer enabled
[ 0.039274] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, Intel PMU driver.
[ 0.039511] perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
[ 0.039592] ... version: 3
[ 0.039649] ... bit width: 48
[ 0.039707] ... generic registers: 4
[ 0.039764] ... value mask: 0000ffffffffffff
[ 0.039824] ... max period: 000000007fffffff
[ 0.039884] ... fixed-purpose events: 3
[ 0.039940] ... event mask: 000000070000000f
[ 0.049642] SMP alternatives: lockdep: fixing up alternatives
[ 0.063199] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.049721] smpboot: Booting Node 0, Processors #1
[ 0.065131] SMP alternatives: lockdep: fixing up alternatives
[ 0.065242] #2
[ 0.080692] SMP alternatives: lockdep: fixing up alternatives
[ 0.080807] #3
[ 0.094132] Brought up 4 CPUs
[ 0.094243] smpboot: Total of 4 processors activated (22349.38 BogoMIPS)
[ 0.097892] devtmpfs: initialized
[ 0.100470] PM: Registering ACPI NVS region [mem 0x9aebf000-0x9afbefff] (1048576 bytes)
[ 0.100812] xor: automatically using best checksumming function:
[ 0.110231] avx : 20484.000 MB/sec
[ 0.110473] NET: Registered protocol family 16
[ 0.110905] ACPI: bus type PCI registered
[ 0.110964] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.111100] dca service started, version 1.12.1
[ 0.111219] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.111303] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[ 0.133936] PCI: Using configuration type 1 for base access
[ 0.136050] bio: create slab <bio-0> at 0
[ 0.152431] raid6: sse2x1 7582 MB/s
[ 0.169478] raid6: sse2x2 9441 MB/s
[ 0.186530] raid6: sse2x4 10824 MB/s
[ 0.186588] raid6: using algorithm sse2x4 (10824 MB/s)
[ 0.186648] raid6: using ssse3x2 recovery algorithm
[ 0.186783] ACPI: Added _OSI(Module Device)
[ 0.186843] ACPI: Added _OSI(Processor Device)
[ 0.186901] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.186960] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.191632] ACPI: EC: Look up EC in DSDT
[ 0.196177] ACPI: Executed 1 blocks of module-level executable AML code
[ 0.203701] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[ 0.211604] ACPI: SSDT 000000009ae70718 0067C (v01 Sony VAIO 20120521 INTL 20100121)
[ 0.212936] ACPI: Dynamic OEM Table Load:
[ 0.213072] ACPI: SSDT (null) 0067C (v01 Sony VAIO 20120521 INTL 20100121)
[ 0.216960] ACPI: SSDT 000000009ae71a98 00303 (v01 Sony VAIO 20120521 INTL 20100121)
[ 0.218348] ACPI: Dynamic OEM Table Load:
[ 0.218486] ACPI: SSDT (null) 00303 (v01 Sony VAIO 20120521 INTL 20100121)
[ 0.220865] ACPI: SSDT 000000009ae6fd98 00119 (v01 Sony VAIO 20120521 INTL 20100121)
[ 0.222200] ACPI: Dynamic OEM Table Load:
[ 0.222337] ACPI: SSDT (null) 00119 (v01 Sony VAIO 20120521 INTL 20100121)
[ 0.632882] ACPI: Interpreter enabled
[ 0.632946] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130328/hwxface-568)
[ 0.633106] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130328/hwxface-568)
[ 0.633295] ACPI: (supports S0 S3 S4 S5)
[ 0.633353] ACPI: Using IOAPIC for interrupt routing
[ 0.633446] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.634414] ACPI: ACPI Dock Station Driver: 1 docks/bays found
[ 0.651594] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[ 0.651775] \_SB_.PCI0:_OSC invalid UUID
[ 0.651777] _OSC request data:1 8 0
[ 0.652840] PCI host bridge to bus 0000:00
[ 0.652898] pci_bus 0000:00: root bus resource [bus 00-fe]
[ 0.652960] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
[ 0.653022] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
[ 0.653085] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[ 0.653148] pci_bus 0000:00: root bus resource [mem 0x9fa00000-0xfeafffff]
[ 0.653248] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
[ 0.653463] pci 0000:00:02.0: [8086:0126] type 00 class 0x030000
[ 0.653479] pci 0000:00:02.0: reg 10: [mem 0xd0000000-0xd03fffff 64bit]
[ 0.653487] pci 0000:00:02.0: reg 18: [mem 0xa0000000-0xafffffff 64bit pref]
[ 0.653493] pci 0000:00:02.0: reg 20: [io 0xa000-0xa03f]
[ 0.653687] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[ 0.653725] pci 0000:00:16.0: reg 10: [mem 0xd9404000-0xd940400f 64bit]
[ 0.653855] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.654039] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[ 0.654336] pci 0000:00:1a.0: reg 10: [mem 0xd9409000-0xd94093ff]
[ 0.656042] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.656138] pci 0000:00:1a.0: System wakeup disabled by ACPI
[ 0.656314] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[ 0.656344] pci 0000:00:1b.0: reg 10: [mem 0xd9400000-0xd9403fff 64bit]
[ 0.656480] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.656533] pci 0000:00:1b.0: System wakeup disabled by ACPI
[ 0.656655] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[ 0.656797] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.656861] pci 0000:00:1c.0: System wakeup disabled by ACPI
[ 0.656982] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
[ 0.657126] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.657191] pci 0000:00:1c.1: System wakeup disabled by ACPI
[ 0.657309] pci 0000:00:1c.2: [8086:1c14] type 01 class 0x060400
[ 0.657454] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 0.657518] pci 0000:00:1c.2: System wakeup disabled by ACPI
[ 0.657636] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
[ 0.657780] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 0.657852] pci 0000:00:1c.3: System wakeup disabled by ACPI
[ 0.657974] pci 0000:00:1c.6: [8086:1c1c] type 01 class 0x060400
[ 0.658122] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
[ 0.658195] pci 0000:00:1c.6: System wakeup disabled by ACPI
[ 0.658329] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[ 0.658620] pci 0000:00:1d.0: reg 10: [mem 0xd9408000-0xd94083ff]
[ 0.660343] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.660410] pci 0000:00:1d.0: System wakeup disabled by ACPI
[ 0.660531] pci 0000:00:1f.0: [8086:1c4b] type 00 class 0x060100
[ 0.660772] pci 0000:00:1f.2: [8086:282a] type 00 class 0x010400
[ 0.660810] pci 0000:00:1f.2: reg 10: [io 0xa088-0xa08f]
[ 0.660826] pci 0000:00:1f.2: reg 14: [io 0xa094-0xa097]
[ 0.660840] pci 0000:00:1f.2: reg 18: [io 0xa080-0xa087]
[ 0.660856] pci 0000:00:1f.2: reg 1c: [io 0xa090-0xa093]
[ 0.660870] pci 0000:00:1f.2: reg 20: [io 0xa060-0xa07f]
[ 0.660884] pci 0000:00:1f.2: reg 24: [mem 0xd9407000-0xd94077ff]
[ 0.660983] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.661101] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[ 0.661129] pci 0000:00:1f.3: reg 10: [mem 0xd9405000-0xd94050ff 64bit]
[ 0.661171] pci 0000:00:1f.3: reg 20: [io 0xa040-0xa05f]
[ 0.661682] pci 0000:02:00.0: [8086:0091] type 00 class 0x028000
[ 0.661984] pci 0000:02:00.0: reg 10: [mem 0xd8400000-0xd8401fff 64bit]
[ 0.663551] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.663789] pci 0000:02:00.0: System wakeup disabled by ACPI
[ 0.666252] pci 0000:00:1c.0: PCI bridge to [bus 02]
[ 0.666316] pci 0000:00:1c.0: bridge window [io 0x9000-0x9fff]
[ 0.666321] pci 0000:00:1c.0: bridge window [mem 0xd8400000-0xd93fffff]
[ 0.666331] pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
[ 0.666485] pci 0000:03:00.0: [10ec:5209] type 00 class 0xff0000
[ 0.666513] pci 0000:03:00.0: reg 10: [mem 0xd7400000-0xd7400fff]
[ 0.666723] pci 0000:03:00.0: supports D1 D2
[ 0.666725] pci 0000:03:00.0: PME# supported from D1 D2 D3hot
[ 0.666777] pci 0000:03:00.0: System wakeup disabled by ACPI
[ 0.668129] pci 0000:00:1c.1: PCI bridge to [bus 03]
[ 0.668218] pci 0000:00:1c.1: bridge window [io 0x8000-0x8fff]
[ 0.668223] pci 0000:00:1c.1: bridge window [mem 0xd7400000-0xd83fffff]
[ 0.668233] pci 0000:00:1c.1: bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
[ 0.668437] pci 0000:04:00.0: [1033:0194] type 00 class 0x0c0330
[ 0.668474] pci 0000:04:00.0: reg 10: [mem 0xd6400000-0xd6401fff 64bit]
[ 0.668690] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[ 0.668748] pci 0000:04:00.0: System wakeup disabled by ACPI
[ 0.668888] pci 0000:00:1c.2: PCI bridge to [bus 04]
[ 0.668952] pci 0000:00:1c.2: bridge window [io 0x7000-0x7fff]
[ 0.668957] pci 0000:00:1c.2: bridge window [mem 0xd6400000-0xd73fffff]
[ 0.668967] pci 0000:00:1c.2: bridge window [mem 0xd2400000-0xd33fffff 64bit pref]
[ 0.669176] pci 0000:05:00.0: [10ec:8168] type 00 class 0x020000
[ 0.669251] pci 0000:05:00.0: reg 10: [io 0x6000-0x60ff]
[ 0.669384] pci 0000:05:00.0: reg 18: [mem 0xd3404000-0xd3404fff 64bit pref]
[ 0.669467] pci 0000:05:00.0: reg 20: [mem 0xd3400000-0xd3403fff 64bit pref]
[ 0.669836] pci 0000:05:00.0: supports D1 D2
[ 0.669838] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.669973] pci 0000:05:00.0: System wakeup disabled by ACPI
[ 0.672175] pci 0000:00:1c.3: PCI bridge to [bus 05]
[ 0.672253] pci 0000:00:1c.3: bridge window [io 0x6000-0x6fff]
[ 0.672258] pci 0000:00:1c.3: bridge window [mem 0xd5400000-0xd63fffff]
[ 0.672268] pci 0000:00:1c.3: bridge window [mem 0xd3400000-0xd43fffff 64bit pref]
[ 0.672422] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:08:00
[ 0.672553] acpiphp: Slot [1] registered
[ 0.672668] pci 0000:00:1c.6: PCI bridge to [bus 08-20]
[ 0.672732] pci 0000:00:1c.6: bridge window [io 0x3000-0x5fff]
[ 0.672738] pci 0000:00:1c.6: bridge window [mem 0xb0000000-0xcfffffff]
[ 0.672748] pci 0000:00:1c.6: bridge window [mem 0xd4400000-0xd53fffff 64bit pref]
[ 0.672857] \_SB_.PCI0:_OSC invalid UUID
[ 0.672858] _OSC request data:1 1f 0
[ 0.672863] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[ 0.672938] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
[ 0.674711] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[ 0.675394] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[ 0.676028] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[ 0.676659] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[ 0.677291] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[ 0.677970] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.678694] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[ 0.679323] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[ 0.680723] ACPI: Enabled 6 GPEs in block 00 to 3F
[ 0.680868] acpi root: \_SB_.PCI0 notify handler is installed
[ 0.681019] Found 1 acpi root devices
[ 0.681151] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[ 0.681563] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.681646] vgaarb: loaded
[ 0.681701] vgaarb: bridge control possible 0000:00:02.0
[ 0.681837] SCSI subsystem initialized
[ 0.681894] ACPI: bus type ATA registered
[ 0.682036] libata version 3.00 loaded.
[ 0.682049] ACPI: bus type USB registered
[ 0.682132] usbcore: registered new interface driver usbfs
[ 0.682205] usbcore: registered new interface driver hub
[ 0.682300] usbcore: registered new device driver usb
[ 0.682402] PCI: Using ACPI for IRQ routing
[ 0.690515] PCI: pci_cache_line_size set to 64 bytes
[ 0.690699] e820: reserve RAM buffer [mem 0x0008f400-0x0008ffff]
[ 0.690707] e820: reserve RAM buffer [mem 0x9ae3f000-0x9bffffff]
[ 0.690710] e820: reserve RAM buffer [mem 0x9b000000-0x9bffffff]
[ 0.690711] e820: reserve RAM buffer [mem 0x25fe00000-0x25fffffff]
[ 0.691073] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.691494] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.693578] Switching to clocksource hpet
[ 0.700313] pnp: PnP ACPI init
[ 0.700399] ACPI: bus type PNP registered
[ 0.700569] pnp 00:00: [dma 4]
[ 0.700625] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[ 0.700663] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
[ 0.700786] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
[ 0.700839] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[ 0.700914] system 00:04: [io 0x0680-0x069f] has been reserved
[ 0.700978] system 00:04: [io 0x1000-0x100f] has been reserved
[ 0.701040] system 00:04: [io 0xffff] has been reserved
[ 0.701101] system 00:04: [io 0xffff] has been reserved
[ 0.701162] system 00:04: [io 0x0400-0x0453] has been reserved
[ 0.701223] system 00:04: [io 0x0458-0x047f] has been reserved
[ 0.701285] system 00:04: [io 0x0500-0x057f] has been reserved
[ 0.701347] system 00:04: [io 0x164e-0x164f] has been reserved
[ 0.701409] system 00:04: [io 0x2000] has been reserved
[ 0.701470] system 00:04: [io 0x2004] has been reserved
[ 0.701534] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.701577] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.701642] system 00:06: [io 0x0454-0x0457] has been reserved
[ 0.701716] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[ 0.701768] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[ 0.701817] pnp 00:08: Plug and Play ACPI device, IDs SNY9015 PNP0f13 (active)
[ 0.702008] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.702072] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.702136] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.702199] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.702262] system 00:09: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.702324] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.702387] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.702450] system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
[ 0.702515] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.702579] system 00:09: [mem 0x9fa00000-0x9fa00fff] has been reserved
[ 0.702644] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.703436] system 00:0a: [mem 0x20000000-0x201fffff] could not be reserved
[ 0.703506] system 00:0a: [mem 0x40000000-0x401fffff] could not be reserved
[ 0.703577] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.703599] pnp: PnP ACPI: found 11 devices
[ 0.703658] ACPI: bus type PNP unregistered
[ 0.711996] pci 0000:00:1c.0: PCI bridge to [bus 02]
[ 0.712059] pci 0000:00:1c.0: bridge window [io 0x9000-0x9fff]
[ 0.712127] pci 0000:00:1c.0: bridge window [mem 0xd8400000-0xd93fffff]
[ 0.712194] pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
[ 0.712278] pci 0000:00:1c.1: PCI bridge to [bus 03]
[ 0.712340] pci 0000:00:1c.1: bridge window [io 0x8000-0x8fff]
[ 0.712408] pci 0000:00:1c.1: bridge window [mem 0xd7400000-0xd83fffff]
[ 0.712964] pci 0000:00:1c.1: bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
[ 0.713047] pci 0000:00:1c.2: PCI bridge to [bus 04]
[ 0.713108] pci 0000:00:1c.2: bridge window [io 0x7000-0x7fff]
[ 0.713175] pci 0000:00:1c.2: bridge window [mem 0xd6400000-0xd73fffff]
[ 0.713242] pci 0000:00:1c.2: bridge window [mem 0xd2400000-0xd33fffff 64bit pref]
[ 0.713324] pci 0000:00:1c.3: PCI bridge to [bus 05]
[ 0.713385] pci 0000:00:1c.3: bridge window [io 0x6000-0x6fff]
[ 0.713453] pci 0000:00:1c.3: bridge window [mem 0xd5400000-0xd63fffff]
[ 0.713520] pci 0000:00:1c.3: bridge window [mem 0xd3400000-0xd43fffff 64bit pref]
[ 0.713603] pci 0000:00:1c.6: PCI bridge to [bus 08-20]
[ 0.713665] pci 0000:00:1c.6: bridge window [io 0x3000-0x5fff]
[ 0.713739] pci 0000:00:1c.6: bridge window [mem 0xb0000000-0xcfffffff]
[ 0.713806] pci 0000:00:1c.6: bridge window [mem 0xd4400000-0xd53fffff 64bit pref]
[ 0.714311] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 0.714313] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 0.714315] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 0.714316] pci_bus 0000:00: resource 7 [mem 0x9fa00000-0xfeafffff]
[ 0.714318] pci_bus 0000:02: resource 0 [io 0x9000-0x9fff]
[ 0.714320] pci_bus 0000:02: resource 1 [mem 0xd8400000-0xd93fffff]
[ 0.714322] pci_bus 0000:02: resource 2 [mem 0xd0400000-0xd13fffff 64bit pref]
[ 0.714323] pci_bus 0000:03: resource 0 [io 0x8000-0x8fff]
[ 0.714325] pci_bus 0000:03: resource 1 [mem 0xd7400000-0xd83fffff]
[ 0.714327] pci_bus 0000:03: resource 2 [mem 0xd1400000-0xd23fffff 64bit pref]
[ 0.714328] pci_bus 0000:04: resource 0 [io 0x7000-0x7fff]
[ 0.714330] pci_bus 0000:04: resource 1 [mem 0xd6400000-0xd73fffff]
[ 0.714332] pci_bus 0000:04: resource 2 [mem 0xd2400000-0xd33fffff 64bit pref]
[ 0.714334] pci_bus 0000:05: resource 0 [io 0x6000-0x6fff]
[ 0.714335] pci_bus 0000:05: resource 1 [mem 0xd5400000-0xd63fffff]
[ 0.714337] pci_bus 0000:05: resource 2 [mem 0xd3400000-0xd43fffff 64bit pref]
[ 0.714339] pci_bus 0000:08: resource 0 [io 0x3000-0x5fff]
[ 0.714340] pci_bus 0000:08: resource 1 [mem 0xb0000000-0xcfffffff]
[ 0.714342] pci_bus 0000:08: resource 2 [mem 0xd4400000-0xd53fffff 64bit pref]
[ 0.714389] NET: Registered protocol family 2
[ 0.714912] TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.715386] TCP bind hash table entries: 65536 (order: 10, 4194304 bytes)
[ 0.718973] TCP: Hash tables configured (established 65536 bind 65536)
[ 0.719090] TCP: reno registered
[ 0.719196] UDP hash table entries: 4096 (order: 7, 655360 bytes)
[ 0.719753] UDP-Lite hash table entries: 4096 (order: 7, 655360 bytes)
[ 0.720461] NET: Registered protocol family 1
[ 0.720536] pci 0000:00:02.0: Boot video device
[ 0.755279] PCI: CLS 64 bytes, default 64
[ 0.755442] Unpacking initramfs...
[ 1.743363] Freeing initrd memory: 9908k freed
[ 1.744737] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 1.744806] software IO TLB [mem 0x96e3f000-0x9ae3f000] (64MB) mapped at [ffff880096e3f000-ffff88009ae3efff]
[ 1.744921] Simple Boot Flag at 0x44 set to 0x1
[ 1.745614] audit: initializing netlink socket (disabled)
[ 1.745706] type=2000 audit(1371788871.721:1): initialized
[ 1.766271] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 1.768892] VFS: Disk quotas dquot_6.5.2
[ 1.769013] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 1.769665] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 1.770028] NILFS version 2 loaded
[ 1.770283] bio: create slab <bio-1> at 1
[ 1.770606] Btrfs loaded
[ 1.770669] msgmni has been set to 15780
[ 1.771384] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[ 1.771473] io scheduler noop registered
[ 1.771531] io scheduler deadline registered
[ 1.771653] io scheduler cfq registered (default)
[ 1.772230] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 1.772379] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 1.772442] cpcihp_zt5550: ZT5550 CompactPCI Hot Plug Driver version: 0.2
[ 1.772526] cpcihp_generic: Generic port I/O CompactPCI Hot Plug Driver version: 0.1
[ 1.772600] cpcihp_generic: not configured, disabling.
[ 1.772679] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 1.775394] acpiphp_ibm: ibm_acpiphp_init: acpi_walk_namespace failed
[ 1.775886] intel_idle: MWAIT substates: 0x21120
[ 1.775887] intel_idle: v0.4 model 0x2A
[ 1.775889] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 1.776069] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[ 1.776320] ACPI: AC Adapter [ADP1] (off-line)
[ 1.776627] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
[ 1.776737] ACPI: Lid Switch [LID0]
[ 1.776854] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[ 1.776962] ACPI: Power Button [PWRB]
[ 1.777134] ACPI: Requesting acpi_cpufreq
[ 1.784505] thermal LNXTHERM:00: registered as thermal_zone0
[ 1.784567] ACPI: Thermal Zone [TZ01] (61 C)
[ 1.784743] ioatdma: Intel(R) QuickData Technology Driver 4.00
[ 1.784929] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 1.789697] loop: module loaded
[ 1.790156] mei_me 0000:00:16.0: setting latency timer to 64
[ 1.790271] mei_me 0000:00:16.0: irq 40 for MSI/MSI-X
[ 1.791162] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[ 1.791251] ACPI: Battery Slot [BAT1] (battery present)
[ 1.791426] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[ 1.791516] ACPI: Battery Slot [BAT2] (battery absent)
[ 1.796141] Loading iSCSI transport class v2.0-870.
[ 1.796349] iscsi: registered transport (tcp)
[ 1.796471] ahci 0000:00:1f.2: version 3.0
[ 1.796647] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[ 1.796723] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3 impl RAID mode
[ 1.796802] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part apst
[ 1.796882] ahci 0000:00:1f.2: setting latency timer to 64
[ 1.797893] scsi0 : ahci
[ 1.798184] scsi1 : ahci
[ 1.798338] scsi2 : ahci
[ 1.798495] scsi3 : ahci
[ 1.798649] scsi4 : ahci
[ 1.798804] scsi5 : ahci
[ 1.798924] ata1: SATA max UDMA/133 abar m2048@0xd9407000 port 0xd9407100 irq 41
[ 1.799000] ata2: SATA max UDMA/133 abar m2048@0xd9407000 port 0xd9407180 irq 41
[ 1.799084] ata3: DUMMY
[ 1.799139] ata4: DUMMY
[ 1.799194] ata5: DUMMY
[ 1.799249] ata6: DUMMY
[ 1.799488] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 1.802125] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.802236] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.802647] mousedev: PS/2 mouse device common for all mice
[ 1.803000] rtc_cmos 00:05: RTC can wake from S4
[ 1.803372] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[ 1.803468] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 1.803602] Intel P-state driver initializing.
[ 1.803681] Intel pstate controlling: cpu 0
[ 1.803813] Intel pstate controlling: cpu 1
[ 1.803892] Intel pstate controlling: cpu 2
[ 1.803970] Intel pstate controlling: cpu 3
[ 1.804276] cpuidle: using governor ladder
[ 1.804794] cpuidle: using governor menu
[ 1.804860] ledtrig-cpu: registered to indicate activity on CPUs
[ 1.804936] hidraw: raw HID events driver (C) Jiri Kosina
[ 1.805311] TCP: cubic registered
[ 1.805375] Initializing XFRM netlink socket
[ 1.805606] NET: Registered protocol family 10
[ 1.806080] NET: Registered protocol family 17
[ 1.806224] Key type dns_resolver registered
[ 1.806676] PM: Hibernation image not present or could not be loaded.
[ 1.806695] registered taskstats version 1
[ 1.807879] rtc_cmos 00:05: setting system clock to 2013-06-21 04:27:52 UTC (1371788872)
[ 1.821513] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[ 2.104570] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 2.104702] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 2.105471] ata1.00: ATA-8: SAMSUNG MZRPC256HADR-000SO, CXM05S1Q, max UDMA/133
[ 2.105559] ata1.00: 250069680 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 2.105706] ata2.00: ATA-8: SAMSUNG MZRPC256HADR-000SO, CXM05S1Q, max UDMA/133
[ 2.105829] ata2.00: 250069680 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 2.106359] ata1.00: configured for UDMA/133
[ 2.106532] ata2.00: configured for UDMA/133
[ 2.107385] scsi 0:0:0:0: Direct-Access ATA SAMSUNG MZRPC256 CXM0 PQ: 0 ANSI: 5
[ 2.108194] sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
[ 2.108589] sd 0:0:0:0: [sda] Write Protect is off
[ 2.108665] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 2.108749] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.108766] scsi 1:0:0:0: Direct-Access ATA SAMSUNG MZRPC256 CXM0 PQ: 0 ANSI: 5
[ 2.109226] sd 1:0:0:0: [sdb] 250069680 512-byte logical blocks: (128 GB/119 GiB)
[ 2.109516] sd 1:0:0:0: [sdb] Write Protect is off
[ 2.109589] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 2.109622] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.110530] sdb: unknown partition table
[ 2.110533] sda: sda1 sda2
[ 2.110748] sda: p2 size 489641984 extends beyond EOD, enabling native capacity
[ 2.111336] sd 1:0:0:0: [sdb] Attached SCSI disk
[ 2.112507] sda: sda1 sda2
[ 2.112673] sda: p2 size 489641984 extends beyond EOD, truncated
[ 2.113262] sd 0:0:0:0: [sda] Attached SCSI disk
[ 2.114300] Freeing unused kernel memory: 980k freed
[ 2.114498] Write protecting the kernel read-only data: 12288k
[ 2.118221] Freeing unused kernel memory: 1604k freed
[ 2.121228] Freeing unused kernel memory: 1256k freed
[ 2.148941] dracut: dracut-027-r3
[ 2.169684] device-mapper: uevent: version 1.0.3
[ 2.169891] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-devel@xxxxxxxxxx
[ 2.173738] systemd-udevd[166]: starting version 204
[ 2.177839] dracut: rd.md=0: removing MD RAID activation
[ 2.234802] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 2.234993] ehci-pci: EHCI PCI platform driver
[ 2.235182] ehci-pci 0000:00:1a.0: setting latency timer to 64
[ 2.235231] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 2.235392] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 2.235498] ehci-pci 0000:00:1a.0: debug port 2
[ 2.239524] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[ 2.239574] ehci-pci 0000:00:1a.0: irq 23, io mem 0xd9409000
[ 2.245638] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 2.246856] hub 1-0:1.0: USB hub found
[ 2.246964] hub 1-0:1.0: 2 ports detected
[ 2.248341] xhci_hcd 0000:04:00.0: xHCI Host Controller
[ 2.248368] ehci-pci 0000:00:1d.0: setting latency timer to 64
[ 2.248482] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 2
[ 2.248852] xhci_hcd 0000:04:00.0: irq 42 for MSI/MSI-X
[ 2.248865] xhci_hcd 0000:04:00.0: irq 43 for MSI/MSI-X
[ 2.248877] xhci_hcd 0000:04:00.0: irq 44 for MSI/MSI-X
[ 2.248889] xhci_hcd 0000:04:00.0: irq 45 for MSI/MSI-X
[ 2.248900] xhci_hcd 0000:04:00.0: irq 46 for MSI/MSI-X
[ 2.250359] xHCI xhci_add_endpoint called for root hub
[ 2.250361] xHCI xhci_check_bandwidth called for root hub
[ 2.250406] hub 2-0:1.0: USB hub found
[ 2.251022] hub 2-0:1.0: 2 ports detected
[ 2.251233] xhci_hcd 0000:04:00.0: xHCI Host Controller
[ 2.251246] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 2.251254] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 3
[ 2.251272] ehci-pci 0000:00:1d.0: debug port 2
[ 2.251641] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 4
[ 2.252919] xHCI xhci_add_endpoint called for root hub
[ 2.252922] xHCI xhci_check_bandwidth called for root hub
[ 2.253132] hub 4-0:1.0: USB hub found
[ 2.253232] hub 4-0:1.0: 2 ports detected
[ 2.255200] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 2.255224] ehci-pci 0000:00:1d.0: irq 20, io mem 0xd9408000
[ 2.260634] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 2.261005] hub 3-0:1.0: USB hub found
[ 2.261078] hub 3-0:1.0: 2 ports detected
[ 2.275248] md: bind<sda>
[ 2.484010] md: bind<sdb>
[ 2.493696] md: bind<sdb>
[ 2.494119] md: bind<sda>
[ 2.497977] md: raid0 personality registered for level 0
[ 2.498698] md/raid0:md126: md_size is 500129792 sectors.
[ 2.498767] md: RAID0 configuration for md126 - 1 zone
[ 2.498827] md: zone0=[sda/sdb]
[ 2.499018] zone-offset= 0KB, device-offset= 0KB, size= 250065152KB

[ 2.499224] md126: detected capacity change from 0 to 256066453504
[ 2.500568] md126: p1 p2
[ 2.549063] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 2.578490] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x122c00, board id: 1690, fw id: 934878
[ 2.613754] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input3
[ 2.665419] hub 1-1:1.0: USB hub found
[ 2.665689] hub 1-1:1.0: 6 ports detected
[ 2.748723] tsc: Refined TSC clocksource calibration: 2793.655 MHz
[ 2.748852] Switching to clocksource tsc
[ 2.769308] usb 3-1: new high-speed USB device number 2 using ehci-pci
[ 2.873647] dracut: luksOpen /dev/md126p2 luks-54ed2bf3-fb3d-4442-b8be-2f0cfda6a521
[ 2.884258] hub 3-1:1.0: USB hub found
[ 2.884401] hub 3-1:1.0: 8 ports detected
[ 2.959841] usb 1-1.1: new full-speed USB device number 3 using ehci-pci
[ 3.121054] usb 1-1.2: new full-speed USB device number 4 using ehci-pci
[ 3.287238] usb 1-1.3: new high-speed USB device number 5 using ehci-pci
[ 3.468475] usb 1-1.4: new high-speed USB device number 6 using ehci-pci
[ 3.556484] usb 1-1.4: config 1 has an invalid interface number: 8 but max is 3
[ 3.556597] usb 1-1.4: config 1 has no interface number 1
[ 9.563894] sha256_ssse3: Using AVX optimized SHA-256 implementation
[ 9.569372] bio: create slab <bio-2> at 2
[ 9.726650] dracut: Scanning devices dm-0 for LVM volume groups
[ 9.730512] dracut: Reading all physical volumes. This may take a while...
[ 9.733652] dracut: Found volume group "vaio" using metadata type lvm2
[ 9.747192] dracut: 3 logical volume(s) in volume group "vaio" now active
[ 9.787177] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
[ 9.799249] dracut: Checking ext4: /dev/vaio/gentoo64a-root
[ 9.799342] dracut: issuing e2fsck -a /dev/vaio/gentoo64a-root
[ 9.849571] dracut: /dev/vaio/gentoo64a-root: clean, 546740/1048576 files, 3510906/4194304 blocks
[ 9.850965] dracut: Mounting /dev/vaio/gentoo64a-root with -o noatime,ro
[ 9.854072] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
[ 9.861125] dracut: Mounted root filesystem /dev/mapper/vaio-gentoo64a--root
[ 9.874456] dracut: Switching root
[ 10.195932] systemd-udevd[595]: starting version 204
[ 10.280099] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130328/utaddress-251)
[ 10.280106] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 10.280110] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130328/utaddress-251)
[ 10.280113] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 10.280115] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130328/utaddress-251)
[ 10.280117] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 10.280119] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130328/utaddress-251)
[ 10.280121] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 10.280122] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 10.280582] Linux agpgart interface v0.103
[ 10.284273] [drm] Initialized drm 1.1.0 20060810
[ 10.294701] snd_hda_intel 0000:00:1b.0: irq 47 for MSI/MSI-X
[ 10.296530] sony_laptop: Sony Notebook Control Driver v0.6
[ 10.296686] input: Sony Vaio Keys as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/SNY5001:00/input/input4
[ 10.297313] input: Sony Vaio Jogdial as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/SNY5001:00/input/input5
[ 10.316520] rtsx_pci 0000:03:00.0: irq 48 for MSI/MSI-X
[ 10.316561] rtsx_pci 0000:03:00.0: rtsx_pci_acquire_irq: pcr->msi_en = 1, pci->irq = 48
[ 10.319690] cfg80211: Calling CRDA to update world regulatory domain
[ 10.320263] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[ 10.320843] r8169 0000:05:00.0: irq 49 for MSI/MSI-X
[ 10.321490] r8169 0000:05:00.0 eth0: RTL8168evl/8111evl at 0xffffc90011790000, 54:42:49:9a:df:1e, XID 0c900800 IRQ 49
[ 10.321493] r8169 0000:05:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[ 10.322200] hda_codec: ALC275: SKU not ready 0x411111f0
[ 10.323970] sony_laptop: brightness ignored, must be controlled by ACPI video driver
[ 10.325057] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input6
[ 10.325119] Intel(R) Wireless WiFi driver for Linux, in-tree:
[ 10.325122] Copyright(c) 2003-2013 Intel Corporation
[ 10.326306] iwlwifi 0000:02:00.0: irq 50 for MSI/MSI-X
[ 10.331704] iwlwifi 0000:02:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
[ 10.350850] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[ 10.351619] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[ 10.352582] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUG disabled
[ 10.352585] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
[ 10.352587] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
[ 10.352588] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE disabled
[ 10.352589] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_P2P disabled
[ 10.352591] iwlwifi 0000:02:00.0: Detected Intel(R) Centrino(R) Advanced-N 6230 AGN, REV=0xB0
[ 10.352730] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
[ 10.359746] iwlwifi 0000:02:00.0: RF_KILL bit toggled to disable radio.
[ 10.373278] media: Linux media interface: v0.10
[ 10.374754] [drm] Memory usable by graphics device = 2048M
[ 10.374857] i915 0000:00:02.0: setting latency timer to 64
[ 10.375242] Bluetooth: Core ver 2.16
[ 10.375259] NET: Registered protocol family 31
[ 10.375261] Bluetooth: HCI device and connection manager initialized
[ 10.375291] Bluetooth: HCI socket layer initialized
[ 10.375294] Bluetooth: L2CAP socket layer initialized
[ 10.375304] Bluetooth: SCO socket layer initialized
[ 10.380783] Linux video capture interface: v2.00
[ 10.381915] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[ 10.383127] usbcore: registered new interface driver usbserial
[ 10.383145] usbcore: registered new interface driver usbserial_generic
[ 10.383259] usbserial: USB Serial support registered for generic
[ 10.385210] usbcore: registered new interface driver qcserial
[ 10.385244] usbserial: USB Serial support registered for Qualcomm USB modem
[ 10.385594] usbcore: registered new interface driver btusb
[ 10.386295] qcserial 1-1.4:1.0: Qualcomm USB modem converter detected
[ 10.386591] usb 1-1.4: Qualcomm USB modem converter now attached to ttyUSB0
[ 10.387895] qcserial 1-1.4:1.2: Qualcomm USB modem converter detected
[ 10.387995] usb 1-1.4: Qualcomm USB modem converter now attached to ttyUSB1
[ 10.389262] qcserial 1-1.4:1.3: Qualcomm USB modem converter detected
[ 10.389279] uvcvideo: Found UVC 1.00 device USB2.0 Camera (05c8:0318)
[ 10.392745] input: USB2.0 Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/input/input9
[ 10.393044] usb 1-1.4: Qualcomm USB modem converter now attached to ttyUSB2
[ 10.394287] usbcore: registered new interface driver uvcvideo
[ 10.394289] USB Video Class driver (1.1.1)
[ 10.403836] input: PC Speaker as /devices/platform/pcspkr/input/input10
[ 10.407505] Error: Driver 'pcspkr' is already registered, aborting...
[ 10.408210] i915 0000:00:02.0: irq 51 for MSI/MSI-X
[ 10.408225] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[ 10.408226] [drm] Driver supports precise vblank timestamp query.
[ 10.409033] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 10.414942] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x14
[ 10.415973] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x14
[ 10.416443] microcode: CPU0 updated to revision 0x28, date = 2012-04-24
[ 10.416456] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x14
[ 10.416518] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x14
[ 10.416751] microcode: CPU1 updated to revision 0x28, date = 2012-04-24
[ 10.416762] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x14
[ 10.416811] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x14
[ 10.417044] microcode: CPU2 updated to revision 0x28, date = 2012-04-24
[ 10.417054] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x14
[ 10.417103] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x14
[ 10.417344] microcode: CPU3 updated to revision 0x28, date = 2012-04-24
[ 10.417363] perf_event_intel: PEBS enabled due to microcode update
[ 10.417983] microcode: Microcode Update Driver: v2.00 <tigran@xxxxxxxxxxxxxxxxxxxx>, Peter Oruba
[ 10.462710] [drm] Wrong MCH_SSKPD value: 0x16040307
[ 10.462715] [drm] This can cause pipe underruns and display issues.
[ 10.462717] [drm] Please upgrade your BIOS to fix this.
[ 10.478031] iTCO_vendor_support: vendor-support=0
[ 10.478485] fbcon: inteldrmfb (fb0) is primary device
[ 10.479692] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[ 10.479725] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[ 10.526242] systemd-udevd[613]: renamed network interface eth0 to enp5s0
[ 10.529547] cfg80211: World regulatory domain updated:
[ 10.529549] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 10.529551] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 10.529553] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 10.529554] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 10.529556] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 10.529557] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 10.559997] systemd-udevd[625]: renamed network interface wlan0 to wlp2s0
[ 11.739960] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp on
[ 12.220718] Console: switching to colour frame buffer device 240x67
[ 12.225165] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[ 12.225168] i915 0000:00:02.0: registered panic notifier
[ 12.225794] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[ 12.225807] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[ 12.225821] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[ 12.225834] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[ 12.225848] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[ 12.225861] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[ 12.225874] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[ 12.227883] acpi device:3e: registered as cooling_device5
[ 12.228196] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 12.228282] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:09/input/input11
[ 12.228748] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[ 12.228933] ACPI Warning: 0x000000000000a040-0x000000000000a05f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130328/utaddress-251)
[ 12.228940] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 12.638578] EXT4-fs (dm-1): re-mounted. Opts: (null)
[ 12.714551] EXT4-fs (md126p1): mounted filesystem with ordered data mode. Opts: (null)
[ 12.719889] EXT4-fs (dm-2): mounted filesystem with ordered data mode. Opts: (null)
[ 12.725486] EXT4-fs (dm-3): mounted filesystem with ordered data mode. Opts: (null)
[ 13.158670] microcode: Microcode Update Driver: v2.00 removed.
[ 14.052734] r8169 0000:05:00.0 enp5s0: link down
[ 14.052804] IPv6: ADDRCONF(NETDEV_UP): enp5s0: link is not ready
[ 14.052862] r8169 0000:05:00.0 enp5s0: link down
[ 17.256479] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 17.256482] Bluetooth: BNEP filters: protocol multicast
[ 17.256491] Bluetooth: BNEP socket layer initialized
[ 17.422048] Bluetooth: RFCOMM TTY layer initialized
[ 17.422067] Bluetooth: RFCOMM socket layer initialized
[ 17.422069] Bluetooth: RFCOMM ver 1.11
[ 17.760077] zram: module is from the staging directory, the quality is unknown, you have been warned.
[ 17.764912] zram: Created 4 device(s) ...
[ 17.775113] Adding 1572860k swap on /dev/zram0. Priority:10 extents:1 across:1572860k SSFS
[ 17.782613] Adding 1572860k swap on /dev/zram1. Priority:10 extents:1 across:1572860k SSFS
[ 17.790637] Adding 1572860k swap on /dev/zram2. Priority:10 extents:1 across:1572860k SSFS
[ 17.797833] Adding 1572860k swap on /dev/zram3. Priority:10 extents:1 across:1572860k SSFS
[ 19.266541] r8169 0000:05:00.0 enp5s0: link up
[ 19.266552] IPv6: ADDRCONF(NETDEV_CHANGE): enp5s0: link becomes ready
[ 30.367215] ACPI: \_SB_.DOCK: docking
[ 30.368768] acpiphp_glue: _handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB
[ 30.368824] acpiphp_glue: bus exists... trim
[ 30.370137] ACPI: Device does not support D3cold
[ 30.370503] ACPI: Device does not support D3cold
[ 30.372232] ACPI: Device does not support D3cold
[ 30.373158] ACPI: Device does not support D3cold
[ 30.373208] ACPI: Device does not support D3cold
[ 30.373265] ACPI: Device does not support D3cold
[ 30.373317] ACPI: Device does not support D3cold
[ 30.373409] ACPI: Device does not support D3cold
[ 30.377147] ACPI: Device does not support D3cold
[ 30.378109] ACPI: Device does not support D3cold
[ 30.378161] ACPI: Device does not support D3cold
[ 30.378211] ACPI: Device does not support D3cold
[ 30.378256] ACPI: Device does not support D3cold
[ 30.378311] ACPI: Device does not support D3cold
[ 30.378356] ACPI: Device does not support D3cold
[ 30.378430] ACPI: Device does not support D3cold
[ 30.379398] ACPI: Device does not support D3cold
[ 30.380109] ACPI: Device does not support D3cold
[ 30.380195] ACPI: Device does not support D3cold
[ 30.380268] ACPI: Device does not support D3cold
[ 30.381847] ACPI: Device does not support D3cold
[ 30.382572] ACPI: Device does not support D3cold
[ 30.382621] ACPI: Device does not support D3cold
[ 30.382666] ACPI: Device does not support D3cold
[ 30.382715] ACPI: Device does not support D3cold
[ 30.382761] ACPI: Device does not support D3cold
[ 30.382805] ACPI: Device does not support D3cold
[ 30.382849] ACPI: Device does not support D3cold
[ 30.382895] ACPI: Device does not support D3cold
[ 30.382938] ACPI: Device does not support D3cold
[ 30.382983] ACPI: Device does not support D3cold
[ 30.390668] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[ 30.390691] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[ 30.390709] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[ 30.390727] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[ 30.390744] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[ 30.390761] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[ 30.390779] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[ 30.390944] pci 0000:08:00.0: [8086:151b] type 01 class 0x060400
[ 30.391096] pci 0000:08:00.0: supports D1 D2
[ 30.391098] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 30.392767] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:0a:00
[ 30.392961] acpiphp: Slot [1-1] registered
[ 30.393002] acpiphp_glue: found ACPI PCI Hotplug slot 2 at PCI 0000:0a:03
[ 30.393058] acpiphp: Slot [2] registered
[ 30.393082] acpiphp_glue: found ACPI PCI Hotplug slot 3 at PCI 0000:0a:04
[ 30.393100] acpiphp: Slot [3] registered
[ 30.393142] pci 0000:0a:00.0: [8086:151b] type 01 class 0x060400
[ 30.393311] pci 0000:0a:00.0: supports D1 D2
[ 30.393314] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 30.394677] pci 0000:0a:03.0: [8086:151b] type 01 class 0x060400
[ 30.394836] pci 0000:0a:03.0: supports D1 D2
[ 30.394839] pci 0000:0a:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 30.395406] pci 0000:0a:04.0: [8086:151b] type 01 class 0x060400
[ 30.395563] pci 0000:0a:04.0: supports D1 D2
[ 30.395567] pci 0000:0a:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 30.395927] pci 0000:08:00.0: PCI bridge to [bus 0a-1d]
[ 30.395940] pci 0000:08:00.0: bridge window [io 0x3000-0x5fff]
[ 30.395947] pci 0000:08:00.0: bridge window [mem 0xb0000000-0xc03fffff]
[ 30.395958] pci 0000:08:00.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[ 30.396462] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[ 30.396478] pci 0000:0a:00.0: bridge window [mem 0xc0300000-0xc03fffff]
[ 30.396652] pci 0000:0a:03.0: PCI bridge to [bus 0c]
[ 30.397068] pci 0000:14:00.0: [8086:151b] type 01 class 0x060400
[ 30.397298] pci 0000:14:00.0: supports D1 D2
[ 30.397299] pci 0000:14:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 30.399542] pci 0000:0a:04.0: PCI bridge to [bus 14-1d]
[ 30.399557] pci 0000:0a:04.0: bridge window [io 0x3000-0x5fff]
[ 30.399564] pci 0000:0a:04.0: bridge window [mem 0xb0000000-0xc02fffff]
[ 30.399574] pci 0000:0a:04.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[ 30.399815] pci 0000:15:03.0: [8086:151b] type 01 class 0x060400
[ 30.400044] pci 0000:15:03.0: supports D1 D2
[ 30.400046] pci 0000:15:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 30.400214] pci 0000:15:04.0: [8086:151b] type 01 class 0x060400
[ 30.400441] pci 0000:15:04.0: supports D1 D2
[ 30.400442] pci 0000:15:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 30.400710] pci 0000:14:00.0: PCI bridge to [bus 15-1d]
[ 30.400726] pci 0000:14:00.0: bridge window [io 0x3000-0x5fff]
[ 30.400734] pci 0000:14:00.0: bridge window [mem 0xb0000000-0xc02fffff]
[ 30.400748] pci 0000:14:00.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[ 30.400928] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:16:00
[ 30.400949] acpiphp: Slot [1-2] registered
[ 30.400974] acpiphp_glue: sibling found, but _SUN doesn't match!
[ 30.401030] pci 0000:16:00.0: [1002:6740] type 00 class 0x030000
[ 30.401090] pci 0000:16:00.0: reg 10: [mem 0x00000000-0x0fffffff 64bit pref]
[ 30.401137] pci 0000:16:00.0: reg 18: [mem 0x00000000-0x0001ffff 64bit]
[ 30.401168] pci 0000:16:00.0: reg 20: [io 0x0000-0x00ff]
[ 30.401228] pci 0000:16:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[ 30.401383] pci 0000:16:00.0: supports D1 D2
[ 30.401504] vgaarb: device added: PCI:0000:16:00.0,decodes=io+mem,owns=none,locks=none
[ 30.401516] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
[ 30.401519] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:16:00.0
[ 30.401621] pci 0000:16:00.1: [1002:aa90] type 00 class 0x040300
[ 30.401688] pci 0000:16:00.1: reg 10: [mem 0x00000000-0x00003fff 64bit]
[ 30.401998] pci 0000:16:00.1: supports D1 D2
[ 30.402707] pci 0000:15:03.0: PCI bridge to [bus 16]
[ 30.402725] pci 0000:15:03.0: bridge window [io 0x5000-0x5fff]
[ 30.402736] pci 0000:15:03.0: bridge window [mem 0xc0200000-0xc02fffff]
[ 30.402754] pci 0000:15:03.0: bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
[ 30.404427] pci 0000:17:00.0: [8086:151b] type 01 class 0x060400
[ 30.404760] pci 0000:17:00.0: supports D1 D2
[ 30.404762] pci 0000:17:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 30.406628] pci 0000:15:04.0: PCI bridge to [bus 17-1d]
[ 30.406644] pci 0000:15:04.0: bridge window [io 0x3000-0x4fff]
[ 30.406652] pci 0000:15:04.0: bridge window [mem 0xc0000000-0xc01fffff]
[ 30.406667] pci 0000:15:04.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[ 30.407020] pci 0000:18:00.0: [8086:151b] type 01 class 0x060400
[ 30.407361] pci 0000:18:00.0: supports D1 D2
[ 30.407364] pci 0000:18:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 30.409114] pci 0000:18:01.0: [8086:151b] type 01 class 0x060400
[ 30.409458] pci 0000:18:01.0: supports D1 D2
[ 30.409461] pci 0000:18:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 30.410057] pci 0000:18:02.0: [8086:151b] type 01 class 0x060400
[ 30.410391] pci 0000:18:02.0: supports D1 D2
[ 30.410394] pci 0000:18:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 30.412511] pci 0000:18:03.0: [8086:151b] type 01 class 0x060400
[ 30.412846] pci 0000:18:03.0: supports D1 D2
[ 30.412848] pci 0000:18:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 30.413736] pci 0000:18:04.0: [8086:151b] type 01 class 0x060400
[ 30.414076] pci 0000:18:04.0: supports D1 D2
[ 30.414079] pci 0000:18:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 30.414431] pci 0000:17:00.0: PCI bridge to [bus 18-1d]
[ 30.414455] pci 0000:17:00.0: bridge window [io 0x3000-0x4fff]
[ 30.414467] pci 0000:17:00.0: bridge window [mem 0xc0000000-0xc01fffff]
[ 30.414491] pci 0000:17:00.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[ 30.414803] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:19:00
[ 30.414843] acpiphp: Slot [1-3] registered
[ 30.414938] pci 0000:19:00.0: [10ec:8168] type 00 class 0x020000
[ 30.415001] pci 0000:19:00.0: reg 10: [io 0x0000-0x00ff]
[ 30.415112] pci 0000:19:00.0: reg 18: [mem 0x00000000-0x00000fff 64bit pref]
[ 30.415180] pci 0000:19:00.0: reg 20: [mem 0x00000000-0x00003fff 64bit pref]
[ 30.415483] pci 0000:19:00.0: supports D1 D2
[ 30.415486] pci 0000:19:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 30.417463] pci 0000:18:00.0: PCI bridge to [bus 19]
[ 30.417486] pci 0000:18:00.0: bridge window [io 0x4000-0x4fff]
[ 30.417517] pci 0000:18:00.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[ 30.419245] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:1a:00
[ 30.419283] acpiphp: Slot [1-4] registered
[ 30.419379] pci 0000:1a:00.0: [11ab:6121] type 00 class 0x01018f
[ 30.419442] pci 0000:1a:00.0: reg 10: [io 0x8000-0x8007]
[ 30.419486] pci 0000:1a:00.0: reg 14: [io 0x8040-0x8043]
[ 30.419549] pci 0000:1a:00.0: reg 18: [io 0x8200-0x8207]
[ 30.419594] pci 0000:1a:00.0: reg 1c: [io 0x8800-0x8803]
[ 30.419638] pci 0000:1a:00.0: reg 20: [io 0x900000-0x90000f]
[ 30.419681] pci 0000:1a:00.0: reg 24: [mem 0x00800000-0x008003ff]
[ 30.419948] pci 0000:1a:00.0: supports D1
[ 30.419951] pci 0000:1a:00.0: PME# supported from D0 D1 D3hot
[ 30.420302] pci 0000:18:01.0: PCI bridge to [bus 1a]
[ 30.420323] pci 0000:18:01.0: bridge window [io 0x3000-0x3fff]
[ 30.420335] pci 0000:18:01.0: bridge window [mem 0xc0100000-0xc01fffff]
[ 30.422224] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:1b:00
[ 30.423121] acpiphp: Slot [1-5] registered
[ 30.423226] pci 0000:1b:00.0: [1033:0194] type 00 class 0x0c0330
[ 30.423310] pci 0000:1b:00.0: reg 10: [mem 0x00000000-0x00001fff 64bit]
[ 30.423768] pci 0000:1b:00.0: PME# supported from D0 D3hot D3cold
[ 30.425708] pci 0000:18:02.0: PCI bridge to [bus 1b]
[ 30.425740] pci 0000:18:02.0: bridge window [mem 0xc0000000-0xc00fffff]
[ 30.425974] pci 0000:18:03.0: PCI bridge to [bus 1c]
[ 30.426227] pci 0000:18:04.0: PCI bridge to [bus 1d]
[ 30.426494] pci_bus 0000:0a: Allocating resources
[ 30.426679] pci 0000:1a:00.0: no compatible bridge window for [io 0x8000-0x8007]
[ 30.426681] pci 0000:1a:00.0: no compatible bridge window for [io 0x8040-0x8043]
[ 30.426683] pci 0000:1a:00.0: no compatible bridge window for [io 0x8200-0x8207]
[ 30.426684] pci 0000:1a:00.0: no compatible bridge window for [io 0x8800-0x8803]
[ 30.426685] pci 0000:1a:00.0: no compatible bridge window for [io 0x900000-0x90000f]
[ 30.426687] pci 0000:1a:00.0: no compatible bridge window for [mem 0x00800000-0x008003ff]
[ 30.426808] pci 0000:0a:00.0: bridge window [io 0x1000-0x0fff] to [bus 0b] add_size 1000
[ 30.426811] pci 0000:0a:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000
[ 30.426824] pci 0000:0a:03.0: bridge window [io 0x1000-0x0fff] to [bus 0c] add_size 1000
[ 30.426826] pci 0000:0a:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0c] add_size 200000
[ 30.426828] pci 0000:0a:03.0: bridge window [mem 0x00100000-0x000fffff] to [bus 0c] add_size 200000
[ 30.426901] pci 0000:18:00.0: bridge window [mem 0x00100000-0x001fffff] to [bus 19] add_size 400000
[ 30.426930] pci 0000:18:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 1a] add_size 200000
[ 30.426960] pci 0000:18:02.0: bridge window [io 0x1000-0x0fff] to [bus 1b] add_size 1000
[ 30.426962] pci 0000:18:02.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 1b] add_size 200000
[ 30.426990] pci 0000:18:03.0: bridge window [io 0x1000-0x0fff] to [bus 1c] add_size 1000
[ 30.426992] pci 0000:18:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 1c] add_size 200000
[ 30.426994] pci 0000:18:03.0: bridge window [mem 0x00100000-0x000fffff] to [bus 1c] add_size 200000
[ 30.427023] pci 0000:18:04.0: bridge window [io 0x1000-0x0fff] to [bus 1d] add_size 1000
[ 30.427025] pci 0000:18:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 1d] add_size 200000
[ 30.427026] pci 0000:18:04.0: bridge window [mem 0x00100000-0x000fffff] to [bus 1d] add_size 200000
[ 30.427123] pci 0000:0a:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[ 30.427124] pci 0000:0a:03.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
[ 30.427126] pci 0000:0a:03.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[ 30.427128] pci 0000:0a:00.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 30.427129] pci 0000:0a:03.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 30.427132] pci 0000:0a:00.0: BAR 15: can't assign mem pref (size 0x200000)
[ 30.427134] pci 0000:0a:03.0: BAR 14: can't assign mem (size 0x200000)
[ 30.427136] pci 0000:0a:03.0: BAR 15: can't assign mem pref (size 0x200000)
[ 30.427138] pci 0000:0a:00.0: BAR 13: can't assign io (size 0x1000)
[ 30.427140] pci 0000:0a:03.0: BAR 13: can't assign io (size 0x1000)
[ 30.427143] pci 0000:0a:03.0: BAR 14: can't assign mem (size 0x200000)
[ 30.427146] pci 0000:0a:03.0: BAR 15: can't assign mem pref (size 0x200000)
[ 30.427148] pci 0000:0a:03.0: BAR 13: can't assign io (size 0x1000)
[ 30.427150] pci 0000:0a:00.0: BAR 15: can't assign mem pref (size 0x200000)
[ 30.427151] pci 0000:0a:00.0: BAR 13: can't assign io (size 0x1000)
[ 30.427154] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[ 30.427163] pci 0000:0a:00.0: bridge window [mem 0xc0300000-0xc03fffff]
[ 30.427176] pci 0000:0a:03.0: PCI bridge to [bus 0c]
[ 30.427197] pci 0000:16:00.0: BAR 0: assigned [mem 0xb0000000-0xbfffffff 64bit pref]
[ 30.427228] pci 0000:16:00.0: BAR 2: assigned [mem 0xc0200000-0xc021ffff 64bit]
[ 30.427259] pci 0000:16:00.0: BAR 6: assigned [mem 0xc0220000-0xc023ffff pref]
[ 30.427261] pci 0000:16:00.1: BAR 0: assigned [mem 0xc0240000-0xc0243fff 64bit]
[ 30.427291] pci 0000:16:00.0: BAR 4: assigned [io 0x5000-0x50ff]
[ 30.427302] pci 0000:15:03.0: PCI bridge to [bus 16]
[ 30.427307] pci 0000:15:03.0: bridge window [io 0x5000-0x5fff]
[ 30.427318] pci 0000:15:03.0: bridge window [mem 0xc0200000-0xc02fffff]
[ 30.427327] pci 0000:15:03.0: bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
[ 30.427345] pci 0000:18:00.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 400000
[ 30.427347] pci 0000:18:01.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[ 30.427349] pci 0000:18:02.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[ 30.427350] pci 0000:18:03.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
[ 30.427352] pci 0000:18:03.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[ 30.427353] pci 0000:18:04.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
[ 30.427355] pci 0000:18:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[ 30.427356] pci 0000:18:02.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 30.427358] pci 0000:18:03.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 30.427359] pci 0000:18:04.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 30.427361] pci 0000:18:00.0: BAR 14: can't assign mem (size 0x500000)
[ 30.427363] pci 0000:18:01.0: BAR 15: can't assign mem pref (size 0x200000)
[ 30.427365] pci 0000:18:02.0: BAR 15: can't assign mem pref (size 0x200000)
[ 30.427367] pci 0000:18:03.0: BAR 14: can't assign mem (size 0x200000)
[ 30.427369] pci 0000:18:03.0: BAR 15: can't assign mem pref (size 0x200000)
[ 30.427371] pci 0000:18:04.0: BAR 14: can't assign mem (size 0x200000)
[ 30.427373] pci 0000:18:04.0: BAR 15: can't assign mem pref (size 0x200000)
[ 30.427376] pci 0000:18:02.0: BAR 13: can't assign io (size 0x1000)
[ 30.427378] pci 0000:18:03.0: BAR 13: can't assign io (size 0x1000)
[ 30.427379] pci 0000:18:04.0: BAR 13: can't assign io (size 0x1000)
[ 30.427384] pci 0000:18:00.0: BAR 14: can't assign mem (size 0x100000)
[ 30.427386] pci 0000:18:04.0: BAR 14: can't assign mem (size 0x200000)
[ 30.427388] pci 0000:18:04.0: BAR 15: can't assign mem pref (size 0x200000)
[ 30.427390] pci 0000:18:04.0: BAR 13: can't assign io (size 0x1000)
[ 30.427391] pci 0000:18:03.0: BAR 14: can't assign mem (size 0x200000)
[ 30.427394] pci 0000:18:03.0: BAR 15: can't assign mem pref (size 0x200000)
[ 30.427395] pci 0000:18:03.0: BAR 13: can't assign io (size 0x1000)
[ 30.427397] pci 0000:18:02.0: BAR 15: can't assign mem pref (size 0x200000)
[ 30.427399] pci 0000:18:02.0: BAR 13: can't assign io (size 0x1000)
[ 30.427401] pci 0000:18:01.0: BAR 15: can't assign mem pref (size 0x200000)
[ 30.427405] pci 0000:19:00.0: BAR 4: assigned [mem 0xd4400000-0xd4403fff 64bit pref]
[ 30.427446] pci 0000:19:00.0: BAR 2: assigned [mem 0xd4404000-0xd4404fff 64bit pref]
[ 30.427487] pci 0000:19:00.0: BAR 0: assigned [io 0x4000-0x40ff]
[ 30.427500] pci 0000:18:00.0: PCI bridge to [bus 19]
[ 30.427506] pci 0000:18:00.0: bridge window [io 0x4000-0x4fff]
[ 30.427548] pci 0000:18:00.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[ 30.427571] pci 0000:1a:00.0: BAR 5: assigned [mem 0xc0100000-0xc01003ff]
[ 30.427584] pci 0000:1a:00.0: BAR 4: assigned [io 0x3000-0x300f]
[ 30.427599] pci 0000:1a:00.0: BAR 0: assigned [io 0x3010-0x3017]
[ 30.427613] pci 0000:1a:00.0: BAR 2: assigned [io 0x3018-0x301f]
[ 30.427627] pci 0000:1a:00.0: BAR 1: assigned [io 0x3020-0x3023]
[ 30.427640] pci 0000:1a:00.0: BAR 3: assigned [io 0x3024-0x3027]
[ 30.427654] pci 0000:18:01.0: PCI bridge to [bus 1a]
[ 30.427660] pci 0000:18:01.0: bridge window [io 0x3000-0x3fff]
[ 30.427675] pci 0000:18:01.0: bridge window [mem 0xc0100000-0xc01fffff]
[ 30.427707] pci 0000:1b:00.0: BAR 0: assigned [mem 0xc0000000-0xc0001fff 64bit]
[ 30.427746] pci 0000:18:02.0: PCI bridge to [bus 1b]
[ 30.427761] pci 0000:18:02.0: bridge window [mem 0xc0000000-0xc00fffff]
[ 30.427790] pci 0000:18:03.0: PCI bridge to [bus 1c]
[ 30.427832] pci 0000:18:04.0: PCI bridge to [bus 1d]
[ 30.427875] pci 0000:17:00.0: PCI bridge to [bus 18-1d]
[ 30.427881] pci 0000:17:00.0: bridge window [io 0x3000-0x4fff]
[ 30.427897] pci 0000:17:00.0: bridge window [mem 0xc0000000-0xc01fffff]
[ 30.427908] pci 0000:17:00.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[ 30.427927] pci 0000:15:04.0: PCI bridge to [bus 17-1d]
[ 30.427932] pci 0000:15:04.0: bridge window [io 0x3000-0x4fff]
[ 30.427944] pci 0000:15:04.0: bridge window [mem 0xc0000000-0xc01fffff]
[ 30.427952] pci 0000:15:04.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[ 30.427967] pci 0000:14:00.0: PCI bridge to [bus 15-1d]
[ 30.427972] pci 0000:14:00.0: bridge window [io 0x3000-0x5fff]
[ 30.427984] pci 0000:14:00.0: bridge window [mem 0xb0000000-0xc02fffff]
[ 30.427992] pci 0000:14:00.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[ 30.428007] pci 0000:0a:04.0: PCI bridge to [bus 14-1d]
[ 30.428010] pci 0000:0a:04.0: bridge window [io 0x3000-0x5fff]
[ 30.428018] pci 0000:0a:04.0: bridge window [mem 0xb0000000-0xc02fffff]
[ 30.428024] pci 0000:0a:04.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[ 30.428033] pci 0000:08:00.0: PCI bridge to [bus 0a-1d]
[ 30.428037] pci 0000:08:00.0: bridge window [io 0x3000-0x5fff]
[ 30.428044] pci 0000:08:00.0: bridge window [mem 0xb0000000-0xc03fffff]
[ 30.428050] pci 0000:08:00.0: bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[ 30.428070] pci 0000:08:00.0: no hotplug settings from platform
[ 30.428079] pci 0000:0a:00.0: no hotplug settings from platform
[ 30.428088] pci 0000:0a:03.0: no hotplug settings from platform
[ 30.428098] pci 0000:0a:04.0: no hotplug settings from platform
[ 30.428110] pci 0000:14:00.0: no hotplug settings from platform
[ 30.428125] pci 0000:15:03.0: no hotplug settings from platform
[ 30.428142] pci 0000:16:00.0: no hotplug settings from platform
[ 30.428160] pci 0000:16:00.1: no hotplug settings from platform
[ 30.428175] pci 0000:15:04.0: no hotplug settings from platform
[ 30.428192] pci 0000:17:00.0: no hotplug settings from platform
[ 30.428213] pci 0000:18:00.0: no hotplug settings from platform
[ 30.428236] pci 0000:19:00.0: no hotplug settings from platform
[ 30.428256] pci 0000:18:01.0: no hotplug settings from platform
[ 30.428278] pci 0000:1a:00.0: no hotplug settings from platform
[ 30.428298] pci 0000:18:02.0: no hotplug settings from platform
[ 30.428321] pci 0000:1b:00.0: no hotplug settings from platform
[ 30.428341] pci 0000:18:03.0: no hotplug settings from platform
[ 30.428361] pci 0000:18:04.0: no hotplug settings from platform
[ 30.429136] pcieport 0000:08:00.0: irq 52 for MSI/MSI-X
[ 30.429467] pcieport 0000:0a:00.0: irq 53 for MSI/MSI-X
[ 30.433664] pcieport 0000:0a:03.0: irq 54 for MSI/MSI-X
[ 30.434378] pcieport 0000:0a:04.0: irq 55 for MSI/MSI-X
[ 30.434628] pcieport 0000:14:00.0: irq 56 for MSI/MSI-X
[ 30.434890] pcieport 0000:15:03.0: irq 57 for MSI/MSI-X
[ 30.435144] pcieport 0000:15:04.0: irq 58 for MSI/MSI-X
[ 30.435464] snd_hda_intel 0000:16:00.1: enabling device (0000 -> 0002)
[ 30.435557] hda-intel 0000:16:00.1: Handle VGA-switcheroo audio client
[ 30.435657] snd_hda_intel 0000:16:00.1: irq 59 for MSI/MSI-X
[ 30.440229] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1c.6/0000:08:00.0/0000:0a:04.0/0000:14:00.0/0000:15:03.0/0000:16:00.1/sound/card1/input12
[ 30.445128] pcieport 0000:17:00.0: irq 60 for MSI/MSI-X
[ 30.445461] [drm] radeon kernel modesetting enabled.
[ 30.445585] radeon 0000:16:00.0: enabling device (0000 -> 0003)
[ 30.446092] pcieport 0000:18:00.0: irq 61 for MSI/MSI-X
[ 30.447310] pcieport 0000:18:01.0: irq 62 for MSI/MSI-X
[ 30.447719] [drm] initializing kernel modesetting (TURKS 0x1002:0x6740 0x104D:0x9084).
[ 30.447757] [drm] register mmio base: 0xC0200000
[ 30.447759] [drm] register mmio size: 131072
[ 30.451354] pcieport 0000:18:02.0: irq 63 for MSI/MSI-X
[ 30.452037] pcieport 0000:18:03.0: irq 64 for MSI/MSI-X
[ 30.452510] pcieport 0000:18:04.0: irq 65 for MSI/MSI-X
[ 30.453699] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[ 30.453723] r8169 0000:19:00.0: enabling device (0000 -> 0003)
[ 30.499547] r8169 0000:19:00.0: irq 66 for MSI/MSI-X
[ 30.500476] r8169 0000:19:00.0 eth0: RTL8168evl/8111evl at 0xffffc90011dea000, 54:42:49:9a:de:86, XID 0c900800 IRQ 66
[ 30.500482] r8169 0000:19:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[ 30.515918] systemd-udevd[1817]: renamed network interface eth0 to enp25s0
[ 30.561395] scsi6 : pata_marvell
[ 30.561604] scsi7 : pata_marvell
[ 30.564734] ata7: PATA max UDMA/100 cmd 0x3010 ctl 0x3020 bmdma 0x3000 irq 19
[ 30.564738] ata8: PATA max UDMA/133 cmd 0x3018 ctl 0x3024 bmdma 0x3008 irq 19
[ 30.564785] pci 0000:1b:00.0: enabling device (0000 -> 0002)
[ 30.646123] r8169 0000:19:00.0 enp25s0: link down
[ 30.646186] IPv6: ADDRCONF(NETDEV_UP): enp25s0: link is not ready
[ 30.702592] xhci_hcd 0000:1b:00.0: xHCI Host Controller
[ 30.702635] xhci_hcd 0000:1b:00.0: new USB bus registered, assigned bus number 5
[ 30.703232] xhci_hcd 0000:1b:00.0: irq 67 for MSI/MSI-X
[ 30.703251] xhci_hcd 0000:1b:00.0: irq 68 for MSI/MSI-X
[ 30.703269] xhci_hcd 0000:1b:00.0: irq 69 for MSI/MSI-X
[ 30.703286] xhci_hcd 0000:1b:00.0: irq 70 for MSI/MSI-X
[ 30.703307] xhci_hcd 0000:1b:00.0: irq 71 for MSI/MSI-X
[ 30.704378] xHCI xhci_add_endpoint called for root hub
[ 30.704383] xHCI xhci_check_bandwidth called for root hub
[ 30.704648] hub 5-0:1.0: USB hub found
[ 30.704669] hub 5-0:1.0: 2 ports detected
[ 30.813463] xhci_hcd 0000:1b:00.0: xHCI Host Controller
[ 30.813501] xhci_hcd 0000:1b:00.0: new USB bus registered, assigned bus number 6
[ 30.864289] xHCI xhci_add_endpoint called for root hub
[ 30.864295] xHCI xhci_check_bandwidth called for root hub
[ 30.864522] hub 6-0:1.0: USB hub found
[ 30.864544] hub 6-0:1.0: 2 ports detected
[ 30.918709] ata8.00: ATAPI: Optiarc BD RW BD-5850H, 1.70, max UDMA/100
[ 30.925645] ata8.00: configured for UDMA/100
[ 30.928886] scsi 7:0:0:0: CD-ROM Optiarc BD RW BD-5850H 1.70 PQ: 0 ANSI: 5
[ 30.931578] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda caddy
[ 30.931582] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 30.932236] sr 7:0:0:0: Attached scsi CD-ROM sr0
[ 31.114536] usb 5-1: new high-speed USB device number 2 using xhci_hcd
[ 31.128750] hub 5-1:1.0: USB hub found
[ 31.129092] hub 5-1:1.0: 2 ports detected
[ 31.356074] ATOM BIOS: Sony
[ 31.356231] [drm] GPU not posted. posting now...
[ 31.361557] radeon 0000:16:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[ 31.361563] radeon 0000:16:00.0: GTT: 512M 0x0000000040000000 - 0x000000005FFFFFFF
[ 31.361657] mtrr: no more MTRRs available
[ 31.361662] [drm] Detected VRAM RAM=1024M, BAR=256M
[ 31.361664] [drm] RAM width 128bits DDR
[ 31.362415] [TTM] Zone kernel: Available graphics memory: 4041738 kiB
[ 31.362418] [TTM] Zone dma32: Available graphics memory: 2097152 kiB
[ 31.362421] [TTM] Initializing pool allocator
[ 31.362455] [TTM] Initializing DMA pool allocator
[ 31.363412] [drm] radeon: 1024M of VRAM memory ready
[ 31.363418] [drm] radeon: 512M of GTT memory ready.
[ 31.382552] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 31.383176] [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
[ 31.387127] [drm] Loading TURKS Microcode
[ 31.396428] [drm] PCIE GART of 512M enabled (table at 0x0000000000273000).
[ 31.396821] radeon 0000:16:00.0: WB enabled
[ 31.396825] radeon 0000:16:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff88023ff5fc00
[ 31.396828] radeon 0000:16:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff88023ff5fc0c
[ 31.397057] radeon 0000:16:00.0: fence driver on ring 5 use gpu addr 0x0000000000072118 and cpu addr 0xffffc90024cb2118
[ 31.397062] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[ 31.397064] [drm] Driver supports precise vblank timestamp query.
[ 31.397120] radeon 0000:16:00.0: irq 72 for MSI/MSI-X
[ 31.397147] radeon 0000:16:00.0: radeon: using MSI.
[ 31.397276] [drm] radeon: irq initialized.
[ 31.414647] [drm] ring test on 0 succeeded in 1 usecs
[ 31.414730] [drm] ring test on 3 succeeded in 1 usecs
[ 31.601213] [drm] ring test on 5 succeeded in 1 usecs
[ 31.601219] [drm] UVD initialized successfully.
[ 31.601541] [drm] Enabling audio support
[ 31.601935] [drm] ib test on ring 0 succeeded in 0 usecs
[ 31.602137] [drm] ib test on ring 3 succeeded in 0 usecs
[ 31.755007] [drm] ib test on ring 5 succeeded
[ 31.755517] [drm] Radeon Display Connectors
[ 31.755519] [drm] Connector 0:
[ 31.755520] [drm] HDMI-A-2
[ 31.755521] [drm] HPD1
[ 31.755522] [drm] DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[ 31.755523] [drm] Encoders:
[ 31.755524] [drm] DFP1: INTERNAL_UNIPHY1
[ 31.755526] [drm] Connector 1:
[ 31.755527] [drm] VGA-2
[ 31.755528] [drm] DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
[ 31.755529] [drm] Encoders:
[ 31.755530] [drm] CRT1: INTERNAL_KLDSCP_DAC1
[ 31.757536] [drm] Internal thermal controller with fan control
[ 31.758901] [drm] radeon: power management initialized
[ 31.769745] radeon 0000:16:00.0: No connectors reported connected with modes
[ 31.769751] [drm] Cannot find any crtc or sizes - going 1024x768
[ 31.787200] [drm] fb mappable at 0xB0375000
[ 31.787202] [drm] vram apper at 0xB0000000
[ 31.787203] [drm] size 3145728
[ 31.787204] [drm] fb depth is 24
[ 31.787205] [drm] pitch is 4096
[ 31.787436] radeon 0000:16:00.0: fb1: radeondrmfb frame buffer device
[ 31.787457] [drm] Initialized radeon 2.33.0 20080528 for 0000:16:00.0 on minor 1
[ 43.628607] ACPI: Device does not support D3cold
[ 43.628713] ACPI: Device does not support D3cold
[ 43.628795] ACPI: Device does not support D3cold
[ 43.628865] ACPI: Device does not support D3cold
[ 43.628972] ACPI: Device does not support D3cold
[ 43.629077] ACPI: Device does not support D3cold
[ 43.629370] ACPI: Device does not support D3cold
[ 43.629495] ACPI: Device does not support D3cold
[ 43.629736] ACPI: Device does not support D3cold
[ 43.630066] ACPI: Device does not support D3cold
[ 43.630342] ACPI: Device does not support D3cold
[ 43.630575] ACPI: Device does not support D3cold
[ 43.634312] ACPI: Device does not support D3cold
[ 43.635507] ACPI: Device does not support D3cold
[ 43.635516] ACPI: \_SB_.DOCK: undocking
[ 44.108267] acpiphp_glue: _handle_hotplug_event_func: Device eject notify on \_SB_.PCI0.RP07.LPMB
[ 44.110349] xhci_hcd 0000:1b:00.0: remove, state 4
[ 44.110497] usb usb6: USB disconnect, device number 1
[ 44.112203] port1: Oops, 'acpi_handle' corrupt
[ 44.112242] port2: Oops, 'acpi_handle' corrupt
[ 44.112332] xHCI xhci_drop_endpoint called for root hub
[ 44.112334] xHCI xhci_check_bandwidth called for root hub
[ 44.114313] usb usb6: Oops, 'acpi_handle' corrupt
[ 44.114349] xhci_hcd 0000:1b:00.0: Host not halted after 16000 microseconds.
[ 44.114351] xhci_hcd 0000:1b:00.0: USB bus 6 deregistered
[ 44.114360] xhci_hcd 0000:1b:00.0: remove, state 4
[ 44.114392] usb usb5: USB disconnect, device number 1
[ 44.114394] usb 5-1: USB disconnect, device number 2
[ 49.120740] xhci_hcd 0000:1b:00.0: Timeout while waiting for configure endpoint command
[ 49.120750] xhci_hcd 0000:1b:00.0: Stopped the command ring failed, maybe the host is dead
[ 49.120757] xhci_hcd 0000:1b:00.0: Host not halted after 16000 microseconds.
[ 49.120759] xhci_hcd 0000:1b:00.0: Abort command ring failed
[ 49.120760] xhci_hcd 0000:1b:00.0: HC died; cleaning up
[ 49.122075] xHCI xhci_drop_endpoint called for root hub
[ 49.122076] xHCI xhci_check_bandwidth called for root hub
[ 49.123825] usb usb5: Oops, 'acpi_handle' corrupt
[ 49.123906] xhci_hcd 0000:1b:00.0: Host not halted after 16000 microseconds.
[ 49.124208] xhci_hcd 0000:1b:00.0: USB bus 5 deregistered
[ 52.150756] ata8.00: disabled
[ 52.172219] r8169 0000:19:00.0 enp25s0: rtl_counters_cond == 1 (loop: 1000, delay: 10).
[ 52.182516] r8169 0000:19:00.0 enp25s0: rtl_chipcmd_cond == 1 (loop: 100, delay: 100).
[ 52.188939] r8169 0000:19:00.0 enp25s0: rtl_phyar_cond == 1 (loop: 20, delay: 25).
[ 52.189542] r8169 0000:19:00.0 enp25s0: rtl_phyar_cond == 1 (loop: 20, delay: 25).
[ 52.190191] r8169 0000:19:00.0 enp25s0: rtl_phyar_cond == 1 (loop: 20, delay: 25).
[ 52.190746] r8169 0000:19:00.0 enp25s0: rtl_phyar_cond == 1 (loop: 20, delay: 25).
[ 52.191299] r8169 0000:19:00.0 enp25s0: rtl_phyar_cond == 1 (loop: 20, delay: 25).
[ 52.212009] r8169 0000:19:00.0 (unregistered net_device): rtl_eriar_cond == 1 (loop: 100, delay: 100).
[ 52.222185] r8169 0000:19:00.0 (unregistered net_device): rtl_eriar_cond == 1 (loop: 100, delay: 100).
[ 52.232357] r8169 0000:19:00.0 (unregistered net_device): rtl_eriar_cond == 1 (loop: 100, delay: 100).
[ 52.242529] r8169 0000:19:00.0 (unregistered net_device): rtl_eriar_cond == 1 (loop: 100, delay: 100).
[ 52.260158] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=none,decodes=io+mem:owns=none
[ 52.265799] [drm] radeon: finishing device.
[ 52.265804] [drm] Disabling audio support
[ 52.267668] radeon 0000:16:00.0: ffff880251e28400 unpin not necessary
[ 52.268033] [drm:drm_mm_takedown] *ERROR* Memory manager not clean. Delaying takedown
[ 52.268164] [TTM] Finalizing pool allocator
[ 52.268340] [TTM] Finalizing DMA pool allocator
[ 52.268389] ------------[ cut here ]------------
[ 52.268395] WARNING: at drivers/gpu/drm/ttm/ttm_page_alloc_dma.c:533 ttm_dma_free_pool+0x101/0x110 [ttm]()
[ 52.268396] Modules linked in: ata_generic pata_acpi pata_marvell radeon ttm zram(C) rfcomm bnep rtsx_pci_ms rtsx_pci_sdmmc mmc_core memstick iTCO_wdt iTCO_vendor_support coretemp kvm_intel kvm joydev pcspkr i2c_i801 uvcvideo qcserial usb_wwan videobuf2_vmalloc videobuf2_memops videobuf2_core usbserial btusb videodev bluetooth arc4 media iwldvm mac80211 snd_hda_codec_hdmi iwlwifi r8169 rtsx_pci mii cfg80211 snd_hda_codec_realtek i915 sony_laptop rfkill intel_agp snd_hda_intel intel_gtt snd_hda_codec i2c_algo_bit snd_hwdep drm_kms_helper snd_pcm snd_page_alloc drm snd_timer agpgart lpc_ich snd mfd_core sha256_ssse3 sha256_generic dm_crypt raid0 md_mod crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 lrw gf128mul glue_helper ablk_helper cryptd xhci_hcd ehci_pci ehci_hcd dm_mirror
[ 52.268444] dm_region_hash dm_log dm_mod [last unloaded: microcode]
[ 52.268449] CPU: 0 PID: 4 Comm: kworker/0:0 Tainted: G C 3.10.0-rc6-rafael #1
[ 52.268450] Hardware name: Sony Corporation VPCZ23A4R/VAIO, BIOS R1013H5 05/21/2012
[ 52.268455] Workqueue: kacpi_hotplug _handle_hotplug_event_func
[ 52.268456] ffffffffa081f268 ffff8802540d38b8 ffffffff8165af98 ffff8802540d38f8
[ 52.268460] ffffffff8103c8cb ffff8802540d38c8 ffff880251f53700 ffff8802513e23c0
[ 52.268463] 0000000000000008 ffff880253d02530 ffff880254079730 ffff8802540d3908
[ 52.268466] Call Trace:
[ 52.268470] [<ffffffff8165af98>] dump_stack+0x19/0x1b
[ 52.268474] [<ffffffff8103c8cb>] warn_slowpath_common+0x6b/0xa0
[ 52.268476] [<ffffffff8103c915>] warn_slowpath_null+0x15/0x20
[ 52.268480] [<ffffffffa081cd01>] ttm_dma_free_pool+0x101/0x110 [ttm]
[ 52.268484] [<ffffffffa081dee5>] ttm_dma_page_alloc_fini+0x85/0xcc [ttm]
[ 52.268487] [<ffffffffa0813455>] ttm_mem_global_release+0x25/0xa0 [ttm]
[ 52.268497] [<ffffffffa08494ed>] radeon_ttm_mem_global_release+0xd/0x10 [radeon]
[ 52.268507] [<ffffffffa0176213>] drm_global_item_unref+0x63/0x90 [drm]
[ 52.268514] [<ffffffffa084a721>] radeon_ttm_fini+0xd1/0xe0 [radeon]
[ 52.268522] [<ffffffffa084b129>] radeon_bo_fini+0x9/0x10 [radeon]
[ 52.268531] [<ffffffffa0893bf1>] evergreen_fini+0x91/0xc0 [radeon]
[ 52.268537] [<ffffffffa08336ea>] radeon_device_fini+0x3a/0xf0 [radeon]
[ 52.268543] [<ffffffffa08353d1>] radeon_driver_unload_kms+0x41/0x70 [radeon]
[ 52.268550] [<ffffffffa016524e>] drm_put_dev+0x6e/0x210 [drm]
[ 52.268555] [<ffffffffa0832068>] radeon_pci_remove+0x18/0x20 [radeon]
[ 52.268557] [<ffffffff81385831>] pci_device_remove+0x41/0xc0
[ 52.268561] [<ffffffff8143bfd7>] __device_release_driver+0x77/0xe0
[ 52.268563] [<ffffffff8143c069>] device_release_driver+0x29/0x40
[ 52.268566] [<ffffffff8143ba71>] bus_remove_device+0xf1/0x140
[ 52.268568] [<ffffffff8143915d>] device_del+0x11d/0x1b0
[ 52.268572] [<ffffffff8138082c>] pci_stop_bus_device+0x9c/0xb0
[ 52.268574] [<ffffffff813807cb>] pci_stop_bus_device+0x3b/0xb0
[ 52.268576] [<ffffffff813a11e5>] ? acpiphp_disable_slot+0x35/0x140
[ 52.268579] [<ffffffff813807cb>] pci_stop_bus_device+0x3b/0xb0
[ 52.268581] [<ffffffff813807cb>] pci_stop_bus_device+0x3b/0xb0
[ 52.268584] [<ffffffff813807cb>] pci_stop_bus_device+0x3b/0xb0
[ 52.268586] [<ffffffff81380991>] pci_stop_and_remove_bus_device+0x11/0x20
[ 52.268588] [<ffffffff813a1236>] acpiphp_disable_slot+0x86/0x140
[ 52.268591] [<ffffffff813a1622>] _handle_hotplug_event_func+0x102/0x1e0
[ 52.268594] [<ffffffff8105c2c2>] process_one_work+0x1c2/0x560
[ 52.268597] [<ffffffff8105c257>] ? process_one_work+0x157/0x560
[ 52.268599] [<ffffffff8105d1d6>] worker_thread+0x116/0x370
[ 52.268601] [<ffffffff8105d0c0>] ? manage_workers.isra.20+0x2d0/0x2d0
[ 52.268604] [<ffffffff81063a36>] kthread+0xd6/0xe0
[ 52.268606] [<ffffffff816611ab>] ? _raw_spin_unlock_irq+0x2b/0x60
[ 52.268609] [<ffffffff81063960>] ? __init_kthread_worker+0x70/0x70
[ 52.268612] [<ffffffff8166856c>] ret_from_fork+0x7c/0xb0
[ 52.268615] [<ffffffff81063960>] ? __init_kthread_worker+0x70/0x70
[ 52.268669] ---[ end trace 46b4e977738a3df6 ]---
[ 52.269258] [TTM] Zone kernel: Used memory at exit: 13 kiB
[ 52.269266] [TTM] Zone dma32: Used memory at exit: 9 kiB
[ 52.269295] [drm] radeon: ttm finalized
[ 52.273103] pci_bus 0000:0b: busn_res: [bus 0b] is released
[ 52.273732] pci_bus 0000:0c: busn_res: [bus 0c] is released
[ 52.273816] pci_bus 0000:16: busn_res: [bus 16] is released
[ 146.648094] fuse init (API version 7.22)
[ 146.903850] ata1.00: configured for UDMA/133
[ 146.903857] ata1: EH complete
[ 146.909710] ata2.00: configured for UDMA/133
[ 146.909716] ata2: EH complete
[ 146.953161] EXT4-fs (dm-1): re-mounted. Opts: commit=0
[ 146.959395] EXT4-fs (md126p1): re-mounted. Opts: commit=0
[ 146.962325] EXT4-fs (dm-2): re-mounted. Opts: commit=0
[ 146.974233] EXT4-fs (dm-3): re-mounted. Opts: commit=0
[ 147.708038] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[ 147.708052] Bluetooth: HIDP socket layer initialized