All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ACPIPHP: fix device destroying order issue in handling dock notification
@ 2013-06-11 11:52 Jiang Liu
  2013-06-11 12:15 ` Alexander E. Patrakov
  0 siblings, 1 reply; 10+ messages in thread
From: Jiang Liu @ 2013-06-11 11:52 UTC (permalink / raw)
  To: Alexander E . Patrakov
  Cc: Jiang Liu, Bjorn Helgaas, Yinghai Lu, Rafael J. Wysocki,
	linux-pci, linux-kernel

Current ACPI glue logic expects that physical devices are destroyed
before destroying companion ACPI devices, otherwise it will break the
ACPI unbind logic and cause following warning messages:
[  185.026073] usb usb5: Oops, 'acpi_handle' corrupt
[  185.035150] pci 0000:1b:00.0: Oops, 'acpi_handle' corrupt
[  185.035515] pci 0000:18:02.0: Oops, 'acpi_handle' corrupt
[  180.013656]  port1: Oops, 'acpi_handle' corrupt
Please refer to https://bugzilla.kernel.org/attachment.cgi?id=104321
for full log message.

Above warning messages are caused by following scenario:
1) acpi_dock_notifier_call() queues a task (T1) onto kacpi_hotplug_wq
2) kacpi_hotplug_wq handles T1, which invokes acpi_dock_deferred_cb()
   ->dock_notify()-> handle_eject_request()->hotplug_dock_devices()
3) hotplug_dock_devices() first invokes registered hotplug callbacks to
   destroy physical devices, then destroys all affected ACPI devices.
   Everything seems perfect until now. But the acpiphp dock notification
   handler will queue another task (T2) onto kacpi_hotplug_wq to really
   destroy affected physical devices.
4) kacpi_hotplug_wq finishes T1, and all affected ACPI devices have
   been destroyed.
5) kacpi_hotplug_wq handles T2, which destroys all affected physical
   devices.

So it breaks the ACPI glue expection because ACPI devices are destroyed
in step 3 and physical devices are destroyed in step 5.

Signed-off-by: Jiang Liu <jiang.liu@huawei.com>
Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: Yinghai Lu <yinghai@kernel.org>
Cc: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Cc: linux-pci@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
Hi all,
   We are trying to solve bug https://bugzilla.kernel.org/show_bug.cgi?id=59501
And seems there are multiple bugs behind bug 59501. This draft patch tries to
fix one of those issues. I will send out form patchset once all issue have been
resolved.

Regards!
Gerry
---
 drivers/pci/hotplug/acpiphp_glue.c | 31 +++++++++++++++++++------------
 1 file changed, 19 insertions(+), 12 deletions(-)

diff --git a/drivers/pci/hotplug/acpiphp_glue.c b/drivers/pci/hotplug/acpiphp_glue.c
index 716aa93..b132aca 100644
--- a/drivers/pci/hotplug/acpiphp_glue.c
+++ b/drivers/pci/hotplug/acpiphp_glue.c
@@ -61,7 +61,10 @@ static DEFINE_MUTEX(bridge_mutex);
 static void handle_hotplug_event_bridge (acpi_handle, u32, void *);
 static void acpiphp_sanitize_bus(struct pci_bus *bus);
 static void acpiphp_set_hpp_values(struct pci_bus *bus);
-static void handle_hotplug_event_func(acpi_handle handle, u32 type, void *context);
+static void __handle_hotplug_event_func(acpi_handle handle, u32 type,
+					void *context);
+static void handle_hotplug_event_func(acpi_handle handle, u32 type,
+				      void *context);
 static void free_bridge(struct kref *kref);
 
 /* callback routine to check for the existence of a pci dock device */
@@ -147,7 +150,7 @@ static int post_dock_fixups(struct notifier_block *nb, unsigned long val,
 
 
 static const struct acpi_dock_ops acpiphp_dock_ops = {
-	.handler = handle_hotplug_event_func,
+	.handler = __handle_hotplug_event_func,
 };
 
 /* Check whether the PCI device is managed by native PCIe hotplug driver */
@@ -1065,20 +1068,13 @@ static void handle_hotplug_event_bridge(acpi_handle handle, u32 type,
 	alloc_acpi_hp_work(handle, type, context, _handle_hotplug_event_bridge);
 }
 
-static void _handle_hotplug_event_func(struct work_struct *work)
+static void __handle_hotplug_event_func(acpi_handle handle, u32 type,
+					void *context)
 {
-	struct acpiphp_func *func;
+	struct acpiphp_func *func = context;
 	char objname[64];
 	struct acpi_buffer buffer = { .length = sizeof(objname),
 				      .pointer = objname };
-	struct acpi_hp_work *hp_work;
-	acpi_handle handle;
-	u32 type;
-
-	hp_work = container_of(work, struct acpi_hp_work, work);
-	handle = hp_work->handle;
-	type = hp_work->type;
-	func = (struct acpiphp_func *)hp_work->context;
 
 	acpi_scan_lock_acquire();
 
@@ -1115,6 +1111,17 @@ static void _handle_hotplug_event_func(struct work_struct *work)
 	}
 
 	acpi_scan_lock_release();
+}
+
+static void _handle_hotplug_event_func(struct work_struct *work)
+{
+	struct acpiphp_func *func;
+	struct acpi_hp_work *hp_work;
+
+	hp_work = container_of(work, struct acpi_hp_work, work);
+	func = (struct acpiphp_func *)hp_work->context;
+	__handle_hotplug_event_func(hp_work->handle, hp_work->type,
+				    hp_work->context);
 	kfree(hp_work); /* allocated in handle_hotplug_event_func */
 	put_bridge(func->slot->bridge);
 }
-- 
1.8.1.2


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH] ACPIPHP: fix device destroying order issue in handling dock notification
  2013-06-11 11:52 [PATCH] ACPIPHP: fix device destroying order issue in handling dock notification Jiang Liu
@ 2013-06-11 12:15 ` Alexander E. Patrakov
  2013-06-11 12:24   ` Jiang Liu
  0 siblings, 1 reply; 10+ messages in thread
From: Alexander E. Patrakov @ 2013-06-11 12:15 UTC (permalink / raw)
  To: Jiang Liu
  Cc: Jiang Liu, Bjorn Helgaas, Yinghai Lu, Rafael J. Wysocki,
	linux-pci, linux-kernel

2013/6/11 Jiang Liu <liuj97@gmail.com>:
> Current ACPI glue logic expects that physical devices are destroyed
> before destroying companion ACPI devices, otherwise it will break the
> ACPI unbind logic and cause following warning messages:
> [  185.026073] usb usb5: Oops, 'acpi_handle' corrupt
> [  185.035150] pci 0000:1b:00.0: Oops, 'acpi_handle' corrupt
> [  185.035515] pci 0000:18:02.0: Oops, 'acpi_handle' corrupt
> [  180.013656]  port1: Oops, 'acpi_handle' corrupt
> Please refer to https://bugzilla.kernel.org/attachment.cgi?id=104321
> for full log message.

This causes lockdep spew, see
https://bugzilla.kernel.org/attachment.cgi?id=104411

So, probably a NAK.

> Above warning messages are caused by following scenario:
> 1) acpi_dock_notifier_call() queues a task (T1) onto kacpi_hotplug_wq
> 2) kacpi_hotplug_wq handles T1, which invokes acpi_dock_deferred_cb()
>    ->dock_notify()-> handle_eject_request()->hotplug_dock_devices()
> 3) hotplug_dock_devices() first invokes registered hotplug callbacks to
>    destroy physical devices, then destroys all affected ACPI devices.
>    Everything seems perfect until now. But the acpiphp dock notification
>    handler will queue another task (T2) onto kacpi_hotplug_wq to really
>    destroy affected physical devices.
> 4) kacpi_hotplug_wq finishes T1, and all affected ACPI devices have
>    been destroyed.
> 5) kacpi_hotplug_wq handles T2, which destroys all affected physical
>    devices.
>
> So it breaks the ACPI glue expection because ACPI devices are destroyed
> in step 3 and physical devices are destroyed in step 5.
>
> Signed-off-by: Jiang Liu <jiang.liu@huawei.com>
> Cc: Bjorn Helgaas <bhelgaas@google.com>
> Cc: Yinghai Lu <yinghai@kernel.org>
> Cc: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
> Cc: linux-pci@vger.kernel.org
> Cc: linux-kernel@vger.kernel.org
> ---
> Hi all,
>    We are trying to solve bug https://bugzilla.kernel.org/show_bug.cgi?id=59501
> And seems there are multiple bugs behind bug 59501. This draft patch tries to
> fix one of those issues. I will send out form patchset once all issue have been
> resolved.
>
> Regards!
> Gerry
> ---
>  drivers/pci/hotplug/acpiphp_glue.c | 31 +++++++++++++++++++------------
>  1 file changed, 19 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/pci/hotplug/acpiphp_glue.c b/drivers/pci/hotplug/acpiphp_glue.c
> index 716aa93..b132aca 100644
> --- a/drivers/pci/hotplug/acpiphp_glue.c
> +++ b/drivers/pci/hotplug/acpiphp_glue.c
> @@ -61,7 +61,10 @@ static DEFINE_MUTEX(bridge_mutex);
>  static void handle_hotplug_event_bridge (acpi_handle, u32, void *);
>  static void acpiphp_sanitize_bus(struct pci_bus *bus);
>  static void acpiphp_set_hpp_values(struct pci_bus *bus);
> -static void handle_hotplug_event_func(acpi_handle handle, u32 type, void *context);
> +static void __handle_hotplug_event_func(acpi_handle handle, u32 type,
> +                                       void *context);
> +static void handle_hotplug_event_func(acpi_handle handle, u32 type,
> +                                     void *context);
>  static void free_bridge(struct kref *kref);
>
>  /* callback routine to check for the existence of a pci dock device */
> @@ -147,7 +150,7 @@ static int post_dock_fixups(struct notifier_block *nb, unsigned long val,
>
>
>  static const struct acpi_dock_ops acpiphp_dock_ops = {
> -       .handler = handle_hotplug_event_func,
> +       .handler = __handle_hotplug_event_func,
>  };
>
>  /* Check whether the PCI device is managed by native PCIe hotplug driver */
> @@ -1065,20 +1068,13 @@ static void handle_hotplug_event_bridge(acpi_handle handle, u32 type,
>         alloc_acpi_hp_work(handle, type, context, _handle_hotplug_event_bridge);
>  }
>
> -static void _handle_hotplug_event_func(struct work_struct *work)
> +static void __handle_hotplug_event_func(acpi_handle handle, u32 type,
> +                                       void *context)
>  {
> -       struct acpiphp_func *func;
> +       struct acpiphp_func *func = context;
>         char objname[64];
>         struct acpi_buffer buffer = { .length = sizeof(objname),
>                                       .pointer = objname };
> -       struct acpi_hp_work *hp_work;
> -       acpi_handle handle;
> -       u32 type;
> -
> -       hp_work = container_of(work, struct acpi_hp_work, work);
> -       handle = hp_work->handle;
> -       type = hp_work->type;
> -       func = (struct acpiphp_func *)hp_work->context;
>
>         acpi_scan_lock_acquire();
>
> @@ -1115,6 +1111,17 @@ static void _handle_hotplug_event_func(struct work_struct *work)
>         }
>
>         acpi_scan_lock_release();
> +}
> +
> +static void _handle_hotplug_event_func(struct work_struct *work)
> +{
> +       struct acpiphp_func *func;
> +       struct acpi_hp_work *hp_work;
> +
> +       hp_work = container_of(work, struct acpi_hp_work, work);
> +       func = (struct acpiphp_func *)hp_work->context;
> +       __handle_hotplug_event_func(hp_work->handle, hp_work->type,
> +                                   hp_work->context);
>         kfree(hp_work); /* allocated in handle_hotplug_event_func */
>         put_bridge(func->slot->bridge);
>  }
> --
> 1.8.1.2
>



--
Alexander E. Patrakov

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] ACPIPHP: fix device destroying order issue in handling dock notification
  2013-06-11 12:15 ` Alexander E. Patrakov
@ 2013-06-11 12:24   ` Jiang Liu
  2013-06-11 13:38     ` Alexander E. Patrakov
  0 siblings, 1 reply; 10+ messages in thread
From: Jiang Liu @ 2013-06-11 12:24 UTC (permalink / raw)
  To: Alexander E. Patrakov
  Cc: Jiang Liu, Bjorn Helgaas, Yinghai Lu, Rafael J. Wysocki,
	linux-pci, linux-kernel

On Tue 11 Jun 2013 08:15:11 PM CST, Alexander E. Patrakov wrote:
> 2013/6/11 Jiang Liu <liuj97@gmail.com>:
>> Current ACPI glue logic expects that physical devices are destroyed
>> before destroying companion ACPI devices, otherwise it will break the
>> ACPI unbind logic and cause following warning messages:
>> [  185.026073] usb usb5: Oops, 'acpi_handle' corrupt
>> [  185.035150] pci 0000:1b:00.0: Oops, 'acpi_handle' corrupt
>> [  185.035515] pci 0000:18:02.0: Oops, 'acpi_handle' corrupt
>> [  180.013656]  port1: Oops, 'acpi_handle' corrupt
>> Please refer to https://bugzilla.kernel.org/attachment.cgi?id=104321
>> for full log message.
>
> This causes lockdep spew, see
> https://bugzilla.kernel.org/attachment.cgi?id=104411
>
> So, probably a NAK.
>
>> Above warning messages are caused by following scenario:
>> 1) acpi_dock_notifier_call() queues a task (T1) onto kacpi_hotplug_wq
>> 2) kacpi_hotplug_wq handles T1, which invokes acpi_dock_deferred_cb()
>>    ->dock_notify()-> handle_eject_request()->hotplug_dock_devices()
>> 3) hotplug_dock_devices() first invokes registered hotplug callbacks to
>>    destroy physical devices, then destroys all affected ACPI devices.
>>    Everything seems perfect until now. But the acpiphp dock notification
>>    handler will queue another task (T2) onto kacpi_hotplug_wq to really
>>    destroy affected physical devices.
>> 4) kacpi_hotplug_wq finishes T1, and all affected ACPI devices have
>>    been destroyed.
>> 5) kacpi_hotplug_wq handles T2, which destroys all affected physical
>>    devices.
>>
>> So it breaks the ACPI glue expection because ACPI devices are destroyed
>> in step 3 and physical devices are destroyed in step 5.
>>
>> Signed-off-by: Jiang Liu <jiang.liu@huawei.com>
>> Cc: Bjorn Helgaas <bhelgaas@google.com>
>> Cc: Yinghai Lu <yinghai@kernel.org>
>> Cc: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
>> Cc: linux-pci@vger.kernel.org
>> Cc: linux-kernel@vger.kernel.org
>> ---
>> Hi all,
>>    We are trying to solve bug https://bugzilla.kernel.org/show_bug.cgi?id=59501
>> And seems there are multiple bugs behind bug 59501. This draft patch tries to
>> fix one of those issues. I will send out form patchset once all issue have been
>> resolved.
>>
>> Regards!
>> Gerry
>> ---
>>  drivers/pci/hotplug/acpiphp_glue.c | 31 +++++++++++++++++++------------
>>  1 file changed, 19 insertions(+), 12 deletions(-)
>>
>> diff --git a/drivers/pci/hotplug/acpiphp_glue.c b/drivers/pci/hotplug/acpiphp_glue.c
>> index 716aa93..b132aca 100644
>> --- a/drivers/pci/hotplug/acpiphp_glue.c
>> +++ b/drivers/pci/hotplug/acpiphp_glue.c
>> @@ -61,7 +61,10 @@ static DEFINE_MUTEX(bridge_mutex);
>>  static void handle_hotplug_event_bridge (acpi_handle, u32, void *);
>>  static void acpiphp_sanitize_bus(struct pci_bus *bus);
>>  static void acpiphp_set_hpp_values(struct pci_bus *bus);
>> -static void handle_hotplug_event_func(acpi_handle handle, u32 type, void *context);
>> +static void __handle_hotplug_event_func(acpi_handle handle, u32 type,
>> +                                       void *context);
>> +static void handle_hotplug_event_func(acpi_handle handle, u32 type,
>> +                                     void *context);
>>  static void free_bridge(struct kref *kref);
>>
>>  /* callback routine to check for the existence of a pci dock device */
>> @@ -147,7 +150,7 @@ static int post_dock_fixups(struct notifier_block *nb, unsigned long val,
>>
>>
>>  static const struct acpi_dock_ops acpiphp_dock_ops = {
>> -       .handler = handle_hotplug_event_func,
>> +       .handler = __handle_hotplug_event_func,
>>  };
>>
>>  /* Check whether the PCI device is managed by native PCIe hotplug driver */
>> @@ -1065,20 +1068,13 @@ static void handle_hotplug_event_bridge(acpi_handle handle, u32 type,
>>         alloc_acpi_hp_work(handle, type, context, _handle_hotplug_event_bridge);
>>  }
>>
>> -static void _handle_hotplug_event_func(struct work_struct *work)
>> +static void __handle_hotplug_event_func(acpi_handle handle, u32 type,
>> +                                       void *context)
>>  {
>> -       struct acpiphp_func *func;
>> +       struct acpiphp_func *func = context;
>>         char objname[64];
>>         struct acpi_buffer buffer = { .length = sizeof(objname),
>>                                       .pointer = objname };
>> -       struct acpi_hp_work *hp_work;
>> -       acpi_handle handle;
>> -       u32 type;
>> -
>> -       hp_work = container_of(work, struct acpi_hp_work, work);
>> -       handle = hp_work->handle;
>> -       type = hp_work->type;
>> -       func = (struct acpiphp_func *)hp_work->context;
>>
>>         acpi_scan_lock_acquire();
>>
>> @@ -1115,6 +1111,17 @@ static void _handle_hotplug_event_func(struct work_struct *work)
>>         }
>>
>>         acpi_scan_lock_release();
>> +}
>> +
>> +static void _handle_hotplug_event_func(struct work_struct *work)
>> +{
>> +       struct acpiphp_func *func;
>> +       struct acpi_hp_work *hp_work;
>> +
>> +       hp_work = container_of(work, struct acpi_hp_work, work);
>> +       func = (struct acpiphp_func *)hp_work->context;
>> +       __handle_hotplug_event_func(hp_work->handle, hp_work->type,
>> +                                   hp_work->context);
>>         kfree(hp_work); /* allocated in handle_hotplug_event_func */
>>         put_bridge(func->slot->bridge);
>>  }
>> --
>> 1.8.1.2
>>
>
>
>
> --
> Alexander E. Patrakov
Hi Alexander,
     Sorry for the deadlock, I have no machine for testing:(
Below patch should fix the deadlock issue.
Regards!

----
diff --git a/drivers/pci/hotplug/acpiphp_glue.c 
b/drivers/pci/hotplug/acpiphp_glue.c
index 0302645..699b8ca 100644
--- a/drivers/pci/hotplug/acpiphp_glue.c
+++ b/drivers/pci/hotplug/acpiphp_glue.c
@@ -1075,8 +1075,6 @@ static void 
_handle_hotplug_event_func(acpi_handle handle, u32 type,
        struct acpi_buffer buffer = { .length = sizeof(objname),
                                      .pointer = objname };

-       acpi_scan_lock_acquire();
-
        acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);

        switch (type) {
@@ -1108,8 +1106,6 @@ static void 
_handle_hotplug_event_func(acpi_handle handle, u32 type,
                warn("notify_handler: unknown event type 0x%x for 
%s\n", type, objname);
                break;
        }
-
-       acpi_scan_lock_release();
 }

 static void _handle_hotplug_event_cb(struct work_struct *work)
@@ -1119,8 +1115,10 @@ static void _handle_hotplug_event_cb(struct 
work_struct *work)

        hp_work = container_of(work, struct acpi_hp_work, work);
        func = (struct acpiphp_func *)hp_work->context;
+       acpi_scan_lock_acquire();
        _handle_hotplug_event_func(hp_work->handle, hp_work->type,
                                    hp_work->context);
+       acpi_scan_lock_release();
        kfree(hp_work); /* allocated in handle_hotplug_event_func */
        put_bridge(func->slot->bridge);
 }


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH] ACPIPHP: fix device destroying order issue in handling dock notification
  2013-06-11 12:24   ` Jiang Liu
@ 2013-06-11 13:38     ` Alexander E. Patrakov
  2013-06-11 15:00       ` Jiang Liu
  0 siblings, 1 reply; 10+ messages in thread
From: Alexander E. Patrakov @ 2013-06-11 13:38 UTC (permalink / raw)
  To: Jiang Liu
  Cc: Jiang Liu, Bjorn Helgaas, Yinghai Lu, Rafael J. Wysocki,
	linux-pci, linux-kernel

2013/6/11 Jiang Liu <liuj97@gmail.com>:
> Hi Alexander,
>      Sorry for the deadlock, I have no machine for testing:(
> Below patch should fix the deadlock issue.

There is another deadlock:

[   34.316382] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:0a:00
[   34.316557] acpiphp: Slot [1-1] registered

[   34.316569] =============================================
[   34.316570] [ INFO: possible recursive locking detected ]
[   34.316573] 3.10.0-rc4 #6 Tainted: G         C
[   34.316575] ---------------------------------------------
[   34.316577] kworker/0:0/4 is trying to acquire lock:
[   34.316579]  (&dock_station->hp_lock){+.+.+.}, at:
[<ffffffff813c766b>] register_hotplug_dock_device+0x6a/0xbf
[   34.316588]
but task is already holding lock:
[   34.316590]  (&dock_station->hp_lock){+.+.+.}, at:
[<ffffffff813c7270>] hotplug_dock_devices+0x2c/0xda
[   34.316595]
other info that might help us debug this:
[   34.316597]  Possible unsafe locking scenario:

[   34.316599]        CPU0
[   34.316601]        ----
[   34.316602]   lock(&dock_station->hp_lock);
[   34.316605]   lock(&dock_station->hp_lock);
[   34.316608]
 *** DEADLOCK ***

[   34.316611]  May be due to missing lock nesting notation

[   34.316613] 5 locks held by kworker/0:0/4:
[   34.316615]  #0:  (kacpi_hotplug){.+.+.+}, at: [<ffffffff8105c1a7>]
process_one_work+0x157/0x560
[   34.316624]  #1:  ((&dpc->work)#3){+.+.+.}, at:
[<ffffffff8105c1a7>] process_one_work+0x157/0x560
[   34.316631]  #2:  (acpi_scan_lock){+.+.+.}, at:
[<ffffffff813c38fb>] acpi_scan_lock_acquire+0x12/0x14
[   34.316639]  #3:  (&dock_station->hp_lock){+.+.+.}, at:
[<ffffffff813c7270>] hotplug_dock_devices+0x2c/0xda
[   34.316646]  #4:  (&slot->crit_sect){+.+.+.}, at:
[<ffffffff813a0e8e>] acpiphp_enable_slot+0x1e/0x140
[   34.316653]
stack backtrace:
[   34.316657] CPU: 0 PID: 4 Comm: kworker/0:0 Tainted: G         C
3.10.0-rc4 #6
[   34.316659] Hardware name: Sony Corporation VPCZ23A4R/VAIO, BIOS
R1013H5 05/21/2012
[   34.316663] Workqueue: kacpi_hotplug acpi_os_execute_deferred
[   34.316665]  ffff8802540adf40 ffff8802540d3628 ffffffff8165aaf8
ffff8802540d3718
[   34.316670]  ffffffff8109fe92 ffff8802540adf40 ffffffff8261c8a0
ffff8802540ae700
[   34.316675]  0000000000000000 ffff8802540d3748 000000000001f180
ffff8802000000dc
[   34.316680] Call Trace:
[   34.316685]  [<ffffffff8165aaf8>] dump_stack+0x19/0x1b
[   34.316689]  [<ffffffff8109fe92>] __lock_acquire+0x1522/0x1ee0
[   34.316693]  [<ffffffff810a1751>] ? mark_held_locks+0x61/0x150
[   34.316697]  [<ffffffff81660cc5>] ? _raw_spin_unlock_irqrestore+0x65/0x80
[   34.316702]  [<ffffffff813ddfbc>] ? acpi_ns_get_node+0xb2/0xc2
[   34.316705]  [<ffffffff813c766b>] ? register_hotplug_dock_device+0x6a/0xbf
[   34.316709]  [<ffffffff810a0e77>] lock_acquire+0x87/0x150
[   34.316712]  [<ffffffff813c766b>] ? register_hotplug_dock_device+0x6a/0xbf
[   34.316715]  [<ffffffff813c766b>] ? register_hotplug_dock_device+0x6a/0xbf
[   34.316720]  [<ffffffff8165d87e>] mutex_lock_nested+0x5e/0x3e0
[   34.316723]  [<ffffffff813c766b>] ? register_hotplug_dock_device+0x6a/0xbf
[   34.316726]  [<ffffffff81660c30>] ? _raw_spin_unlock+0x30/0x60
[   34.316729]  [<ffffffff813c766b>] register_hotplug_dock_device+0x6a/0xbf
[   34.316733]  [<ffffffff813a0637>] register_slot+0x467/0x5b0
[   34.316738]  [<ffffffff813de0c8>] acpi_ns_walk_namespace+0xbb/0x17b
[   34.316741]  [<ffffffff813c06e3>] ? acpi_os_wait_semaphore+0x3f/0x55
[   34.316744]  [<ffffffff813a01d0>] ? free_bridge+0x100/0x100
[   34.316748]  [<ffffffff813a01d0>] ? free_bridge+0x100/0x100
[   34.316752]  [<ffffffff813de846>] acpi_walk_namespace+0x8e/0xc8
[   34.316755]  [<ffffffff813a0b0d>] acpiphp_enumerate_slots+0x1bd/0x320
[   34.316760]  [<ffffffff81448836>] ? pm_runtime_init+0x106/0x110
[   34.316764]  [<ffffffff813a5a0f>] acpi_pci_add_bus+0x2f/0x40
[   34.316768]  [<ffffffff815332f9>] pcibios_add_bus+0x9/0x10
[   34.316772]  [<ffffffff81643168>] pci_add_new_bus+0x1c8/0x390
[   34.316777]  [<ffffffff81380075>] pci_scan_bridge+0x5e5/0x620
[   34.316781]  [<ffffffff816444e9>] enable_device+0x169/0x450
[   34.316785]  [<ffffffff813a0f3a>] acpiphp_enable_slot+0xca/0x140
[   34.316789]  [<ffffffff813a13b6>] __handle_hotplug_event_func+0x96/0x1a0
[   34.316792]  [<ffffffff813c729b>] hotplug_dock_devices+0x57/0xda
[   34.316796]  [<ffffffff813c7b06>] acpi_dock_deferred_cb+0xd4/0x1c8
[   34.316799]  [<ffffffff813bfba9>] acpi_os_execute_deferred+0x20/0x2d
[   34.316803]  [<ffffffff8105c212>] process_one_work+0x1c2/0x560
[   34.316807]  [<ffffffff8105c1a7>] ? process_one_work+0x157/0x560
[   34.316810]  [<ffffffff8105d126>] worker_thread+0x116/0x370
[   34.316813]  [<ffffffff8105d010>] ? manage_workers.isra.20+0x2d0/0x2d0
[   34.316818]  [<ffffffff81063986>] kthread+0xd6/0xe0
[   34.316821]  [<ffffffff81660d0b>] ? _raw_spin_unlock_irq+0x2b/0x60
[   34.316826]  [<ffffffff810638b0>] ? __init_kthread_worker+0x70/0x70
[   34.316830]  [<ffffffff816680ac>] ret_from_fork+0x7c/0xb0
[   34.316834]  [<ffffffff810638b0>] ? __init_kthread_worker+0x70/0x70

> Regards!
>
> ----
> diff --git a/drivers/pci/hotplug/acpiphp_glue.c
> b/drivers/pci/hotplug/acpiphp_glue.c
> index 0302645..699b8ca 100644
> --- a/drivers/pci/hotplug/acpiphp_glue.c
> +++ b/drivers/pci/hotplug/acpiphp_glue.c
> @@ -1075,8 +1075,6 @@ static void
> _handle_hotplug_event_func(acpi_handle handle, u32 type,
>         struct acpi_buffer buffer = { .length = sizeof(objname),
>                                       .pointer = objname };
>
> -       acpi_scan_lock_acquire();
> -
>         acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
>
>         switch (type) {
> @@ -1108,8 +1106,6 @@ static void
> _handle_hotplug_event_func(acpi_handle handle, u32 type,
>                 warn("notify_handler: unknown event type 0x%x for
> %s\n", type, objname);
>                 break;
>         }
> -
> -       acpi_scan_lock_release();
>  }
>
>  static void _handle_hotplug_event_cb(struct work_struct *work)
> @@ -1119,8 +1115,10 @@ static void _handle_hotplug_event_cb(struct
> work_struct *work)
>
>         hp_work = container_of(work, struct acpi_hp_work, work);
>         func = (struct acpiphp_func *)hp_work->context;
> +       acpi_scan_lock_acquire();
>         _handle_hotplug_event_func(hp_work->handle, hp_work->type,
>                                     hp_work->context);
> +       acpi_scan_lock_release();
>         kfree(hp_work); /* allocated in handle_hotplug_event_func */
>         put_bridge(func->slot->bridge);
>  }
>



--
Alexander E. Patrakov

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] ACPIPHP: fix device destroying order issue in handling dock notification
  2013-06-11 13:38     ` Alexander E. Patrakov
@ 2013-06-11 15:00       ` Jiang Liu
  2013-06-11 16:51         ` Alexander E. Patrakov
  0 siblings, 1 reply; 10+ messages in thread
From: Jiang Liu @ 2013-06-11 15:00 UTC (permalink / raw)
  To: Alexander E. Patrakov
  Cc: Jiang Liu, Bjorn Helgaas, Yinghai Lu, Rafael J. Wysocki,
	linux-pci, linux-kernel

Hi Alexander,
    This is much more harder issue to resolve.  Let's first work around 
this
issue and check whether other things are OK. The patch below is just a
prove of concept, could you please help to try it?
Regards!
Gerry

---
diff --git a/drivers/acpi/dock.c b/drivers/acpi/dock.c
index a7ba608..dde1cec 100644
--- a/drivers/acpi/dock.c
+++ b/drivers/acpi/dock.c
@@ -121,9 +121,7 @@ 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);
 }

 /**
@@ -137,9 +135,7 @@ static void
 dock_del_hotplug_device(struct dock_station *ds,
                        struct dock_dependent_device *dd)
 {
-       mutex_lock(&ds->hp_lock);
        list_del_init(&dd->hotplug_list);
-       mutex_unlock(&ds->hp_lock);
 }

 /**
---
On Tue 11 Jun 2013 09:38:59 PM CST, Alexander E. Patrakov wrote:
> 2013/6/11 Jiang Liu <liuj97@gmail.com>:
>> Hi Alexander,
>>      Sorry for the deadlock, I have no machine for testing:(
>> Below patch should fix the deadlock issue.
>
> There is another deadlock:
>
> [   34.316382] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:0a:00
> [   34.316557] acpiphp: Slot [1-1] registered
>
> [   34.316569] =============================================
> [   34.316570] [ INFO: possible recursive locking detected ]
> [   34.316573] 3.10.0-rc4 #6 Tainted: G         C
> [   34.316575] ---------------------------------------------
> [   34.316577] kworker/0:0/4 is trying to acquire lock:
> [   34.316579]  (&dock_station->hp_lock){+.+.+.}, at:
> [<ffffffff813c766b>] register_hotplug_dock_device+0x6a/0xbf
> [   34.316588]
> but task is already holding lock:
> [   34.316590]  (&dock_station->hp_lock){+.+.+.}, at:
> [<ffffffff813c7270>] hotplug_dock_devices+0x2c/0xda
> [   34.316595]
> other info that might help us debug this:
> [   34.316597]  Possible unsafe locking scenario:
>
> [   34.316599]        CPU0
> [   34.316601]        ----
> [   34.316602]   lock(&dock_station->hp_lock);
> [   34.316605]   lock(&dock_station->hp_lock);
> [   34.316608]
>  *** DEADLOCK ***
>
> [   34.316611]  May be due to missing lock nesting notation
>
> [   34.316613] 5 locks held by kworker/0:0/4:
> [   34.316615]  #0:  (kacpi_hotplug){.+.+.+}, at: [<ffffffff8105c1a7>]
> process_one_work+0x157/0x560
> [   34.316624]  #1:  ((&dpc->work)#3){+.+.+.}, at:
> [<ffffffff8105c1a7>] process_one_work+0x157/0x560
> [   34.316631]  #2:  (acpi_scan_lock){+.+.+.}, at:
> [<ffffffff813c38fb>] acpi_scan_lock_acquire+0x12/0x14
> [   34.316639]  #3:  (&dock_station->hp_lock){+.+.+.}, at:
> [<ffffffff813c7270>] hotplug_dock_devices+0x2c/0xda
> [   34.316646]  #4:  (&slot->crit_sect){+.+.+.}, at:
> [<ffffffff813a0e8e>] acpiphp_enable_slot+0x1e/0x140
> [   34.316653]
> stack backtrace:
> [   34.316657] CPU: 0 PID: 4 Comm: kworker/0:0 Tainted: G         C
> 3.10.0-rc4 #6
> [   34.316659] Hardware name: Sony Corporation VPCZ23A4R/VAIO, BIOS
> R1013H5 05/21/2012
> [   34.316663] Workqueue: kacpi_hotplug acpi_os_execute_deferred
> [   34.316665]  ffff8802540adf40 ffff8802540d3628 ffffffff8165aaf8
> ffff8802540d3718
> [   34.316670]  ffffffff8109fe92 ffff8802540adf40 ffffffff8261c8a0
> ffff8802540ae700
> [   34.316675]  0000000000000000 ffff8802540d3748 000000000001f180
> ffff8802000000dc
> [   34.316680] Call Trace:
> [   34.316685]  [<ffffffff8165aaf8>] dump_stack+0x19/0x1b
> [   34.316689]  [<ffffffff8109fe92>] __lock_acquire+0x1522/0x1ee0
> [   34.316693]  [<ffffffff810a1751>] ? mark_held_locks+0x61/0x150
> [   34.316697]  [<ffffffff81660cc5>] ? _raw_spin_unlock_irqrestore+0x65/0x80
> [   34.316702]  [<ffffffff813ddfbc>] ? acpi_ns_get_node+0xb2/0xc2
> [   34.316705]  [<ffffffff813c766b>] ? register_hotplug_dock_device+0x6a/0xbf
> [   34.316709]  [<ffffffff810a0e77>] lock_acquire+0x87/0x150
> [   34.316712]  [<ffffffff813c766b>] ? register_hotplug_dock_device+0x6a/0xbf
> [   34.316715]  [<ffffffff813c766b>] ? register_hotplug_dock_device+0x6a/0xbf
> [   34.316720]  [<ffffffff8165d87e>] mutex_lock_nested+0x5e/0x3e0
> [   34.316723]  [<ffffffff813c766b>] ? register_hotplug_dock_device+0x6a/0xbf
> [   34.316726]  [<ffffffff81660c30>] ? _raw_spin_unlock+0x30/0x60
> [   34.316729]  [<ffffffff813c766b>] register_hotplug_dock_device+0x6a/0xbf
> [   34.316733]  [<ffffffff813a0637>] register_slot+0x467/0x5b0
> [   34.316738]  [<ffffffff813de0c8>] acpi_ns_walk_namespace+0xbb/0x17b
> [   34.316741]  [<ffffffff813c06e3>] ? acpi_os_wait_semaphore+0x3f/0x55
> [   34.316744]  [<ffffffff813a01d0>] ? free_bridge+0x100/0x100
> [   34.316748]  [<ffffffff813a01d0>] ? free_bridge+0x100/0x100
> [   34.316752]  [<ffffffff813de846>] acpi_walk_namespace+0x8e/0xc8
> [   34.316755]  [<ffffffff813a0b0d>] acpiphp_enumerate_slots+0x1bd/0x320
> [   34.316760]  [<ffffffff81448836>] ? pm_runtime_init+0x106/0x110
> [   34.316764]  [<ffffffff813a5a0f>] acpi_pci_add_bus+0x2f/0x40
> [   34.316768]  [<ffffffff815332f9>] pcibios_add_bus+0x9/0x10
> [   34.316772]  [<ffffffff81643168>] pci_add_new_bus+0x1c8/0x390
> [   34.316777]  [<ffffffff81380075>] pci_scan_bridge+0x5e5/0x620
> [   34.316781]  [<ffffffff816444e9>] enable_device+0x169/0x450
> [   34.316785]  [<ffffffff813a0f3a>] acpiphp_enable_slot+0xca/0x140
> [   34.316789]  [<ffffffff813a13b6>] __handle_hotplug_event_func+0x96/0x1a0
> [   34.316792]  [<ffffffff813c729b>] hotplug_dock_devices+0x57/0xda
> [   34.316796]  [<ffffffff813c7b06>] acpi_dock_deferred_cb+0xd4/0x1c8
> [   34.316799]  [<ffffffff813bfba9>] acpi_os_execute_deferred+0x20/0x2d
> [   34.316803]  [<ffffffff8105c212>] process_one_work+0x1c2/0x560
> [   34.316807]  [<ffffffff8105c1a7>] ? process_one_work+0x157/0x560
> [   34.316810]  [<ffffffff8105d126>] worker_thread+0x116/0x370
> [   34.316813]  [<ffffffff8105d010>] ? manage_workers.isra.20+0x2d0/0x2d0
> [   34.316818]  [<ffffffff81063986>] kthread+0xd6/0xe0
> [   34.316821]  [<ffffffff81660d0b>] ? _raw_spin_unlock_irq+0x2b/0x60
> [   34.316826]  [<ffffffff810638b0>] ? __init_kthread_worker+0x70/0x70
> [   34.316830]  [<ffffffff816680ac>] ret_from_fork+0x7c/0xb0
> [   34.316834]  [<ffffffff810638b0>] ? __init_kthread_worker+0x70/0x70
>
>> Regards!
>>
>> ----
>> diff --git a/drivers/pci/hotplug/acpiphp_glue.c
>> b/drivers/pci/hotplug/acpiphp_glue.c
>> index 0302645..699b8ca 100644
>> --- a/drivers/pci/hotplug/acpiphp_glue.c
>> +++ b/drivers/pci/hotplug/acpiphp_glue.c
>> @@ -1075,8 +1075,6 @@ static void
>> _handle_hotplug_event_func(acpi_handle handle, u32 type,
>>         struct acpi_buffer buffer = { .length = sizeof(objname),
>>                                       .pointer = objname };
>>
>> -       acpi_scan_lock_acquire();
>> -
>>         acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
>>
>>         switch (type) {
>> @@ -1108,8 +1106,6 @@ static void
>> _handle_hotplug_event_func(acpi_handle handle, u32 type,
>>                 warn("notify_handler: unknown event type 0x%x for
>> %s\n", type, objname);
>>                 break;
>>         }
>> -
>> -       acpi_scan_lock_release();
>>  }
>>
>>  static void _handle_hotplug_event_cb(struct work_struct *work)
>> @@ -1119,8 +1115,10 @@ static void _handle_hotplug_event_cb(struct
>> work_struct *work)
>>
>>         hp_work = container_of(work, struct acpi_hp_work, work);
>>         func = (struct acpiphp_func *)hp_work->context;
>> +       acpi_scan_lock_acquire();
>>         _handle_hotplug_event_func(hp_work->handle, hp_work->type,
>>                                     hp_work->context);
>> +       acpi_scan_lock_release();
>>         kfree(hp_work); /* allocated in handle_hotplug_event_func */
>>         put_bridge(func->slot->bridge);
>>  }
>>
>
>
>
> --
> Alexander E. Patrakov



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH] ACPIPHP: fix device destroying order issue in handling dock notification
  2013-06-11 15:00       ` Jiang Liu
@ 2013-06-11 16:51         ` Alexander E. Patrakov
  2013-06-12  2:49           ` Jiang Liu
  0 siblings, 1 reply; 10+ messages in thread
From: Alexander E. Patrakov @ 2013-06-11 16:51 UTC (permalink / raw)
  To: Jiang Liu
  Cc: Jiang Liu, Bjorn Helgaas, Yinghai Lu, Rafael J. Wysocki,
	linux-pci, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 639 bytes --]

2013/6/11 Jiang Liu <liuj97@gmail.com>:
> Hi Alexander,
>     This is much more harder issue to resolve.  Let's first work around
> this
> issue and check whether other things are OK. The patch below is just a
> prove of concept, could you please help to try it?

In the initially-undocked case it passes the "dock and undock three
times, verify lspci output at each step" test.

In the initially-docked case, it exhibits the following problem: when
I press the undock button, only one PCI device disappears, and the
"docked" LED does not turn off. Additionally, there is a hung task.

Both dmesgs are attached.

-- 
Alexander E. Patrakov

[-- Attachment #2: dmesg-initially-docked.txt --]
[-- Type: text/plain, Size: 91763 bytes --]

[    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-rc4 (root@aep-vaio) (gcc version 4.6.3 (Gentoo 4.6.3 p1.11, pie-0.5.2) ) #7 SMP PREEMPT Tue Jun 11 22:34:46 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 0x7fac4000-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: 8074256k/9959424k available (6575k kernel code, 1657032k absent, 228136k reserved, 6466k 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.628 MHz processor
[    0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 5587.25 BogoMIPS (lpj=2793628)
[    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.002405] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.003104] Mount-cache hash table entries: 256
[    0.003765] Initializing cgroup subsys memory
[    0.003846] Initializing cgroup subsys devices
[    0.003929] Initializing cgroup subsys freezer
[    0.004481] Initializing cgroup subsys blkio
[    0.004540] Initializing cgroup subsys net_prio
[    0.004599] Initializing cgroup subsys hugetlb
[    0.004703] CPU: Physical Processor ID: 0
[    0.004760] CPU: Processor Core ID: 0
[    0.004819] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.004915] mce: CPU supports 7 MCE banks
[    0.004981] CPU0: Thermal monitoring enabled (TM1)
[    0.005052] 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.005315] Freeing SMP alternatives: 24k freed
[    0.005380] ACPI: Core revision 20130328
[    0.016565] ACPI: All ACPI Tables successfully acquired
[    0.028840] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.038921] smpboot: CPU0: Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz (fam: 06, model: 2a, stepping: 07)
[    0.039121] TSC deadline timer enabled
[    0.039136] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, Intel PMU driver.
[    0.039372] perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
[    0.039453] ... version:                3
[    0.039510] ... bit width:              48
[    0.039567] ... generic registers:      4
[    0.039625] ... value mask:             0000ffffffffffff
[    0.039684] ... max period:             000000007fffffff
[    0.039744] ... fixed-purpose events:   3
[    0.039801] ... event mask:             000000070000000f
[    0.049497] SMP alternatives: lockdep: fixing up alternatives
[    0.063045] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.049575] smpboot: Booting Node   0, Processors  #1
[    0.064981] SMP alternatives: lockdep: fixing up alternatives
[    0.065093]  #2
[    0.080541] SMP alternatives: lockdep: fixing up alternatives
[    0.080654]  #3
[    0.093978] Brought up 4 CPUs
[    0.094088] smpboot: Total of 4 processors activated (22349.02 BogoMIPS)
[    0.097699] devtmpfs: initialized
[    0.100408] PM: Registering ACPI NVS region [mem 0x9aebf000-0x9afbefff] (1048576 bytes)
[    0.100743] xor: automatically using best checksumming function:
[    0.110068]    avx       : 20480.000 MB/sec
[    0.110301] NET: Registered protocol family 16
[    0.110717] ACPI: bus type PCI registered
[    0.110776] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.110910] dca service started, version 1.12.1
[    0.111027] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.111110] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.133669] PCI: Using configuration type 1 for base access
[    0.135775] bio: create slab <bio-0> at 0
[    0.152234] raid6: sse2x1    7578 MB/s
[    0.169286] raid6: sse2x2    9316 MB/s
[    0.186335] raid6: sse2x4   10820 MB/s
[    0.186392] raid6: using algorithm sse2x4 (10820 MB/s)
[    0.186452] raid6: using ssse3x2 recovery algorithm
[    0.186586] ACPI: Added _OSI(Module Device)
[    0.186645] ACPI: Added _OSI(Processor Device)
[    0.186704] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.186763] ACPI: Added _OSI(Processor Aggregator Device)
[    0.191434] ACPI: EC: Look up EC in DSDT
[    0.195980] ACPI: Executed 1 blocks of module-level executable AML code
[    0.204559] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.212427] ACPI: SSDT 000000009ae70718 0067C (v01   Sony     VAIO 20120521 INTL 20100121)
[    0.213757] ACPI: Dynamic OEM Table Load:
[    0.213894] ACPI: SSDT           (null) 0067C (v01   Sony     VAIO 20120521 INTL 20100121)
[    0.217801] ACPI: SSDT 000000009ae71a98 00303 (v01   Sony     VAIO 20120521 INTL 20100121)
[    0.219187] ACPI: Dynamic OEM Table Load:
[    0.219323] ACPI: SSDT           (null) 00303 (v01   Sony     VAIO 20120521 INTL 20100121)
[    0.223712] ACPI: SSDT 000000009ae6fd98 00119 (v01   Sony     VAIO 20120521 INTL 20100121)
[    0.225041] ACPI: Dynamic OEM Table Load:
[    0.225178] ACPI: SSDT           (null) 00119 (v01   Sony     VAIO 20120521 INTL 20100121)
[    0.636740] ACPI: Interpreter enabled
[    0.636798] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130328/hwxface-568)
[    0.636940] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130328/hwxface-568)
[    0.637109] ACPI: (supports S0 S3 S4 S5)
[    0.637162] ACPI: Using IOAPIC for interrupt routing
[    0.637249] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.638184] ACPI: ACPI Dock Station Driver: 1 docks/bays found
[    0.655479] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    0.655646] \_SB_.PCI0:_OSC invalid UUID
[    0.655647] _OSC request data:1 8 0 
[    0.656695] PCI host bridge to bus 0000:00
[    0.656749] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.656806] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.656863] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.656919] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.656977] pci_bus 0000:00: root bus resource [mem 0x9fa00000-0xfeafffff]
[    0.657068] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
[    0.657277] pci 0000:00:02.0: [8086:0126] type 00 class 0x030000
[    0.657293] pci 0000:00:02.0: reg 10: [mem 0xd0000000-0xd03fffff 64bit]
[    0.657301] pci 0000:00:02.0: reg 18: [mem 0xa0000000-0xafffffff 64bit pref]
[    0.657307] pci 0000:00:02.0: reg 20: [io  0xa000-0xa03f]
[    0.657494] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.657532] pci 0000:00:16.0: reg 10: [mem 0xd9404000-0xd940400f 64bit]
[    0.657658] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.657840] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[    0.658126] pci 0000:00:1a.0: reg 10: [mem 0xd9409000-0xd94093ff]
[    0.659782] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.659876] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.660041] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.660067] pci 0000:00:1b.0: reg 10: [mem 0xd9400000-0xd9403fff 64bit]
[    0.660189] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.660239] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.660351] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.660486] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.660543] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.660661] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
[    0.660797] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.660858] pci 0000:00:1c.1: System wakeup disabled by ACPI
[    0.660969] pci 0000:00:1c.2: [8086:1c14] type 01 class 0x060400
[    0.661104] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.661166] pci 0000:00:1c.2: System wakeup disabled by ACPI
[    0.661278] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
[    0.661413] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.661478] pci 0000:00:1c.3: System wakeup disabled by ACPI
[    0.661593] pci 0000:00:1c.6: [8086:1c1c] type 01 class 0x060400
[    0.661733] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
[    0.661810] pci 0000:00:1c.6: System wakeup disabled by ACPI
[    0.661931] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[    0.662216] pci 0000:00:1d.0: reg 10: [mem 0xd9408000-0xd94083ff]
[    0.663865] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.663930] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.664045] pci 0000:00:1f.0: [8086:1c4b] type 00 class 0x060100
[    0.664283] pci 0000:00:1f.2: [8086:282a] type 00 class 0x010400
[    0.664316] pci 0000:00:1f.2: reg 10: [io  0xa088-0xa08f]
[    0.664329] pci 0000:00:1f.2: reg 14: [io  0xa094-0xa097]
[    0.664343] pci 0000:00:1f.2: reg 18: [io  0xa080-0xa087]
[    0.664356] pci 0000:00:1f.2: reg 1c: [io  0xa090-0xa093]
[    0.664369] pci 0000:00:1f.2: reg 20: [io  0xa060-0xa07f]
[    0.664382] pci 0000:00:1f.2: reg 24: [mem 0xd9407000-0xd94077ff]
[    0.664467] pci 0000:00:1f.2: PME# supported from D3hot
[    0.664578] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.664603] pci 0000:00:1f.3: reg 10: [mem 0xd9405000-0xd94050ff 64bit]
[    0.664640] pci 0000:00:1f.3: reg 20: [io  0xa040-0xa05f]
[    0.665047] pci 0000:02:00.0: [8086:0091] type 00 class 0x028000
[    0.665198] pci 0000:02:00.0: reg 10: [mem 0xd8400000-0xd8401fff 64bit]
[    0.665941] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    0.666107] pci 0000:02:00.0: System wakeup disabled by ACPI
[    0.667844] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.667902] pci 0000:00:1c.0:   bridge window [io  0x9000-0x9fff]
[    0.667907] pci 0000:00:1c.0:   bridge window [mem 0xd8400000-0xd93fffff]
[    0.667916] pci 0000:00:1c.0:   bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
[    0.668067] pci 0000:03:00.0: [10ec:5209] type 00 class 0xff0000
[    0.668095] pci 0000:03:00.0: reg 10: [mem 0xd7400000-0xd7400fff]
[    0.668304] pci 0000:03:00.0: supports D1 D2
[    0.668306] pci 0000:03:00.0: PME# supported from D1 D2 D3hot
[    0.668357] pci 0000:03:00.0: System wakeup disabled by ACPI
[    0.669755] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.669841] pci 0000:00:1c.1:   bridge window [io  0x8000-0x8fff]
[    0.669846] pci 0000:00:1c.1:   bridge window [mem 0xd7400000-0xd83fffff]
[    0.669855] pci 0000:00:1c.1:   bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
[    0.670054] pci 0000:04:00.0: [1033:0194] type 00 class 0x0c0330
[    0.670092] pci 0000:04:00.0: reg 10: [mem 0xd6400000-0xd6401fff 64bit]
[    0.670294] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[    0.670349] pci 0000:04:00.0: System wakeup disabled by ACPI
[    0.670484] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.670541] pci 0000:00:1c.2:   bridge window [io  0x7000-0x7fff]
[    0.670546] pci 0000:00:1c.2:   bridge window [mem 0xd6400000-0xd73fffff]
[    0.670555] pci 0000:00:1c.2:   bridge window [mem 0xd2400000-0xd33fffff 64bit pref]
[    0.670752] pci 0000:05:00.0: [10ec:8168] type 00 class 0x020000
[    0.670822] pci 0000:05:00.0: reg 10: [io  0x6000-0x60ff]
[    0.670946] pci 0000:05:00.0: reg 18: [mem 0xd3404000-0xd3404fff 64bit pref]
[    0.671023] pci 0000:05:00.0: reg 20: [mem 0xd3400000-0xd3403fff 64bit pref]
[    0.671360] pci 0000:05:00.0: supports D1 D2
[    0.671362] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.671490] pci 0000:05:00.0: System wakeup disabled by ACPI
[    0.672798] pci 0000:00:1c.3: PCI bridge to [bus 05]
[    0.672874] pci 0000:00:1c.3:   bridge window [io  0x6000-0x6fff]
[    0.672879] pci 0000:00:1c.3:   bridge window [mem 0xd5400000-0xd63fffff]
[    0.672888] pci 0000:00:1c.3:   bridge window [mem 0xd3400000-0xd43fffff 64bit pref]
[    0.673033] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:08:00
[    0.673152] acpiphp: Slot [1] registered
[    0.673258] pci 0000:08:00.0: [8086:151b] type 01 class 0x060400
[    0.673424] pci 0000:08:00.0: supports D1 D2
[    0.673426] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.674790] pci 0000:00:1c.6: PCI bridge to [bus 08-20]
[    0.674882] pci 0000:00:1c.6:   bridge window [io  0x3000-0x5fff]
[    0.674887] pci 0000:00:1c.6:   bridge window [mem 0xb0000000-0xcfffffff]
[    0.674896] pci 0000:00:1c.6:   bridge window [mem 0xd4400000-0xd53fffff 64bit pref]
[    0.675036] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:0a:00
[    0.675052] acpiphp: Slot [1-1] registered
[    0.675124] acpiphp_glue: found ACPI PCI Hotplug slot 2 at PCI 0000:0a:03
[    0.675137] acpiphp: Slot [2] registered
[    0.675209] acpiphp_glue: found ACPI PCI Hotplug slot 3 at PCI 0000:0a:04
[    0.675221] acpiphp: Slot [3] registered
[    0.675311] pci 0000:0a:00.0: [8086:151b] type 01 class 0x060400
[    0.675480] pci 0000:0a:00.0: supports D1 D2
[    0.675482] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.675610] pci 0000:0a:03.0: [8086:151b] type 01 class 0x060400
[    0.675783] pci 0000:0a:03.0: supports D1 D2
[    0.675784] pci 0000:0a:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.675907] pci 0000:0a:04.0: [8086:151b] type 01 class 0x060400
[    0.676076] pci 0000:0a:04.0: supports D1 D2
[    0.676078] pci 0000:0a:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.676248] pci 0000:08:00.0: PCI bridge to [bus 0a-1d]
[    0.676313] pci 0000:08:00.0:   bridge window [io  0x3000-0x5fff]
[    0.676319] pci 0000:08:00.0:   bridge window [mem 0xb0000000-0xc03fffff]
[    0.676331] pci 0000:08:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[    0.676451] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[    0.676520] pci 0000:0a:00.0:   bridge window [mem 0xc0300000-0xc03fffff]
[    0.676649] pci 0000:0a:03.0: PCI bridge to [bus 0c]
[    0.676899] pci 0000:14:00.0: [8086:151b] type 01 class 0x060400
[    0.677150] pci 0000:14:00.0: supports D1 D2
[    0.677151] pci 0000:14:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.677307] pci 0000:0a:04.0: PCI bridge to [bus 14-1d]
[    0.677372] pci 0000:0a:04.0:   bridge window [io  0x3000-0x5fff]
[    0.677379] pci 0000:0a:04.0:   bridge window [mem 0xb0000000-0xc02fffff]
[    0.677390] pci 0000:0a:04.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[    0.677618] pci 0000:15:03.0: [8086:151b] type 01 class 0x060400
[    0.677877] pci 0000:15:03.0: supports D1 D2
[    0.677878] pci 0000:15:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.678035] pci 0000:15:04.0: [8086:151b] type 01 class 0x060400
[    0.678289] pci 0000:15:04.0: supports D1 D2
[    0.678291] pci 0000:15:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.678509] pci 0000:14:00.0: PCI bridge to [bus 15-1d]
[    0.678578] pci 0000:14:00.0:   bridge window [io  0x3000-0x5fff]
[    0.678587] pci 0000:14:00.0:   bridge window [mem 0xb0000000-0xc02fffff]
[    0.678604] pci 0000:14:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[    0.678794] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:16:00
[    0.678810] acpiphp: Slot [1-2] registered
[    0.678886] acpiphp_glue: sibling found, but _SUN doesn't match!
[    0.679001] pci 0000:16:00.0: [1002:6740] type 00 class 0x030000
[    0.679068] pci 0000:16:00.0: reg 10: [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.679121] pci 0000:16:00.0: reg 18: [mem 0xc0200000-0xc021ffff 64bit]
[    0.679155] pci 0000:16:00.0: reg 20: [io  0x5000-0x50ff]
[    0.679222] pci 0000:16:00.0: reg 30: [mem 0xfffe0000-0xffffffff pref]
[    0.679393] pci 0000:16:00.0: supports D1 D2
[    0.679542] pci 0000:16:00.1: [1002:aa90] type 00 class 0x040300
[    0.679608] pci 0000:16:00.1: reg 10: [mem 0xc0220000-0xc0223fff 64bit]
[    0.679944] pci 0000:16:00.1: supports D1 D2
[    0.680150] pci 0000:15:03.0: PCI bridge to [bus 16]
[    0.680220] pci 0000:15:03.0:   bridge window [io  0x5000-0x5fff]
[    0.680229] pci 0000:15:03.0:   bridge window [mem 0xc0200000-0xc02fffff]
[    0.680246] pci 0000:15:03.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.680479] pci 0000:17:00.0: [8086:151b] type 01 class 0x060400
[    0.680817] pci 0000:17:00.0: supports D1 D2
[    0.680818] pci 0000:17:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.681012] pci 0000:15:04.0: PCI bridge to [bus 17-1d]
[    0.681081] pci 0000:15:04.0:   bridge window [io  0x3000-0x4fff]
[    0.681090] pci 0000:15:04.0:   bridge window [mem 0xc0000000-0xc01fffff]
[    0.681106] pci 0000:15:04.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[    0.681396] pci 0000:18:00.0: [8086:151b] type 01 class 0x060400
[    0.681735] pci 0000:18:00.0: supports D1 D2
[    0.681736] pci 0000:18:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.681934] pci 0000:18:01.0: [8086:151b] type 01 class 0x060400
[    0.682274] pci 0000:18:01.0: supports D1 D2
[    0.682275] pci 0000:18:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.682473] pci 0000:18:02.0: [8086:151b] type 01 class 0x060400
[    0.682815] pci 0000:18:02.0: supports D1 D2
[    0.682817] pci 0000:18:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.683024] pci 0000:18:03.0: [8086:151b] type 01 class 0x060400
[    0.683362] pci 0000:18:03.0: supports D1 D2
[    0.683363] pci 0000:18:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.683578] pci 0000:18:04.0: [8086:151b] type 01 class 0x060400
[    0.683920] pci 0000:18:04.0: supports D1 D2
[    0.683922] pci 0000:18:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.684221] pci 0000:17:00.0: PCI bridge to [bus 18-1d]
[    0.684296] pci 0000:17:00.0:   bridge window [io  0x3000-0x4fff]
[    0.684308] pci 0000:17:00.0:   bridge window [mem 0xc0000000-0xc01fffff]
[    0.684330] pci 0000:17:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[    0.684560] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:19:00
[    0.684574] acpiphp: Slot [1-3] registered
[    0.684712] pci 0000:19:00.0: [10ec:8168] type 00 class 0x020000
[    0.684773] pci 0000:19:00.0: reg 10: [io  0x4000-0x40ff]
[    0.684886] pci 0000:19:00.0: reg 18: [mem 0xd4404000-0xd4404fff 64bit pref]
[    0.684953] pci 0000:19:00.0: reg 20: [mem 0xd4400000-0xd4403fff 64bit pref]
[    0.685256] pci 0000:19:00.0: supports D1 D2
[    0.685258] pci 0000:19:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.685502] pci 0000:18:00.0: PCI bridge to [bus 19]
[    0.685575] pci 0000:18:00.0:   bridge window [io  0x4000-0x4fff]
[    0.685607] pci 0000:18:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[    0.685846] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:1a:00
[    0.685862] acpiphp: Slot [1-4] registered
[    0.685999] pci 0000:1a:00.0: [11ab:6121] type 00 class 0x01018f
[    0.686061] pci 0000:1a:00.0: reg 10: [io  0x3018-0x301f]
[    0.686104] pci 0000:1a:00.0: reg 14: [io  0x3024-0x3027]
[    0.686147] pci 0000:1a:00.0: reg 18: [io  0x3010-0x3017]
[    0.686191] pci 0000:1a:00.0: reg 1c: [io  0x3020-0x3023]
[    0.686234] pci 0000:1a:00.0: reg 20: [io  0x3000-0x300f]
[    0.686278] pci 0000:1a:00.0: reg 24: [mem 0xc0100000-0xc01003ff]
[    0.686544] pci 0000:1a:00.0: supports D1
[    0.686546] pci 0000:1a:00.0: PME# supported from D0 D1 D3hot
[    0.686673] pci 0000:1a:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    0.686754] pci 0000:18:01.0: PCI bridge to [bus 1a]
[    0.686832] pci 0000:18:01.0:   bridge window [io  0x3000-0x3fff]
[    0.686844] pci 0000:18:01.0:   bridge window [mem 0xc0100000-0xc01fffff]
[    0.687101] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:1b:00
[    0.687116] acpiphp: Slot [1-5] registered
[    0.687258] pci 0000:1b:00.0: [1033:0194] type 00 class 0x0c0330
[    0.687337] pci 0000:1b:00.0: reg 10: [mem 0xc0000000-0xc0001fff 64bit]
[    0.687756] pci 0000:1b:00.0: PME# supported from D0 D3hot D3cold
[    0.687984] pci 0000:18:02.0: PCI bridge to [bus 1b]
[    0.688069] pci 0000:18:02.0:   bridge window [mem 0xc0000000-0xc00fffff]
[    0.688308] pci 0000:18:03.0: PCI bridge to [bus 1c]
[    0.688628] pci 0000:18:04.0: PCI bridge to [bus 1d]
[    0.689069] \_SB_.PCI0:_OSC invalid UUID
[    0.689071] _OSC request data:1 1f 0 
[    0.689076] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[    0.689146] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
[    0.690905] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.691505] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.692062] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.692611] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.693166] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.693760] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.694394] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.694950] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.696270] ACPI: Enabled 6 GPEs in block 00 to 3F
[    0.696397] acpi root: \_SB_.PCI0 notify handler is installed
[    0.696546] Found 1 acpi root devices
[    0.696672] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.697067] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.697156] vgaarb: device added: PCI:0000:16:00.0,decodes=io+mem,owns=none,locks=none
[    0.697229] vgaarb: loaded
[    0.697279] vgaarb: bridge control possible 0000:16:00.0
[    0.697333] vgaarb: no bridge control possible 0000:00:02.0
[    0.697467] SCSI subsystem initialized
[    0.697519] ACPI: bus type ATA registered
[    0.697655] libata version 3.00 loaded.
[    0.697669] ACPI: bus type USB registered
[    0.697746] usbcore: registered new interface driver usbfs
[    0.697813] usbcore: registered new interface driver hub
[    0.697902] usbcore: registered new device driver usb
[    0.698001] PCI: Using ACPI for IRQ routing
[    0.705438] PCI: pci_cache_line_size set to 64 bytes
[    0.705778] e820: reserve RAM buffer [mem 0x0008f400-0x0008ffff]
[    0.705784] e820: reserve RAM buffer [mem 0x9ae3f000-0x9bffffff]
[    0.705786] e820: reserve RAM buffer [mem 0x9b000000-0x9bffffff]
[    0.705788] e820: reserve RAM buffer [mem 0x25fe00000-0x25fffffff]
[    0.706142] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.706500] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.708586] Switching to clocksource hpet
[    0.715244] pnp: PnP ACPI init
[    0.715324] ACPI: bus type PNP registered
[    0.715488] pnp 00:00: [dma 4]
[    0.715543] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.715581] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
[    0.715703] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.715755] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.715847] system 00:04: [io  0x0680-0x069f] has been reserved
[    0.715904] system 00:04: [io  0x1000-0x100f] has been reserved
[    0.715961] system 00:04: [io  0xffff] has been reserved
[    0.716016] system 00:04: [io  0xffff] has been reserved
[    0.716071] system 00:04: [io  0x0400-0x0453] has been reserved
[    0.716127] system 00:04: [io  0x0458-0x047f] has been reserved
[    0.716183] system 00:04: [io  0x0500-0x057f] has been reserved
[    0.716729] system 00:04: [io  0x164e-0x164f] has been reserved
[    0.716785] system 00:04: [io  0x2000] has been reserved
[    0.716840] system 00:04: [io  0x2004] has been reserved
[    0.716899] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.716946] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.717019] system 00:06: [io  0x0454-0x0457] has been reserved
[    0.717078] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.717130] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.717190] pnp 00:08: Plug and Play ACPI device, IDs SNY9015 PNP0f13 (active)
[    0.717389] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.717447] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.717505] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.717562] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.717620] system 00:09: [mem 0xe0000000-0xefffffff] has been reserved
[    0.717685] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.717743] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.717801] system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
[    0.717859] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.717918] system 00:09: [mem 0x9fa00000-0x9fa00fff] has been reserved
[    0.717977] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.718764] system 00:0a: [mem 0x20000000-0x201fffff] could not be reserved
[    0.718828] system 00:0a: [mem 0x40000000-0x401fffff] could not be reserved
[    0.718893] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.718914] pnp: PnP ACPI: found 11 devices
[    0.718967] ACPI: bus type PNP unregistered
[    0.726949] pci 0000:16:00.0: no compatible bridge window for [mem 0xfffe0000-0xffffffff pref]
[    0.727099] pci 0000:0a:00.0: bridge window [io  0x1000-0x0fff] to [bus 0b] add_size 1000
[    0.727103] pci 0000:0a:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000
[    0.727119] pci 0000:0a:03.0: bridge window [io  0x1000-0x0fff] to [bus 0c] add_size 1000
[    0.727122] pci 0000:0a:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0c] add_size 200000
[    0.727124] pci 0000:0a:03.0: bridge window [mem 0x00100000-0x000fffff] to [bus 0c] add_size 200000
[    0.727179] pci 0000:18:00.0: bridge window [mem 0x00100000-0x000fffff] to [bus 19] add_size 400000
[    0.727211] pci 0000:18:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 1a] add_size 200000
[    0.727244] pci 0000:18:02.0: bridge window [io  0x1000-0x0fff] to [bus 1b] add_size 1000
[    0.727246] pci 0000:18:02.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 1b] add_size 200000
[    0.727278] pci 0000:18:03.0: bridge window [io  0x1000-0x0fff] to [bus 1c] add_size 1000
[    0.727280] pci 0000:18:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 1c] add_size 200000
[    0.727282] pci 0000:18:03.0: bridge window [mem 0x00100000-0x000fffff] to [bus 1c] add_size 200000
[    0.727315] pci 0000:18:04.0: bridge window [io  0x1000-0x0fff] to [bus 1d] add_size 1000
[    0.727317] pci 0000:18:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 1d] add_size 200000
[    0.727319] pci 0000:18:04.0: bridge window [mem 0x00100000-0x000fffff] to [bus 1d] add_size 200000
[    0.727437] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.727493] pci 0000:00:1c.0:   bridge window [io  0x9000-0x9fff]
[    0.727554] pci 0000:00:1c.0:   bridge window [mem 0xd8400000-0xd93fffff]
[    0.727615] pci 0000:00:1c.0:   bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
[    0.727699] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.727754] pci 0000:00:1c.1:   bridge window [io  0x8000-0x8fff]
[    0.727816] pci 0000:00:1c.1:   bridge window [mem 0xd7400000-0xd83fffff]
[    0.727876] pci 0000:00:1c.1:   bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
[    0.727952] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.728008] pci 0000:00:1c.2:   bridge window [io  0x7000-0x7fff]
[    0.728069] pci 0000:00:1c.2:   bridge window [mem 0xd6400000-0xd73fffff]
[    0.728129] pci 0000:00:1c.2:   bridge window [mem 0xd2400000-0xd33fffff 64bit pref]
[    0.728206] pci 0000:00:1c.3: PCI bridge to [bus 05]
[    0.728261] pci 0000:00:1c.3:   bridge window [io  0x6000-0x6fff]
[    0.728322] pci 0000:00:1c.3:   bridge window [mem 0xd5400000-0xd63fffff]
[    0.728383] pci 0000:00:1c.3:   bridge window [mem 0xd3400000-0xd43fffff 64bit pref]
[    0.728462] pci 0000:0a:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.728464] pci 0000:0a:03.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
[    0.728465] pci 0000:0a:03.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.728467] pci 0000:0a:00.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    0.728469] pci 0000:0a:03.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    0.728473] pci 0000:0a:00.0: BAR 15: can't assign mem pref (size 0x200000)
[    0.728539] pci 0000:0a:03.0: BAR 14: can't assign mem (size 0x200000)
[    0.728597] pci 0000:0a:03.0: BAR 15: can't assign mem pref (size 0x200000)
[    0.728656] pci 0000:0a:00.0: BAR 13: can't assign io (size 0x1000)
[    0.728719] pci 0000:0a:03.0: BAR 13: can't assign io (size 0x1000)
[    0.728777] pci 0000:0a:03.0: BAR 14: can't assign mem (size 0x200000)
[    0.728835] pci 0000:0a:03.0: BAR 15: can't assign mem pref (size 0x200000)
[    0.728893] pci 0000:0a:03.0: BAR 13: can't assign io (size 0x1000)
[    0.728950] pci 0000:0a:00.0: BAR 15: can't assign mem pref (size 0x200000)
[    0.729008] pci 0000:0a:00.0: BAR 13: can't assign io (size 0x1000)
[    0.729065] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[    0.729127] pci 0000:0a:00.0:   bridge window [mem 0xc0300000-0xc03fffff]
[    0.729199] pci 0000:0a:03.0: PCI bridge to [bus 0c]
[    0.729277] pci 0000:16:00.0: BAR 6: assigned [mem 0xc0240000-0xc025ffff pref]
[    0.729347] pci 0000:15:03.0: PCI bridge to [bus 16]
[    0.729404] pci 0000:15:03.0:   bridge window [io  0x5000-0x5fff]
[    0.729471] pci 0000:15:03.0:   bridge window [mem 0xc0200000-0xc02fffff]
[    0.729536] pci 0000:15:03.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.729623] pci 0000:18:00.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 400000
[    0.729625] pci 0000:18:01.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.729627] pci 0000:18:02.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.729629] pci 0000:18:03.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
[    0.729631] pci 0000:18:03.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.729632] pci 0000:18:04.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
[    0.729634] pci 0000:18:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.729636] pci 0000:18:02.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    0.729638] pci 0000:18:03.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    0.729640] pci 0000:18:04.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    0.729642] pci 0000:18:00.0: BAR 14: can't assign mem (size 0x400000)
[    0.729706] pci 0000:18:01.0: BAR 15: can't assign mem pref (size 0x200000)
[    0.729764] pci 0000:18:02.0: BAR 15: can't assign mem pref (size 0x200000)
[    0.729822] pci 0000:18:03.0: BAR 14: can't assign mem (size 0x200000)
[    0.729880] pci 0000:18:03.0: BAR 15: can't assign mem pref (size 0x200000)
[    0.729938] pci 0000:18:04.0: BAR 14: can't assign mem (size 0x200000)
[    0.729995] pci 0000:18:04.0: BAR 15: can't assign mem pref (size 0x200000)
[    0.730053] pci 0000:18:02.0: BAR 13: can't assign io (size 0x1000)
[    0.730110] pci 0000:18:03.0: BAR 13: can't assign io (size 0x1000)
[    0.730166] pci 0000:18:04.0: BAR 13: can't assign io (size 0x1000)
[    0.730225] pci 0000:18:04.0: BAR 14: can't assign mem (size 0x200000)
[    0.730283] pci 0000:18:04.0: BAR 15: can't assign mem pref (size 0x200000)
[    0.730341] pci 0000:18:04.0: BAR 13: can't assign io (size 0x1000)
[    0.730398] pci 0000:18:03.0: BAR 14: can't assign mem (size 0x200000)
[    0.730456] pci 0000:18:03.0: BAR 15: can't assign mem pref (size 0x200000)
[    0.730514] pci 0000:18:03.0: BAR 13: can't assign io (size 0x1000)
[    0.730571] pci 0000:18:02.0: BAR 15: can't assign mem pref (size 0x200000)
[    0.730629] pci 0000:18:02.0: BAR 13: can't assign io (size 0x1000)
[    0.730686] pci 0000:18:01.0: BAR 15: can't assign mem pref (size 0x200000)
[    0.730750] pci 0000:18:00.0: BAR 14: can't assign mem (size 0x400000)
[    0.730808] pci 0000:18:00.0: PCI bridge to [bus 19]
[    0.730867] pci 0000:18:00.0:   bridge window [io  0x4000-0x4fff]
[    0.730948] pci 0000:18:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[    0.731038] pci 0000:18:01.0: PCI bridge to [bus 1a]
[    0.731097] pci 0000:18:01.0:   bridge window [io  0x3000-0x3fff]
[    0.731168] pci 0000:18:01.0:   bridge window [mem 0xc0100000-0xc01fffff]
[    0.731255] pci 0000:18:02.0: PCI bridge to [bus 1b]
[    0.731324] pci 0000:18:02.0:   bridge window [mem 0xc0000000-0xc00fffff]
[    0.731411] pci 0000:18:03.0: PCI bridge to [bus 1c]
[    0.731510] pci 0000:18:04.0: PCI bridge to [bus 1d]
[    0.731609] pci 0000:17:00.0: PCI bridge to [bus 18-1d]
[    0.731668] pci 0000:17:00.0:   bridge window [io  0x3000-0x4fff]
[    0.731745] pci 0000:17:00.0:   bridge window [mem 0xc0000000-0xc01fffff]
[    0.731812] pci 0000:17:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[    0.731902] pci 0000:15:04.0: PCI bridge to [bus 17-1d]
[    0.731960] pci 0000:15:04.0:   bridge window [io  0x3000-0x4fff]
[    0.732027] pci 0000:15:04.0:   bridge window [mem 0xc0000000-0xc01fffff]
[    0.732092] pci 0000:15:04.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[    0.732176] pci 0000:14:00.0: PCI bridge to [bus 15-1d]
[    0.732234] pci 0000:14:00.0:   bridge window [io  0x3000-0x5fff]
[    0.732301] pci 0000:14:00.0:   bridge window [mem 0xb0000000-0xc02fffff]
[    0.732366] pci 0000:14:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[    0.732450] pci 0000:0a:04.0: PCI bridge to [bus 14-1d]
[    0.732507] pci 0000:0a:04.0:   bridge window [io  0x3000-0x5fff]
[    0.732570] pci 0000:0a:04.0:   bridge window [mem 0xb0000000-0xc02fffff]
[    0.732632] pci 0000:0a:04.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[    0.732718] pci 0000:08:00.0: PCI bridge to [bus 0a-1d]
[    0.732774] pci 0000:08:00.0:   bridge window [io  0x3000-0x5fff]
[    0.732837] pci 0000:08:00.0:   bridge window [mem 0xb0000000-0xc03fffff]
[    0.732899] pci 0000:08:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[    0.732979] pci 0000:00:1c.6: PCI bridge to [bus 08-20]
[    0.733035] pci 0000:00:1c.6:   bridge window [io  0x3000-0x5fff]
[    0.733095] pci 0000:00:1c.6:   bridge window [mem 0xb0000000-0xcfffffff]
[    0.733156] pci 0000:00:1c.6:   bridge window [mem 0xd4400000-0xd53fffff 64bit pref]
[    0.734238] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.734240] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.734242] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.734244] pci_bus 0000:00: resource 7 [mem 0x9fa00000-0xfeafffff]
[    0.734246] pci_bus 0000:02: resource 0 [io  0x9000-0x9fff]
[    0.734247] pci_bus 0000:02: resource 1 [mem 0xd8400000-0xd93fffff]
[    0.734249] pci_bus 0000:02: resource 2 [mem 0xd0400000-0xd13fffff 64bit pref]
[    0.734251] pci_bus 0000:03: resource 0 [io  0x8000-0x8fff]
[    0.734253] pci_bus 0000:03: resource 1 [mem 0xd7400000-0xd83fffff]
[    0.734254] pci_bus 0000:03: resource 2 [mem 0xd1400000-0xd23fffff 64bit pref]
[    0.734256] pci_bus 0000:04: resource 0 [io  0x7000-0x7fff]
[    0.734258] pci_bus 0000:04: resource 1 [mem 0xd6400000-0xd73fffff]
[    0.734259] pci_bus 0000:04: resource 2 [mem 0xd2400000-0xd33fffff 64bit pref]
[    0.734261] pci_bus 0000:05: resource 0 [io  0x6000-0x6fff]
[    0.734263] pci_bus 0000:05: resource 1 [mem 0xd5400000-0xd63fffff]
[    0.734264] pci_bus 0000:05: resource 2 [mem 0xd3400000-0xd43fffff 64bit pref]
[    0.734266] pci_bus 0000:08: resource 0 [io  0x3000-0x5fff]
[    0.734268] pci_bus 0000:08: resource 1 [mem 0xb0000000-0xcfffffff]
[    0.734270] pci_bus 0000:08: resource 2 [mem 0xd4400000-0xd53fffff 64bit pref]
[    0.734271] pci_bus 0000:0a: resource 0 [io  0x3000-0x5fff]
[    0.734273] pci_bus 0000:0a: resource 1 [mem 0xb0000000-0xc03fffff]
[    0.734275] pci_bus 0000:0a: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref]
[    0.734276] pci_bus 0000:0b: resource 1 [mem 0xc0300000-0xc03fffff]
[    0.734278] pci_bus 0000:14: resource 0 [io  0x3000-0x5fff]
[    0.734280] pci_bus 0000:14: resource 1 [mem 0xb0000000-0xc02fffff]
[    0.734282] pci_bus 0000:14: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref]
[    0.734283] pci_bus 0000:15: resource 0 [io  0x3000-0x5fff]
[    0.734285] pci_bus 0000:15: resource 1 [mem 0xb0000000-0xc02fffff]
[    0.734287] pci_bus 0000:15: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref]
[    0.734288] pci_bus 0000:16: resource 0 [io  0x5000-0x5fff]
[    0.734290] pci_bus 0000:16: resource 1 [mem 0xc0200000-0xc02fffff]
[    0.734292] pci_bus 0000:16: resource 2 [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.734294] pci_bus 0000:17: resource 0 [io  0x3000-0x4fff]
[    0.734295] pci_bus 0000:17: resource 1 [mem 0xc0000000-0xc01fffff]
[    0.734297] pci_bus 0000:17: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref]
[    0.734299] pci_bus 0000:18: resource 0 [io  0x3000-0x4fff]
[    0.734300] pci_bus 0000:18: resource 1 [mem 0xc0000000-0xc01fffff]
[    0.734302] pci_bus 0000:18: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref]
[    0.734304] pci_bus 0000:19: resource 0 [io  0x4000-0x4fff]
[    0.734305] pci_bus 0000:19: resource 2 [mem 0xd4400000-0xd44fffff 64bit pref]
[    0.734307] pci_bus 0000:1a: resource 0 [io  0x3000-0x3fff]
[    0.734309] pci_bus 0000:1a: resource 1 [mem 0xc0100000-0xc01fffff]
[    0.734311] pci_bus 0000:1b: resource 1 [mem 0xc0000000-0xc00fffff]
[    0.734352] NET: Registered protocol family 2
[    0.734864] TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.735334] TCP bind hash table entries: 65536 (order: 10, 4194304 bytes)
[    0.738839] TCP: Hash tables configured (established 65536 bind 65536)
[    0.738950] TCP: reno registered
[    0.739049] UDP hash table entries: 4096 (order: 7, 655360 bytes)
[    0.739588] UDP-Lite hash table entries: 4096 (order: 7, 655360 bytes)
[    0.740298] NET: Registered protocol family 1
[    0.740367] pci 0000:00:02.0: Boot video device
[    0.812315] PCI: CLS 64 bytes, default 64
[    0.812471] Unpacking initramfs...
[    0.897053] Freeing initrd memory: 5356k freed
[    0.897801] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.897863] software IO TLB [mem 0x96e3f000-0x9ae3f000] (64MB) mapped at [ffff880096e3f000-ffff88009ae3efff]
[    0.897993] Simple Boot Flag at 0x44 set to 0x1
[    0.898658] audit: initializing netlink socket (disabled)
[    0.898744] type=2000 audit(1370968978.875:1): initialized
[    0.919344] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.921962] VFS: Disk quotas dquot_6.5.2
[    0.922069] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.922708] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.923084] NILFS version 2 loaded
[    0.923341] bio: create slab <bio-1> at 1
[    0.923652] Btrfs loaded
[    0.923709] msgmni has been set to 15780
[    0.924402] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.924485] io scheduler noop registered
[    0.924537] io scheduler deadline registered
[    0.924655] io scheduler cfq registered (default)
[    0.925289] pcieport 0000:08:00.0: irq 40 for MSI/MSI-X
[    0.925493] pcieport 0000:0a:00.0: irq 41 for MSI/MSI-X
[    0.925646] pcieport 0000:0a:03.0: irq 42 for MSI/MSI-X
[    0.925797] pcieport 0000:0a:04.0: irq 43 for MSI/MSI-X
[    0.925978] pcieport 0000:14:00.0: irq 44 for MSI/MSI-X
[    0.926190] pcieport 0000:15:03.0: irq 45 for MSI/MSI-X
[    0.926404] pcieport 0000:15:04.0: irq 46 for MSI/MSI-X
[    0.926633] pcieport 0000:17:00.0: irq 47 for MSI/MSI-X
[    0.926903] pcieport 0000:18:00.0: irq 48 for MSI/MSI-X
[    0.927194] pcieport 0000:18:01.0: irq 49 for MSI/MSI-X
[    0.927468] pcieport 0000:18:02.0: irq 50 for MSI/MSI-X
[    0.927741] pcieport 0000:18:03.0: irq 51 for MSI/MSI-X
[    0.928029] pcieport 0000:18:04.0: irq 52 for MSI/MSI-X
[    0.928269] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.928413] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.928469] cpcihp_zt5550: ZT5550 CompactPCI Hot Plug Driver version: 0.2
[    0.928552] cpcihp_generic: Generic port I/O CompactPCI Hot Plug Driver version: 0.1
[    0.928621] cpcihp_generic: not configured, disabling.
[    0.928707] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.931387] acpiphp_ibm: ibm_acpiphp_init: acpi_walk_namespace failed
[    0.931876] intel_idle: MWAIT substates: 0x21120
[    0.931878] intel_idle: v0.4 model 0x2A
[    0.931879] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.932040] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    0.932255] ACPI: AC Adapter [ADP1] (on-line)
[    0.932549] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
[    0.932654] ACPI: Lid Switch [LID0]
[    0.932757] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    0.932856] ACPI: Power Button [PWRB]
[    0.933030] ACPI: Requesting acpi_cpufreq
[    0.940582] thermal LNXTHERM:00: registered as thermal_zone0
[    0.940639] ACPI: Thermal Zone [TZ01] (55 C)
[    0.940814] ioatdma: Intel(R) QuickData Technology Driver 4.00
[    0.941022] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.945823] loop: module loaded
[    0.946322] mei_me 0000:00:16.0: setting latency timer to 64
[    0.946405] mei_me 0000:00:16.0: irq 53 for MSI/MSI-X
[    0.947035] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    0.947122] ACPI: Battery Slot [BAT1] (battery present)
[    0.947290] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    0.947376] ACPI: Battery Slot [BAT2] (battery absent)
[    0.951452] Loading iSCSI transport class v2.0-870.
[    0.951663] iscsi: registered transport (tcp)
[    0.951782] ahci 0000:00:1f.2: version 3.0
[    0.951927] ahci 0000:00:1f.2: irq 54 for MSI/MSI-X
[    0.952009] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3 impl RAID mode
[    0.952082] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part apst 
[    0.952155] ahci 0000:00:1f.2: setting latency timer to 64
[    0.953151] scsi0 : ahci
[    0.953428] scsi1 : ahci
[    0.953575] scsi2 : ahci
[    0.953738] scsi3 : ahci
[    0.953892] scsi4 : ahci
[    0.954061] scsi5 : ahci
[    0.954195] ata1: SATA max UDMA/133 abar m2048@0xd9407000 port 0xd9407100 irq 54
[    0.954265] ata2: SATA max UDMA/133 abar m2048@0xd9407000 port 0xd9407180 irq 54
[    0.954341] ata3: DUMMY
[    0.954399] ata4: DUMMY
[    0.954448] ata5: DUMMY
[    0.954497] ata6: DUMMY
[    0.954753] ata1: hard resetting link
[    0.954774] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    0.954956] ata2: hard resetting link
[    0.957350] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.957596] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.957827] mousedev: PS/2 mouse device common for all mice
[    0.958351] rtc_cmos 00:05: RTC can wake from S4
[    0.958646] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    0.958735] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    0.958874] Intel P-state driver initializing.
[    0.958947] Intel pstate controlling: cpu 0
[    0.959088] Intel pstate controlling: cpu 1
[    0.959159] Intel pstate controlling: cpu 2
[    0.959228] Intel pstate controlling: cpu 3
[    0.959485] cpuidle: using governor ladder
[    0.959987] cpuidle: using governor menu
[    0.960048] ledtrig-cpu: registered to indicate activity on CPUs
[    0.960121] hidraw: raw HID events driver (C) Jiri Kosina
[    0.960443] TCP: cubic registered
[    0.960497] Initializing XFRM netlink socket
[    0.960710] NET: Registered protocol family 10
[    0.961193] NET: Registered protocol family 17
[    0.961326] Key type dns_resolver registered
[    0.961802] PM: Hibernation image not present or could not be loaded.
[    0.961821] registered taskstats version 1
[    0.963879] rtc_cmos 00:05: setting system clock to 2013-06-11 16:42:59 UTC (1370968979)
[    0.976600] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    1.259502] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.260400] ata1.00: ATA-8: SAMSUNG MZRPC256HADR-000SO, CXM05S1Q, max UDMA/133
[    1.260476] ata1.00: 250069680 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.260559] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.261137] ata1.00: configured for UDMA/133
[    1.261197] ata1: EH complete
[    1.261303] ata2.00: ATA-8: SAMSUNG MZRPC256HADR-000SO, CXM05S1Q, max UDMA/133
[    1.261392] ata2.00: 250069680 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.261678] ata2.00: configured for UDMA/133
[    1.261756] ata2: EH complete
[    1.261813] scsi 0:0:0:0: Direct-Access     ATA      SAMSUNG MZRPC256 CXM0 PQ: 0 ANSI: 5
[    1.262313] sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
[    1.262572] sd 0:0:0:0: [sda] Write Protect is off
[    1.262624] scsi 1:0:0:0: Direct-Access     ATA      SAMSUNG MZRPC256 CXM0 PQ: 0 ANSI: 5
[    1.262718] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.262775] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.262799] sd 1:0:0:0: [sdb] 250069680 512-byte logical blocks: (128 GB/119 GiB)
[    1.262962] sd 1:0:0:0: [sdb] Write Protect is off
[    1.263015] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.263070] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.263930]  sda: sda1 sda2
[    1.263931]  sdb: unknown partition table
[    1.264219] sda: p2 size 489641984 extends beyond EOD, enabling native capacity
[    1.264369] sd 1:0:0:0: [sdb] Attached SCSI disk
[    1.265247]  sda: sda1 sda2
[    1.265351] sda: p2 size 489641984 extends beyond EOD, truncated
[    1.265715] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.267000] Freeing unused kernel memory: 980k freed
[    1.267224] Write protecting the kernel read-only data: 12288k
[    1.272081] Freeing unused kernel memory: 1604k freed
[    1.274935] Freeing unused kernel memory: 1256k freed
[    1.300794] dracut: dracut-027-r3
[    1.323552] device-mapper: uevent: version 1.0.3
[    1.323746] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-devel@redhat.com
[    1.327732] systemd-udevd[168]: starting version 204
[    1.393343] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.393645] ehci-pci: EHCI PCI platform driver
[    1.393890] ehci-pci 0000:00:1a.0: setting latency timer to 64
[    1.393971] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    1.394165] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    1.394285] ehci-pci 0000:00:1a.0: debug port 2
[    1.398325] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    1.398373] ehci-pci 0000:00:1a.0: irq 23, io mem 0xd9409000
[    1.400160] scsi6 : pata_marvell
[    1.400421] scsi7 : pata_marvell
[    1.400555] ata7: PATA max UDMA/100 cmd 0x3018 ctl 0x3024 bmdma 0x3000 irq 19
[    1.400612] ata8: PATA max UDMA/133 cmd 0x3010 ctl 0x3020 bmdma 0x3008 irq 19
[    1.400736] ata7: no reset method available, skipping reset
[    1.400794] ata7: XXX assuming ATAPI
[    1.400848] ata7: XXX assuming ATAPI
[    1.417607] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    1.419680] hub 1-0:1.0: USB hub found
[    1.419821] hub 1-0:1.0: 2 ports detected
[    1.420862] xhci_hcd 0000:04:00.0: xHCI Host Controller
[    1.420976] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 2
[    1.421087] ehci-pci 0000:00:1d.0: setting latency timer to 64
[    1.421412] xhci_hcd 0000:04:00.0: irq 55 for MSI/MSI-X
[    1.421425] xhci_hcd 0000:04:00.0: irq 56 for MSI/MSI-X
[    1.421436] xhci_hcd 0000:04:00.0: irq 57 for MSI/MSI-X
[    1.421447] xhci_hcd 0000:04:00.0: irq 58 for MSI/MSI-X
[    1.421459] xhci_hcd 0000:04:00.0: irq 59 for MSI/MSI-X
[    1.422232] xHCI xhci_add_endpoint called for root hub
[    1.422236] xHCI xhci_check_bandwidth called for root hub
[    1.422624] hub 2-0:1.0: USB hub found
[    1.422817] hub 2-0:1.0: 2 ports detected
[    1.423145] xhci_hcd 0000:04:00.0: xHCI Host Controller
[    1.423184] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    1.423199] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 3
[    1.423232] ehci-pci 0000:00:1d.0: debug port 2
[    1.423706] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 4
[    1.424925] xHCI xhci_add_endpoint called for root hub
[    1.424929] xHCI xhci_check_bandwidth called for root hub
[    1.427144] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    1.427188] ehci-pci 0000:00:1d.0: irq 20, io mem 0xd9408000
[    1.427501] hub 4-0:1.0: USB hub found
[    1.427611] hub 4-0:1.0: 2 ports detected
[    1.450644] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    1.451421] hub 3-0:1.0: USB hub found
[    1.451506] hub 3-0:1.0: 2 ports detected
[    1.475852] md: bind<sda>
[    1.501118] xhci_hcd 0000:1b:00.0: xHCI Host Controller
[    1.501209] xhci_hcd 0000:1b:00.0: new USB bus registered, assigned bus number 5
[    1.501835] xhci_hcd 0000:1b:00.0: irq 60 for MSI/MSI-X
[    1.501847] xhci_hcd 0000:1b:00.0: irq 61 for MSI/MSI-X
[    1.501857] xhci_hcd 0000:1b:00.0: irq 62 for MSI/MSI-X
[    1.501868] xhci_hcd 0000:1b:00.0: irq 63 for MSI/MSI-X
[    1.501891] xhci_hcd 0000:1b:00.0: irq 64 for MSI/MSI-X
[    1.502543] xHCI xhci_add_endpoint called for root hub
[    1.502546] xHCI xhci_check_bandwidth called for root hub
[    1.502624] hub 5-0:1.0: USB hub found
[    1.502748] hub 5-0:1.0: 2 ports detected
[    1.503104] xhci_hcd 0000:1b:00.0: xHCI Host Controller
[    1.503190] xhci_hcd 0000:1b:00.0: new USB bus registered, assigned bus number 6
[    1.505263] xHCI xhci_add_endpoint called for root hub
[    1.505266] xHCI xhci_check_bandwidth called for root hub
[    1.505339] hub 6-0:1.0: USB hub found
[    1.505437] hub 6-0:1.0: 2 ports detected
[    1.517552] ata7.01: NODEV after polling detection
[    1.633322] ata7.00: NODEV after polling detection
[    1.649578] ata7: EH complete
[    1.649721] ata8: soft resetting link
[    1.681378] md: bind<sdb>
[    1.689251] md: bind<sdb>
[    1.690141] md: bind<sda>
[    1.692128] md: raid0 personality registered for level 0
[    1.692544] md/raid0:md126: md_size is 500129792 sectors.
[    1.692598] md: RAID0 configuration for md126 - 1 zone
[    1.692649] md: zone0=[sda/sdb]
[    1.692797]       zone-offset=         0KB, device-offset=         0KB, size= 250065152KB

[    1.693005] md126: detected capacity change from 0 to 256066453504
[    1.694342]  md126: p1 p2
[    1.718965] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    1.803022] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x122c00, board id: 1690, fw id: 934878
[    1.834314] hub 1-1:1.0: USB hub found
[    1.834518] hub 1-1:1.0: 6 ports detected
[    1.837731] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input3
[    1.901276] tsc: Refined TSC clocksource calibration: 2793.653 MHz
[    1.901347] Switching to clocksource tsc
[    1.938261] usb 3-1: new high-speed USB device number 2 using ehci-pci
[    2.032155] dracut: luksOpen /dev/md126p2 luks-54ed2bf3-fb3d-4442-b8be-2f0cfda6a521  
[    2.053133] hub 3-1:1.0: USB hub found
[    2.053276] hub 3-1:1.0: 8 ports detected
[    2.207680] usb 5-1: new high-speed USB device number 2 using xhci_hcd
[    2.222044] hub 5-1:1.0: USB hub found
[    2.222451] hub 5-1:1.0: 2 ports detected
[    2.286873] usb 1-1.1: new full-speed USB device number 3 using ehci-pci
[    2.449289] usb 1-1.2: new full-speed USB device number 4 using ehci-pci
[    2.615268] usb 1-1.3: new high-speed USB device number 5 using ehci-pci
[    2.796523] usb 1-1.4: new high-speed USB device number 6 using ehci-pci
[    2.885702] usb 1-1.4: config 1 has an invalid interface number: 8 but max is 3
[    2.885813] usb 1-1.4: config 1 has no interface number 1
[    6.838693] ata8.00: qc timeout (cmd 0xa1)
[    6.838770] ata8.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[    9.479998] sha256_ssse3: Using AVX optimized SHA-256 implementation
[    9.481371] bio: create slab <bio-2> at 2
[    9.642592] dracut: Scanning devices dm-0  for LVM logical volumes vaio/gentoo64a-root
[    9.652952] dracut: inactive '/dev/vaio/gentoo64a-root' [16.00 GiB] inherit
[    9.653090] dracut: inactive '/dev/vaio/portage' [12.00 GiB] inherit
[    9.653215] dracut: inactive '/dev/vaio/home' [180.00 GiB] inherit
[   11.894680] ata8: link is slow to respond, please be patient (ready=0)
[   16.898884] ata8: device not ready (errno=-16), forcing hardreset
[   16.898989] ata8: soft resetting link
[   22.105337] ata8: link is slow to respond, please be patient (ready=0)
[   26.956342] ata8: SRST failed (errno=-16)
[   26.956437] ata8: soft resetting link
[   32.162784] ata8: link is slow to respond, please be patient (ready=0)
[   33.762251] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
[   33.777645] dracut: Checking ext4: /dev/vaio/gentoo64a-root
[   33.777758] dracut: issuing e2fsck -a  /dev/vaio/gentoo64a-root
[   33.828619] dracut: /dev/vaio/gentoo64a-root: clean, 589317/1048576 files, 3694407/4194304 blocks
[   33.830630] dracut: Mounting /dev/vaio/gentoo64a-root with -o noatime,ro
[   33.835818] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
[   33.843691] dracut: Mounted root filesystem /dev/mapper/vaio-gentoo64a--root
[   37.013803] ata8: SRST failed (errno=-16)
[   37.013902] ata8: soft resetting link
[   37.200457] ata8.00: ATAPI: Optiarc BD RW BD-5850H, 1.70, max UDMA/100
[   37.207471] ata8.00: configured for UDMA/100
[   37.208108] ata8: EH complete
[   37.209925] scsi 7:0:0:0: CD-ROM            Optiarc  BD RW BD-5850H   1.70 PQ: 0 ANSI: 5
[   37.212724] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda caddy
[   37.212797] cdrom: Uniform CD-ROM driver Revision: 3.20
[   37.213474] sr 7:0:0:0: Attached scsi CD-ROM sr0
[   37.226266] dracut: Switching root
[   37.548157] systemd-udevd[630]: starting version 204
[   37.628762] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130328/utaddress-251)
[   37.628771] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   37.628776] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130328/utaddress-251)
[   37.628781] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   37.628783] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130328/utaddress-251)
[   37.628788] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   37.628790] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130328/utaddress-251)
[   37.628794] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   37.628796] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   37.628956] Linux agpgart interface v0.103
[   37.633829] rtsx_pci 0000:03:00.0: irq 65 for MSI/MSI-X
[   37.636314] rtsx_pci 0000:03:00.0: rtsx_pci_acquire_irq: pcr->msi_en = 1, pci->irq = 65
[   37.640120] [drm] Initialized drm 1.1.0 20060810
[   37.646555] snd_hda_intel 0000:00:1b.0: irq 66 for MSI/MSI-X
[   37.650772] cfg80211: Calling CRDA to update world regulatory domain
[   37.658891] sony_laptop: Sony Notebook Control Driver v0.6
[   37.659093] input: Sony Vaio Keys as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/SNY5001:00/input/input4
[   37.659944] input: Sony Vaio Jogdial as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/SNY5001:00/input/input5
[   37.660168] Intel(R) Wireless WiFi driver for Linux, in-tree:
[   37.660170] Copyright(c) 2003-2013 Intel Corporation
[   37.660600] iwlwifi 0000:02:00.0: irq 67 for MSI/MSI-X
[   37.666975] hda_codec: ALC275: SKU not ready 0x411111f0
[   37.668521] iwlwifi 0000:02:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
[   37.671058] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input6
[   37.682189] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUG disabled
[   37.682193] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
[   37.682195] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
[   37.682198] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE disabled
[   37.682200] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_P2P disabled
[   37.682203] iwlwifi 0000:02:00.0: Detected Intel(R) Centrino(R) Advanced-N 6230 AGN, REV=0xB0
[   37.682338] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
[   37.686626] sony_laptop: brightness ignored, must be controlled by ACPI video driver
[   37.696610] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[   37.700781] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[   37.700791] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[   37.701160] r8169 0000:05:00.0: irq 68 for MSI/MSI-X
[   37.701630] r8169 0000:05:00.0 eth0: RTL8168evl/8111evl at 0xffffc9001167e000, 54:42:49:9a:df:1e, XID 0c900800 IRQ 68
[   37.701632] r8169 0000:05:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[   37.701752] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[   37.702066] r8169 0000:19:00.0: irq 69 for MSI/MSI-X
[   37.702315] r8169 0000:19:00.0 eth1: RTL8168evl/8111evl at 0xffffc90011d7a000, 54:42:49:9a:de:86, XID 0c900800 IRQ 69
[   37.702316] r8169 0000:19:00.0 eth1: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[   37.710669] hda-intel 0000:16:00.1: Handle VGA-switcheroo audio client
[   37.710836] snd_hda_intel 0000:16:00.1: irq 70 for MSI/MSI-X
[   37.713501] [drm] Memory usable by graphics device = 2048M
[   37.713582] i915 0000:00:02.0: setting latency timer to 64
[   37.713866] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[   37.716628] 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/input9
[   37.721815] usbcore: registered new interface driver usbserial
[   37.721834] usbcore: registered new interface driver usbserial_generic
[   37.722482] usbserial: USB Serial support registered for generic
[   37.731321] usbcore: registered new interface driver qcserial
[   37.731354] usbserial: USB Serial support registered for Qualcomm USB modem
[   37.732405] qcserial 1-1.4:1.0: Qualcomm USB modem converter detected
[   37.735224] usb 1-1.4: Qualcomm USB modem converter now attached to ttyUSB0
[   37.735461] Bluetooth: Core ver 2.16
[   37.735499] NET: Registered protocol family 31
[   37.735501] Bluetooth: HCI device and connection manager initialized
[   37.735539] Bluetooth: HCI socket layer initialized
[   37.735545] Bluetooth: L2CAP socket layer initialized
[   37.735566] Bluetooth: SCO socket layer initialized
[   37.736529] qcserial 1-1.4:1.2: Qualcomm USB modem converter detected
[   37.737650] usb 1-1.4: Qualcomm USB modem converter now attached to ttyUSB1
[   37.739526] qcserial 1-1.4:1.3: Qualcomm USB modem converter detected
[   37.739744] usb 1-1.4: Qualcomm USB modem converter now attached to ttyUSB2
[   37.741610] i915 0000:00:02.0: irq 71 for MSI/MSI-X
[   37.741624] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[   37.741626] [drm] Driver supports precise vblank timestamp query.
[   37.742179] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
[   37.742182] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:16:00.0
[   37.745767] usbcore: registered new interface driver btusb
[   37.759514] media: Linux media interface: v0.10
[   37.762861] Linux video capture interface: v2.00
[   37.767951] uvcvideo: Found UVC 1.00 device USB2.0 Camera (05c8:0318)
[   37.771370] input: USB2.0 Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/input/input10
[   37.771711] usbcore: registered new interface driver uvcvideo
[   37.771713] USB Video Class driver (1.1.1)
[   37.790634] [drm] Wrong MCH_SSKPD value: 0x16040307
[   37.790636] [drm] This can cause pipe underruns and display issues.
[   37.790637] [drm] Please upgrade your BIOS to fix this.
[   37.807617] fbcon: inteldrmfb (fb0) is primary device
[   37.818560] input: PC Speaker as /devices/platform/pcspkr/input/input11
[   37.822024] Error: Driver 'pcspkr' is already registered, aborting...
[   37.832171] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x14
[   37.833162] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x14
[   37.833616] microcode: CPU0 updated to revision 0x28, date = 2012-04-24
[   37.833625] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x14
[   37.833664] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x14
[   37.833899] microcode: CPU1 updated to revision 0x28, date = 2012-04-24
[   37.834061] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x14
[   37.834118] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x14
[   37.834388] microcode: CPU2 updated to revision 0x28, date = 2012-04-24
[   37.834400] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x14
[   37.834454] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x14
[   37.834725] microcode: CPU3 updated to revision 0x28, date = 2012-04-24
[   37.834747] perf_event_intel: PEBS enabled due to microcode update
[   37.834838] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[   37.880340] iTCO_vendor_support: vendor-support=0
[   37.882347] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[   37.882387] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[   37.923249] cfg80211: World regulatory domain updated:
[   37.923250] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   37.923252] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   37.923254] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   37.923255] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   37.923257] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   37.923258] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   37.934953] systemd-udevd[660]: renamed network interface eth0 to enp5s0
[   37.942944] systemd-udevd[650]: renamed network interface wlan0 to wlp2s0
[   37.950961] systemd-udevd[659]: renamed network interface eth1 to enp25s0
[   39.608683] Console: switching to colour frame buffer device 240x67
[   39.612191] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[   39.612193] i915 0000:00:02.0: registered panic notifier
[   39.612681] [Firmware Bug]: ACPI(GFXA) defines _DOD but not _DOS
[   39.614260] acpi LNXVIDEO:02: registered as cooling_device5
[   39.614493] ACPI: Video Device [GFXA] (multi-head: yes  rom: no  post: no)
[   39.614720] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:1f/device:20/device:23/device:24/device:25/LNXVIDEO:00/input/input12
[   39.615534] [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.
[   39.615555] [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.
[   39.615579] [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.
[   39.615597] [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.
[   39.615616] [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.
[   39.615642] [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.
[   39.615662] [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.
[   39.617533] acpi device:3e: registered as cooling_device6
[   39.617753] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   39.617864] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:09/input/input13
[   39.618004] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[   39.618157] ACPI Warning: 0x000000000000a040-0x000000000000a05f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130328/utaddress-251)
[   39.618164] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   39.774697] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp on
[   40.700279] EXT4-fs (dm-1): re-mounted. Opts: (null)
[   40.777600] EXT4-fs (md126p1): mounted filesystem with ordered data mode. Opts: (null)
[   40.782531] EXT4-fs (dm-2): mounted filesystem with ordered data mode. Opts: (null)
[   40.788151] EXT4-fs (dm-3): mounted filesystem with ordered data mode. Opts: (null)
[   41.237801] microcode: Microcode Update Driver: v2.00 removed.
[   41.694248] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
[   41.701222] iwlwifi 0000:02:00.0: Radio type=0x1-0x2-0x0
[   42.084405] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
[   42.091280] iwlwifi 0000:02:00.0: Radio type=0x1-0x2-0x0
[   42.301781] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[   43.658254] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   43.658257] Bluetooth: BNEP filters: protocol multicast
[   43.658266] Bluetooth: BNEP socket layer initialized
[   43.831333] Bluetooth: RFCOMM TTY layer initialized
[   43.831352] Bluetooth: RFCOMM socket layer initialized
[   43.831354] Bluetooth: RFCOMM ver 1.11
[   44.377842] zram: module is from the staging directory, the quality is unknown, you have been warned.
[   44.379602] zram: Created 4 device(s) ...
[   44.392072] Adding 1572860k swap on /dev/zram0.  Priority:10 extents:1 across:1572860k SSFS
[   44.398198] Adding 1572860k swap on /dev/zram1.  Priority:10 extents:1 across:1572860k SSFS
[   44.404333] Adding 1572860k swap on /dev/zram2.  Priority:10 extents:1 across:1572860k SSFS
[   44.410465] Adding 1572860k swap on /dev/zram3.  Priority:10 extents:1 across:1572860k SSFS
[   45.594362] wlp2s0: authenticate with 08:60:6e:cc:a2:94
[   45.601155] wlp2s0: send auth to 08:60:6e:cc:a2:94 (try 1/3)
[   45.624596] wlp2s0: authenticated
[   45.625576] wlp2s0: associate with 08:60:6e:cc:a2:94 (try 1/3)
[   45.626471] wlp2s0: RX AssocResp from 08:60:6e:cc:a2:94 (capab=0x11 status=0 aid=1)
[   45.629899] wlp2s0: associated
[   45.629988] IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready
[   48.582501] fuse init (API version 7.22)
[   48.842322] ata1.00: configured for UDMA/133
[   48.842342] ata1: EH complete
[   48.851794] ata2.00: configured for UDMA/133
[   48.851800] ata2: EH complete
[   48.932755] EXT4-fs (dm-1): re-mounted. Opts: commit=0
[   48.937799] EXT4-fs (md126p1): re-mounted. Opts: commit=0
[   48.940814] EXT4-fs (dm-2): re-mounted. Opts: commit=0
[   48.952575] EXT4-fs (dm-3): re-mounted. Opts: commit=0
[   73.485059] acpiphp_glue: __handle_hotplug_event_func: Device eject notify on \_SB_.PCI0.RP07.LPMB
[   73.490650] xhci_hcd 0000:1b:00.0: remove, state 4
[   73.490860] usb usb6: USB disconnect, device number 1
[   73.494335] xHCI xhci_drop_endpoint called for root hub
[   73.494341] xHCI xhci_check_bandwidth called for root hub
[   73.504733] xhci_hcd 0000:1b:00.0: USB bus 6 deregistered
[   73.504772] xhci_hcd 0000:1b:00.0: remove, state 4
[   73.504819] usb usb5: USB disconnect, device number 1
[   73.504823] usb 5-1: USB disconnect, device number 2
[   73.507049] xHCI xhci_drop_endpoint called for root hub
[   73.507060] xHCI xhci_check_bandwidth called for root hub
[   73.508560] xhci_hcd 0000:1b:00.0: USB bus 5 deregistered
[   73.519456] ata8.00: disabled
[   73.525555] cdrom: issuing MRW background format suspend
[   73.527318] INFO: trying to register non-static key.
[   73.527322] the code is fine but needs lockdep annotation.
[   73.527324] turning off the locking correctness validator.
[   73.527328] CPU: 0 PID: 40 Comm: kworker/0:1 Tainted: G         C   3.10.0-rc4 #7
[   73.527330] Hardware name: Sony Corporation VPCZ23A4R/VAIO, BIOS R1013H5 05/21/2012
[   73.527335] Workqueue: kacpi_hotplug acpi_os_execute_deferred
[   73.527338]  ffff880253db0000 ffff880253db9688 ffffffff8165aab8 ffff880253db9778
[   73.527343]  ffffffff810a018e ffff880200000014 ffffffff81079f6a ffff880200000000
[   73.527348]  ffff880200000000 ffff880200000000 00000000000005de ffff880253db9728
[   73.527353] Call Trace:
[   73.527359]  [<ffffffff8165aab8>] dump_stack+0x19/0x1b
[   73.527363]  [<ffffffff810a018e>] __lock_acquire+0x181e/0x1ee0
[   73.527368]  [<ffffffff81079f6a>] ? update_curr+0x1fa/0x200
[   73.527371]  [<ffffffff810a1751>] ? mark_held_locks+0x61/0x150
[   73.527375]  [<ffffffff810a1aae>] ? debug_check_no_locks_freed+0x8e/0x160
[   73.527380]  [<ffffffff8105b940>] ? queue_delayed_work_on+0xa0/0xa0
[   73.527383]  [<ffffffff810a0e77>] lock_acquire+0x87/0x150
[   73.527387]  [<ffffffff8105b940>] ? queue_delayed_work_on+0xa0/0xa0
[   73.527390]  [<ffffffff8109c430>] ? lockdep_init_map+0xb0/0x530
[   73.527394]  [<ffffffff8105b978>] flush_work+0x38/0x270
[   73.527398]  [<ffffffff8105b940>] ? queue_delayed_work_on+0xa0/0xa0
[   73.527401]  [<ffffffff810a1751>] ? mark_held_locks+0x61/0x150
[   73.527405]  [<ffffffff8105d645>] ? __cancel_work_timer+0xa5/0x110
[   73.527408]  [<ffffffff810a1945>] ? trace_hardirqs_on_caller+0x105/0x1d0
[   73.527411]  [<ffffffff8105d61a>] __cancel_work_timer+0x7a/0x110
[   73.527415]  [<ffffffff8105d6cb>] cancel_work_sync+0xb/0x10
[   73.527421]  [<ffffffffa05333ae>] rtl_remove_one+0x5e/0x140 [r8169]
[   73.527426]  [<ffffffff81385631>] pci_device_remove+0x41/0xc0
[   73.527432]  [<ffffffff8143bd47>] __device_release_driver+0x77/0xe0
[   73.527436]  [<ffffffff8143bdd9>] device_release_driver+0x29/0x40
[   73.527440]  [<ffffffff8143b7e1>] bus_remove_device+0xf1/0x140
[   73.527443]  [<ffffffff81438ecd>] device_del+0x11d/0x1b0
[   73.527447]  [<ffffffff8138062c>] pci_stop_bus_device+0x9c/0xb0
[   73.527451]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[   73.527454]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[   73.527458]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[   73.527462]  [<ffffffff813a0fe5>] ? acpiphp_disable_slot+0x35/0x140
[   73.527466]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[   73.527469]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[   73.527472]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[   73.527476]  [<ffffffff81380791>] pci_stop_and_remove_bus_device+0x11/0x20
[   73.527479]  [<ffffffff813a1036>] acpiphp_disable_slot+0x86/0x140
[   73.527483]  [<ffffffff813a13da>] __handle_hotplug_event_func+0xba/0x1a0
[   73.527487]  [<ffffffff813c729b>] hotplug_dock_devices+0x57/0xda
[   73.527491]  [<ffffffff813c79a1>] handle_eject_request+0xaf/0xdf
[   73.527494]  [<ffffffff813c7b6f>] acpi_dock_deferred_cb+0x163/0x1c8
[   73.527498]  [<ffffffff813bfba9>] acpi_os_execute_deferred+0x20/0x2d
[   73.527502]  [<ffffffff8105c212>] process_one_work+0x1c2/0x560
[   73.527505]  [<ffffffff8105c1a7>] ? process_one_work+0x157/0x560
[   73.527509]  [<ffffffff8105d126>] worker_thread+0x116/0x370
[   73.527512]  [<ffffffff8105d010>] ? manage_workers.isra.20+0x2d0/0x2d0
[   73.527516]  [<ffffffff81063986>] kthread+0xd6/0xe0
[   73.527520]  [<ffffffff81660ccb>] ? _raw_spin_unlock_irq+0x2b/0x60
[   73.527525]  [<ffffffff810638b0>] ? __init_kthread_worker+0x70/0x70
[   73.527529]  [<ffffffff8166806c>] ret_from_fork+0x7c/0xb0
[   73.527533]  [<ffffffff810638b0>] ? __init_kthread_worker+0x70/0x70
[  241.215872] INFO: task kworker/0:1:40 blocked for more than 120 seconds.
[  241.215876] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[  241.215878] kworker/0:1     D ffff8802543df0e8     0    40      2 0x00000000
[  241.215887] Workqueue: kacpi_hotplug acpi_os_execute_deferred
[  241.215889]  ffff880253db9918 0000000000000046 0000000000000000 ffff880253db9940
[  241.215894]  ffffffff810642b5 ffff880253db9fd8 ffff880253db9fd8 0000000000004000
[  241.215898]  ffffffff81c11440 ffff880253db0000 ffff880200000000 0000000081359e89
[  241.215903] Call Trace:
[  241.215910]  [<ffffffff810642b5>] ? prepare_to_wait+0x25/0x90
[  241.215914]  [<ffffffff810a1a1d>] ? trace_hardirqs_on+0xd/0x10
[  241.215918]  [<ffffffff81660c5d>] ? _raw_spin_unlock_irqrestore+0x3d/0x80
[  241.215921]  [<ffffffff810642e9>] ? prepare_to_wait+0x59/0x90
[  241.215925]  [<ffffffff8165f284>] schedule+0x24/0x70
[  241.215942]  [<ffffffffa015ca75>] snd_card_free+0x65/0xb0 [snd]
[  241.215946]  [<ffffffff81064470>] ? __init_waitqueue_head+0x60/0x60
[  241.215950]  [<ffffffffa033896b>] azx_remove+0x4b/0x70 [snd_hda_intel]
[  241.215954]  [<ffffffff81385631>] pci_device_remove+0x41/0xc0
[  241.215959]  [<ffffffff8143bd47>] __device_release_driver+0x77/0xe0
[  241.215962]  [<ffffffff8143bdd9>] device_release_driver+0x29/0x40
[  241.215965]  [<ffffffff8143b7e1>] bus_remove_device+0xf1/0x140
[  241.215968]  [<ffffffff81438ecd>] device_del+0x11d/0x1b0
[  241.215972]  [<ffffffff8138062c>] pci_stop_bus_device+0x9c/0xb0
[  241.215975]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[  241.215978]  [<ffffffff813a0fe5>] ? acpiphp_disable_slot+0x35/0x140
[  241.215981]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[  241.215983]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[  241.215986]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[  241.215989]  [<ffffffff81380791>] pci_stop_and_remove_bus_device+0x11/0x20
[  241.215991]  [<ffffffff813a1036>] acpiphp_disable_slot+0x86/0x140
[  241.215994]  [<ffffffff813a13da>] __handle_hotplug_event_func+0xba/0x1a0
[  241.215997]  [<ffffffff813c729b>] hotplug_dock_devices+0x57/0xda
[  241.216000]  [<ffffffff813c79a1>] handle_eject_request+0xaf/0xdf
[  241.216002]  [<ffffffff813c7b6f>] acpi_dock_deferred_cb+0x163/0x1c8
[  241.216005]  [<ffffffff813bfba9>] acpi_os_execute_deferred+0x20/0x2d
[  241.216009]  [<ffffffff8105c212>] process_one_work+0x1c2/0x560
[  241.216012]  [<ffffffff8105c1a7>] ? process_one_work+0x157/0x560
[  241.216014]  [<ffffffff8105d126>] worker_thread+0x116/0x370
[  241.216017]  [<ffffffff8105d010>] ? manage_workers.isra.20+0x2d0/0x2d0
[  241.216020]  [<ffffffff81063986>] kthread+0xd6/0xe0
[  241.216022]  [<ffffffff81660ccb>] ? _raw_spin_unlock_irq+0x2b/0x60
[  241.216025]  [<ffffffff810638b0>] ? __init_kthread_worker+0x70/0x70
[  241.216029]  [<ffffffff8166806c>] ret_from_fork+0x7c/0xb0
[  241.216032]  [<ffffffff810638b0>] ? __init_kthread_worker+0x70/0x70
[  241.216033] INFO: lockdep is turned off.
[  361.364794] INFO: task kworker/0:1:40 blocked for more than 120 seconds.
[  361.364799] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[  361.364801] kworker/0:1     D ffff8802543df0e8     0    40      2 0x00000000
[  361.364824] Workqueue: kacpi_hotplug acpi_os_execute_deferred
[  361.364828]  ffff880253db9918 0000000000000046 0000000000000000 ffff880253db9940
[  361.364837]  ffffffff810642b5 ffff880253db9fd8 ffff880253db9fd8 0000000000004000
[  361.364845]  ffffffff81c11440 ffff880253db0000 ffff880200000000 0000000081359e89
[  361.364854] Call Trace:
[  361.364866]  [<ffffffff810642b5>] ? prepare_to_wait+0x25/0x90
[  361.364873]  [<ffffffff810a1a1d>] ? trace_hardirqs_on+0xd/0x10
[  361.364880]  [<ffffffff81660c5d>] ? _raw_spin_unlock_irqrestore+0x3d/0x80
[  361.364886]  [<ffffffff810642e9>] ? prepare_to_wait+0x59/0x90
[  361.364893]  [<ffffffff8165f284>] schedule+0x24/0x70
[  361.364918]  [<ffffffffa015ca75>] snd_card_free+0x65/0xb0 [snd]
[  361.364924]  [<ffffffff81064470>] ? __init_waitqueue_head+0x60/0x60
[  361.364932]  [<ffffffffa033896b>] azx_remove+0x4b/0x70 [snd_hda_intel]
[  361.364940]  [<ffffffff81385631>] pci_device_remove+0x41/0xc0
[  361.364948]  [<ffffffff8143bd47>] __device_release_driver+0x77/0xe0
[  361.364954]  [<ffffffff8143bdd9>] device_release_driver+0x29/0x40
[  361.364960]  [<ffffffff8143b7e1>] bus_remove_device+0xf1/0x140
[  361.364965]  [<ffffffff81438ecd>] device_del+0x11d/0x1b0
[  361.364972]  [<ffffffff8138062c>] pci_stop_bus_device+0x9c/0xb0
[  361.364977]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[  361.364983]  [<ffffffff813a0fe5>] ? acpiphp_disable_slot+0x35/0x140
[  361.364989]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[  361.364994]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[  361.364999]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[  361.365005]  [<ffffffff81380791>] pci_stop_and_remove_bus_device+0x11/0x20
[  361.365010]  [<ffffffff813a1036>] acpiphp_disable_slot+0x86/0x140
[  361.365016]  [<ffffffff813a13da>] __handle_hotplug_event_func+0xba/0x1a0
[  361.365022]  [<ffffffff813c729b>] hotplug_dock_devices+0x57/0xda
[  361.365027]  [<ffffffff813c79a1>] handle_eject_request+0xaf/0xdf
[  361.365032]  [<ffffffff813c7b6f>] acpi_dock_deferred_cb+0x163/0x1c8
[  361.365037]  [<ffffffff813bfba9>] acpi_os_execute_deferred+0x20/0x2d
[  361.365044]  [<ffffffff8105c212>] process_one_work+0x1c2/0x560
[  361.365050]  [<ffffffff8105c1a7>] ? process_one_work+0x157/0x560
[  361.365055]  [<ffffffff8105d126>] worker_thread+0x116/0x370
[  361.365060]  [<ffffffff8105d010>] ? manage_workers.isra.20+0x2d0/0x2d0
[  361.365066]  [<ffffffff81063986>] kthread+0xd6/0xe0
[  361.365071]  [<ffffffff81660ccb>] ? _raw_spin_unlock_irq+0x2b/0x60
[  361.365078]  [<ffffffff810638b0>] ? __init_kthread_worker+0x70/0x70
[  361.365085]  [<ffffffff8166806c>] ret_from_fork+0x7c/0xb0
[  361.365091]  [<ffffffff810638b0>] ? __init_kthread_worker+0x70/0x70
[  361.365094] INFO: lockdep is turned off.

[-- Attachment #3: dmesg-initially-undocked.txt --]
[-- Type: text/plain, Size: 99965 bytes --]

[    0.897483] ata2: hard resetting link
[    0.897509] ata1: hard resetting link
[    0.900211] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.900459] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.900706] mousedev: PS/2 mouse device common for all mice
[    0.901228] rtc_cmos 00:05: RTC can wake from S4
[    0.901529] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    0.901644] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    0.901791] Intel P-state driver initializing.
[    0.901871] Intel pstate controlling: cpu 0
[    0.902003] Intel pstate controlling: cpu 1
[    0.902081] Intel pstate controlling: cpu 2
[    0.902156] Intel pstate controlling: cpu 3
[    0.902444] cpuidle: using governor ladder
[    0.902984] cpuidle: using governor menu
[    0.903048] ledtrig-cpu: registered to indicate activity on CPUs
[    0.903124] hidraw: raw HID events driver (C) Jiri Kosina
[    0.903419] TCP: cubic registered
[    0.903478] Initializing XFRM netlink socket
[    0.903714] NET: Registered protocol family 10
[    0.904199] NET: Registered protocol family 17
[    0.904337] Key type dns_resolver registered
[    0.904821] PM: Hibernation image not present or could not be loaded.
[    0.904841] registered taskstats version 1
[    0.905989] rtc_cmos 00:05: setting system clock to 2013-06-11 16:36:40 UTC (1370968600)
[    0.920003] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    1.202092] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.202227] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.203040] ata1.00: ATA-8: SAMSUNG MZRPC256HADR-000SO, CXM05S1Q, max UDMA/133
[    1.203152] ata1.00: 250069680 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.203259] ata2.00: ATA-8: SAMSUNG MZRPC256HADR-000SO, CXM05S1Q, max UDMA/133
[    1.203364] ata2.00: 250069680 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.203836] ata1.00: configured for UDMA/133
[    1.203958] ata1: EH complete
[    1.204106] ata2.00: configured for UDMA/133
[    1.204185] ata2: EH complete
[    1.204960] scsi 0:0:0:0: Direct-Access     ATA      SAMSUNG MZRPC256 CXM0 PQ: 0 ANSI: 5
[    1.206019] sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
[    1.206401] sd 0:0:0:0: [sda] Write Protect is off
[    1.206487] scsi 1:0:0:0: Direct-Access     ATA      SAMSUNG MZRPC256 CXM0 PQ: 0 ANSI: 5
[    1.206561] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.206617] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.206669] sd 1:0:0:0: [sdb] 250069680 512-byte logical blocks: (128 GB/119 GiB)
[    1.206865] sd 1:0:0:0: [sdb] Write Protect is off
[    1.206924] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.206993] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.207795]  sda: sda1 sda2
[    1.207797]  sdb: unknown partition table
[    1.208124] sda: p2 size 489641984 extends beyond EOD, enabling native capacity
[    1.208362] sd 1:0:0:0: [sdb] Attached SCSI disk
[    1.209360]  sda: sda1 sda2
[    1.209523] sda: p2 size 489641984 extends beyond EOD, truncated
[    1.210085] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.210928] Freeing unused kernel memory: 980k freed
[    1.211110] Write protecting the kernel read-only data: 12288k
[    1.213963] Freeing unused kernel memory: 1604k freed
[    1.216221] Freeing unused kernel memory: 1256k freed
[    1.241426] dracut: dracut-027-r3
[    1.263955] device-mapper: uevent: version 1.0.3
[    1.264187] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-devel@redhat.com
[    1.268190] systemd-udevd[168]: starting version 204
[    1.330770] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.330957] ehci-pci: EHCI PCI platform driver
[    1.331164] ehci-pci 0000:00:1a.0: setting latency timer to 64
[    1.331211] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    1.331370] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    1.331476] ehci-pci 0000:00:1a.0: debug port 2
[    1.335486] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    1.335555] ehci-pci 0000:00:1a.0: irq 23, io mem 0xd9409000
[    1.341130] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    1.342293] hub 1-0:1.0: USB hub found
[    1.342384] hub 1-0:1.0: 2 ports detected
[    1.343026] xhci_hcd 0000:04:00.0: xHCI Host Controller
[    1.343176] ehci-pci 0000:00:1d.0: setting latency timer to 64
[    1.343644] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 2
[    1.343964] xhci_hcd 0000:04:00.0: irq 42 for MSI/MSI-X
[    1.343971] xhci_hcd 0000:04:00.0: irq 43 for MSI/MSI-X
[    1.343978] xhci_hcd 0000:04:00.0: irq 44 for MSI/MSI-X
[    1.343985] xhci_hcd 0000:04:00.0: irq 45 for MSI/MSI-X
[    1.343991] xhci_hcd 0000:04:00.0: irq 46 for MSI/MSI-X
[    1.344407] xHCI xhci_add_endpoint called for root hub
[    1.344409] xHCI xhci_check_bandwidth called for root hub
[    1.344450] hub 2-0:1.0: USB hub found
[    1.344542] hub 2-0:1.0: 2 ports detected
[    1.344782] xhci_hcd 0000:04:00.0: xHCI Host Controller
[    1.344799] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    1.344811] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 3
[    1.344831] ehci-pci 0000:00:1d.0: debug port 2
[    1.345415] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 4
[    1.347506] xHCI xhci_add_endpoint called for root hub
[    1.347508] xHCI xhci_check_bandwidth called for root hub
[    1.347572] hub 4-0:1.0: USB hub found
[    1.347672] hub 4-0:1.0: 2 ports detected
[    1.348746] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    1.348773] ehci-pci 0000:00:1d.0: irq 20, io mem 0xd9408000
[    1.354151] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    1.355219] hub 3-0:1.0: USB hub found
[    1.355299] hub 3-0:1.0: 2 ports detected
[    1.382366] md: bind<sda>
[    1.591246] md: bind<sdb>
[    1.600759] md: bind<sdb>
[    1.601135] md: bind<sda>
[    1.605778] md: raid0 personality registered for level 0
[    1.606208] md/raid0:md126: md_size is 500129792 sectors.
[    1.606276] md: RAID0 configuration for md126 - 1 zone
[    1.606338] md: zone0=[sda/sdb]
[    1.606557]       zone-offset=         0KB, device-offset=         0KB, size= 250065152KB

[    1.606764] md126: detected capacity change from 0 to 256066453504
[    1.608113]  md126: p1 p2
[    1.644518] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    1.681374] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x122c00, board id: 1690, fw id: 934878
[    1.716432] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input3
[    1.760517] hub 1-1:1.0: USB hub found
[    1.760754] hub 1-1:1.0: 6 ports detected
[    1.847112] tsc: Refined TSC clocksource calibration: 2793.652 MHz
[    1.847250] Switching to clocksource tsc
[    1.864882] usb 3-1: new high-speed USB device number 2 using ehci-pci
[    1.971773] dracut: luksOpen /dev/md126p2 luks-54ed2bf3-fb3d-4442-b8be-2f0cfda6a521  
[    1.979841] hub 3-1:1.0: USB hub found
[    1.980090] hub 3-1:1.0: 8 ports detected
[    2.055202] usb 1-1.1: new full-speed USB device number 3 using ehci-pci
[    2.218424] usb 1-1.2: new full-speed USB device number 4 using ehci-pci
[    2.374820] usb 1-1.3: new high-speed USB device number 5 using ehci-pci
[    2.555843] usb 1-1.4: new high-speed USB device number 6 using ehci-pci
[    2.633990] usb 1-1.4: config 1 has an invalid interface number: 8 but max is 3
[    2.634103] usb 1-1.4: config 1 has no interface number 1
[    9.499533] sha256_ssse3: Using AVX optimized SHA-256 implementation
[    9.500913] bio: create slab <bio-2> at 2
[    9.661684] dracut: Scanning devices dm-0  for LVM logical volumes vaio/gentoo64a-root
[    9.672910] dracut: inactive '/dev/vaio/gentoo64a-root' [16.00 GiB] inherit
[    9.673025] dracut: inactive '/dev/vaio/portage' [12.00 GiB] inherit
[    9.673152] dracut: inactive '/dev/vaio/home' [180.00 GiB] inherit
[    9.715892] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
[    9.728023] dracut: Checking ext4: /dev/vaio/gentoo64a-root
[    9.728118] dracut: issuing e2fsck -a  /dev/vaio/gentoo64a-root
[    9.778642] dracut: /dev/vaio/gentoo64a-root: clean, 589316/1048576 files, 3694223/4194304 blocks
[    9.780447] dracut: Mounting /dev/vaio/gentoo64a-root with -o noatime,ro
[    9.785271] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
[    9.793074] dracut: Mounted root filesystem /dev/mapper/vaio-gentoo64a--root
[    9.806872] dracut: Switching root
[   10.126336] systemd-udevd[629]: starting version 204
[   10.206381] ACPI Warning: 0x000000000000a040-0x000000000000a05f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130328/utaddress-251)
[   10.206390] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   10.207378] Linux agpgart interface v0.103
[   10.209493] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130328/utaddress-251)
[   10.209499] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   10.209503] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130328/utaddress-251)
[   10.209506] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   10.209507] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130328/utaddress-251)
[   10.209920] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   10.209923] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130328/utaddress-251)
[   10.209928] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   10.209930] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   10.212043] [drm] Initialized drm 1.1.0 20060810
[   10.240380] rtsx_pci 0000:03:00.0: irq 47 for MSI/MSI-X
[   10.240399] rtsx_pci 0000:03:00.0: rtsx_pci_acquire_irq: pcr->msi_en = 1, pci->irq = 47
[   10.296076] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[   10.296453] r8169 0000:05:00.0: irq 48 for MSI/MSI-X
[   10.297125] r8169 0000:05:00.0 eth0: RTL8168evl/8111evl at 0xffffc9001168e000, 54:42:49:9a:df:1e, XID 0c900800 IRQ 48
[   10.297129] r8169 0000:05:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[   10.300282] input: PC Speaker as /devices/platform/pcspkr/input/input4
[   10.302038] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x14
[   10.305228] [drm] Memory usable by graphics device = 2048M
[   10.305301] i915 0000:00:02.0: setting latency timer to 64
[   10.306980] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x14
[   10.307455] microcode: CPU0 updated to revision 0x28, date = 2012-04-24
[   10.307470] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x14
[   10.307531] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x14
[   10.307762] microcode: CPU1 updated to revision 0x28, date = 2012-04-24
[   10.307781] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x14
[   10.307831] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x14
[   10.308064] microcode: CPU2 updated to revision 0x28, date = 2012-04-24
[   10.308073] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x14
[   10.308123] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x14
[   10.308364] microcode: CPU3 updated to revision 0x28, date = 2012-04-24
[   10.308392] perf_event_intel: PEBS enabled due to microcode update
[   10.308850] Error: Driver 'pcspkr' is already registered, aborting...
[   10.310811] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[   10.323516] sony_laptop: Sony Notebook Control Driver v0.6
[   10.323730] input: Sony Vaio Keys as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/SNY5001:00/input/input5
[   10.323916] input: Sony Vaio Jogdial as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/SNY5001:00/input/input6
[   10.328468] cfg80211: Calling CRDA to update world regulatory domain
[   10.338494] Intel(R) Wireless WiFi driver for Linux, in-tree:
[   10.338498] Copyright(c) 2003-2013 Intel Corporation
[   10.339978] iwlwifi 0000:02:00.0: irq 49 for MSI/MSI-X
[   10.345226] Bluetooth: Core ver 2.16
[   10.345259] NET: Registered protocol family 31
[   10.345262] Bluetooth: HCI device and connection manager initialized
[   10.345309] Bluetooth: HCI socket layer initialized
[   10.345315] Bluetooth: L2CAP socket layer initialized
[   10.345333] Bluetooth: SCO socket layer initialized
[   10.348877] iwlwifi 0000:02:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
[   10.353032] usbcore: registered new interface driver usbserial
[   10.353065] usbcore: registered new interface driver usbserial_generic
[   10.353319] usbserial: USB Serial support registered for generic
[   10.353765] media: Linux media interface: v0.10
[   10.358385] Linux video capture interface: v2.00
[   10.358797] usbcore: registered new interface driver btusb
[   10.364373] usbcore: registered new interface driver qcserial
[   10.364400] usbserial: USB Serial support registered for Qualcomm USB modem
[   10.365071] sony_laptop: brightness ignored, must be controlled by ACPI video driver
[   10.365559] qcserial 1-1.4:1.0: Qualcomm USB modem converter detected
[   10.365732] usb 1-1.4: Qualcomm USB modem converter now attached to ttyUSB0
[   10.367052] qcserial 1-1.4:1.2: Qualcomm USB modem converter detected
[   10.367187] usb 1-1.4: Qualcomm USB modem converter now attached to ttyUSB1
[   10.368431] i915 0000:00:02.0: irq 50 for MSI/MSI-X
[   10.368455] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[   10.368457] [drm] Driver supports precise vblank timestamp query.
[   10.368591] qcserial 1-1.4:1.3: Qualcomm USB modem converter detected
[   10.368801] usb 1-1.4: Qualcomm USB modem converter now attached to ttyUSB2
[   10.370402] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUG disabled
[   10.370407] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
[   10.370410] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
[   10.370413] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE disabled
[   10.370415] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_P2P disabled
[   10.370419] iwlwifi 0000:02:00.0: Detected Intel(R) Centrino(R) Advanced-N 6230 AGN, REV=0xB0
[   10.370535] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
[   10.371815] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   10.372315] uvcvideo: Found UVC 1.00 device USB2.0 Camera (05c8:0318)
[   10.376175] input: USB2.0 Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/input/input7
[   10.376809] usbcore: registered new interface driver uvcvideo
[   10.376812] USB Video Class driver (1.1.1)
[   10.393052] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[   10.422580] [drm] Wrong MCH_SSKPD value: 0x16040307
[   10.422584] [drm] This can cause pipe underruns and display issues.
[   10.422586] [drm] Please upgrade your BIOS to fix this.
[   10.425214] iTCO_vendor_support: vendor-support=0
[   10.426888] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[   10.426928] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[   10.441936] fbcon: inteldrmfb (fb0) is primary device
[   10.452554] systemd-udevd[656]: renamed network interface eth0 to enp5s0
[   10.469477] cfg80211: World regulatory domain updated:
[   10.469479] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   10.469481] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   10.469483] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   10.469484] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   10.469485] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   10.469486] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   10.495555] systemd-udevd[644]: renamed network interface wlan0 to wlp2s0
[   11.743584] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp on
[   12.164969] Console: switching to colour frame buffer device 240x67
[   12.168141] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[   12.168143] i915 0000:00:02.0: registered panic notifier
[   12.168622] [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.168632] [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.168641] [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.168651] [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.168661] [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.168670] [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.168679] [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.170170] acpi device:3e: registered as cooling_device5
[   12.170385] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   12.170453] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:09/input/input8
[   12.170790] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[   12.171106] snd_hda_intel 0000:00:1b.0: irq 51 for MSI/MSI-X
[   12.183614] hda_codec: ALC275: SKU not ready 0x411111f0
[   12.185327] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input9
[   12.191927] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[   12.192052] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[   12.566304] EXT4-fs (dm-1): re-mounted. Opts: (null)
[   12.643511] EXT4-fs (md126p1): mounted filesystem with ordered data mode. Opts: (null)
[   12.648488] EXT4-fs (dm-2): mounted filesystem with ordered data mode. Opts: (null)
[   12.653905] EXT4-fs (dm-3): mounted filesystem with ordered data mode. Opts: (null)
[   13.068452] microcode: Microcode Update Driver: v2.00 removed.
[   13.555587] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
[   13.562564] iwlwifi 0000:02:00.0: Radio type=0x1-0x2-0x0
[   13.949455] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
[   13.956327] iwlwifi 0000:02:00.0: Radio type=0x1-0x2-0x0
[   14.168382] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[   15.523806] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   15.523810] Bluetooth: BNEP filters: protocol multicast
[   15.523818] Bluetooth: BNEP socket layer initialized
[   15.688868] Bluetooth: RFCOMM TTY layer initialized
[   15.688943] Bluetooth: RFCOMM socket layer initialized
[   15.688945] Bluetooth: RFCOMM ver 1.11
[   15.827750] zram: module is from the staging directory, the quality is unknown, you have been warned.
[   15.830871] zram: Created 4 device(s) ...
[   15.842642] Adding 1572860k swap on /dev/zram0.  Priority:10 extents:1 across:1572860k SSFS
[   15.849798] Adding 1572860k swap on /dev/zram1.  Priority:10 extents:1 across:1572860k SSFS
[   15.856358] Adding 1572860k swap on /dev/zram2.  Priority:10 extents:1 across:1572860k SSFS
[   15.863648] Adding 1572860k swap on /dev/zram3.  Priority:10 extents:1 across:1572860k SSFS
[   17.429135] wlp2s0: authenticate with 08:60:6e:cc:a2:94
[   17.436128] wlp2s0: send auth to 08:60:6e:cc:a2:94 (try 1/3)
[   17.459580] wlp2s0: authenticated
[   17.460389] wlp2s0: associate with 08:60:6e:cc:a2:94 (try 1/3)
[   17.461239] wlp2s0: RX AssocResp from 08:60:6e:cc:a2:94 (capab=0x11 status=0 aid=1)
[   17.464656] wlp2s0: associated
[   17.465130] IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready
[   20.677380] fuse init (API version 7.22)
[   21.219485] ata1.00: configured for UDMA/133
[   21.219491] ata1: EH complete
[   21.220655] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   21.229004] ata2.00: configured for UDMA/133
[   21.229010] ata2: EH complete
[   21.229243] sd 1:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   21.656820] EXT4-fs (dm-1): re-mounted. Opts: commit=600
[   21.662586] EXT4-fs (md126p1): re-mounted. Opts: commit=600
[   21.664985] EXT4-fs (dm-2): re-mounted. Opts: commit=600
[   21.695058] EXT4-fs (dm-3): re-mounted. Opts: commit=600
[   34.448551] ata1.00: configured for UDMA/133
[   34.448556] ata1: EH complete
[   34.448730] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   34.452549] ata2.00: configured for UDMA/133
[   34.452553] ata2: EH complete
[   34.452761] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   34.477755] EXT4-fs (dm-1): re-mounted. Opts: commit=0
[   34.483731] EXT4-fs (md126p1): re-mounted. Opts: commit=0
[   34.485965] EXT4-fs (dm-2): re-mounted. Opts: commit=0
[   34.495726] EXT4-fs (dm-3): re-mounted. Opts: commit=0
[   35.739398] ACPI: \_SB_.DOCK: docking
[   35.739687] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB
[   35.739746] acpiphp_glue: bus exists... trim
[   35.740308] ACPI: Device does not support D3cold
[   35.740429] ACPI: Device does not support D3cold
[   35.740663] ACPI: Device does not support D3cold
[   35.740796] ACPI: Device does not support D3cold
[   35.740928] ACPI: Device does not support D3cold
[   35.741055] ACPI: Device does not support D3cold
[   35.741211] ACPI: Device does not support D3cold
[   35.741347] ACPI: Device does not support D3cold
[   35.741507] ACPI: Device does not support D3cold
[   35.741636] ACPI: Device does not support D3cold
[   35.743587] ACPI: Device does not support D3cold
[   35.745017] ACPI: Device does not support D3cold
[   35.746897] ACPI: Device does not support D3cold
[   35.747417] ACPI: Device does not support D3cold
[   35.748184] ACPI: Device does not support D3cold
[   35.748368] ACPI: Device does not support D3cold
[   35.749044] ACPI: Device does not support D3cold
[   35.749268] ACPI: Device does not support D3cold
[   35.750138] ACPI: Device does not support D3cold
[   35.750438] ACPI: Device does not support D3cold
[   35.751098] ACPI: Device does not support D3cold
[   35.751308] ACPI: Device does not support D3cold
[   35.751356] ACPI: Device does not support D3cold
[   35.751402] ACPI: Device does not support D3cold
[   35.751450] ACPI: Device does not support D3cold
[   35.751497] ACPI: Device does not support D3cold
[   35.751542] ACPI: Device does not support D3cold
[   35.751587] ACPI: Device does not support D3cold
[   35.751632] ACPI: Device does not support D3cold
[   35.751677] ACPI: Device does not support D3cold
[   35.751724] ACPI: Device does not support D3cold
[   35.759497] [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.
[   35.759554] [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.
[   35.759584] [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.
[   35.759615] [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.
[   35.759642] [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.
[   35.759667] [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.
[   35.759688] [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.
[   35.759929] pci 0000:08:00.0: [8086:151b] type 01 class 0x060400
[   35.760108] pci 0000:08:00.0: supports D1 D2
[   35.760110] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   35.762581] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:0a:00
[   35.763713] acpiphp: Slot [1-1] registered
[   35.763767] acpiphp_glue: found ACPI PCI Hotplug slot 2 at PCI 0000:0a:03
[   35.763800] acpiphp: Slot [2] registered
[   35.763837] acpiphp_glue: found ACPI PCI Hotplug slot 3 at PCI 0000:0a:04
[   35.764928] acpiphp: Slot [3] registered
[   35.764978] pci 0000:0a:00.0: [8086:151b] type 01 class 0x060400
[   35.765146] pci 0000:0a:00.0: supports D1 D2
[   35.765148] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   35.766386] pci 0000:0a:03.0: [8086:151b] type 01 class 0x060400
[   35.766550] pci 0000:0a:03.0: supports D1 D2
[   35.766552] pci 0000:0a:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[   35.766724] pci 0000:0a:04.0: [8086:151b] type 01 class 0x060400
[   35.766900] pci 0000:0a:04.0: supports D1 D2
[   35.766903] pci 0000:0a:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[   35.767083] pci 0000:08:00.0: PCI bridge to [bus 0a-1d]
[   35.767095] pci 0000:08:00.0:   bridge window [io  0x3000-0x5fff]
[   35.767101] pci 0000:08:00.0:   bridge window [mem 0xb0000000-0xc03fffff]
[   35.767110] pci 0000:08:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[   35.767234] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[   35.767248] pci 0000:0a:00.0:   bridge window [mem 0xc0300000-0xc03fffff]
[   35.767382] pci 0000:0a:03.0: PCI bridge to [bus 0c]
[   35.767571] pci 0000:14:00.0: [8086:151b] type 01 class 0x060400
[   35.767817] pci 0000:14:00.0: supports D1 D2
[   35.767820] pci 0000:14:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   35.768047] pci 0000:0a:04.0: PCI bridge to [bus 14-1d]
[   35.768059] pci 0000:0a:04.0:   bridge window [io  0x3000-0x5fff]
[   35.768066] pci 0000:0a:04.0:   bridge window [mem 0xb0000000-0xc02fffff]
[   35.768079] pci 0000:0a:04.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[   35.768338] pci 0000:15:03.0: [8086:151b] type 01 class 0x060400
[   35.768593] pci 0000:15:03.0: supports D1 D2
[   35.768597] pci 0000:15:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[   35.768825] pci 0000:15:04.0: [8086:151b] type 01 class 0x060400
[   35.769080] pci 0000:15:04.0: supports D1 D2
[   35.769083] pci 0000:15:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[   35.770374] pci 0000:14:00.0: PCI bridge to [bus 15-1d]
[   35.770394] pci 0000:14:00.0:   bridge window [io  0x3000-0x5fff]
[   35.770404] pci 0000:14:00.0:   bridge window [mem 0xb0000000-0xc02fffff]
[   35.770422] pci 0000:14:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[   35.770802] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:16:00
[   35.772920] acpiphp: Slot [1-2] registered
[   35.772951] acpiphp_glue: sibling found, but _SUN doesn't match!
[   35.773010] pci 0000:16:00.0: [1002:6740] type 00 class 0x030000
[   35.773078] pci 0000:16:00.0: reg 10: [mem 0x00000000-0x0fffffff 64bit pref]
[   35.773128] pci 0000:16:00.0: reg 18: [mem 0x00000000-0x0001ffff 64bit]
[   35.773159] pci 0000:16:00.0: reg 20: [io  0x0000-0x00ff]
[   35.773223] pci 0000:16:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[   35.773393] pci 0000:16:00.0: supports D1 D2
[   35.775470] vgaarb: device added: PCI:0000:16:00.0,decodes=io+mem,owns=none,locks=none
[   35.775475] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
[   35.775476] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:16:00.0
[   35.775573] pci 0000:16:00.1: [1002:aa90] type 00 class 0x040300
[   35.775640] pci 0000:16:00.1: reg 10: [mem 0x00000000-0x00003fff 64bit]
[   35.775993] pci 0000:16:00.1: supports D1 D2
[   35.778816] pci 0000:15:03.0: PCI bridge to [bus 16]
[   35.778833] pci 0000:15:03.0:   bridge window [io  0x5000-0x5fff]
[   35.778842] pci 0000:15:03.0:   bridge window [mem 0xc0200000-0xc02fffff]
[   35.778857] pci 0000:15:03.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
[   35.779408] pci 0000:17:00.0: [8086:151b] type 01 class 0x060400
[   35.779754] pci 0000:17:00.0: supports D1 D2
[   35.779757] pci 0000:17:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   35.780033] pci 0000:15:04.0: PCI bridge to [bus 17-1d]
[   35.780048] pci 0000:15:04.0:   bridge window [io  0x3000-0x4fff]
[   35.780058] pci 0000:15:04.0:   bridge window [mem 0xc0000000-0xc01fffff]
[   35.780073] pci 0000:15:04.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[   35.780372] pci 0000:18:00.0: [8086:151b] type 01 class 0x060400
[   35.780689] pci 0000:18:00.0: supports D1 D2
[   35.780690] pci 0000:18:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   35.780904] pci 0000:18:01.0: [8086:151b] type 01 class 0x060400
[   35.781217] pci 0000:18:01.0: supports D1 D2
[   35.781218] pci 0000:18:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[   35.781416] pci 0000:18:02.0: [8086:151b] type 01 class 0x060400
[   35.781729] pci 0000:18:02.0: supports D1 D2
[   35.781731] pci 0000:18:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[   35.782716] pci 0000:18:03.0: [8086:151b] type 01 class 0x060400
[   35.783070] pci 0000:18:03.0: supports D1 D2
[   35.783073] pci 0000:18:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[   35.783692] pci 0000:18:04.0: [8086:151b] type 01 class 0x060400
[   35.784047] pci 0000:18:04.0: supports D1 D2
[   35.784050] pci 0000:18:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[   35.785705] pci 0000:17:00.0: PCI bridge to [bus 18-1d]
[   35.785727] pci 0000:17:00.0:   bridge window [io  0x3000-0x4fff]
[   35.785737] pci 0000:17:00.0:   bridge window [mem 0xc0000000-0xc01fffff]
[   35.785759] pci 0000:17:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[   35.786864] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:19:00
[   35.786887] acpiphp: Slot [1-3] registered
[   35.786971] pci 0000:19:00.0: [10ec:8168] type 00 class 0x020000
[   35.787030] pci 0000:19:00.0: reg 10: [io  0x0000-0x00ff]
[   35.787132] pci 0000:19:00.0: reg 18: [mem 0x00000000-0x00000fff 64bit pref]
[   35.787194] pci 0000:19:00.0: reg 20: [mem 0x00000000-0x00003fff 64bit pref]
[   35.787476] pci 0000:19:00.0: supports D1 D2
[   35.787477] pci 0000:19:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   35.787739] pci 0000:18:00.0: PCI bridge to [bus 19]
[   35.787759] pci 0000:18:00.0:   bridge window [io  0x4000-0x4fff]
[   35.787809] pci 0000:18:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[   35.788240] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:1a:00
[   35.788296] acpiphp: Slot [1-4] registered
[   35.788391] pci 0000:1a:00.0: [11ab:6121] type 00 class 0x01018f
[   35.788455] pci 0000:1a:00.0: reg 10: [io  0x8000-0x8007]
[   35.788500] pci 0000:1a:00.0: reg 14: [io  0x8040-0x8043]
[   35.788546] pci 0000:1a:00.0: reg 18: [io  0x8200-0x8207]
[   35.788591] pci 0000:1a:00.0: reg 1c: [io  0x8800-0x8803]
[   35.788636] pci 0000:1a:00.0: reg 20: [io  0x900000-0x90000f]
[   35.788680] pci 0000:1a:00.0: reg 24: [mem 0x00800000-0x008003ff]
[   35.788964] pci 0000:1a:00.0: supports D1
[   35.788967] pci 0000:1a:00.0: PME# supported from D0 D1 D3hot
[   35.789561] pci 0000:18:01.0: PCI bridge to [bus 1a]
[   35.789583] pci 0000:18:01.0:   bridge window [io  0x3000-0x3fff]
[   35.789594] pci 0000:18:01.0:   bridge window [mem 0xc0100000-0xc01fffff]
[   35.789878] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:1b:00
[   35.789900] acpiphp: Slot [1-5] registered
[   35.789993] pci 0000:1b:00.0: [1033:0194] type 00 class 0x0c0330
[   35.790072] pci 0000:1b:00.0: reg 10: [mem 0x00000000-0x00001fff 64bit]
[   35.790487] pci 0000:1b:00.0: PME# supported from D0 D3hot D3cold
[   35.791943] pci 0000:18:02.0: PCI bridge to [bus 1b]
[   35.791977] pci 0000:18:02.0:   bridge window [mem 0xc0000000-0xc00fffff]
[   35.792490] pci 0000:18:03.0: PCI bridge to [bus 1c]
[   35.792900] pci 0000:18:04.0: PCI bridge to [bus 1d]
[   35.793507] pci 0000:08:00.0: BAR 15: can't assign mem pref (size 0x28000000)
[   35.793510] pci 0000:08:00.0: BAR 14: assigned [mem 0xb0000000-0xc06fffff]
[   35.793512] pci 0000:08:00.0: BAR 13: can't assign io (size 0xb000)
[   35.793517] pci 0000:0a:04.0: BAR 15: can't assign mem pref (size 0x20000000)
[   35.793519] pci 0000:0a:00.0: BAR 14: assigned [mem 0xb0000000-0xb01fffff]
[   35.793521] pci 0000:0a:00.0: BAR 15: assigned [mem 0xb0200000-0xb03fffff 64bit pref]
[   35.793523] pci 0000:0a:03.0: BAR 14: assigned [mem 0xb0400000-0xb05fffff]
[   35.793525] pci 0000:0a:03.0: BAR 15: assigned [mem 0xb0600000-0xb07fffff 64bit pref]
[   35.793527] pci 0000:0a:04.0: BAR 14: can't assign mem (size 0x10300000)
[   35.793528] pci 0000:0a:00.0: BAR 13: can't assign io (size 0x1000)
[   35.793530] pci 0000:0a:03.0: BAR 13: can't assign io (size 0x1000)
[   35.793532] pci 0000:0a:04.0: BAR 13: can't assign io (size 0x8000)
[   35.793535] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[   35.793543] pci 0000:0a:00.0:   bridge window [mem 0xb0000000-0xb01fffff]
[   35.793549] pci 0000:0a:00.0:   bridge window [mem 0xb0200000-0xb03fffff 64bit pref]
[   35.793560] pci 0000:0a:03.0: PCI bridge to [bus 0c]
[   35.793568] pci 0000:0a:03.0:   bridge window [mem 0xb0400000-0xb05fffff]
[   35.793573] pci 0000:0a:03.0:   bridge window [mem 0xb0600000-0xb07fffff 64bit pref]
[   35.793585] pci 0000:14:00.0: BAR 15: can't assign mem pref (size 0x20000000)
[   35.793586] pci 0000:14:00.0: BAR 14: can't assign mem (size 0x10300000)
[   35.793588] pci 0000:14:00.0: BAR 13: can't assign io (size 0x7000)
[   35.793591] pci 0000:15:03.0: BAR 15: can't assign mem pref (size 0x18000000)
[   35.793592] pci 0000:15:03.0: BAR 14: can't assign mem (size 0x200000)
[   35.793594] pci 0000:15:04.0: BAR 14: can't assign mem (size 0xa00000)
[   35.793596] pci 0000:15:04.0: BAR 15: can't assign mem pref (size 0xa00000)
[   35.793597] pci 0000:15:03.0: BAR 13: can't assign io (size 0x1000)
[   35.793599] pci 0000:15:04.0: BAR 13: can't assign io (size 0x6000)
[   35.793602] pci 0000:16:00.0: BAR 0: can't assign mem pref (size 0x10000000)
[   35.793604] pci 0000:16:00.0: BAR 2: can't assign mem (size 0x20000)
[   35.793605] pci 0000:16:00.0: BAR 6: can't assign mem pref (size 0x20000)
[   35.793607] pci 0000:16:00.1: BAR 0: can't assign mem (size 0x4000)
[   35.793608] pci 0000:16:00.0: BAR 4: can't assign io (size 0x100)
[   35.793611] pci 0000:15:03.0: PCI bridge to [bus 16]
[   35.793643] pci 0000:17:00.0: BAR 14: can't assign mem (size 0xa00000)
[   35.793644] pci 0000:17:00.0: BAR 15: can't assign mem pref (size 0xa00000)
[   35.793646] pci 0000:17:00.0: BAR 13: can't assign io (size 0x5000)
[   35.793651] pci 0000:18:00.0: BAR 14: can't assign mem (size 0x200000)
[   35.793652] pci 0000:18:00.0: BAR 15: can't assign mem pref (size 0x200000)
[   35.793654] pci 0000:18:01.0: BAR 14: can't assign mem (size 0x200000)
[   35.793657] pci 0000:18:01.0: BAR 15: can't assign mem pref (size 0x200000)
[   35.793659] pci 0000:18:02.0: BAR 14: can't assign mem (size 0x200000)
[   35.793662] pci 0000:18:02.0: BAR 15: can't assign mem pref (size 0x200000)
[   35.793665] pci 0000:18:03.0: BAR 14: can't assign mem (size 0x200000)
[   35.793668] pci 0000:18:03.0: BAR 15: can't assign mem pref (size 0x200000)
[   35.793671] pci 0000:18:04.0: BAR 14: can't assign mem (size 0x200000)
[   35.793673] pci 0000:18:04.0: BAR 15: can't assign mem pref (size 0x200000)
[   35.793676] pci 0000:18:00.0: BAR 13: can't assign io (size 0x1000)
[   35.793679] pci 0000:18:01.0: BAR 13: can't assign io (size 0x1000)
[   35.793682] pci 0000:18:02.0: BAR 13: can't assign io (size 0x1000)
[   35.793685] pci 0000:18:03.0: BAR 13: can't assign io (size 0x1000)
[   35.793687] pci 0000:18:04.0: BAR 13: can't assign io (size 0x1000)
[   35.793695] pci 0000:19:00.0: BAR 4: can't assign mem pref (size 0x4000)
[   35.793698] pci 0000:19:00.0: BAR 2: can't assign mem pref (size 0x1000)
[   35.793701] pci 0000:19:00.0: BAR 0: can't assign io (size 0x100)
[   35.793705] pci 0000:18:00.0: PCI bridge to [bus 19]
[   35.793755] pci 0000:1a:00.0: BAR 5: can't assign mem (size 0x400)
[   35.793758] pci 0000:1a:00.0: BAR 4: can't assign io (size 0x10)
[   35.793761] pci 0000:1a:00.0: BAR 0: can't assign io (size 0x8)
[   35.793764] pci 0000:1a:00.0: BAR 2: can't assign io (size 0x8)
[   35.793767] pci 0000:1a:00.0: BAR 1: can't assign io (size 0x4)
[   35.793769] pci 0000:1a:00.0: BAR 3: can't assign io (size 0x4)
[   35.793774] pci 0000:18:01.0: PCI bridge to [bus 1a]
[   35.793837] pci 0000:1b:00.0: BAR 0: can't assign mem (size 0x2000)
[   35.793841] pci 0000:18:02.0: PCI bridge to [bus 1b]
[   35.793890] pci 0000:18:03.0: PCI bridge to [bus 1c]
[   35.793940] pci 0000:18:04.0: PCI bridge to [bus 1d]
[   35.793987] pci 0000:17:00.0: PCI bridge to [bus 18-1d]
[   35.794036] pci 0000:15:04.0: PCI bridge to [bus 17-1d]
[   35.794071] pci 0000:14:00.0: PCI bridge to [bus 15-1d]
[   35.794106] pci 0000:0a:04.0: PCI bridge to [bus 14-1d]
[   35.794131] pci 0000:08:00.0: PCI bridge to [bus 0a-1d]
[   35.794140] pci 0000:08:00.0:   bridge window [mem 0xb0000000-0xc06fffff]
[   35.794172] pci 0000:08:00.0: no hotplug settings from platform
[   35.794189] pci 0000:0a:00.0: no hotplug settings from platform
[   35.794206] pci 0000:0a:03.0: no hotplug settings from platform
[   35.794223] pci 0000:0a:04.0: no hotplug settings from platform
[   35.794244] pci 0000:14:00.0: no hotplug settings from platform
[   35.794270] pci 0000:15:03.0: no hotplug settings from platform
[   35.794301] pci 0000:16:00.0: no hotplug settings from platform
[   35.794331] pci 0000:16:00.1: no hotplug settings from platform
[   35.794357] pci 0000:15:04.0: no hotplug settings from platform
[   35.794386] pci 0000:17:00.0: no hotplug settings from platform
[   35.794421] pci 0000:18:00.0: no hotplug settings from platform
[   35.794459] pci 0000:19:00.0: no hotplug settings from platform
[   35.794493] pci 0000:18:01.0: no hotplug settings from platform
[   35.794532] pci 0000:1a:00.0: no hotplug settings from platform
[   35.794565] pci 0000:18:02.0: no hotplug settings from platform
[   35.794605] pci 0000:1b:00.0: no hotplug settings from platform
[   35.794639] pci 0000:18:03.0: no hotplug settings from platform
[   35.794674] pci 0000:18:04.0: no hotplug settings from platform
[   35.795907] pcieport 0000:08:00.0: irq 52 for MSI/MSI-X
[   35.797083] pcieport 0000:0a:00.0: irq 53 for MSI/MSI-X
[   35.797339] pcieport 0000:0a:03.0: irq 54 for MSI/MSI-X
[   35.798554] pcieport 0000:0a:04.0: irq 55 for MSI/MSI-X
[   35.799012] pcieport 0000:14:00.0: irq 56 for MSI/MSI-X
[   35.800534] pcieport 0000:15:03.0: irq 57 for MSI/MSI-X
[   35.801220] pcieport 0000:15:04.0: irq 58 for MSI/MSI-X
[   35.802764] hda-intel 0000:16:00.1: Handle VGA-switcheroo audio client
[   35.802787] ------------[ cut here ]------------
[   35.802792] WARNING: at drivers/pci/pci.c:130 pci_ioremap_bar+0x69/0x70()
[   35.802793] Modules linked in: fuse zram(C) rfcomm bnep snd_hda_codec_hdmi snd_hda_codec_realtek rtsx_pci_ms rtsx_pci_sdmmc memstick mmc_core iTCO_wdt iTCO_vendor_support arc4 uvcvideo iwldvm videobuf2_vmalloc videobuf2_memops mac80211 qcserial videobuf2_core usb_wwan videodev media usbserial btusb bluetooth iwlwifi coretemp kvm_intel kvm sony_laptop cfg80211 snd_hda_intel snd_hda_codec rfkill i915 pcspkr r8169 joydev mii rtsx_pci snd_hwdep intel_agp snd_pcm intel_gtt i2c_algo_bit snd_page_alloc drm_kms_helper snd_timer drm lpc_ich snd agpgart i2c_i801 mfd_core sha256_ssse3 sha256_generic dm_crypt raid0 md_mod crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 glue_helper lrw gf128mul ablk_helper cryptd xhci_hcd ehci_pci ehci_hcd dm_mirror dm_region_hash dm_log dm_mod [last unloaded: microcode]

[   35.802872] CPU: 0 PID: 530 Comm: kworker/0:2 Tainted: G         C   3.10.0-rc4 #7
[   35.802874] Hardware name: Sony Corporation VPCZ23A4R/VAIO, BIOS R1013H5 05/21/2012
[   35.802877] Workqueue: kacpi_hotplug acpi_os_execute_deferred
[   35.802879]  ffffffff81a2a114 ffff8802527d37b8 ffffffff8165aab8 ffff8802527d37f8
[   35.802882]  ffffffff8103c8cb ffff8802527d37d8 ffff88022eaf4800 ffff88022eac6000
[   35.802885]  0000000000000000 ffff88022eaf4000 0000000000000001 ffff8802527d3808
[   35.802888] Call Trace:
[   35.802892]  [<ffffffff8165aab8>] dump_stack+0x19/0x1b
[   35.802896]  [<ffffffff8103c8cb>] warn_slowpath_common+0x6b/0xa0
[   35.802898]  [<ffffffff8103c915>] warn_slowpath_null+0x15/0x20
[   35.802901]  [<ffffffff813831e9>] pci_ioremap_bar+0x69/0x70
[   35.802905]  [<ffffffffa0388bd6>] azx_first_init+0x56/0x600 [snd_hda_intel]
[   35.802908]  [<ffffffff813868ef>] ? pci_get_domain_bus_and_slot+0x2f/0x70
[   35.802911]  [<ffffffffa038ad25>] azx_probe+0x555/0x940 [snd_hda_intel]
[   35.802915]  [<ffffffff810a1a1d>] ? trace_hardirqs_on+0xd/0x10
[   35.802917]  [<ffffffff81384f66>] local_pci_probe+0x46/0x80
[   35.802920]  [<ffffffff813857d9>] pci_device_probe+0xf9/0x120
[   35.802924]  [<ffffffff8143c2c6>] driver_probe_device+0x76/0x220
[   35.802927]  [<ffffffff8143c56b>] __device_attach+0x4b/0x60
[   35.802929]  [<ffffffff8143c520>] ? __driver_attach+0xb0/0xb0
[   35.802932]  [<ffffffff8143a61c>] bus_for_each_drv+0x5c/0x90
[   35.802934]  [<ffffffff8143c218>] device_attach+0x98/0xb0
[   35.802937]  [<ffffffff8137d8d4>] pci_bus_add_device+0x34/0x60
[   35.802939]  [<ffffffff8137d939>] pci_bus_add_devices+0x39/0xa0
[   35.802942]  [<ffffffff8137d987>] pci_bus_add_devices+0x87/0xa0
[   35.802944]  [<ffffffff8137d987>] pci_bus_add_devices+0x87/0xa0
[   35.802946]  [<ffffffff8137d987>] pci_bus_add_devices+0x87/0xa0
[   35.802948]  [<ffffffff8137d987>] pci_bus_add_devices+0x87/0xa0
[   35.802951]  [<ffffffff816446b0>] enable_device+0x370/0x450
[   35.802954]  [<ffffffff813a0f3a>] acpiphp_enable_slot+0xca/0x140
[   35.802957]  [<ffffffff813a13b6>] __handle_hotplug_event_func+0x96/0x1a0
[   35.802959]  [<ffffffff813c729b>] hotplug_dock_devices+0x57/0xda
[   35.802962]  [<ffffffff813c7ae0>] acpi_dock_deferred_cb+0xd4/0x1c8
[   35.802964]  [<ffffffff813bfba9>] acpi_os_execute_deferred+0x20/0x2d
[   35.802968]  [<ffffffff8105c212>] process_one_work+0x1c2/0x560
[   35.802970]  [<ffffffff8105c1a7>] ? process_one_work+0x157/0x560
[   35.802972]  [<ffffffff8105d126>] worker_thread+0x116/0x370
[   35.802974]  [<ffffffff810a1a1d>] ? trace_hardirqs_on+0xd/0x10
[   35.802977]  [<ffffffff8105d010>] ? manage_workers.isra.20+0x2d0/0x2d0
[   35.802980]  [<ffffffff81063986>] kthread+0xd6/0xe0
[   35.802982]  [<ffffffff81660ccb>] ? _raw_spin_unlock_irq+0x2b/0x60
[   35.802985]  [<ffffffff810638b0>] ? __init_kthread_worker+0x70/0x70
[   35.802988]  [<ffffffff8166806c>] ret_from_fork+0x7c/0xb0
[   35.802991]  [<ffffffff810638b0>] ? __init_kthread_worker+0x70/0x70
[   35.802992] ---[ end trace f366acc9dc87b388 ]---
[   35.802994] hda-intel 0000:16:00.1: ioremap error
[   35.803314] pcieport 0000:17:00.0: irq 59 for MSI/MSI-X
[   35.804643] pcieport 0000:18:00.0: irq 60 for MSI/MSI-X
[   35.806478] pcieport 0000:18:01.0: irq 61 for MSI/MSI-X
[   35.807376] pcieport 0000:18:02.0: irq 62 for MSI/MSI-X
[   35.808150] pcieport 0000:18:03.0: irq 63 for MSI/MSI-X
[   35.808759] pcieport 0000:18:04.0: irq 64 for MSI/MSI-X
[   35.809570] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[   35.809699] r8169 0000:19:00.0 (unregistered net_device): region #2 not an MMIO resource, aborting
[   35.810960] xhci_hcd 0000:1b:00.0: init 0000:1b:00.0 fail, -16
[   35.811002] xhci_hcd: probe of 0000:1b:00.0 failed with error -16
[   35.811014] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM0
[   35.811020] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM1
[   35.811025] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM2
[   35.811029] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM2.LPRI.LPR0.GFXA
[   35.811045] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM2.LPRI.LPR0.GHDA
[   35.811057] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM2.LPRI.LPR1.LPCI.LPC0.DLAN
[   35.811064] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM2.LPRI.LPR1.LPCI.LPC1.DODD
[   35.811072] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM2.LPRI.LPR1.LPCI.LPC2.DUSB
[   35.811520] pata_marvell 0000:1a:00.0: no available native port
[   35.812629] pata_acpi 0000:1a:00.0: no available native port
[   91.805364] acpiphp_glue: __handle_hotplug_event_func: Device eject notify on \_SB_.PCI0.RP07.LPMB
[   91.817160] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=none,decodes=io+mem:owns=none
[   91.822458] pci_bus 0000:0b: busn_res: [bus 0b] is released
[   91.823317] pci_bus 0000:0c: busn_res: [bus 0c] is released
[   91.823430] pci_bus 0000:16: busn_res: [bus 16] is released
[   91.834349] acpiphp: Slot [1-2] unregistered
[   91.834568] acpiphp: release_slot - physical_slot = 1-2
[   91.835003] pci_bus 0000:19: busn_res: [bus 19] is released
[   91.840333] acpiphp: Slot [1-3] unregistered
[   91.840353] acpiphp: release_slot - physical_slot = 1-3
[   91.840504] pci_bus 0000:1a: busn_res: [bus 1a] is released
[   91.846386] acpiphp: Slot [1-4] unregistered
[   91.846405] acpiphp: release_slot - physical_slot = 1-4
[   91.846576] pci_bus 0000:1b: busn_res: [bus 1b] is released
[   91.853365] acpiphp: Slot [1-5] unregistered
[   91.853394] acpiphp: release_slot - physical_slot = 1-5
[   91.853604] pci_bus 0000:1c: busn_res: [bus 1c] is released
[   91.853713] pci_bus 0000:1d: busn_res: [bus 1d] is released
[   91.854017] pci_bus 0000:18: busn_res: [bus 18-1d] is released
[   91.854184] pci_bus 0000:17: busn_res: [bus 17-1d] is released
[   91.854313] pci_bus 0000:15: busn_res: [bus 15-1d] is released
[   91.854409] pci_bus 0000:14: busn_res: [bus 14-1d] is released
[   91.854505] pci_bus 0000:0a: busn_res: [bus 0a-1d] is released
[   91.861366] acpiphp: Slot [1-1] unregistered
[   91.861384] acpiphp: release_slot - physical_slot = 1-1
[   91.866371] acpiphp: Slot [2] unregistered
[   91.866400] acpiphp: release_slot - physical_slot = 2
[   91.871379] acpiphp: Slot [3] unregistered
[   91.871413] acpiphp: release_slot - physical_slot = 3
[   91.872177] ACPI: Device does not support D3cold
[   91.872426] ACPI: Device does not support D3cold
[   91.872834] ACPI: Device does not support D3cold
[   91.873425] ACPI: Device does not support D3cold
[   91.873733] ACPI: Device does not support D3cold
[   91.875812] ACPI: Device does not support D3cold
[   91.877376] ACPI: Device does not support D3cold
[   91.877611] ACPI: Device does not support D3cold
[   91.880147] ACPI: Device does not support D3cold
[   91.880835] ACPI: Device does not support D3cold
[   91.881103] ACPI: Device does not support D3cold
[   91.881682] ACPI: Device does not support D3cold
[   91.882233] ACPI: Device does not support D3cold
[   91.882968] ACPI: Device does not support D3cold
[   91.883196] ACPI: Device does not support D3cold
[   91.883415] ACPI: Device does not support D3cold
[   91.883716] ACPI: Device does not support D3cold
[   91.884566] ACPI: Device does not support D3cold
[   91.885331] ACPI: Device does not support D3cold
[   91.886073] ACPI: Device does not support D3cold
[   91.887309] ACPI: Device does not support D3cold
[   91.888008] ACPI: Device does not support D3cold
[   91.888125] ACPI: Device does not support D3cold
[   91.888876] ACPI: Device does not support D3cold
[   91.889376] ACPI: Device does not support D3cold
[   91.889713] ACPI: Device does not support D3cold
[   91.890622] ACPI: Device does not support D3cold
[   91.890922] ACPI: Device does not support D3cold
[   91.891115] ACPI: Device does not support D3cold
[   91.891345] ACPI: Device does not support D3cold
[   91.891695] ACPI: Device does not support D3cold
[   91.892177] ACPI: Device does not support D3cold
[   91.892189] ACPI: \_SB_.DOCK: undocking
[   92.367748] ACPI: \_SB_.DOCK: docking
[   92.367912] ACPI: \_SB_.DOCK: Unable to dock!
[   92.368128] acpiphp_glue: _handle_hotplug_event_bridge: Bus check notify on \_SB_.PCI0.RP07
[   92.368130] acpiphp_glue: _handle_hotplug_event_bridge: re-enumerating slots under \_SB_.PCI0.RP07
[   92.368147] acpiphp_glue: acpiphp_check_bridge: 0 enabled, 0 disabled
[   97.060120] ata1.00: configured for UDMA/133
[   97.060125] ata1: EH complete
[   97.060385] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   97.064345] ata2.00: configured for UDMA/133
[   97.064349] ata2: EH complete
[   97.064529] sd 1:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   97.147658] EXT4-fs (dm-1): re-mounted. Opts: commit=600
[   97.153032] EXT4-fs (md126p1): re-mounted. Opts: commit=600
[   97.156152] EXT4-fs (dm-2): re-mounted. Opts: commit=600
[   97.183929] EXT4-fs (dm-3): re-mounted. Opts: commit=600
[  115.952865] ata1.00: configured for UDMA/133
[  115.952870] ata1: EH complete
[  115.953032] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[  115.956838] ata2.00: configured for UDMA/133
[  115.956859] ata2: EH complete
[  115.957047] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[  115.971401] EXT4-fs (dm-1): re-mounted. Opts: commit=0
[  115.975849] EXT4-fs (md126p1): re-mounted. Opts: commit=0
[  115.978380] EXT4-fs (dm-2): re-mounted. Opts: commit=0
[  115.980766] EXT4-fs (dm-3): re-mounted. Opts: commit=0
[  117.231056] acpiphp_glue: _handle_hotplug_event_bridge: Device check notify on \_SB_.PCI0.RP07
[  117.250613] [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.
[  117.250637] [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.
[  117.250681] [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.
[  117.251264] [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.
[  117.251321] [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.
[  117.251346] [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.
[  117.251394] [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.
[  117.251658] pci 0000:08:00.0: [8086:151b] type 01 class 0x060400
[  117.251859] pci 0000:08:00.0: supports D1 D2
[  117.251862] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  117.253572] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:0a:00
[  117.253850] acpiphp: Slot [1-1] registered
[  117.253876] acpiphp_glue: found ACPI PCI Hotplug slot 2 at PCI 0000:0a:03
[  117.253920] acpiphp: Slot [2] registered
[  117.253953] acpiphp_glue: found ACPI PCI Hotplug slot 3 at PCI 0000:0a:04
[  117.254194] acpiphp: Slot [3] registered
[  117.254245] pci 0000:0a:00.0: [8086:151b] type 01 class 0x060400
[  117.254411] pci 0000:0a:00.0: supports D1 D2
[  117.254413] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  117.256037] pci 0000:0a:03.0: [8086:151b] type 01 class 0x060400
[  117.256200] pci 0000:0a:03.0: supports D1 D2
[  117.256202] pci 0000:0a:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[  117.257770] pci 0000:0a:04.0: [8086:151b] type 01 class 0x060400
[  117.257932] pci 0000:0a:04.0: supports D1 D2
[  117.257934] pci 0000:0a:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[  117.258124] pci 0000:08:00.0: PCI bridge to [bus 0a-1d]
[  117.258137] pci 0000:08:00.0:   bridge window [io  0x3000-0x5fff]
[  117.258145] pci 0000:08:00.0:   bridge window [mem 0xb0000000-0xc03fffff]
[  117.258158] pci 0000:08:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[  117.258291] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[  117.258306] pci 0000:0a:00.0:   bridge window [mem 0xc0300000-0xc03fffff]
[  117.258439] pci 0000:0a:03.0: PCI bridge to [bus 0c]
[  117.258630] pci 0000:14:00.0: [8086:151b] type 01 class 0x060400
[  117.258898] pci 0000:14:00.0: supports D1 D2
[  117.258900] pci 0000:14:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  117.260764] pci 0000:0a:04.0: PCI bridge to [bus 14-1d]
[  117.260778] pci 0000:0a:04.0:   bridge window [io  0x3000-0x5fff]
[  117.260787] pci 0000:0a:04.0:   bridge window [mem 0xb0000000-0xc02fffff]
[  117.260799] pci 0000:0a:04.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[  117.261085] pci 0000:15:03.0: [8086:151b] type 01 class 0x060400
[  117.261337] pci 0000:15:03.0: supports D1 D2
[  117.261340] pci 0000:15:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[  117.262226] pci 0000:15:04.0: [8086:151b] type 01 class 0x060400
[  117.262477] pci 0000:15:04.0: supports D1 D2
[  117.262480] pci 0000:15:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[  117.262799] pci 0000:14:00.0: PCI bridge to [bus 15-1d]
[  117.262815] pci 0000:14:00.0:   bridge window [io  0x3000-0x5fff]
[  117.262823] pci 0000:14:00.0:   bridge window [mem 0xb0000000-0xc02fffff]
[  117.262837] pci 0000:14:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[  117.263089] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:16:00
[  117.263111] acpiphp: Slot [1-2] registered
[  117.263136] acpiphp_glue: sibling found, but _SUN doesn't match!
[  117.263194] pci 0000:16:00.0: [1002:6740] type 00 class 0x030000
[  117.263261] pci 0000:16:00.0: reg 10: [mem 0x00000000-0x0fffffff 64bit pref]
[  117.263309] pci 0000:16:00.0: reg 18: [mem 0x00000000-0x0001ffff 64bit]
[  117.263340] pci 0000:16:00.0: reg 20: [io  0x0000-0x00ff]
[  117.263404] pci 0000:16:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[  117.263572] pci 0000:16:00.0: supports D1 D2
[  117.263919] vgaarb: device added: PCI:0000:16:00.0,decodes=io+mem,owns=none,locks=none
[  117.263925] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=none
[  117.264003] pci 0000:16:00.1: [1002:aa90] type 00 class 0x040300
[  117.264072] pci 0000:16:00.1: reg 10: [mem 0x00000000-0x00003fff 64bit]
[  117.264403] pci 0000:16:00.1: supports D1 D2
[  117.265273] pci 0000:15:03.0: PCI bridge to [bus 16]
[  117.265289] pci 0000:15:03.0:   bridge window [io  0x5000-0x5fff]
[  117.265297] pci 0000:15:03.0:   bridge window [mem 0xc0200000-0xc02fffff]
[  117.265313] pci 0000:15:03.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
[  117.266482] pci 0000:17:00.0: [8086:151b] type 01 class 0x060400
[  117.266821] pci 0000:17:00.0: supports D1 D2
[  117.266823] pci 0000:17:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  117.268223] pci 0000:15:04.0: PCI bridge to [bus 17-1d]
[  117.268242] pci 0000:15:04.0:   bridge window [io  0x3000-0x4fff]
[  117.268253] pci 0000:15:04.0:   bridge window [mem 0xc0000000-0xc01fffff]
[  117.268270] pci 0000:15:04.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[  117.268655] pci 0000:18:00.0: [8086:151b] type 01 class 0x060400
[  117.269047] pci 0000:18:00.0: supports D1 D2
[  117.269050] pci 0000:18:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  117.270003] pci 0000:18:01.0: [8086:151b] type 01 class 0x060400
[  117.270348] pci 0000:18:01.0: supports D1 D2
[  117.270351] pci 0000:18:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[  117.270732] pci 0000:18:02.0: [8086:151b] type 01 class 0x060400
[  117.271089] pci 0000:18:02.0: supports D1 D2
[  117.271092] pci 0000:18:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[  117.271357] pci 0000:18:03.0: [8086:151b] type 01 class 0x060400
[  117.271678] pci 0000:18:03.0: supports D1 D2
[  117.271680] pci 0000:18:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[  117.272335] pci 0000:18:04.0: [8086:151b] type 01 class 0x060400
[  117.272645] pci 0000:18:04.0: supports D1 D2
[  117.272647] pci 0000:18:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[  117.273128] pci 0000:17:00.0: PCI bridge to [bus 18-1d]
[  117.273151] pci 0000:17:00.0:   bridge window [io  0x3000-0x4fff]
[  117.273164] pci 0000:17:00.0:   bridge window [mem 0xc0000000-0xc01fffff]
[  117.273187] pci 0000:17:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[  117.273662] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:19:00
[  117.273685] acpiphp: Slot [1-3] registered
[  117.273779] pci 0000:19:00.0: [10ec:8168] type 00 class 0x020000
[  117.273838] pci 0000:19:00.0: reg 10: [io  0x0000-0x00ff]
[  117.273948] pci 0000:19:00.0: reg 18: [mem 0x00000000-0x00000fff 64bit pref]
[  117.274017] pci 0000:19:00.0: reg 20: [mem 0x00000000-0x00003fff 64bit pref]
[  117.274322] pci 0000:19:00.0: supports D1 D2
[  117.274325] pci 0000:19:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  117.274629] pci 0000:18:00.0: PCI bridge to [bus 19]
[  117.274650] pci 0000:18:00.0:   bridge window [io  0x4000-0x4fff]
[  117.274679] pci 0000:18:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[  117.276197] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:1a:00
[  117.276431] acpiphp: Slot [1-4] registered
[  117.276515] pci 0000:1a:00.0: [11ab:6121] type 00 class 0x01018f
[  117.276573] pci 0000:1a:00.0: reg 10: [io  0x8000-0x8007]
[  117.276612] pci 0000:1a:00.0: reg 14: [io  0x8040-0x8043]
[  117.276652] pci 0000:1a:00.0: reg 18: [io  0x8200-0x8207]
[  117.276692] pci 0000:1a:00.0: reg 1c: [io  0x8800-0x8803]
[  117.276731] pci 0000:1a:00.0: reg 20: [io  0x900000-0x90000f]
[  117.276845] pci 0000:1a:00.0: reg 24: [mem 0x00800000-0x008003ff]
[  117.277113] pci 0000:1a:00.0: supports D1
[  117.277116] pci 0000:1a:00.0: PME# supported from D0 D1 D3hot
[  117.277505] pci 0000:18:01.0: PCI bridge to [bus 1a]
[  117.277529] pci 0000:18:01.0:   bridge window [io  0x3000-0x3fff]
[  117.277543] pci 0000:18:01.0:   bridge window [mem 0xc0100000-0xc01fffff]
[  117.278558] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:1b:00
[  117.278615] acpiphp: Slot [1-5] registered
[  117.278717] pci 0000:1b:00.0: [1033:0194] type 00 class 0x0c0330
[  117.278810] pci 0000:1b:00.0: reg 10: [mem 0x00000000-0x00001fff 64bit]
[  117.279247] pci 0000:1b:00.0: PME# supported from D0 D3hot D3cold
[  117.280019] pci 0000:18:02.0: PCI bridge to [bus 1b]
[  117.280053] pci 0000:18:02.0:   bridge window [mem 0xc0000000-0xc00fffff]
[  117.280377] pci 0000:18:03.0: PCI bridge to [bus 1c]
[  117.280714] pci 0000:18:04.0: PCI bridge to [bus 1d]
[  117.281322] pci 0000:08:00.0: BAR 15: can't assign mem pref (size 0x28000000)
[  117.281324] pci 0000:08:00.0: BAR 14: assigned [mem 0xb0000000-0xc06fffff]
[  117.281327] pci 0000:08:00.0: BAR 13: can't assign io (size 0xb000)
[  117.281331] pci 0000:0a:04.0: BAR 15: can't assign mem pref (size 0x20000000)
[  117.281333] pci 0000:0a:00.0: BAR 14: assigned [mem 0xb0000000-0xb01fffff]
[  117.281335] pci 0000:0a:00.0: BAR 15: assigned [mem 0xb0200000-0xb03fffff 64bit pref]
[  117.281337] pci 0000:0a:03.0: BAR 14: assigned [mem 0xb0400000-0xb05fffff]
[  117.281339] pci 0000:0a:03.0: BAR 15: assigned [mem 0xb0600000-0xb07fffff 64bit pref]
[  117.281341] pci 0000:0a:04.0: BAR 14: can't assign mem (size 0x10300000)
[  117.281343] pci 0000:0a:00.0: BAR 13: can't assign io (size 0x1000)
[  117.281344] pci 0000:0a:03.0: BAR 13: can't assign io (size 0x1000)
[  117.281346] pci 0000:0a:04.0: BAR 13: can't assign io (size 0x8000)
[  117.281349] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[  117.281356] pci 0000:0a:00.0:   bridge window [mem 0xb0000000-0xb01fffff]
[  117.281363] pci 0000:0a:00.0:   bridge window [mem 0xb0200000-0xb03fffff 64bit pref]
[  117.281372] pci 0000:0a:03.0: PCI bridge to [bus 0c]
[  117.281379] pci 0000:0a:03.0:   bridge window [mem 0xb0400000-0xb05fffff]
[  117.281385] pci 0000:0a:03.0:   bridge window [mem 0xb0600000-0xb07fffff 64bit pref]
[  117.281395] pci 0000:14:00.0: BAR 15: can't assign mem pref (size 0x20000000)
[  117.281397] pci 0000:14:00.0: BAR 14: can't assign mem (size 0x10300000)
[  117.281398] pci 0000:14:00.0: BAR 13: can't assign io (size 0x7000)
[  117.281401] pci 0000:15:03.0: BAR 15: can't assign mem pref (size 0x18000000)
[  117.281403] pci 0000:15:03.0: BAR 14: can't assign mem (size 0x200000)
[  117.281404] pci 0000:15:04.0: BAR 14: can't assign mem (size 0xa00000)
[  117.281406] pci 0000:15:04.0: BAR 15: can't assign mem pref (size 0xa00000)
[  117.281407] pci 0000:15:03.0: BAR 13: can't assign io (size 0x1000)
[  117.281409] pci 0000:15:04.0: BAR 13: can't assign io (size 0x6000)
[  117.281412] pci 0000:16:00.0: BAR 0: can't assign mem pref (size 0x10000000)
[  117.281414] pci 0000:16:00.0: BAR 2: can't assign mem (size 0x20000)
[  117.281415] pci 0000:16:00.0: BAR 6: can't assign mem pref (size 0x20000)
[  117.281417] pci 0000:16:00.1: BAR 0: can't assign mem (size 0x4000)
[  117.281419] pci 0000:16:00.0: BAR 4: can't assign io (size 0x100)
[  117.281421] pci 0000:15:03.0: PCI bridge to [bus 16]
[  117.281453] pci 0000:17:00.0: BAR 14: can't assign mem (size 0xa00000)
[  117.281455] pci 0000:17:00.0: BAR 15: can't assign mem pref (size 0xa00000)
[  117.281457] pci 0000:17:00.0: BAR 13: can't assign io (size 0x5000)
[  117.281461] pci 0000:18:00.0: BAR 14: can't assign mem (size 0x200000)
[  117.281462] pci 0000:18:00.0: BAR 15: can't assign mem pref (size 0x200000)
[  117.281464] pci 0000:18:01.0: BAR 14: can't assign mem (size 0x200000)
[  117.281466] pci 0000:18:01.0: BAR 15: can't assign mem pref (size 0x200000)
[  117.281467] pci 0000:18:02.0: BAR 14: can't assign mem (size 0x200000)
[  117.281469] pci 0000:18:02.0: BAR 15: can't assign mem pref (size 0x200000)
[  117.281470] pci 0000:18:03.0: BAR 14: can't assign mem (size 0x200000)
[  117.281472] pci 0000:18:03.0: BAR 15: can't assign mem pref (size 0x200000)
[  117.281473] pci 0000:18:04.0: BAR 14: can't assign mem (size 0x200000)
[  117.281475] pci 0000:18:04.0: BAR 15: can't assign mem pref (size 0x200000)
[  117.281476] pci 0000:18:00.0: BAR 13: can't assign io (size 0x1000)
[  117.281478] pci 0000:18:01.0: BAR 13: can't assign io (size 0x1000)
[  117.281479] pci 0000:18:02.0: BAR 13: can't assign io (size 0x1000)
[  117.281481] pci 0000:18:03.0: BAR 13: can't assign io (size 0x1000)
[  117.281483] pci 0000:18:04.0: BAR 13: can't assign io (size 0x1000)
[  117.281487] pci 0000:19:00.0: BAR 4: can't assign mem pref (size 0x4000)
[  117.281488] pci 0000:19:00.0: BAR 2: can't assign mem pref (size 0x1000)
[  117.281490] pci 0000:19:00.0: BAR 0: can't assign io (size 0x100)
[  117.281492] pci 0000:18:00.0: PCI bridge to [bus 19]
[  117.281536] pci 0000:1a:00.0: BAR 5: can't assign mem (size 0x400)
[  117.281537] pci 0000:1a:00.0: BAR 4: can't assign io (size 0x10)
[  117.281539] pci 0000:1a:00.0: BAR 0: can't assign io (size 0x8)
[  117.281540] pci 0000:1a:00.0: BAR 2: can't assign io (size 0x8)
[  117.281542] pci 0000:1a:00.0: BAR 1: can't assign io (size 0x4)
[  117.281543] pci 0000:1a:00.0: BAR 3: can't assign io (size 0x4)
[  117.281545] pci 0000:18:01.0: PCI bridge to [bus 1a]
[  117.281588] pci 0000:1b:00.0: BAR 0: can't assign mem (size 0x2000)
[  117.281590] pci 0000:18:02.0: PCI bridge to [bus 1b]
[  117.281632] pci 0000:18:03.0: PCI bridge to [bus 1c]
[  117.281674] pci 0000:18:04.0: PCI bridge to [bus 1d]
[  117.281717] pci 0000:17:00.0: PCI bridge to [bus 18-1d]
[  117.281776] pci 0000:15:04.0: PCI bridge to [bus 17-1d]
[  117.281808] pci 0000:14:00.0: PCI bridge to [bus 15-1d]
[  117.281841] pci 0000:0a:04.0: PCI bridge to [bus 14-1d]
[  117.281863] pci 0000:08:00.0: PCI bridge to [bus 0a-1d]
[  117.281872] pci 0000:08:00.0:   bridge window [mem 0xb0000000-0xc06fffff]
[  117.281894] pci 0000:08:00.0: no hotplug settings from platform
[  117.281904] pci 0000:0a:00.0: no hotplug settings from platform
[  117.281913] pci 0000:0a:03.0: no hotplug settings from platform
[  117.281922] pci 0000:0a:04.0: no hotplug settings from platform
[  117.281934] pci 0000:14:00.0: no hotplug settings from platform
[  117.281949] pci 0000:15:03.0: no hotplug settings from platform
[  117.281966] pci 0000:16:00.0: no hotplug settings from platform
[  117.281982] pci 0000:16:00.1: no hotplug settings from platform
[  117.281997] pci 0000:15:04.0: no hotplug settings from platform
[  117.282014] pci 0000:17:00.0: no hotplug settings from platform
[  117.282034] pci 0000:18:00.0: no hotplug settings from platform
[  117.282056] pci 0000:19:00.0: no hotplug settings from platform
[  117.282076] pci 0000:18:01.0: no hotplug settings from platform
[  117.282098] pci 0000:1a:00.0: no hotplug settings from platform
[  117.282117] pci 0000:18:02.0: no hotplug settings from platform
[  117.282139] pci 0000:1b:00.0: no hotplug settings from platform
[  117.282159] pci 0000:18:03.0: no hotplug settings from platform
[  117.282178] pci 0000:18:04.0: no hotplug settings from platform
[  117.283016] pcieport 0000:08:00.0: irq 52 for MSI/MSI-X
[  117.283383] pcieport 0000:0a:00.0: irq 53 for MSI/MSI-X
[  117.283613] pcieport 0000:0a:03.0: irq 54 for MSI/MSI-X
[  117.283903] pcieport 0000:0a:04.0: irq 55 for MSI/MSI-X
[  117.284213] pcieport 0000:14:00.0: irq 56 for MSI/MSI-X
[  117.284503] pcieport 0000:15:03.0: irq 57 for MSI/MSI-X
[  117.284835] pcieport 0000:15:04.0: irq 58 for MSI/MSI-X
[  117.285374] hda-intel 0000:16:00.1: Handle VGA-switcheroo audio client
[  117.285392] ------------[ cut here ]------------
[  117.285399] WARNING: at drivers/pci/pci.c:130 pci_ioremap_bar+0x69/0x70()
[  117.285401] Modules linked in: ata_generic pata_acpi pata_marvell fuse zram(C) rfcomm bnep snd_hda_codec_hdmi snd_hda_codec_realtek rtsx_pci_ms rtsx_pci_sdmmc memstick mmc_core iTCO_wdt iTCO_vendor_support arc4 uvcvideo iwldvm videobuf2_vmalloc videobuf2_memops mac80211 qcserial videobuf2_core usb_wwan videodev media usbserial btusb bluetooth iwlwifi coretemp kvm_intel kvm sony_laptop cfg80211 snd_hda_intel snd_hda_codec rfkill i915 pcspkr r8169 joydev mii rtsx_pci snd_hwdep intel_agp snd_pcm intel_gtt i2c_algo_bit snd_page_alloc drm_kms_helper snd_timer drm lpc_ich snd agpgart i2c_i801 mfd_core sha256_ssse3 sha256_generic dm_crypt raid0 md_mod crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 glue_helper lrw gf128mul ablk_helper cryptd xhci_hcd ehci_pci ehci_hcd dm_mirror dm_region_hash
[  117.285478]  dm_log dm_mod [last unloaded: microcode]
[  117.285484] CPU: 0 PID: 40 Comm: kworker/0:1 Tainted: G        WC   3.10.0-rc4 #7
[  117.285487] Hardware name: Sony Corporation VPCZ23A4R/VAIO, BIOS R1013H5 05/21/2012
[  117.285491] Workqueue: kacpi_hotplug _handle_hotplug_event_bridge
[  117.285494]  ffffffff81a2a114 ffff880253d3f808 ffffffff8165aab8 ffff880253d3f848
[  117.285500]  ffffffff8103c8cb ffff880253d3f828 ffff880253ca4000 ffff88022eb0b000
[  117.285505]  0000000000000000 ffff880253ca3800 0000000000000001 ffff880253d3f858
[  117.285510] Call Trace:
[  117.285517]  [<ffffffff8165aab8>] dump_stack+0x19/0x1b
[  117.285522]  [<ffffffff8103c8cb>] warn_slowpath_common+0x6b/0xa0
[  117.285526]  [<ffffffff8103c915>] warn_slowpath_null+0x15/0x20
[  117.285530]  [<ffffffff813831e9>] pci_ioremap_bar+0x69/0x70
[  117.285536]  [<ffffffffa0388bd6>] azx_first_init+0x56/0x600 [snd_hda_intel]
[  117.285541]  [<ffffffff813868ef>] ? pci_get_domain_bus_and_slot+0x2f/0x70
[  117.285546]  [<ffffffffa038ad25>] azx_probe+0x555/0x940 [snd_hda_intel]
[  117.285551]  [<ffffffff810a1a1d>] ? trace_hardirqs_on+0xd/0x10
[  117.285555]  [<ffffffff81384f66>] local_pci_probe+0x46/0x80
[  117.285559]  [<ffffffff813857d9>] pci_device_probe+0xf9/0x120
[  117.285566]  [<ffffffff8143c2c6>] driver_probe_device+0x76/0x220
[  117.285570]  [<ffffffff8143c56b>] __device_attach+0x4b/0x60
[  117.285574]  [<ffffffff8143c520>] ? __driver_attach+0xb0/0xb0
[  117.285578]  [<ffffffff8143a61c>] bus_for_each_drv+0x5c/0x90
[  117.285582]  [<ffffffff8143c218>] device_attach+0x98/0xb0
[  117.285587]  [<ffffffff8137d8d4>] pci_bus_add_device+0x34/0x60
[  117.285590]  [<ffffffff8137d939>] pci_bus_add_devices+0x39/0xa0
[  117.285594]  [<ffffffff8137d987>] pci_bus_add_devices+0x87/0xa0
[  117.285597]  [<ffffffff8137d987>] pci_bus_add_devices+0x87/0xa0
[  117.285601]  [<ffffffff8137d987>] pci_bus_add_devices+0x87/0xa0
[  117.285604]  [<ffffffff8137d987>] pci_bus_add_devices+0x87/0xa0
[  117.285609]  [<ffffffff816446b0>] enable_device+0x370/0x450
[  117.285614]  [<ffffffff813a0f3a>] acpiphp_enable_slot+0xca/0x140
[  117.285618]  [<ffffffff813a1167>] acpiphp_check_bridge+0x77/0x100
[  117.285622]  [<ffffffff813a165d>] _handle_hotplug_event_bridge+0x13d/0x290
[  117.285628]  [<ffffffff8105c212>] process_one_work+0x1c2/0x560
[  117.285631]  [<ffffffff8105c1a7>] ? process_one_work+0x157/0x560
[  117.285636]  [<ffffffff8105d126>] worker_thread+0x116/0x370
[  117.285639]  [<ffffffff8105d010>] ? manage_workers.isra.20+0x2d0/0x2d0
[  117.285644]  [<ffffffff81063986>] kthread+0xd6/0xe0
[  117.285648]  [<ffffffff81660ccb>] ? _raw_spin_unlock_irq+0x2b/0x60
[  117.285653]  [<ffffffff810638b0>] ? __init_kthread_worker+0x70/0x70
[  117.285658]  [<ffffffff8166806c>] ret_from_fork+0x7c/0xb0
[  117.285662]  [<ffffffff810638b0>] ? __init_kthread_worker+0x70/0x70
[  117.285665] ---[ end trace f366acc9dc87b389 ]---
[  117.285667] hda-intel 0000:16:00.1: ioremap error
[  117.285966] pcieport 0000:17:00.0: irq 59 for MSI/MSI-X
[  117.286353] pcieport 0000:18:00.0: irq 60 for MSI/MSI-X
[  117.286745] pcieport 0000:18:01.0: irq 61 for MSI/MSI-X
[  117.287164] pcieport 0000:18:02.0: irq 62 for MSI/MSI-X
[  117.287578] pcieport 0000:18:03.0: irq 63 for MSI/MSI-X
[  117.288003] pcieport 0000:18:04.0: irq 64 for MSI/MSI-X
[  117.288904] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[  117.289022] r8169 0000:19:00.0 (unregistered net_device): region #2 not an MMIO resource, aborting
[  117.289396] pata_marvell 0000:1a:00.0: no available native port
[  117.289594] pata_acpi 0000:1a:00.0: no available native port
[  117.290123] xhci_hcd 0000:1b:00.0: init 0000:1b:00.0 fail, -16
[  117.290128] xhci_hcd: probe of 0000:1b:00.0 failed with error -16
[  117.290137] acpiphp_glue: acpiphp_check_bridge: 1 enabled, 0 disabled
[  117.290235] ACPI: \_SB_.DOCK: docking
[  117.290455] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB
[  117.290460] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM0
[  117.290465] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM1
[  117.290469] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM2
[  117.290472] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM2.LPRI.LPR0.GFXA
[  117.290486] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM2.LPRI.LPR0.GHDA
[  117.290498] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM2.LPRI.LPR1.LPCI.LPC0.DLAN
[  117.290506] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM2.LPRI.LPR1.LPCI.LPC1.DODD
[  117.290513] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM2.LPRI.LPR1.LPCI.LPC2.DUSB
[  143.410983] acpiphp_glue: __handle_hotplug_event_func: Device eject notify on \_SB_.PCI0.RP07.LPMB
[  143.417808] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=none,decodes=io+mem:owns=none
[  143.422074] pci_bus 0000:0b: busn_res: [bus 0b] is released
[  143.422150] pci_bus 0000:0c: busn_res: [bus 0c] is released
[  143.422212] pci_bus 0000:16: busn_res: [bus 16] is released
[  143.439295] acpiphp: Slot [1-2] unregistered
[  143.439324] acpiphp: release_slot - physical_slot = 1-2
[  143.439424] pci_bus 0000:19: busn_res: [bus 19] is released
[  143.443326] acpiphp: Slot [1-3] unregistered
[  143.443345] acpiphp: release_slot - physical_slot = 1-3
[  143.443476] pci_bus 0000:1a: busn_res: [bus 1a] is released
[  143.449316] acpiphp: Slot [1-4] unregistered
[  143.449349] acpiphp: release_slot - physical_slot = 1-4
[  143.449501] pci_bus 0000:1b: busn_res: [bus 1b] is released
[  143.456336] acpiphp: Slot [1-5] unregistered
[  143.456368] acpiphp: release_slot - physical_slot = 1-5
[  143.456539] pci_bus 0000:1c: busn_res: [bus 1c] is released
[  143.456643] pci_bus 0000:1d: busn_res: [bus 1d] is released
[  143.456786] pci_bus 0000:18: busn_res: [bus 18-1d] is released
[  143.457047] pci_bus 0000:17: busn_res: [bus 17-1d] is released
[  143.457219] pci_bus 0000:15: busn_res: [bus 15-1d] is released
[  143.457351] pci_bus 0000:14: busn_res: [bus 14-1d] is released
[  143.457468] pci_bus 0000:0a: busn_res: [bus 0a-1d] is released
[  143.463311] acpiphp: Slot [1-1] unregistered
[  143.463329] acpiphp: release_slot - physical_slot = 1-1
[  143.469316] acpiphp: Slot [2] unregistered
[  143.469334] acpiphp: release_slot - physical_slot = 2
[  143.474327] acpiphp: Slot [3] unregistered
[  143.474359] acpiphp: release_slot - physical_slot = 3
[  143.475275] ACPI: Device does not support D3cold
[  143.475480] ACPI: Device does not support D3cold
[  143.475916] ACPI: Device does not support D3cold
[  143.476252] ACPI: Device does not support D3cold
[  143.476376] ACPI: Device does not support D3cold
[  143.477513] ACPI: Device does not support D3cold
[  143.477720] ACPI: Device does not support D3cold
[  143.479358] ACPI: Device does not support D3cold
[  143.480263] ACPI: Device does not support D3cold
[  143.480389] ACPI: Device does not support D3cold
[  143.481171] ACPI: Device does not support D3cold
[  143.481470] ACPI: Device does not support D3cold
[  143.481915] ACPI: Device does not support D3cold
[  143.484751] ACPI: Device does not support D3cold
[  143.484830] ACPI: Device does not support D3cold
[  143.485704] ACPI: Device does not support D3cold
[  143.485968] ACPI: Device does not support D3cold
[  143.486066] ACPI: Device does not support D3cold
[  143.486143] ACPI: Device does not support D3cold
[  143.486211] ACPI: Device does not support D3cold
[  143.486312] ACPI: Device does not support D3cold
[  143.486381] ACPI: Device does not support D3cold
[  143.486452] ACPI: Device does not support D3cold
[  143.486519] ACPI: Device does not support D3cold
[  143.486594] ACPI: Device does not support D3cold
[  143.486675] ACPI: Device does not support D3cold
[  143.486746] ACPI: Device does not support D3cold
[  143.486813] ACPI: Device does not support D3cold
[  143.486880] ACPI: Device does not support D3cold
[  143.486947] ACPI: Device does not support D3cold
[  143.487014] ACPI: Device does not support D3cold
[  143.487141] ACPI: Device does not support D3cold
[  143.487148] ACPI: \_SB_.DOCK: undocking
[  143.959463] ACPI: \_SB_.DOCK: docking
[  143.959656] ACPI: \_SB_.DOCK: Unable to dock!
[  143.959664] acpiphp_glue: _handle_hotplug_event_bridge: Bus check notify on \_SB_.PCI0.RP07
[  143.959665] acpiphp_glue: _handle_hotplug_event_bridge: re-enumerating slots under \_SB_.PCI0.RP07
[  143.959670] acpiphp_glue: acpiphp_check_bridge: 0 enabled, 0 disabled
[  147.480929] ata1.00: configured for UDMA/133
[  147.480934] ata1: EH complete
[  147.481145] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[  147.485978] ata2.00: configured for UDMA/133
[  147.485982] ata2: EH complete
[  147.486261] sd 1:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[  147.541075] EXT4-fs (dm-1): re-mounted. Opts: commit=600
[  147.545384] EXT4-fs (md126p1): re-mounted. Opts: commit=600
[  147.547876] EXT4-fs (dm-2): re-mounted. Opts: commit=600
[  147.550509] EXT4-fs (dm-3): re-mounted. Opts: commit=600
[  156.040158] ata1.00: configured for UDMA/133
[  156.040162] ata1: EH complete
[  156.040339] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[  156.043420] ata2.00: configured for UDMA/133
[  156.043424] ata2: EH complete
[  156.043585] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[  156.057205] EXT4-fs (dm-1): re-mounted. Opts: commit=0
[  156.061602] EXT4-fs (md126p1): re-mounted. Opts: commit=0
[  156.064003] EXT4-fs (dm-2): re-mounted. Opts: commit=0
[  156.067140] EXT4-fs (dm-3): re-mounted. Opts: commit=0
[  157.330446] acpiphp_glue: _handle_hotplug_event_bridge: Device check notify on \_SB_.PCI0.RP07
[  157.350245] [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.
[  157.350269] [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.
[  157.350625] [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.
[  157.350733] [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.
[  157.350753] [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.
[  157.350772] [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.
[  157.350876] [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.
[  157.351105] pci 0000:08:00.0: [8086:151b] type 01 class 0x060400
[  157.351275] pci 0000:08:00.0: supports D1 D2
[  157.351277] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  157.356660] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:0a:00
[  157.356730] acpiphp: Slot [1-1] registered
[  157.356764] acpiphp_glue: found ACPI PCI Hotplug slot 2 at PCI 0000:0a:03
[  157.356825] acpiphp: Slot [2] registered
[  157.356855] acpiphp_glue: found ACPI PCI Hotplug slot 3 at PCI 0000:0a:04
[  157.356954] acpiphp: Slot [3] registered
[  157.357004] pci 0000:0a:00.0: [8086:151b] type 01 class 0x060400
[  157.357171] pci 0000:0a:00.0: supports D1 D2
[  157.357174] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  157.358291] pci 0000:0a:03.0: [8086:151b] type 01 class 0x060400
[  157.358469] pci 0000:0a:03.0: supports D1 D2
[  157.358471] pci 0000:0a:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[  157.359069] pci 0000:0a:04.0: [8086:151b] type 01 class 0x060400
[  157.359234] pci 0000:0a:04.0: supports D1 D2
[  157.359236] pci 0000:0a:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[  157.359417] pci 0000:08:00.0: PCI bridge to [bus 0a-1d]
[  157.359431] pci 0000:08:00.0:   bridge window [io  0x3000-0x5fff]
[  157.359439] pci 0000:08:00.0:   bridge window [mem 0xb0000000-0xc03fffff]
[  157.359453] pci 0000:08:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[  157.359581] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[  157.359596] pci 0000:0a:00.0:   bridge window [mem 0xc0300000-0xc03fffff]
[  157.359726] pci 0000:0a:03.0: PCI bridge to [bus 0c]
[  157.359916] pci 0000:14:00.0: [8086:151b] type 01 class 0x060400
[  157.360147] pci 0000:14:00.0: supports D1 D2
[  157.360149] pci 0000:14:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  157.360305] pci 0000:0a:04.0: PCI bridge to [bus 14-1d]
[  157.360314] pci 0000:0a:04.0:   bridge window [io  0x3000-0x5fff]
[  157.360320] pci 0000:0a:04.0:   bridge window [mem 0xb0000000-0xc02fffff]
[  157.360330] pci 0000:0a:04.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[  157.360568] pci 0000:15:03.0: [8086:151b] type 01 class 0x060400
[  157.360806] pci 0000:15:03.0: supports D1 D2
[  157.360809] pci 0000:15:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[  157.362610] pci 0000:15:04.0: [8086:151b] type 01 class 0x060400
[  157.362850] pci 0000:15:04.0: supports D1 D2
[  157.362853] pci 0000:15:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[  157.363245] pci 0000:14:00.0: PCI bridge to [bus 15-1d]
[  157.363263] pci 0000:14:00.0:   bridge window [io  0x3000-0x5fff]
[  157.363273] pci 0000:14:00.0:   bridge window [mem 0xb0000000-0xc02fffff]
[  157.363292] pci 0000:14:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[  157.363576] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:16:00
[  157.363624] acpiphp: Slot [1-2] registered
[  157.363662] acpiphp_glue: sibling found, but _SUN doesn't match!
[  157.363728] pci 0000:16:00.0: [1002:6740] type 00 class 0x030000
[  157.363797] pci 0000:16:00.0: reg 10: [mem 0x00000000-0x0fffffff 64bit pref]
[  157.363853] pci 0000:16:00.0: reg 18: [mem 0x00000000-0x0001ffff 64bit]
[  157.363888] pci 0000:16:00.0: reg 20: [io  0x0000-0x00ff]
[  157.363952] pci 0000:16:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[  157.364128] pci 0000:16:00.0: supports D1 D2
[  157.365249] vgaarb: device added: PCI:0000:16:00.0,decodes=io+mem,owns=none,locks=none
[  157.365254] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=none
[  157.365322] pci 0000:16:00.1: [1002:aa90] type 00 class 0x040300
[  157.365385] pci 0000:16:00.1: reg 10: [mem 0x00000000-0x00003fff 64bit]
[  157.365706] pci 0000:16:00.1: supports D1 D2
[  157.367455] pci 0000:15:03.0: PCI bridge to [bus 16]
[  157.367472] pci 0000:15:03.0:   bridge window [io  0x5000-0x5fff]
[  157.367482] pci 0000:15:03.0:   bridge window [mem 0xc0200000-0xc02fffff]
[  157.367500] pci 0000:15:03.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
[  157.367761] pci 0000:17:00.0: [8086:151b] type 01 class 0x060400
[  157.368096] pci 0000:17:00.0: supports D1 D2
[  157.368098] pci 0000:17:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  157.368570] pci 0000:15:04.0: PCI bridge to [bus 17-1d]
[  157.368589] pci 0000:15:04.0:   bridge window [io  0x3000-0x4fff]
[  157.368599] pci 0000:15:04.0:   bridge window [mem 0xc0000000-0xc01fffff]
[  157.368617] pci 0000:15:04.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[  157.369018] pci 0000:18:00.0: [8086:151b] type 01 class 0x060400
[  157.369358] pci 0000:18:00.0: supports D1 D2
[  157.369361] pci 0000:18:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  157.369688] pci 0000:18:01.0: [8086:151b] type 01 class 0x060400
[  157.370034] pci 0000:18:01.0: supports D1 D2
[  157.370037] pci 0000:18:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[  157.370345] pci 0000:18:02.0: [8086:151b] type 01 class 0x060400
[  157.370703] pci 0000:18:02.0: supports D1 D2
[  157.370707] pci 0000:18:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[  157.371027] pci 0000:18:03.0: [8086:151b] type 01 class 0x060400
[  157.371365] pci 0000:18:03.0: supports D1 D2
[  157.371367] pci 0000:18:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[  157.372171] pci 0000:18:04.0: [8086:151b] type 01 class 0x060400
[  157.372524] pci 0000:18:04.0: supports D1 D2
[  157.372527] pci 0000:18:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[  157.373029] pci 0000:17:00.0: PCI bridge to [bus 18-1d]
[  157.373050] pci 0000:17:00.0:   bridge window [io  0x3000-0x4fff]
[  157.373061] pci 0000:17:00.0:   bridge window [mem 0xc0000000-0xc01fffff]
[  157.373081] pci 0000:17:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[  157.373438] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:19:00
[  157.373473] acpiphp: Slot [1-3] registered
[  157.373565] pci 0000:19:00.0: [10ec:8168] type 00 class 0x020000
[  157.373628] pci 0000:19:00.0: reg 10: [io  0x0000-0x00ff]
[  157.373740] pci 0000:19:00.0: reg 18: [mem 0x00000000-0x00000fff 64bit pref]
[  157.373808] pci 0000:19:00.0: reg 20: [mem 0x00000000-0x00003fff 64bit pref]
[  157.374111] pci 0000:19:00.0: supports D1 D2
[  157.374114] pci 0000:19:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  157.374545] pci 0000:18:00.0: PCI bridge to [bus 19]
[  157.374566] pci 0000:18:00.0:   bridge window [io  0x4000-0x4fff]
[  157.374596] pci 0000:18:00.0:   bridge window [mem 0xd4400000-0xd44fffff 64bit pref]
[  157.375014] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:1a:00
[  157.375086] acpiphp: Slot [1-4] registered
[  157.375171] pci 0000:1a:00.0: [11ab:6121] type 00 class 0x01018f
[  157.375231] pci 0000:1a:00.0: reg 10: [io  0x8000-0x8007]
[  157.375274] pci 0000:1a:00.0: reg 14: [io  0x8040-0x8043]
[  157.375314] pci 0000:1a:00.0: reg 18: [io  0x8200-0x8207]
[  157.375357] pci 0000:1a:00.0: reg 1c: [io  0x8800-0x8803]
[  157.375402] pci 0000:1a:00.0: reg 20: [io  0x900000-0x90000f]
[  157.375456] pci 0000:1a:00.0: reg 24: [mem 0x00800000-0x008003ff]
[  157.375725] pci 0000:1a:00.0: supports D1
[  157.375728] pci 0000:1a:00.0: PME# supported from D0 D1 D3hot
[  157.376757] pci 0000:18:01.0: PCI bridge to [bus 1a]
[  157.376780] pci 0000:18:01.0:   bridge window [io  0x3000-0x3fff]
[  157.376794] pci 0000:18:01.0:   bridge window [mem 0xc0100000-0xc01fffff]
[  157.377119] acpiphp_glue: found ACPI PCI Hotplug slot 1 at PCI 0000:1b:00
[  157.377198] acpiphp: Slot [1-5] registered
[  157.377299] pci 0000:1b:00.0: [1033:0194] type 00 class 0x0c0330
[  157.377383] pci 0000:1b:00.0: reg 10: [mem 0x00000000-0x00001fff 64bit]
[  157.377861] pci 0000:1b:00.0: PME# supported from D0 D3hot D3cold
[  157.378220] pci 0000:18:02.0: PCI bridge to [bus 1b]
[  157.378254] pci 0000:18:02.0:   bridge window [mem 0xc0000000-0xc00fffff]
[  157.378604] pci 0000:18:03.0: PCI bridge to [bus 1c]
[  157.378933] pci 0000:18:04.0: PCI bridge to [bus 1d]
[  157.379525] pci 0000:08:00.0: BAR 15: can't assign mem pref (size 0x28000000)
[  157.379528] pci 0000:08:00.0: BAR 14: assigned [mem 0xb0000000-0xc06fffff]
[  157.379530] pci 0000:08:00.0: BAR 13: can't assign io (size 0xb000)
[  157.379535] pci 0000:0a:04.0: BAR 15: can't assign mem pref (size 0x20000000)
[  157.379537] pci 0000:0a:00.0: BAR 14: assigned [mem 0xb0000000-0xb01fffff]
[  157.379539] pci 0000:0a:00.0: BAR 15: assigned [mem 0xb0200000-0xb03fffff 64bit pref]
[  157.379541] pci 0000:0a:03.0: BAR 14: assigned [mem 0xb0400000-0xb05fffff]
[  157.379543] pci 0000:0a:03.0: BAR 15: assigned [mem 0xb0600000-0xb07fffff 64bit pref]
[  157.379545] pci 0000:0a:04.0: BAR 14: can't assign mem (size 0x10300000)
[  157.379547] pci 0000:0a:00.0: BAR 13: can't assign io (size 0x1000)
[  157.379548] pci 0000:0a:03.0: BAR 13: can't assign io (size 0x1000)
[  157.379550] pci 0000:0a:04.0: BAR 13: can't assign io (size 0x8000)
[  157.379553] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[  157.379561] pci 0000:0a:00.0:   bridge window [mem 0xb0000000-0xb01fffff]
[  157.379567] pci 0000:0a:00.0:   bridge window [mem 0xb0200000-0xb03fffff 64bit pref]
[  157.379578] pci 0000:0a:03.0: PCI bridge to [bus 0c]
[  157.379586] pci 0000:0a:03.0:   bridge window [mem 0xb0400000-0xb05fffff]
[  157.379592] pci 0000:0a:03.0:   bridge window [mem 0xb0600000-0xb07fffff 64bit pref]
[  157.379604] pci 0000:14:00.0: BAR 15: can't assign mem pref (size 0x20000000)
[  157.379605] pci 0000:14:00.0: BAR 14: can't assign mem (size 0x10300000)
[  157.379607] pci 0000:14:00.0: BAR 13: can't assign io (size 0x7000)
[  157.379610] pci 0000:15:03.0: BAR 15: can't assign mem pref (size 0x18000000)
[  157.379612] pci 0000:15:03.0: BAR 14: can't assign mem (size 0x200000)
[  157.379614] pci 0000:15:04.0: BAR 14: can't assign mem (size 0xa00000)
[  157.379615] pci 0000:15:04.0: BAR 15: can't assign mem pref (size 0xa00000)
[  157.379617] pci 0000:15:03.0: BAR 13: can't assign io (size 0x1000)
[  157.379619] pci 0000:15:04.0: BAR 13: can't assign io (size 0x6000)
[  157.379622] pci 0000:16:00.0: BAR 0: can't assign mem pref (size 0x10000000)
[  157.379623] pci 0000:16:00.0: BAR 2: can't assign mem (size 0x20000)
[  157.379625] pci 0000:16:00.0: BAR 6: can't assign mem pref (size 0x20000)
[  157.379627] pci 0000:16:00.1: BAR 0: can't assign mem (size 0x4000)
[  157.379628] pci 0000:16:00.0: BAR 4: can't assign io (size 0x100)
[  157.379630] pci 0000:15:03.0: PCI bridge to [bus 16]
[  157.379663] pci 0000:17:00.0: BAR 14: can't assign mem (size 0xa00000)
[  157.379665] pci 0000:17:00.0: BAR 15: can't assign mem pref (size 0xa00000)
[  157.379666] pci 0000:17:00.0: BAR 13: can't assign io (size 0x5000)
[  157.379671] pci 0000:18:00.0: BAR 14: can't assign mem (size 0x200000)
[  157.379672] pci 0000:18:00.0: BAR 15: can't assign mem pref (size 0x200000)
[  157.379674] pci 0000:18:01.0: BAR 14: can't assign mem (size 0x200000)
[  157.379676] pci 0000:18:01.0: BAR 15: can't assign mem pref (size 0x200000)
[  157.379677] pci 0000:18:02.0: BAR 14: can't assign mem (size 0x200000)
[  157.379679] pci 0000:18:02.0: BAR 15: can't assign mem pref (size 0x200000)
[  157.379680] pci 0000:18:03.0: BAR 14: can't assign mem (size 0x200000)
[  157.379682] pci 0000:18:03.0: BAR 15: can't assign mem pref (size 0x200000)
[  157.379684] pci 0000:18:04.0: BAR 14: can't assign mem (size 0x200000)
[  157.379685] pci 0000:18:04.0: BAR 15: can't assign mem pref (size 0x200000)
[  157.379687] pci 0000:18:00.0: BAR 13: can't assign io (size 0x1000)
[  157.379688] pci 0000:18:01.0: BAR 13: can't assign io (size 0x1000)
[  157.379690] pci 0000:18:02.0: BAR 13: can't assign io (size 0x1000)
[  157.379691] pci 0000:18:03.0: BAR 13: can't assign io (size 0x1000)
[  157.379693] pci 0000:18:04.0: BAR 13: can't assign io (size 0x1000)
[  157.379697] pci 0000:19:00.0: BAR 4: can't assign mem pref (size 0x4000)
[  157.379699] pci 0000:19:00.0: BAR 2: can't assign mem pref (size 0x1000)
[  157.379700] pci 0000:19:00.0: BAR 0: can't assign io (size 0x100)
[  157.379702] pci 0000:18:00.0: PCI bridge to [bus 19]
[  157.379746] pci 0000:1a:00.0: BAR 5: can't assign mem (size 0x400)
[  157.379748] pci 0000:1a:00.0: BAR 4: can't assign io (size 0x10)
[  157.379750] pci 0000:1a:00.0: BAR 0: can't assign io (size 0x8)
[  157.379751] pci 0000:1a:00.0: BAR 2: can't assign io (size 0x8)
[  157.379752] pci 0000:1a:00.0: BAR 1: can't assign io (size 0x4)
[  157.379754] pci 0000:1a:00.0: BAR 3: can't assign io (size 0x4)
[  157.379756] pci 0000:18:01.0: PCI bridge to [bus 1a]
[  157.379800] pci 0000:1b:00.0: BAR 0: can't assign mem (size 0x2000)
[  157.379802] pci 0000:18:02.0: PCI bridge to [bus 1b]
[  157.379844] pci 0000:18:03.0: PCI bridge to [bus 1c]
[  157.379886] pci 0000:18:04.0: PCI bridge to [bus 1d]
[  157.379930] pci 0000:17:00.0: PCI bridge to [bus 18-1d]
[  157.379972] pci 0000:15:04.0: PCI bridge to [bus 17-1d]
[  157.380004] pci 0000:14:00.0: PCI bridge to [bus 15-1d]
[  157.380036] pci 0000:0a:04.0: PCI bridge to [bus 14-1d]
[  157.380059] pci 0000:08:00.0: PCI bridge to [bus 0a-1d]
[  157.380067] pci 0000:08:00.0:   bridge window [mem 0xb0000000-0xc06fffff]
[  157.380091] pci 0000:08:00.0: no hotplug settings from platform
[  157.380100] pci 0000:0a:00.0: no hotplug settings from platform
[  157.380110] pci 0000:0a:03.0: no hotplug settings from platform
[  157.380119] pci 0000:0a:04.0: no hotplug settings from platform
[  157.380131] pci 0000:14:00.0: no hotplug settings from platform
[  157.380145] pci 0000:15:03.0: no hotplug settings from platform
[  157.380162] pci 0000:16:00.0: no hotplug settings from platform
[  157.380179] pci 0000:16:00.1: no hotplug settings from platform
[  157.380194] pci 0000:15:04.0: no hotplug settings from platform
[  157.380211] pci 0000:17:00.0: no hotplug settings from platform
[  157.380230] pci 0000:18:00.0: no hotplug settings from platform
[  157.380252] pci 0000:19:00.0: no hotplug settings from platform
[  157.380272] pci 0000:18:01.0: no hotplug settings from platform
[  157.380294] pci 0000:1a:00.0: no hotplug settings from platform
[  157.380313] pci 0000:18:02.0: no hotplug settings from platform
[  157.380336] pci 0000:1b:00.0: no hotplug settings from platform
[  157.380355] pci 0000:18:03.0: no hotplug settings from platform
[  157.380374] pci 0000:18:04.0: no hotplug settings from platform
[  157.381247] pcieport 0000:08:00.0: irq 52 for MSI/MSI-X
[  157.381456] pcieport 0000:0a:00.0: irq 53 for MSI/MSI-X
[  157.381680] pcieport 0000:0a:03.0: irq 54 for MSI/MSI-X
[  157.381898] pcieport 0000:0a:04.0: irq 55 for MSI/MSI-X
[  157.382153] pcieport 0000:14:00.0: irq 56 for MSI/MSI-X
[  157.382673] pcieport 0000:15:03.0: irq 57 for MSI/MSI-X
[  157.382948] pcieport 0000:15:04.0: irq 58 for MSI/MSI-X
[  157.383379] hda-intel 0000:16:00.1: Handle VGA-switcheroo audio client
[  157.383390] ------------[ cut here ]------------
[  157.383396] WARNING: at drivers/pci/pci.c:130 pci_ioremap_bar+0x69/0x70()
[  157.383397] Modules linked in: ata_generic pata_acpi pata_marvell fuse zram(C) rfcomm bnep snd_hda_codec_hdmi snd_hda_codec_realtek rtsx_pci_ms rtsx_pci_sdmmc memstick mmc_core iTCO_wdt iTCO_vendor_support arc4 uvcvideo iwldvm videobuf2_vmalloc videobuf2_memops mac80211 qcserial videobuf2_core usb_wwan videodev media usbserial btusb bluetooth iwlwifi coretemp kvm_intel kvm sony_laptop cfg80211 snd_hda_intel snd_hda_codec rfkill i915 pcspkr r8169 joydev mii rtsx_pci snd_hwdep intel_agp snd_pcm intel_gtt i2c_algo_bit snd_page_alloc drm_kms_helper snd_timer drm lpc_ich snd agpgart i2c_i801 mfd_core sha256_ssse3 sha256_generic dm_crypt raid0 md_mod crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 glue_helper lrw gf128mul ablk_helper cryptd xhci_hcd ehci_pci ehci_hcd dm_mirror dm_region_hash
[  157.383462]  dm_log dm_mod [last unloaded: microcode]
[  157.383469] CPU: 0 PID: 40 Comm: kworker/0:1 Tainted: G        WC   3.10.0-rc4 #7
[  157.383473] Hardware name: Sony Corporation VPCZ23A4R/VAIO, BIOS R1013H5 05/21/2012
[  157.383478] Workqueue: kacpi_hotplug _handle_hotplug_event_bridge
[  157.383481]  ffffffff81a2a114 ffff880253d3f808 ffffffff8165aab8 ffff880253d3f848
[  157.383487]  ffffffff8103c8cb ffff880253d3f828 ffff880253152800 ffff88022eb09000
[  157.383494]  0000000000000000 ffff880253153000 0000000000000001 ffff880253d3f858
[  157.383500] Call Trace:
[  157.383507]  [<ffffffff8165aab8>] dump_stack+0x19/0x1b
[  157.383513]  [<ffffffff8103c8cb>] warn_slowpath_common+0x6b/0xa0
[  157.383519]  [<ffffffff8103c915>] warn_slowpath_null+0x15/0x20
[  157.383524]  [<ffffffff813831e9>] pci_ioremap_bar+0x69/0x70
[  157.383532]  [<ffffffffa0388bd6>] azx_first_init+0x56/0x600 [snd_hda_intel]
[  157.383536]  [<ffffffff813868ef>] ? pci_get_domain_bus_and_slot+0x2f/0x70
[  157.383540]  [<ffffffffa038ad25>] azx_probe+0x555/0x940 [snd_hda_intel]
[  157.383543]  [<ffffffff810a1a1d>] ? trace_hardirqs_on+0xd/0x10
[  157.383546]  [<ffffffff81384f66>] local_pci_probe+0x46/0x80
[  157.383549]  [<ffffffff813857d9>] pci_device_probe+0xf9/0x120
[  157.383554]  [<ffffffff8143c2c6>] driver_probe_device+0x76/0x220
[  157.383556]  [<ffffffff8143c56b>] __device_attach+0x4b/0x60
[  157.383559]  [<ffffffff8143c520>] ? __driver_attach+0xb0/0xb0
[  157.383561]  [<ffffffff8143a61c>] bus_for_each_drv+0x5c/0x90
[  157.383564]  [<ffffffff8143c218>] device_attach+0x98/0xb0
[  157.383566]  [<ffffffff8137d8d4>] pci_bus_add_device+0x34/0x60
[  157.383569]  [<ffffffff8137d939>] pci_bus_add_devices+0x39/0xa0
[  157.383571]  [<ffffffff8137d987>] pci_bus_add_devices+0x87/0xa0
[  157.383573]  [<ffffffff8137d987>] pci_bus_add_devices+0x87/0xa0
[  157.383575]  [<ffffffff8137d987>] pci_bus_add_devices+0x87/0xa0
[  157.383577]  [<ffffffff8137d987>] pci_bus_add_devices+0x87/0xa0
[  157.383580]  [<ffffffff816446b0>] enable_device+0x370/0x450
[  157.383583]  [<ffffffff813a0f3a>] acpiphp_enable_slot+0xca/0x140
[  157.383585]  [<ffffffff813a1167>] acpiphp_check_bridge+0x77/0x100
[  157.383587]  [<ffffffff813a165d>] _handle_hotplug_event_bridge+0x13d/0x290
[  157.383591]  [<ffffffff8105c212>] process_one_work+0x1c2/0x560
[  157.383594]  [<ffffffff8105c1a7>] ? process_one_work+0x157/0x560
[  157.383596]  [<ffffffff8105d126>] worker_thread+0x116/0x370
[  157.383598]  [<ffffffff8105d010>] ? manage_workers.isra.20+0x2d0/0x2d0
[  157.383601]  [<ffffffff81063986>] kthread+0xd6/0xe0
[  157.383604]  [<ffffffff81660ccb>] ? _raw_spin_unlock_irq+0x2b/0x60
[  157.383607]  [<ffffffff810638b0>] ? __init_kthread_worker+0x70/0x70
[  157.383610]  [<ffffffff8166806c>] ret_from_fork+0x7c/0xb0
[  157.383613]  [<ffffffff810638b0>] ? __init_kthread_worker+0x70/0x70
[  157.383614] ---[ end trace f366acc9dc87b38a ]---
[  157.383616] hda-intel 0000:16:00.1: ioremap error
[  157.383816] pcieport 0000:17:00.0: irq 59 for MSI/MSI-X
[  157.384146] pcieport 0000:18:00.0: irq 60 for MSI/MSI-X
[  157.384519] pcieport 0000:18:01.0: irq 61 for MSI/MSI-X
[  157.384913] pcieport 0000:18:02.0: irq 62 for MSI/MSI-X
[  157.385273] pcieport 0000:18:03.0: irq 63 for MSI/MSI-X
[  157.385646] pcieport 0000:18:04.0: irq 64 for MSI/MSI-X
[  157.385977] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[  157.386061] r8169 0000:19:00.0 (unregistered net_device): region #2 not an MMIO resource, aborting
[  157.386614] pata_marvell 0000:1a:00.0: no available native port
[  157.386749] pata_acpi 0000:1a:00.0: no available native port
[  157.387111] xhci_hcd 0000:1b:00.0: init 0000:1b:00.0 fail, -16
[  157.387115] xhci_hcd: probe of 0000:1b:00.0 failed with error -16
[  157.387123] acpiphp_glue: acpiphp_check_bridge: 1 enabled, 0 disabled
[  157.387162] ACPI: \_SB_.DOCK: docking
[  157.387401] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB
[  157.387406] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM0
[  157.387410] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM1
[  157.387414] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM2
[  157.387418] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM2.LPRI.LPR0.GFXA
[  157.387432] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM2.LPRI.LPR0.GHDA
[  157.387459] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM2.LPRI.LPR1.LPCI.LPC0.DLAN
[  157.387469] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM2.LPRI.LPR1.LPCI.LPC1.DODD
[  157.387478] acpiphp_glue: __handle_hotplug_event_func: Bus check notify on \_SB_.PCI0.RP07.LPMB.LPM2.LPRI.LPR1.LPCI.LPC2.DUSB

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] ACPIPHP: fix device destroying order issue in handling dock notification
  2013-06-11 16:51         ` Alexander E. Patrakov
@ 2013-06-12  2:49           ` Jiang Liu
  2013-06-12  3:44             ` Alexander E. Patrakov
  2013-06-12 18:37             ` Alexander E. Patrakov
  0 siblings, 2 replies; 10+ messages in thread
From: Jiang Liu @ 2013-06-12  2:49 UTC (permalink / raw)
  To: Alexander E. Patrakov
  Cc: Jiang Liu, Bjorn Helgaas, Yinghai Lu, Rafael J. Wysocki,
	linux-pci, linux-kernel

On Wed 12 Jun 2013 12:51:59 AM CST, Alexander E. Patrakov wrote:
> 2013/6/11 Jiang Liu <liuj97@gmail.com>:
>> Hi Alexander,
>>     This is much more harder issue to resolve.  Let's first work around
>> this
>> issue and check whether other things are OK. The patch below is just a
>> prove of concept, could you please help to try it?
>
> In the initially-undocked case it passes the "dock and undock three
> times, verify lspci output at each step" test.
>
> In the initially-docked case, it exhibits the following problem: when
> I press the undock button, only one PCI device disappears, and the
> "docked" LED does not turn off. Additionally, there is a hung task.
Hi Alexander,
     In the initially-docked case, the failure is caused by an issue in
the intel sound card driver. Seems something is wrong with reference
count management and it never returns to zero on driver detach.
Could you please help to disable the Intel sound card driver and try
again?

I'm not familiar with Intel HDA driver,  so please help to fire another
bug for it.

Regards!
Gerry

>
> Both dmesgs are attached.
>



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] ACPIPHP: fix device destroying order issue in handling dock notification
  2013-06-12  2:49           ` Jiang Liu
@ 2013-06-12  3:44             ` Alexander E. Patrakov
  2013-06-12 17:05               ` Alexander E. Patrakov
  2013-06-12 18:37             ` Alexander E. Patrakov
  1 sibling, 1 reply; 10+ messages in thread
From: Alexander E. Patrakov @ 2013-06-12  3:44 UTC (permalink / raw)
  To: Jiang Liu
  Cc: Jiang Liu, Bjorn Helgaas, Yinghai Lu, Rafael J. Wysocki,
	linux-pci, linux-kernel

2013/6/12 Jiang Liu <liuj97@gmail.com>:
> On Wed 12 Jun 2013 12:51:59 AM CST, Alexander E. Patrakov wrote:
>> 2013/6/11 Jiang Liu <liuj97@gmail.com>:
>>> Hi Alexander,
>>>     This is much more harder issue to resolve.  Let's first work around
>>> this
>>> issue and check whether other things are OK. The patch below is just a
>>> prove of concept, could you please help to try it?
>>
>> In the initially-undocked case it passes the "dock and undock three
>> times, verify lspci output at each step" test.
>>
>> In the initially-docked case, it exhibits the following problem: when
>> I press the undock button, only one PCI device disappears, and the
>> "docked" LED does not turn off. Additionally, there is a hung task.
> Hi Alexander,
>      In the initially-docked case, the failure is caused by an issue in
> the intel sound card driver. Seems something is wrong with reference
> count management and it never returns to zero on driver detach.
> Could you please help to disable the Intel sound card driver and try
> again?
>
> I'm not familiar with Intel HDA driver,  so please help to fire another
> bug for it.

Thanks for pointing the finger to snd-hda-intel. With that driver
blacklisted, the lspci output matches the expectations even after
undocking the initially-docked laptop. Redocking re-adds the devices,
too. So the situation is almost as good as in the initially-undocked
case, you only have to deal with this:

[   64.312253] ata8.00: disabled
[   64.318462] cdrom: issuing MRW background format suspend
[   64.320288] INFO: trying to register non-static key.
[   64.320292] the code is fine but needs lockdep annotation.
[   64.320294] turning off the locking correctness validator.
[   64.320298] CPU: 0 PID: 40 Comm: kworker/0:1 Tainted: G         C
3.10.0-rc4 #7
[   64.320301] Hardware name: Sony Corporation VPCZ23A4R/VAIO, BIOS
R1013H5 05/21/2012
[   64.320306] Workqueue: kacpi_hotplug acpi_os_execute_deferred
[   64.320309]  ffff880253db0000 ffff880253db9688 ffffffff8165aab8
ffff880253db9778
[   64.320314]  ffffffff810a018e ffff880253db07c0 0000000000000000
ffff880200000000
[   64.320319]  0000000000000000 ffff880200000000 ffff880253db07e0
000000000000005a
[   64.320324] Call Trace:
[   64.320330]  [<ffffffff8165aab8>] dump_stack+0x19/0x1b
[   64.320335]  [<ffffffff810a018e>] __lock_acquire+0x181e/0x1ee0
[   64.320338]  [<ffffffff810a1751>] ? mark_held_locks+0x61/0x150
[   64.320341]  [<ffffffff810a1aae>] ? debug_check_no_locks_freed+0x8e/0x160
[   64.320347]  [<ffffffff8105b940>] ? queue_delayed_work_on+0xa0/0xa0
[   64.320350]  [<ffffffff810a0e77>] lock_acquire+0x87/0x150
[   64.320354]  [<ffffffff8105b940>] ? queue_delayed_work_on+0xa0/0xa0
[   64.320357]  [<ffffffff8109c430>] ? lockdep_init_map+0xb0/0x530
[   64.320361]  [<ffffffff8105b978>] flush_work+0x38/0x270
[   64.320365]  [<ffffffff8105b940>] ? queue_delayed_work_on+0xa0/0xa0
[   64.320368]  [<ffffffff810a1751>] ? mark_held_locks+0x61/0x150
[   64.320371]  [<ffffffff8105d645>] ? __cancel_work_timer+0xa5/0x110
[   64.320375]  [<ffffffff810a1945>] ? trace_hardirqs_on_caller+0x105/0x1d0
[   64.320378]  [<ffffffff8105d61a>] __cancel_work_timer+0x7a/0x110
[   64.320381]  [<ffffffff8105d6cb>] cancel_work_sync+0xb/0x10
[   64.320389]  [<ffffffffa00773ae>] rtl_remove_one+0x5e/0x140 [r8169]
[   64.320394]  [<ffffffff81385631>] pci_device_remove+0x41/0xc0
[   64.320399]  [<ffffffff8143bd47>] __device_release_driver+0x77/0xe0
[   64.320403]  [<ffffffff8143bdd9>] device_release_driver+0x29/0x40
[   64.320407]  [<ffffffff8143b7e1>] bus_remove_device+0xf1/0x140
[   64.320411]  [<ffffffff81438ecd>] device_del+0x11d/0x1b0
[   64.320416]  [<ffffffff8138062c>] pci_stop_bus_device+0x9c/0xb0
[   64.320420]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[   64.320423]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[   64.320427]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[   64.320431]  [<ffffffff813a0fe5>] ? acpiphp_disable_slot+0x35/0x140
[   64.320435]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[   64.320437]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[   64.320440]  [<ffffffff813805cb>] pci_stop_bus_device+0x3b/0xb0
[   64.320443]  [<ffffffff81380791>] pci_stop_and_remove_bus_device+0x11/0x20
[   64.320446]  [<ffffffff813a1036>] acpiphp_disable_slot+0x86/0x140
[   64.320450]  [<ffffffff813a13da>] __handle_hotplug_event_func+0xba/0x1a0
[   64.320454]  [<ffffffff813c729b>] hotplug_dock_devices+0x57/0xda
[   64.320458]  [<ffffffff813c79a1>] handle_eject_request+0xaf/0xdf
[   64.320461]  [<ffffffff813c7b6f>] acpi_dock_deferred_cb+0x163/0x1c8
[   64.320465]  [<ffffffff813bfba9>] acpi_os_execute_deferred+0x20/0x2d
[   64.320468]  [<ffffffff8105c212>] process_one_work+0x1c2/0x560
[   64.320472]  [<ffffffff8105c1a7>] ? process_one_work+0x157/0x560
[   64.320475]  [<ffffffff8105d126>] worker_thread+0x116/0x370
[   64.320479]  [<ffffffff8105d010>] ? manage_workers.isra.20+0x2d0/0x2d0
[   64.320483]  [<ffffffff81063986>] kthread+0xd6/0xe0
[   64.320487]  [<ffffffff810638b0>] ? __init_kthread_worker+0x70/0x70
[   64.320492]  [<ffffffff8166806c>] ret_from_fork+0x7c/0xb0
[   64.320496]  [<ffffffff810638b0>] ? __init_kthread_worker+0x70/0x70
[   64.334782] vgaarb: device changed decodes:
PCI:0000:00:02.0,olddecodes=none,decodes=io+mem:owns=none
[   64.337187] pci_bus 0000:0b: busn_res: [bus 0b] is released
[   64.337410] pci_bus 0000:0c: busn_res: [bus 0c] is released
[   64.337472] pci_bus 0000:16: busn_res: [bus 16] is released

As for snd-hda-intel bug, I will file it later today and let you know.

-- 
Alexander E. Patrakov

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] ACPIPHP: fix device destroying order issue in handling dock notification
  2013-06-12  3:44             ` Alexander E. Patrakov
@ 2013-06-12 17:05               ` Alexander E. Patrakov
  0 siblings, 0 replies; 10+ messages in thread
From: Alexander E. Patrakov @ 2013-06-12 17:05 UTC (permalink / raw)
  To: Jiang Liu
  Cc: Jiang Liu, Bjorn Helgaas, Yinghai Lu, Rafael J. Wysocki,
	linux-pci, linux-kernel

2013/6/12 Alexander E. Patrakov <patrakov@gmail.com>:
> 2013/6/12 Jiang Liu <liuj97@gmail.com>:
>> On Wed 12 Jun 2013 12:51:59 AM CST, Alexander E. Patrakov wrote:
>>> In the initially-docked case, it exhibits the following problem: when
>>> I press the undock button, only one PCI device disappears, and the
>>> "docked" LED does not turn off. Additionally, there is a hung task.
>> Hi Alexander,
>>      In the initially-docked case, the failure is caused by an issue in
>> the intel sound card driver. Seems something is wrong with reference
>> count management and it never returns to zero on driver detach.
>> Could you please help to disable the Intel sound card driver and try
>> again?
>>
>> I'm not familiar with Intel HDA driver,  so please help to fire another
>> bug for it.
>
> Thanks for pointing the finger to snd-hda-intel. With that driver
> blacklisted, the lspci output matches the expectations even after
> undocking the initially-docked laptop. Redocking re-adds the devices,
> too.

> As for snd-hda-intel bug, I will file it later today and let you know.

Actually, I debugged it further and want some input from you before
filing. Here is the new information: the incomplete undocking and hung
task does not appear if I test from a virtual console, not from an
XFCE session. The obvious difference is that in the XFCE session some
processes (the mixer applet and pulseaudio) keep the mixer device
always open.

I am not qualified enough to say what should happen if the user
presses the undock button while a program has a to-be-undocked device
open. Or, for that matter and for an analogy, if the user unplugs a
USB sound card while it is playing.

And in my case, this is going to be an issue not only because of the
snd-hda-intel driver. Xorg would sometimes keep the DRM node of the
Radeon card (that is in the dock station) open in addition to the
onboard Intel card.

--
Alexander E. Patrakov

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] ACPIPHP: fix device destroying order issue in handling dock notification
  2013-06-12  2:49           ` Jiang Liu
  2013-06-12  3:44             ` Alexander E. Patrakov
@ 2013-06-12 18:37             ` Alexander E. Patrakov
  1 sibling, 0 replies; 10+ messages in thread
From: Alexander E. Patrakov @ 2013-06-12 18:37 UTC (permalink / raw)
  To: Jiang Liu
  Cc: Jiang Liu, Bjorn Helgaas, Yinghai Lu, Rafael J. Wysocki,
	linux-pci, linux-kernel

2013/6/12 Jiang Liu <liuj97@gmail.com>:
> Hi Alexander,
>      In the initially-docked case, the failure is caused by an issue in
> the intel sound card driver. Seems something is wrong with reference
> count management and it never returns to zero on driver detach.
> Could you please help to disable the Intel sound card driver and try
> again?

I have discussed the problem with pulseaudio developers. According to
my understanding (that may be wrong), we have a classic ABBA deadlock.
The device will go away when its reference count goes to zero. The
reference count will go to zero when there are no open fds. The mixer
fd will be closed when it gets a -EIO, i.e. after the device goes
away.

If the above understanding is correct, I think that waiting for zero
references should be at least questioned.

-- 
Alexander E. Patrakov

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2013-06-12 18:37 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-11 11:52 [PATCH] ACPIPHP: fix device destroying order issue in handling dock notification Jiang Liu
2013-06-11 12:15 ` Alexander E. Patrakov
2013-06-11 12:24   ` Jiang Liu
2013-06-11 13:38     ` Alexander E. Patrakov
2013-06-11 15:00       ` Jiang Liu
2013-06-11 16:51         ` Alexander E. Patrakov
2013-06-12  2:49           ` Jiang Liu
2013-06-12  3:44             ` Alexander E. Patrakov
2013-06-12 17:05               ` Alexander E. Patrakov
2013-06-12 18:37             ` Alexander E. Patrakov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.