All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: 2.6.36-rc3 suspend issue (was: 2.6.35-rc4 / X201 issues)
@ 2010-09-10  5:36 Jeff Chua
  2010-09-10  7:48 ` Peter Zijlstra
  0 siblings, 1 reply; 14+ messages in thread
From: Jeff Chua @ 2010-09-10  5:36 UTC (permalink / raw)
  To: Nico Schottelius, Rafael J. Wysocki, Nico Schottelius, Jeff Chua,
	Jesse Barnes, LKML, Linus Torvalds, Florian Pritz, Suresh Siddha,
	stable, Peter Zijlstra, Ingo Molnar


On Wed, Sep 8, 2010 at 2:21 PM, Nico Schottelius 
<nico-nospam@schottelius.org> wrote:
> Rafael J. Wysocki [Wed, Sep 08, 2010 at 01:28:52AM +0200]:
>> On Wednesday, September 08, 2010, Nico Schottelius wrote:
>> > Rafael J. Wysocki [Tue, Sep 07, 2010 at 11:48:41PM +0200]:
>> > > On Tuesday, September 07, 2010, Jeff Chua wrote:
>> > > > Cool. Thanks for the short-cut! At least now, I can resume, but got a
>> > > > lot of BUGS showing up upon resume after applying the patch.
>> > > This also was reported IIRC, but there's no resolution so far. It's a
>> > > different issue.
>> > Can somebody ping me, as soon as a git pull on linux-2.6
>> > should be as "stable" (or more stable) than 2.6.34?
>> No one can say when that happens for your machine.
> True. I was more wondering, when the bisected issue will
> be fixed, as this may give my machine some more chances
> to work on Linux.


I've bisected and it's pointing to the following commit causing the 
errors after resume. Reverting the commit solves the problem.


commit cd7240c0b900eb6d690ccee088a6c9b46dae815a
Author: Suresh Siddha <suresh.b.siddha@intel.com>
Date:   Thu Aug 19 17:03:38 2010 -0700

     x86, tsc, sched: Recompute cyc2ns_offset's during resume from sleep states

     TSC's get reset after suspend/resume (even on cpu's with invariant TSC
     which runs at a constant rate across ACPI P-, C- and T-states). And in
     some systems BIOS seem to reinit TSC to arbitrary large value (still
     sync'd across cpu's) during resume.

     This leads to a scenario of scheduler rq->clock (sched_clock_cpu()) less
     than rq->age_stamp (introduced in 2.6.32). This leads to a big value
     returned by scale_rt_power() and the resulting big group power set by the
     update_group_power() is causing improper load balancing between busy and
     idle cpu's after suspend/resume.

     This resulted in multi-threaded workloads (like kernel-compilation) go
     slower after suspend/resume cycle on core i5 laptops.

     Fix this by recomputing cyc2ns_offset's during resume, so that
     sched_clock() continues from the point where it was left off during
     suspend.

     Reported-by: Florian Pritz <flo@xssn.at>
     Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com>
     Cc: <stable@kernel.org> # [v2.6.32+]
     Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
     LKML-Reference: <1282262618.2675.24.camel@sbsiddha-MOBL3.sc.intel.com>
     Signed-off-by: Ingo Molnar <mingo@elte.hu>

diff --git a/arch/x86/include/asm/tsc.h b/arch/x86/include/asm/tsc.h
index c042729..1ca132f 100644
--- a/arch/x86/include/asm/tsc.h
+++ b/arch/x86/include/asm/tsc.h
@@ -59,5 +59,7 @@ extern void check_tsc_sync_source(int cpu);
  extern void check_tsc_sync_target(void);

  extern int notsc_setup(char *);
+extern void save_sched_clock_state(void);
+extern void restore_sched_clock_state(void);

  #endif /* _ASM_X86_TSC_H */
diff --git a/arch/x86/kernel/tsc.c b/arch/x86/kernel/tsc.c
index ce8e502..d632934 100644
--- a/arch/x86/kernel/tsc.c
+++ b/arch/x86/kernel/tsc.c
@@ -626,6 +626,44 @@ static void set_cyc2ns_scale(unsigned long cpu_khz, int cpu)
  	local_irq_restore(flags);
  }

+static unsigned long long cyc2ns_suspend;
+
+void save_sched_clock_state(void)
+{
+	if (!sched_clock_stable)
+		return;
+
+	cyc2ns_suspend = sched_clock();
+}
+
+/*
+ * Even on processors with invariant TSC, TSC gets reset in some the
+ * ACPI system sleep states. And in some systems BIOS seem to reinit TSC to
+ * arbitrary value (still sync'd across cpu's) during resume from such sleep
+ * states. To cope up with this, recompute the cyc2ns_offset for each cpu so
+ * that sched_clock() continues from the point where it was left off during
+ * suspend.
+ */
+void restore_sched_clock_state(void)
+{
+	unsigned long long offset;
+	unsigned long flags;
+	int cpu;
+
+	if (!sched_clock_stable)
+		return;
+
+	local_irq_save(flags);
+
+	get_cpu_var(cyc2ns_offset) = 0;
+	offset = cyc2ns_suspend - sched_clock();
+
+	for_each_possible_cpu(cpu)
+		per_cpu(cyc2ns_offset, cpu) = offset;
+
+	local_irq_restore(flags);
+}
+
  #ifdef CONFIG_CPU_FREQ

  /* Frequency scaling support. Adjust the TSC based timer when the cpu frequency
diff --git a/arch/x86/power/cpu.c b/arch/x86/power/cpu.c
index e7e8c5f..87bb35e 100644
--- a/arch/x86/power/cpu.c
+++ b/arch/x86/power/cpu.c
@@ -113,6 +113,7 @@ static void __save_processor_state(struct saved_context *ctxt)
  void save_processor_state(void)
  {
  	__save_processor_state(&saved_context);
+	save_sched_clock_state();
  }
  #ifdef CONFIG_X86_32
  EXPORT_SYMBOL(save_processor_state);
@@ -229,6 +230,7 @@ static void __restore_processor_state(struct saved_context *ctxt)
  void restore_processor_state(void)
  {
  	__restore_processor_state(&saved_context);
+	restore_sched_clock_state();
  }
  #ifdef CONFIG_X86_32
  EXPORT_SYMBOL(restore_processor_state);




Errors like the one below:

cpi_ds_exec_end_op+0x8e/0x3cd
  [<ffffffff8121497d>] ? acpi_ps_parse_loop+0x7dd/0x96c
  [<ffffffff81213af7>] ? acpi_ps_parse_aml+0x8e/0x29a
  [<ffffffff8121512e>] ? acpi_ps_execute_method+0x1bf/0x28d
  [<ffffffff81210741>] ? acpi_ns_evaluate+0xdd/0x19a
  [<ffffffff812101f3>] ? acpi_evaluate_object+0x145/0x246
  [<ffffffff811f79b2>] ? acpi_os_signal_semaphore+0x23/0x27
  [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
  [<ffffffff81222892>] ? acpi_battery_get_state+0x7f/0x121
  [<ffffffff812118c2>] ? acpi_get_handle+0x7b/0x99
  [<ffffffff81222b99>] ? acpi_battery_update+0x265/0x26e
  [<ffffffff81222c70>] ? acpi_battery_resume+0x25/0x2a
  [<ffffffff81295c8d>] ? legacy_resume+0x1e/0x55
  [<ffffffff81295d24>] ? device_resume+0x60/0xdd
  [<ffffffff811c2102>] ? kobject_get+0x12/0x17
  [<ffffffff812963e1>] ? dpm_resume_end+0xf2/0x349
  [<ffffffff8105c9a4>] ? suspend_devices_and_enter+0x15b/0x188
  [<ffffffff8105ca6a>] ? enter_state+0x99/0xcb
  [<ffffffff8105c2da>] ? state_store+0xb1/0xcf
  [<ffffffff810e9f0f>] ? sysfs_write_file+0xd6/0x112
  [<ffffffff810a2f82>] ? vfs_write+0xad/0x132
  [<ffffffff810a30bd>] ? sys_write+0x45/0x6e
  [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
BUG: scheduling while atomic: lid/2486/0x00000002



In short, to solve resume problem, revert these 2 commits ...
         drm/i915: Enable RC6 on Ironlake
                 ce17178094f368d9e3f39b2cb4303da5ed633dd4

         x86, tsc, sched: Recompute cyc2ns_offset's during resume ...
                 cd7240c0b900eb6d690ccee088a6c9b46dae815a



Thanks,
Jeff

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

* Re: 2.6.36-rc3 suspend issue (was: 2.6.35-rc4 / X201 issues)
  2010-09-10  5:36 2.6.36-rc3 suspend issue (was: 2.6.35-rc4 / X201 issues) Jeff Chua
@ 2010-09-10  7:48 ` Peter Zijlstra
  2010-09-10 11:53   ` Jeff Chua
  0 siblings, 1 reply; 14+ messages in thread
From: Peter Zijlstra @ 2010-09-10  7:48 UTC (permalink / raw)
  To: Jeff Chua
  Cc: Nico Schottelius, Rafael J. Wysocki, Nico Schottelius,
	Jesse Barnes, LKML, Linus Torvalds, Florian Pritz, Suresh Siddha,
	stable, Ingo Molnar

On Fri, 2010-09-10 at 13:36 +0800, Jeff Chua wrote:

> 
> I've bisected and it's pointing to the following commit causing the 
> errors after resume. Reverting the commit solves the problem.

"the errors" being those at the end of this email?

> commit cd7240c0b900eb6d690ccee088a6c9b46dae815a
> Author: Suresh Siddha <suresh.b.siddha@intel.com>
> Date:   Thu Aug 19 17:03:38 2010 -0700
> 
>      x86, tsc, sched: Recompute cyc2ns_offset's during resume from sleep states
> 

> diff --git a/arch/x86/include/asm/tsc.h b/arch/x86/include/asm/tsc.h
> index c042729..1ca132f 100644
> --- a/arch/x86/include/asm/tsc.h
> +++ b/arch/x86/include/asm/tsc.h
> @@ -59,5 +59,7 @@ extern void check_tsc_sync_source(int cpu);
>   extern void check_tsc_sync_target(void);
> 
>   extern int notsc_setup(char *);
> +extern void save_sched_clock_state(void);
> +extern void restore_sched_clock_state(void);
> 
>   #endif /* _ASM_X86_TSC_H */
> diff --git a/arch/x86/kernel/tsc.c b/arch/x86/kernel/tsc.c
> index ce8e502..d632934 100644
> --- a/arch/x86/kernel/tsc.c
> +++ b/arch/x86/kernel/tsc.c
> @@ -626,6 +626,44 @@ static void set_cyc2ns_scale(unsigned long cpu_khz, int cpu)
>   	local_irq_restore(flags);
>   }
> 
> +static unsigned long long cyc2ns_suspend;
> +
> +void save_sched_clock_state(void)
> +{
> +	if (!sched_clock_stable)
> +		return;
> +
> +	cyc2ns_suspend = sched_clock();
> +}
> +
> +/*
> + * Even on processors with invariant TSC, TSC gets reset in some the
> + * ACPI system sleep states. And in some systems BIOS seem to reinit TSC to
> + * arbitrary value (still sync'd across cpu's) during resume from such sleep
> + * states. To cope up with this, recompute the cyc2ns_offset for each cpu so
> + * that sched_clock() continues from the point where it was left off during
> + * suspend.
> + */
> +void restore_sched_clock_state(void)
> +{
> +	unsigned long long offset;
> +	unsigned long flags;
> +	int cpu;
> +
> +	if (!sched_clock_stable)
> +		return;
> +
> +	local_irq_save(flags);
> +
> +	get_cpu_var(cyc2ns_offset) = 0;
> +	offset = cyc2ns_suspend - sched_clock();
> +
> +	for_each_possible_cpu(cpu)
> +		per_cpu(cyc2ns_offset, cpu) = offset;
> +
> +	local_irq_restore(flags);
> +}
> +
>   #ifdef CONFIG_CPU_FREQ
> 
>   /* Frequency scaling support. Adjust the TSC based timer when the cpu frequency
> diff --git a/arch/x86/power/cpu.c b/arch/x86/power/cpu.c
> index e7e8c5f..87bb35e 100644
> --- a/arch/x86/power/cpu.c
> +++ b/arch/x86/power/cpu.c
> @@ -113,6 +113,7 @@ static void __save_processor_state(struct saved_context *ctxt)
>   void save_processor_state(void)
>   {
>   	__save_processor_state(&saved_context);
> +	save_sched_clock_state();
>   }
>   #ifdef CONFIG_X86_32
>   EXPORT_SYMBOL(save_processor_state);
> @@ -229,6 +230,7 @@ static void __restore_processor_state(struct saved_context *ctxt)
>   void restore_processor_state(void)
>   {
>   	__restore_processor_state(&saved_context);
> +	restore_sched_clock_state();
>   }
>   #ifdef CONFIG_X86_32
>   EXPORT_SYMBOL(restore_processor_state);
> 
> 
> 
> 
> Errors like the one below:
> 
> cpi_ds_exec_end_op+0x8e/0x3cd
>   [<ffffffff8121497d>] ? acpi_ps_parse_loop+0x7dd/0x96c
>   [<ffffffff81213af7>] ? acpi_ps_parse_aml+0x8e/0x29a
>   [<ffffffff8121512e>] ? acpi_ps_execute_method+0x1bf/0x28d
>   [<ffffffff81210741>] ? acpi_ns_evaluate+0xdd/0x19a
>   [<ffffffff812101f3>] ? acpi_evaluate_object+0x145/0x246
>   [<ffffffff811f79b2>] ? acpi_os_signal_semaphore+0x23/0x27
>   [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
>   [<ffffffff81222892>] ? acpi_battery_get_state+0x7f/0x121
>   [<ffffffff812118c2>] ? acpi_get_handle+0x7b/0x99
>   [<ffffffff81222b99>] ? acpi_battery_update+0x265/0x26e
>   [<ffffffff81222c70>] ? acpi_battery_resume+0x25/0x2a
>   [<ffffffff81295c8d>] ? legacy_resume+0x1e/0x55
>   [<ffffffff81295d24>] ? device_resume+0x60/0xdd
>   [<ffffffff811c2102>] ? kobject_get+0x12/0x17
>   [<ffffffff812963e1>] ? dpm_resume_end+0xf2/0x349
>   [<ffffffff8105c9a4>] ? suspend_devices_and_enter+0x15b/0x188
>   [<ffffffff8105ca6a>] ? enter_state+0x99/0xcb
>   [<ffffffff8105c2da>] ? state_store+0xb1/0xcf
>   [<ffffffff810e9f0f>] ? sysfs_write_file+0xd6/0x112
>   [<ffffffff810a2f82>] ? vfs_write+0xad/0x132
>   [<ffffffff810a30bd>] ? sys_write+0x45/0x6e
>   [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
> BUG: scheduling while atomic: lid/2486/0x00000002
> 

That just doesn't make any sense, the TSC restore code doesn't involve
acpi, nor does it actually schedule.


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

* Re: 2.6.36-rc3 suspend issue (was: 2.6.35-rc4 / X201 issues)
  2010-09-10  7:48 ` Peter Zijlstra
@ 2010-09-10 11:53   ` Jeff Chua
  2010-09-10 12:05     ` Peter Zijlstra
  0 siblings, 1 reply; 14+ messages in thread
From: Jeff Chua @ 2010-09-10 11:53 UTC (permalink / raw)
  To: Peter Zijlstra
  Cc: Nico Schottelius, Rafael J. Wysocki, Nico Schottelius,
	Jesse Barnes, LKML, Linus Torvalds, Florian Pritz, Suresh Siddha,
	stable, Ingo Molnar

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

On Fri, Sep 10, 2010 at 3:48 PM, Peter Zijlstra <peterz@infradead.org> wrote:
> On Fri, 2010-09-10 at 13:36 +0800, Jeff Chua wrote:
>>
>> I've bisected and it's pointing to the following commit causing the
>> errors after resume. Reverting the commit solves the problem.
>"the errors" being those at the end of this email?

Yes (partial). Attached is the detailed kernel log that I just
captured with the commit cd7240c0b900eb6d690ccee088a6c9b46dae815a
applied.

> That just doesn't make any sense, the TSC restore code doesn't involve
> acpi, nor does it actually schedule.

I don't know enough, but whatever it is, reverting the patch makes all
the errors go away!

I've "re-verified" that's the case by reverting/reapplying the same commit.

Jeff

[-- Attachment #2: kernel --]
[-- Type: application/octet-stream, Size: 61728 bytes --]

2010-09-10T19:42:01.167006+08:00 boston kernel: PM: Syncing filesystems ... done.
2010-09-10T19:42:31.663995+08:00 boston kernel: Freezing user space processes ... f81203f77>] ? acpi_4>e/0xloop+0xse_aml+i_ps_12107401f3>] ? acpi_evaluate_object+0x145/0x246
2010-09-10T19:42:31.664023+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.664027+08:00 boston kernel: [<ffffffff81222892>] ? acpi_battery_get_state+0x7f/0x121
2010-09-10T19:42:31.664030+08:00 boston kernel: [<ffffffff812118c2>] ? acpi_get_handle+0x7b/0x99
2010-09-10T19:42:31.664033+08:00 boston kernel: [<ffffffff81222b99>] ? acpi_battery_update+0x265/0x26e
2010-09-10T19:42:31.664036+08:00 boston kernel: [<ffffffff81222c70>] ? acpi_battery_resume+0x25/0x2a
2010-09-10T19:42:31.664038+08:00 boston kernel: [<ffffffff81295c8d>] ? legacy_resume+0x1e/0x55
2010-09-10T19:42:31.664040+08:00 boston kernel: [<ffffffff81295d24>] ? device_resume+0x60/0xdd
2010-09-10T19:42:31.664043+08:00 boston kernel: [<ffffffff811c2102>] ? kobject_get+0x12/0x17
2010-09-10T19:42:31.664045+08:00 boston kernel: [<ffffffff812963e1>] ? dpm_resume_end+0xf2/0x349
2010-09-10T19:42:31.664047+08:00 boston kernel: [<ffffffff8105c9a4>] ? suspend_devices_and_enter+0x15b/0x188
2010-09-10T19:42:31.664050+08:00 boston kernel: [<ffffffff8105ca6a>] ? enter_state+0x99/0xcb
2010-09-10T19:42:31.664052+08:00 boston kernel: [<ffffffff8105c2da>] ? state_store+0xb1/0xcf
2010-09-10T19:42:31.664055+08:00 boston kernel: [<ffffffff810e9f0f>] ? sysfs_write_file+0xd6/0x112
2010-09-10T19:42:31.664057+08:00 boston kernel: [<ffffffff810a2f82>] ? vfs_write+0xad/0x132
2010-09-10T19:42:31.664060+08:00 boston kernel: [<ffffffff810a30bd>] ? sys_write+0x45/0x6e
2010-09-10T19:42:31.664063+08:00 boston kernel: [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
2010-09-10T19:42:31.664065+08:00 boston kernel: BUG: scheduling while atomic: lid/2410/0x00000002
2010-09-10T19:42:31.664067+08:00 boston kernel: Modules linked in:
2010-09-10T19:42:31.664069+08:00 boston kernel: Pid: 2410, comm: lid Not tainted 2.6.36-rc3+ #5
2010-09-10T19:42:31.664072+08:00 boston kernel: Call Trace:
2010-09-10T19:42:31.664074+08:00 boston kernel: [<ffffffff8149bd23>] ? schedule+0xdf/0x68c
2010-09-10T19:42:31.664077+08:00 boston kernel: [<ffffffff8103cec3>] ? try_to_del_timer_sync+0x75/0x7e
2010-09-10T19:42:31.664080+08:00 boston kernel: [<ffffffff8103cec3>] ? try_to_del_timer_sync+0x75/0x7e
2010-09-10T19:42:31.664082+08:00 boston kernel: [<ffffffff8149c619>] ? schedule_timeout+0x18c/0x1b2
2010-09-10T19:42:31.664085+08:00 boston kernel: [<ffffffff8103cf5d>] ? process_timeout+0x0/0xa
2010-09-10T19:42:31.664088+08:00 boston kernel: [<ffffffff811fc682>] ? acpi_ec_transaction_unlocked+0x14c/0x211
2010-09-10T19:42:31.664091+08:00 boston kernel: [<ffffffff8104895d>] ? autoremove_wake_function+0x0/0x2a
2010-09-10T19:42:31.664094+08:00 boston kernel: [<ffffffff811fca7b>] ? acpi_ec_transaction+0x182/0x223
2010-09-10T19:42:31.664096+08:00 boston kernel: [<ffffffff8104c664>] ? down_timeout+0x42/0x4d
2010-09-10T19:42:31.664099+08:00 boston kernel: [<ffffffff811fcd07>] ? acpi_ec_space_handler+0xf1/0x1be
2010-09-10T19:42:31.664101+08:00 boston kernel: [<ffffffff811fcc16>] ? acpi_ec_space_handler+0x0/0x1be
2010-09-10T19:42:31.664104+08:00 boston kernel: [<ffffffff81205a25>] ? acpi_ev_address_space_dispatch+0x16a/0x1b7
2010-09-10T19:42:31.664106+08:00 boston kernel: [<ffffffff8120a213>] ? acpi_ex_access_region+0x21b/0x228
2010-09-10T19:42:31.664109+08:00 boston kernel: [<ffffffff81099f7c>] ? get_partial_node+0xb8/0xd2
2010-09-10T19:42:31.664111+08:00 boston kernel: [<ffffffff8120a312>] ? acpi_ex_field_datum_io+0xf2/0x184
2010-09-10T19:42:31.664114+08:00 boston kernel: [<ffffffff8120a434>] ? acpi_ex_extract_from_field+0x90/0x19b
2010-09-10T19:42:31.664116+08:00 boston kernel: [<ffffffff8121a271>] ? acpi_ut_allocate_object_desc_dbg+0x39/0x6f
2010-09-10T19:42:31.664119+08:00 boston kernel: [<ffffffff81208fcf>] ? acpi_ex_read_data_from_field+0x10d/0x14a
2010-09-10T19:42:31.664122+08:00 boston kernel: [<ffffffff8120db35>] ? acpi_ex_resolve_node_to_value+0x191/0x220
2010-09-10T19:42:31.664124+08:00 boston kernel: [<ffffffff812099ff>] ? acpi_ex_resolve_to_value+0x20b/0x214
2010-09-10T19:42:31.664127+08:00 boston kernel: [<ffffffff81203f77>] ? acpi_ds_evaluate_name_path+0x73/0xed
2010-09-10T19:42:31.664129+08:00 boston kernel: [<ffffffff81202c05>] ? acpi_ds_exec_end_op+0x8e/0x3cd
2010-09-10T19:42:31.664132+08:00 boston kernel: [<ffffffff8121497d>] ? acpi_ps_parse_loop+0x7dd/0x96c
2010-09-10T19:42:31.664141+08:00 boston kernel: [<ffffffff81213af7>] ? acpi_ps_parse_aml+0x8e/0x29a
2010-09-10T19:42:31.664145+08:00 boston kernel: [<ffffffff8121512e>] ? acpi_ps_execute_method+0x1bf/0x28d
2010-09-10T19:42:31.664148+08:00 boston kernel: [<ffffffff81210741>] ? acpi_ns_evaluate+0xdd/0x19a
2010-09-10T19:42:31.664151+08:00 boston kernel: [<ffffffff812101f3>] ? acpi_evaluate_object+0x145/0x246
2010-09-10T19:42:31.664153+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.664156+08:00 boston kernel: [<ffffffff81222892>] ? acpi_battery_get_state+0x7f/0x121
2010-09-10T19:42:31.664159+08:00 boston kernel: [<ffffffff812118c2>] ? acpi_get_handle+0x7b/0x99
2010-09-10T19:42:31.664162+08:00 boston kernel: [<ffffffff81222b99>] ? acpi_battery_update+0x265/0x26e
2010-09-10T19:42:31.664165+08:00 boston kernel: [<ffffffff81222c70>] ? acpi_battery_resume+0x25/0x2a
2010-09-10T19:42:31.664168+08:00 boston kernel: [<ffffffff81295c8d>] ? legacy_resume+0x1e/0x55
2010-09-10T19:42:31.664171+08:00 boston kernel: [<ffffffff81295d24>] ? device_resume+0x60/0xdd
2010-09-10T19:42:31.664174+08:00 boston kernel: [<ffffffff811c2102>] ? kobject_get+0x12/0x17
2010-09-10T19:42:31.664177+08:00 boston kernel: [<ffffffff812963e1>] ? dpm_resume_end+0xf2/0x349
2010-09-10T19:42:31.664180+08:00 boston kernel: [<ffffffff8105c9a4>] ? suspend_devices_and_enter+0x15b/0x188
2010-09-10T19:42:31.664183+08:00 boston kernel: [<ffffffff8105ca6a>] ? enter_state+0x99/0xcb
2010-09-10T19:42:31.664186+08:00 boston kernel: [<ffffffff8105c2da>] ? state_store+0xb1/0xcf
2010-09-10T19:42:31.664189+08:00 boston kernel: [<ffffffff810e9f0f>] ? sysfs_write_file+0xd6/0x112
2010-09-10T19:42:31.664192+08:00 boston kernel: [<ffffffff810a2f82>] ? vfs_write+0xad/0x132
2010-09-10T19:42:31.664194+08:00 boston kernel: [<ffffffff810a30bd>] ? sys_write+0x45/0x6e
2010-09-10T19:42:31.664197+08:00 boston kernel: [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
2010-09-10T19:42:31.664200+08:00 boston kernel: BUG: scheduling while atomic: lid/2410/0x00000002
2010-09-10T19:42:31.664202+08:00 boston kernel: Modules linked in:
2010-09-10T19:42:31.664205+08:00 boston kernel: Pid: 2410, comm: lid Not tainted 2.6.36-rc3+ #5
2010-09-10T19:42:31.664207+08:00 boston kernel: Call Trace:
2010-09-10T19:42:31.664210+08:00 boston kernel: [<ffffffff8149bd23>] ? schedule+0xdf/0x68c
2010-09-10T19:42:31.664213+08:00 boston kernel: [<ffffffff8103cec3>] ? try_to_del_timer_sync+0x75/0x7e
2010-09-10T19:42:31.664216+08:00 boston kernel: [<ffffffff8103cec3>] ? try_to_del_timer_sync+0x75/0x7e
2010-09-10T19:42:31.664219+08:00 boston kernel: [<ffffffff8149c619>] ? schedule_timeout+0x18c/0x1b2
2010-09-10T19:42:31.664221+08:00 boston kernel: [<ffffffff8103cf5d>] ? process_timeout+0x0/0xa
2010-09-10T19:42:31.664224+08:00 boston kernel: [<ffffffff811fc682>] ? acpi_ec_transaction_unlocked+0x14c/0x211
2010-09-10T19:42:31.664380+08:00 boston kernel: [<ffffffff8104895d>] ? autoremove_wake_function+0x0/0x2a
2010-09-10T19:42:31.664386+08:00 boston kernel: [<ffffffff811fca7b>] ? acpi_ec_transaction+0x182/0x223
2010-09-10T19:42:31.664406+08:00 boston kernel: [<ffffffff8104c664>] ? down_timeout+0x42/0x4d
2010-09-10T19:42:31.664411+08:00 boston kernel: [<ffffffff811fcd07>] ? acpi_ec_space_handler+0xf1/0x1be
2010-09-10T19:42:31.664414+08:00 boston kernel: [<ffffffff811fcc16>] ? acpi_ec_space_handler+0x0/0x1be
2010-09-10T19:42:31.664417+08:00 boston kernel: [<ffffffff81205a25>] ? acpi_ev_address_space_dispatch+0x16a/0x1b7
2010-09-10T19:42:31.664420+08:00 boston kernel: [<ffffffff8120a213>] ? acpi_ex_access_region+0x21b/0x228
2010-09-10T19:42:31.664423+08:00 boston kernel: [<ffffffff81099f7c>] ? get_partial_node+0xb8/0xd2
2010-09-10T19:42:31.664426+08:00 boston kernel: [<ffffffff8120a312>] ? acpi_ex_field_datum_io+0xf2/0x184
2010-09-10T19:42:31.664429+08:00 boston kernel: [<ffffffff8120a434>] ? acpi_ex_extract_from_field+0x90/0x19b
2010-09-10T19:42:31.664432+08:00 boston kernel: [<ffffffff8121a271>] ? acpi_ut_allocate_object_desc_dbg+0x39/0x6f
2010-09-10T19:42:31.664435+08:00 boston kernel: [<ffffffff81208fcf>] ? acpi_ex_read_data_from_field+0x10d/0x14a
2010-09-10T19:42:31.664438+08:00 boston kernel: [<ffffffff8120db35>] ? acpi_ex_resolve_node_to_value+0x191/0x220
2010-09-10T19:42:31.664449+08:00 boston kernel: [<ffffffff812099ff>] ? acpi_ex_resolve_to_value+0x20b/0x214
2010-09-10T19:42:31.664452+08:00 boston kernel: [<ffffffff81203f77>] ? acpi_ds_evaluate_name_path+0x73/0xed
2010-09-10T19:42:31.664456+08:00 boston kernel: [<ffffffff81202c05>] ? acpi_ds_exec_end_op+0x8e/0x3cd
2010-09-10T19:42:31.664459+08:00 boston kernel: [<ffffffff8121497d>] ? acpi_ps_parse_loop+0x7dd/0x96c
2010-09-10T19:42:31.664462+08:00 boston kernel: [<ffffffff81213af7>] ? acpi_ps_parse_aml+0x8e/0x29a
2010-09-10T19:42:31.664465+08:00 boston kernel: [<ffffffff8121512e>] ? acpi_ps_execute_method+0x1bf/0x28d
2010-09-10T19:42:31.664467+08:00 boston kernel: [<ffffffff81210741>] ? acpi_ns_evaluate+0xdd/0x19a
2010-09-10T19:42:31.664470+08:00 boston kernel: [<ffffffff812101f3>] ? acpi_evaluate_object+0x145/0x246
2010-09-10T19:42:31.664473+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.664476+08:00 boston kernel: [<ffffffff81222892>] ? acpi_battery_get_state+0x7f/0x121
2010-09-10T19:42:31.664479+08:00 boston kernel: [<ffffffff812118c2>] ? acpi_get_handle+0x7b/0x99
2010-09-10T19:42:31.664482+08:00 boston kernel: [<ffffffff81222b99>] ? acpi_battery_update+0x265/0x26e
2010-09-10T19:42:31.664485+08:00 boston kernel: [<ffffffff81222c70>] ? acpi_battery_resume+0x25/0x2a
2010-09-10T19:42:31.664488+08:00 boston kernel: [<ffffffff81295c8d>] ? legacy_resume+0x1e/0x55
2010-09-10T19:42:31.664491+08:00 boston kernel: [<ffffffff81295d24>] ? device_resume+0x60/0xdd
2010-09-10T19:42:31.664494+08:00 boston kernel: [<ffffffff811c2102>] ? kobject_get+0x12/0x17
2010-09-10T19:42:31.664497+08:00 boston kernel: [<ffffffff812963e1>] ? dpm_resume_end+0xf2/0x349
2010-09-10T19:42:31.664500+08:00 boston kernel: [<ffffffff8105c9a4>] ? suspend_devices_and_enter+0x15b/0x188
2010-09-10T19:42:31.664502+08:00 boston kernel: [<ffffffff8105ca6a>] ? enter_state+0x99/0xcb
2010-09-10T19:42:31.664513+08:00 boston kernel: [<ffffffff8105c2da>] ? state_store+0xb1/0xcf
2010-09-10T19:42:31.664517+08:00 boston kernel: [<ffffffff810e9f0f>] ? sysfs_write_file+0xd6/0x112
2010-09-10T19:42:31.664520+08:00 boston kernel: [<ffffffff810a2f82>] ? vfs_write+0xad/0x132
2010-09-10T19:42:31.664522+08:00 boston kernel: [<ffffffff810a30bd>] ? sys_write+0x45/0x6e
2010-09-10T19:42:31.664525+08:00 boston kernel: [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
2010-09-10T19:42:31.664528+08:00 boston kernel: BUG: scheduling while atomic: lid/2410/0x00000002
2010-09-10T19:42:31.664530+08:00 boston kernel: Modules linked in:
2010-09-10T19:42:31.664533+08:00 boston kernel: Pid: 2410, comm: lid Not tainted 2.6.36-rc3+ #5
2010-09-10T19:42:31.664535+08:00 boston kernel: Call Trace:
2010-09-10T19:42:31.664538+08:00 boston kernel: [<ffffffff8149bd23>] ? schedule+0xdf/0x68c
2010-09-10T19:42:31.664541+08:00 boston kernel: [<ffffffff8103cec3>] ? try_to_del_timer_sync+0x75/0x7e
2010-09-10T19:42:31.664544+08:00 boston kernel: [<ffffffff8103cec3>] ? try_to_del_timer_sync+0x75/0x7e
2010-09-10T19:42:31.664547+08:00 boston kernel: [<ffffffff8149c619>] ? schedule_timeout+0x18c/0x1b2
2010-09-10T19:42:31.664550+08:00 boston kernel: [<ffffffff8103cf5d>] ? process_timeout+0x0/0xa
2010-09-10T19:42:31.664553+08:00 boston kernel: [<ffffffff811fc682>] ? acpi_ec_transaction_unlocked+0x14c/0x211
2010-09-10T19:42:31.664556+08:00 boston kernel: [<ffffffff8104895d>] ? autoremove_wake_function+0x0/0x2a
2010-09-10T19:42:31.664558+08:00 boston kernel: [<ffffffff811fca7b>] ? acpi_ec_transaction+0x182/0x223
2010-09-10T19:42:31.664561+08:00 boston kernel: [<ffffffff8104c664>] ? down_timeout+0x42/0x4d
2010-09-10T19:42:31.664564+08:00 boston kernel: [<ffffffff811fcd9f>] ? acpi_ec_space_handler+0x189/0x1be
2010-09-10T19:42:31.664567+08:00 boston kernel: [<ffffffff811fcc16>] ? acpi_ec_space_handler+0x0/0x1be
2010-09-10T19:42:31.664570+08:00 boston kernel: [<ffffffff81205a25>] ? acpi_ev_address_space_dispatch+0x16a/0x1b7
2010-09-10T19:42:31.664585+08:00 boston kernel: [<ffffffff8120a213>] ? acpi_ex_access_region+0x21b/0x228
2010-09-10T19:42:31.664590+08:00 boston kernel: [<ffffffff81099f7c>] ? get_partial_node+0xb8/0xd2
2010-09-10T19:42:31.664593+08:00 boston kernel: [<ffffffff8120a312>] ? acpi_ex_field_datum_io+0xf2/0x184
2010-09-10T19:42:31.664596+08:00 boston kernel: [<ffffffff8120a434>] ? acpi_ex_extract_from_field+0x90/0x19b
2010-09-10T19:42:31.664600+08:00 boston kernel: [<ffffffff8121a271>] ? acpi_ut_allocate_object_desc_dbg+0x39/0x6f
2010-09-10T19:42:31.664603+08:00 boston kernel: [<ffffffff81208fcf>] ? acpi_ex_read_data_from_field+0x10d/0x14a
2010-09-10T19:42:31.664606+08:00 boston kernel: [<ffffffff8120db35>] ? acpi_ex_resolve_node_to_value+0x191/0x220
2010-09-10T19:42:31.664610+08:00 boston kernel: [<ffffffff812099ff>] ? acpi_ex_resolve_to_value+0x20b/0x214
2010-09-10T19:42:31.664612+08:00 boston kernel: [<ffffffff81203f77>] ? acpi_ds_evaluate_name_path+0x73/0xed
2010-09-10T19:42:31.664615+08:00 boston kernel: [<ffffffff81202c05>] ? acpi_ds_exec_end_op+0x8e/0x3cd
2010-09-10T19:42:31.664618+08:00 boston kernel: [<ffffffff8121497d>] ? acpi_ps_parse_loop+0x7dd/0x96c
2010-09-10T19:42:31.664622+08:00 boston kernel: [<ffffffff81213af7>] ? acpi_ps_parse_aml+0x8e/0x29a
2010-09-10T19:42:31.664625+08:00 boston kernel: [<ffffffff8121512e>] ? acpi_ps_execute_method+0x1bf/0x28d
2010-09-10T19:42:31.664628+08:00 boston kernel: [<ffffffff81210741>] ? acpi_ns_evaluate+0xdd/0x19a
2010-09-10T19:42:31.664631+08:00 boston kernel: [<ffffffff812101f3>] ? acpi_evaluate_object+0x145/0x246
2010-09-10T19:42:31.664634+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.664637+08:00 boston kernel: [<ffffffff81222892>] ? acpi_battery_get_state+0x7f/0x121
2010-09-10T19:42:31.664640+08:00 boston kernel: [<ffffffff812118c2>] ? acpi_get_handle+0x7b/0x99
2010-09-10T19:42:31.665069+08:00 boston kernel: [<ffffffff81222b99>] ? acpi_battery_update+0x265/0x26e
2010-09-10T19:42:31.665077+08:00 boston kernel: [<ffffffff81222c70>] ? acpi_battery_resume+0x25/0x2a
2010-09-10T19:42:31.665083+08:00 boston kernel: [<ffffffff81295c8d>] ? legacy_resume+0x1e/0x55
2010-09-10T19:42:31.665086+08:00 boston kernel: [<ffffffff81295d24>] ? device_resume+0x60/0xdd
2010-09-10T19:42:31.665089+08:00 boston kernel: [<ffffffff811c2102>] ? kobject_get+0x12/0x17
2010-09-10T19:42:31.665092+08:00 boston kernel: [<ffffffff812963e1>] ? dpm_resume_end+0xf2/0x349
2010-09-10T19:42:31.665095+08:00 boston kernel: [<ffffffff8105c9a4>] ? suspend_devices_and_enter+0x15b/0x188
2010-09-10T19:42:31.665098+08:00 boston kernel: [<ffffffff8105ca6a>] ? enter_state+0x99/0xcb
2010-09-10T19:42:31.665101+08:00 boston kernel: [<ffffffff8105c2da>] ? state_store+0xb1/0xcf
2010-09-10T19:42:31.665104+08:00 boston kernel: [<ffffffff810e9f0f>] ? sysfs_write_file+0xd6/0x112
2010-09-10T19:42:31.665107+08:00 boston kernel: [<ffffffff810a2f82>] ? vfs_write+0xad/0x132
2010-09-10T19:42:31.665110+08:00 boston kernel: [<ffffffff810a30bd>] ? sys_write+0x45/0x6e
2010-09-10T19:42:31.665116+08:00 boston kernel: [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
2010-09-10T19:42:31.665119+08:00 boston kernel: BUG: scheduling while atomic: lid/2410/0x00000002
2010-09-10T19:42:31.665122+08:00 boston kernel: Modules linked in:
2010-09-10T19:42:31.665124+08:00 boston kernel: Pid: 2410, comm: lid Not tainted 2.6.36-rc3+ #5
2010-09-10T19:42:31.665127+08:00 boston kernel: Call Trace:
2010-09-10T19:42:31.665130+08:00 boston kernel: [<ffffffff8149bd23>] ? schedule+0xdf/0x68c
2010-09-10T19:42:31.665133+08:00 boston kernel: [<ffffffff8103ced8>] ? del_timer_sync+0xc/0x16
2010-09-10T19:42:31.665136+08:00 boston kernel: [<ffffffff8149c619>] ? schedule_timeout+0x18c/0x1b2
2010-09-10T19:42:31.665139+08:00 boston kernel: [<ffffffff8103cf5d>] ? process_timeout+0x0/0xa
2010-09-10T19:42:31.665142+08:00 boston kernel: [<ffffffff811fc682>] ? acpi_ec_transaction_unlocked+0x14c/0x211
2010-09-10T19:42:31.665145+08:00 boston kernel: [<ffffffff8104895d>] ? autoremove_wake_function+0x0/0x2a
2010-09-10T19:42:31.665148+08:00 boston kernel: [<ffffffff8104895d>] ? autoremove_wake_function+0x0/0x2a
2010-09-10T19:42:31.665151+08:00 boston kernel: [<ffffffff811fca7b>] ? acpi_ec_transaction+0x182/0x223
2010-09-10T19:42:31.665158+08:00 boston kernel: [<ffffffff811fcd07>] ? acpi_ec_space_handler+0xf1/0x1be
2010-09-10T19:42:31.665161+08:00 boston kernel: [<ffffffff8121a6ff>] ? acpi_ut_acquire_mutex+0x41/0x84
2010-09-10T19:42:31.665164+08:00 boston kernel: [<ffffffff811fcc16>] ? acpi_ec_space_handler+0x0/0x1be
2010-09-10T19:42:31.665167+08:00 boston kernel: [<ffffffff81205a25>] ? acpi_ev_address_space_dispatch+0x16a/0x1b7
2010-09-10T19:42:31.665170+08:00 boston kernel: [<ffffffff8120a213>] ? acpi_ex_access_region+0x21b/0x228
2010-09-10T19:42:31.665173+08:00 boston kernel: [<ffffffff8120fb48>] ? acpi_ns_search_one_scope+0x1c/0x3e
2010-09-10T19:42:31.665176+08:00 boston kernel: [<ffffffff8120fc87>] ? acpi_ns_search_and_enter+0x11d/0x182
2010-09-10T19:42:31.665179+08:00 boston kernel: [<ffffffff8120a312>] ? acpi_ex_field_datum_io+0xf2/0x184
2010-09-10T19:42:31.665182+08:00 boston kernel: [<ffffffff8120a434>] ? acpi_ex_extract_from_field+0x90/0x19b
2010-09-10T19:42:31.665185+08:00 boston kernel: [<ffffffff8121a271>] ? acpi_ut_allocate_object_desc_dbg+0x39/0x6f
2010-09-10T19:42:31.665189+08:00 boston kernel: [<ffffffff81208fcf>] ? acpi_ex_read_data_from_field+0x10d/0x14a
2010-09-10T19:42:31.665192+08:00 boston kernel: [<ffffffff8120db35>] ? acpi_ex_resolve_node_to_value+0x191/0x220
2010-09-10T19:42:31.665195+08:00 boston kernel: [<ffffffff812099ff>] ? acpi_ex_resolve_to_value+0x20b/0x214
2010-09-10T19:42:31.665198+08:00 boston kernel: [<ffffffff81203f77>] ? acpi_ds_evaluate_name_path+0x73/0xed
2010-09-10T19:42:31.665201+08:00 boston kernel: [<ffffffff81202c05>] ? acpi_ds_exec_end_op+0x8e/0x3cd
2010-09-10T19:42:31.665204+08:00 boston kernel: [<ffffffff8121497d>] ? acpi_ps_parse_loop+0x7dd/0x96c
2010-09-10T19:42:31.665207+08:00 boston kernel: [<ffffffff8104c5ce>] ? up+0xe/0x36
2010-09-10T19:42:31.665210+08:00 boston kernel: [<ffffffff81213af7>] ? acpi_ps_parse_aml+0x8e/0x29a
2010-09-10T19:42:31.665213+08:00 boston kernel: [<ffffffff8121512e>] ? acpi_ps_execute_method+0x1bf/0x28d
2010-09-10T19:42:31.665215+08:00 boston kernel: [<ffffffff81210741>] ? acpi_ns_evaluate+0xdd/0x19a
2010-09-10T19:42:31.665218+08:00 boston kernel: [<ffffffff812101f3>] ? acpi_evaluate_object+0x145/0x246
2010-09-10T19:42:31.665221+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.665232+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.665237+08:00 boston kernel: [<ffffffff811f81a2>] ? acpi_evaluate_integer+0x2a/0x48
2010-09-10T19:42:31.665240+08:00 boston kernel: [<ffffffff81222b99>] ? acpi_battery_update+0x265/0x26e
2010-09-10T19:42:31.665243+08:00 boston kernel: [<ffffffff8121ae7c>] ? acpi_ac_get_state+0x2e/0x60
2010-09-10T19:42:31.665246+08:00 boston kernel: [<ffffffff8121af6a>] ? acpi_ac_resume+0x26/0x56
2010-09-10T19:42:31.665249+08:00 boston kernel: [<ffffffff81295c8d>] ? legacy_resume+0x1e/0x55
2010-09-10T19:42:31.665252+08:00 boston kernel: [<ffffffff81295d24>] ? device_resume+0x60/0xdd
2010-09-10T19:42:31.665255+08:00 boston kernel: [<ffffffff811c2102>] ? kobject_get+0x12/0x17
2010-09-10T19:42:31.665258+08:00 boston kernel: [<ffffffff812963e1>] ? dpm_resume_end+0xf2/0x349
2010-09-10T19:42:31.665261+08:00 boston kernel: [<ffffffff8105c9a4>] ? suspend_devices_and_enter+0x15b/0x188
2010-09-10T19:42:31.665264+08:00 boston kernel: [<ffffffff8105ca6a>] ? enter_state+0x99/0xcb
2010-09-10T19:42:31.665267+08:00 boston kernel: [<ffffffff8105c2da>] ? state_store+0xb1/0xcf
2010-09-10T19:42:31.665270+08:00 boston kernel: [<ffffffff810e9f0f>] ? sysfs_write_file+0xd6/0x112
2010-09-10T19:42:31.665273+08:00 boston kernel: [<ffffffff810a2f82>] ? vfs_write+0xad/0x132
2010-09-10T19:42:31.665276+08:00 boston kernel: [<ffffffff810a30bd>] ? sys_write+0x45/0x6e
2010-09-10T19:42:31.665279+08:00 boston kernel: [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
2010-09-10T19:42:31.665282+08:00 boston kernel: BUG: scheduling while atomic: lid/2410/0x00000002
2010-09-10T19:42:31.665284+08:00 boston kernel: Modules linked in:
2010-09-10T19:42:31.665286+08:00 boston kernel: Pid: 2410, comm: lid Not tainted 2.6.36-rc3+ #5
2010-09-10T19:42:31.665289+08:00 boston kernel: Call Trace:
2010-09-10T19:42:31.665291+08:00 boston kernel: [<ffffffff8149bd23>] ? schedule+0xdf/0x68c
2010-09-10T19:42:31.665294+08:00 boston kernel: [<ffffffff81004c21>] ? dump_trace+0x237/0x263
2010-09-10T19:42:31.665297+08:00 boston kernel: [<ffffffff81029126>] ? __dequeue_entity+0x1b/0x2f
2010-09-10T19:42:31.665300+08:00 boston kernel: [<ffffffff8149c619>] ? schedule_timeout+0x18c/0x1b2
2010-09-10T19:42:31.665316+08:00 boston kernel: [<ffffffff8103cf5d>] ? process_timeout+0x0/0xa
2010-09-10T19:42:31.665320+08:00 boston kernel: [<ffffffff811fc682>] ? acpi_ec_transaction_unlocked+0x14c/0x211
2010-09-10T19:42:31.665323+08:00 boston kernel: [<ffffffff8104895d>] ? autoremove_wake_function+0x0/0x2a
2010-09-10T19:42:31.665326+08:00 boston kernel: [<ffffffff8149c621>] ? schedule_timeout+0x194/0x1b2
2010-09-10T19:42:31.665330+08:00 boston kernel: [<ffffffff811fca7b>] ? acpi_ec_transaction+0x182/0x223
2010-09-10T19:42:31.665483+08:00 boston kernel: [<ffffffff811fc735>] ? acpi_ec_transaction_unlocked+0x1ff/0x211
2010-09-10T19:42:31.665490+08:00 boston kernel: [<ffffffff8104895d>] ? autoremove_wake_function+0x0/0x2a
2010-09-10T19:42:31.665496+08:00 boston kernel: [<ffffffff811fcd07>] ? acpi_ec_space_handler+0xf1/0x1be
2010-09-10T19:42:31.665499+08:00 boston kernel: [<ffffffff811fcaec>] ? acpi_ec_transaction+0x1f3/0x223
2010-09-10T19:42:31.665501+08:00 boston kernel: [<ffffffff811fcc16>] ? acpi_ec_space_handler+0x0/0x1be
2010-09-10T19:42:31.665504+08:00 boston kernel: [<ffffffff81205a25>] ? acpi_ev_address_space_dispatch+0x16a/0x1b7
2010-09-10T19:42:31.665507+08:00 boston kernel: [<ffffffff8120a213>] ? acpi_ex_access_region+0x21b/0x228
2010-09-10T19:42:31.665510+08:00 boston kernel: [<ffffffff811f79f7>] ? acpi_os_wait_semaphore+0x41/0x4d
2010-09-10T19:42:31.665513+08:00 boston kernel: [<ffffffff8121a6ff>] ? acpi_ut_acquire_mutex+0x41/0x84
2010-09-10T19:42:31.665517+08:00 boston kernel: [<ffffffff8120a312>] ? acpi_ex_field_datum_io+0xf2/0x184
2010-09-10T19:42:31.665520+08:00 boston kernel: [<ffffffff8120a434>] ? acpi_ex_extract_from_field+0x90/0x19b
2010-09-10T19:42:31.665529+08:00 boston kernel: [<ffffffff8121a271>] ? acpi_ut_allocate_object_desc_dbg+0x39/0x6f
2010-09-10T19:42:31.665534+08:00 boston kernel: [<ffffffff81208fcf>] ? acpi_ex_read_data_from_field+0x10d/0x14a
2010-09-10T19:42:31.665537+08:00 boston kernel: [<ffffffff8120db35>] ? acpi_ex_resolve_node_to_value+0x191/0x220
2010-09-10T19:42:31.665540+08:00 boston kernel: [<ffffffff812099ff>] ? acpi_ex_resolve_to_value+0x20b/0x214
2010-09-10T19:42:31.665543+08:00 boston kernel: [<ffffffff81203f77>] ? acpi_ds_evaluate_name_path+0x73/0xed
2010-09-10T19:42:31.665546+08:00 boston kernel: [<ffffffff81202c05>] ? acpi_ds_exec_end_op+0x8e/0x3cd
2010-09-10T19:42:31.665549+08:00 boston kernel: [<ffffffff8121497d>] ? acpi_ps_parse_loop+0x7dd/0x96c
2010-09-10T19:42:31.665552+08:00 boston kernel: [<ffffffff8104c5ce>] ? up+0xe/0x36
2010-09-10T19:42:31.665555+08:00 boston kernel: [<ffffffff81213af7>] ? acpi_ps_parse_aml+0x8e/0x29a
2010-09-10T19:42:31.665558+08:00 boston kernel: [<ffffffff8121512e>] ? acpi_ps_execute_method+0x1bf/0x28d
2010-09-10T19:42:31.665573+08:00 boston kernel: [<ffffffff81210741>] ? acpi_ns_evaluate+0xdd/0x19a
2010-09-10T19:42:31.665578+08:00 boston kernel: [<ffffffff812101f3>] ? acpi_evaluate_object+0x145/0x246
2010-09-10T19:42:31.665582+08:00 boston kernel: [<ffffffff81212d5a>] ? acpi_ns_check_predefined_names+0x3dd/0x3f3
2010-09-10T19:42:31.665584+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.665587+08:00 boston kernel: [<ffffffff811f81a2>] ? acpi_evaluate_integer+0x2a/0x48
2010-09-10T19:42:31.665590+08:00 boston kernel: [<ffffffff8104c5ce>] ? up+0xe/0x36
2010-09-10T19:42:31.665593+08:00 boston kernel: [<ffffffff812217a6>] ? thermal_get_temp+0x3c/0x6b
2010-09-10T19:42:31.665596+08:00 boston kernel: [<ffffffff81397577>] ? thermal_zone_device_update+0x32/0x229
2010-09-10T19:42:31.665599+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.665602+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.665606+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.665616+08:00 boston kernel: [<ffffffff81221fbf>] ? acpi_thermal_resume+0xda/0xf2
2010-09-10T19:42:31.665620+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.665624+08:00 boston kernel: [<ffffffff81295c8d>] ? legacy_resume+0x1e/0x55
2010-09-10T19:42:31.665627+08:00 boston kernel: [<ffffffff81295d24>] ? device_resume+0x60/0xdd
2010-09-10T19:42:31.665629+08:00 boston kernel: [<ffffffff811c2102>] ? kobject_get+0x12/0x17
2010-09-10T19:42:31.665632+08:00 boston kernel: [<ffffffff812963e1>] ? dpm_resume_end+0xf2/0x349
2010-09-10T19:42:31.665636+08:00 boston kernel: [<ffffffff8105c9a4>] ? suspend_devices_and_enter+0x15b/0x188
2010-09-10T19:42:31.665638+08:00 boston kernel: [<ffffffff8105ca6a>] ? enter_state+0x99/0xcb
2010-09-10T19:42:31.665641+08:00 boston kernel: [<ffffffff8105c2da>] ? state_store+0xb1/0xcf
2010-09-10T19:42:31.665644+08:00 boston kernel: [<ffffffff810e9f0f>] ? sysfs_write_file+0xd6/0x112
2010-09-10T19:42:31.665647+08:00 boston kernel: [<ffffffff810a2f82>] ? vfs_write+0xad/0x132
2010-09-10T19:42:31.665651+08:00 boston kernel: [<ffffffff810a30bd>] ? sys_write+0x45/0x6e
2010-09-10T19:42:31.665654+08:00 boston kernel: [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
2010-09-10T19:42:31.665657+08:00 boston kernel: BUG: scheduling while atomic: lid/2410/0x00000002
2010-09-10T19:42:31.665659+08:00 boston kernel: Modules linked in:
2010-09-10T19:42:31.665661+08:00 boston kernel: Pid: 2410, comm: lid Not tainted 2.6.36-rc3+ #5
2010-09-10T19:42:31.665664+08:00 boston kernel: Call Trace:
2010-09-10T19:42:31.665666+08:00 boston kernel: [<ffffffff8149bd23>] ? schedule+0xdf/0x68c
2010-09-10T19:42:31.665669+08:00 boston kernel: [<ffffffff81004c21>] ? dump_trace+0x237/0x263
2010-09-10T19:42:31.665672+08:00 boston kernel: [<ffffffff8103cec3>] ? try_to_del_timer_sync+0x75/0x7e
2010-09-10T19:42:31.665682+08:00 boston kernel: [<ffffffff8149c619>] ? schedule_timeout+0x18c/0x1b2
2010-09-10T19:42:31.665687+08:00 boston kernel: [<ffffffff8103cf5d>] ? process_timeout+0x0/0xa
2010-09-10T19:42:31.665690+08:00 boston kernel: [<ffffffff811fc682>] ? acpi_ec_transaction_unlocked+0x14c/0x211
2010-09-10T19:42:31.665693+08:00 boston kernel: [<ffffffff8104895d>] ? autoremove_wake_function+0x0/0x2a
2010-09-10T19:42:31.665696+08:00 boston kernel: [<ffffffff8149c621>] ? schedule_timeout+0x194/0x1b2
2010-09-10T19:42:31.665699+08:00 boston kernel: [<ffffffff811fca7b>] ? acpi_ec_transaction+0x182/0x223
2010-09-10T19:42:31.665702+08:00 boston kernel: [<ffffffff811fc735>] ? acpi_ec_transaction_unlocked+0x1ff/0x211
2010-09-10T19:42:31.665705+08:00 boston kernel: [<ffffffff8104895d>] ? autoremove_wake_function+0x0/0x2a
2010-09-10T19:42:31.665708+08:00 boston kernel: [<ffffffff811fcd07>] ? acpi_ec_space_handler+0xf1/0x1be
2010-09-10T19:42:31.665711+08:00 boston kernel: [<ffffffff811fcc16>] ? acpi_ec_space_handler+0x0/0x1be
2010-09-10T19:42:31.665714+08:00 boston kernel: [<ffffffff81205a25>] ? acpi_ev_address_space_dispatch+0x16a/0x1b7
2010-09-10T19:42:31.665717+08:00 boston kernel: [<ffffffff8120a213>] ? acpi_ex_access_region+0x21b/0x228
2010-09-10T19:42:31.665721+08:00 boston kernel: [<ffffffff811f79f7>] ? acpi_os_wait_semaphore+0x41/0x4d
2010-09-10T19:42:31.665724+08:00 boston kernel: [<ffffffff8121a6ff>] ? acpi_ut_acquire_mutex+0x41/0x84
2010-09-10T19:42:31.665727+08:00 boston kernel: [<ffffffff8120a312>] ? acpi_ex_field_datum_io+0xf2/0x184
2010-09-10T19:42:31.665730+08:00 boston kernel: [<ffffffff8120a434>] ? acpi_ex_extract_from_field+0x90/0x19b
2010-09-10T19:42:31.665733+08:00 boston kernel: [<ffffffff8121a271>] ? acpi_ut_allocate_object_desc_dbg+0x39/0x6f
2010-09-10T19:42:31.665736+08:00 boston kernel: [<ffffffff81208fcf>] ? acpi_ex_read_data_from_field+0x10d/0x14a
2010-09-10T19:42:31.665739+08:00 boston kernel: [<ffffffff8120db35>] ? acpi_ex_resolve_node_to_value+0x191/0x220
2010-09-10T19:42:31.665894+08:00 boston kernel: [<ffffffff812099ff>] ? acpi_ex_resolve_to_value+0x20b/0x214
2010-09-10T19:42:31.665902+08:00 boston kernel: [<ffffffff81203f77>] ? acpi_ds_evaluate_name_path+0x73/0xed
2010-09-10T19:42:31.665905+08:00 boston kernel: [<ffffffff81202c05>] ? acpi_ds_exec_end_op+0x8e/0x3cd
2010-09-10T19:42:31.665908+08:00 boston kernel: [<ffffffff8121497d>] ? acpi_ps_parse_loop+0x7dd/0x96c
2010-09-10T19:42:31.665911+08:00 boston kernel: [<ffffffff8104c5ce>] ? up+0xe/0x36
2010-09-10T19:42:31.665914+08:00 boston kernel: [<ffffffff81213af7>] ? acpi_ps_parse_aml+0x8e/0x29a
2010-09-10T19:42:31.665917+08:00 boston kernel: [<ffffffff8121512e>] ? acpi_ps_execute_method+0x1bf/0x28d
2010-09-10T19:42:31.665920+08:00 boston kernel: [<ffffffff81210741>] ? acpi_ns_evaluate+0xdd/0x19a
2010-09-10T19:42:31.665923+08:00 boston kernel: [<ffffffff812101f3>] ? acpi_evaluate_object+0x145/0x246
2010-09-10T19:42:31.665926+08:00 boston kernel: [<ffffffff81212d5a>] ? acpi_ns_check_predefined_names+0x3dd/0x3f3
2010-09-10T19:42:31.665930+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.665933+08:00 boston kernel: [<ffffffff811f81a2>] ? acpi_evaluate_integer+0x2a/0x48
2010-09-10T19:42:31.665936+08:00 boston kernel: [<ffffffff8104c5ce>] ? up+0xe/0x36
2010-09-10T19:42:31.665939+08:00 boston kernel: [<ffffffff812217a6>] ? thermal_get_temp+0x3c/0x6b
2010-09-10T19:42:31.665942+08:00 boston kernel: [<ffffffff81397577>] ? thermal_zone_device_update+0x32/0x229
2010-09-10T19:42:31.665946+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.665949+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.665952+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.665955+08:00 boston kernel: [<ffffffff81221fbf>] ? acpi_thermal_resume+0xda/0xf2
2010-09-10T19:42:31.665958+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.665961+08:00 boston kernel: [<ffffffff81295c8d>] ? legacy_resume+0x1e/0x55
2010-09-10T19:42:31.665964+08:00 boston kernel: [<ffffffff81295d24>] ? device_resume+0x60/0xdd
2010-09-10T19:42:31.665970+08:00 boston kernel: [<ffffffff811c2102>] ? kobject_get+0x12/0x17
2010-09-10T19:42:31.665973+08:00 boston kernel: [<ffffffff812963e1>] ? dpm_resume_end+0xf2/0x349
2010-09-10T19:42:31.665977+08:00 boston kernel: [<ffffffff8105c9a4>] ? suspend_devices_and_enter+0x15b/0x188
2010-09-10T19:42:31.665979+08:00 boston kernel: [<ffffffff8105ca6a>] ? enter_state+0x99/0xcb
2010-09-10T19:42:31.665983+08:00 boston kernel: [<ffffffff8105c2da>] ? state_store+0xb1/0xcf
2010-09-10T19:42:31.665986+08:00 boston kernel: [<ffffffff810e9f0f>] ? sysfs_write_file+0xd6/0x112
2010-09-10T19:42:31.665989+08:00 boston kernel: [<ffffffff810a2f82>] ? vfs_write+0xad/0x132
2010-09-10T19:42:31.665992+08:00 boston kernel: [<ffffffff810a30bd>] ? sys_write+0x45/0x6e
2010-09-10T19:42:31.665995+08:00 boston kernel: [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
2010-09-10T19:42:31.665997+08:00 boston kernel: BUG: scheduling while atomic: lid/2410/0x00000002
2010-09-10T19:42:31.666000+08:00 boston kernel: Modules linked in:
2010-09-10T19:42:31.666002+08:00 boston kernel: Pid: 2410, comm: lid Not tainted 2.6.36-rc3+ #5
2010-09-10T19:42:31.666005+08:00 boston kernel: Call Trace:
2010-09-10T19:42:31.666008+08:00 boston kernel: [<ffffffff8149bd23>] ? schedule+0xdf/0x68c
2010-09-10T19:42:31.666011+08:00 boston kernel: [<ffffffff81004c21>] ? dump_trace+0x237/0x263
2010-09-10T19:42:31.666014+08:00 boston kernel: [<ffffffff8103cec3>] ? try_to_del_timer_sync+0x75/0x7e
2010-09-10T19:42:31.666026+08:00 boston kernel: [<ffffffff8149c619>] ? schedule_timeout+0x18c/0x1b2
2010-09-10T19:42:31.666030+08:00 boston kernel: [<ffffffff8103cf5d>] ? process_timeout+0x0/0xa
2010-09-10T19:42:31.666033+08:00 boston kernel: [<ffffffff811fc682>] ? acpi_ec_transaction_unlocked+0x14c/0x211
2010-09-10T19:42:31.666036+08:00 boston kernel: [<ffffffff8104895d>] ? autoremove_wake_function+0x0/0x2a
2010-09-10T19:42:31.666040+08:00 boston kernel: [<ffffffff8149c621>] ? schedule_timeout+0x194/0x1b2
2010-09-10T19:42:31.666043+08:00 boston kernel: [<ffffffff811fca7b>] ? acpi_ec_transaction+0x182/0x223
2010-09-10T19:42:31.666046+08:00 boston kernel: [<ffffffff811fc735>] ? acpi_ec_transaction_unlocked+0x1ff/0x211
2010-09-10T19:42:31.666048+08:00 boston kernel: [<ffffffff8104895d>] ? autoremove_wake_function+0x0/0x2a
2010-09-10T19:42:31.666052+08:00 boston kernel: [<ffffffff811fcd07>] ? acpi_ec_space_handler+0xf1/0x1be
2010-09-10T19:42:31.666055+08:00 boston kernel: [<ffffffff811fcc16>] ? acpi_ec_space_handler+0x0/0x1be
2010-09-10T19:42:31.666058+08:00 boston kernel: [<ffffffff81205a25>] ? acpi_ev_address_space_dispatch+0x16a/0x1b7
2010-09-10T19:42:31.666061+08:00 boston kernel: [<ffffffff8120a213>] ? acpi_ex_access_region+0x21b/0x228
2010-09-10T19:42:31.666064+08:00 boston kernel: [<ffffffff811f79f7>] ? acpi_os_wait_semaphore+0x41/0x4d
2010-09-10T19:42:31.666067+08:00 boston kernel: [<ffffffff8121a6ff>] ? acpi_ut_acquire_mutex+0x41/0x84
2010-09-10T19:42:31.666070+08:00 boston kernel: [<ffffffff8120a312>] ? acpi_ex_field_datum_io+0xf2/0x184
2010-09-10T19:42:31.666073+08:00 boston kernel: [<ffffffff8120a434>] ? acpi_ex_extract_from_field+0x90/0x19b
2010-09-10T19:42:31.666076+08:00 boston kernel: [<ffffffff8121a271>] ? acpi_ut_allocate_object_desc_dbg+0x39/0x6f
2010-09-10T19:42:31.666079+08:00 boston kernel: [<ffffffff81208fcf>] ? acpi_ex_read_data_from_field+0x10d/0x14a
2010-09-10T19:42:31.666082+08:00 boston kernel: [<ffffffff8120db35>] ? acpi_ex_resolve_node_to_value+0x191/0x220
2010-09-10T19:42:31.666085+08:00 boston kernel: [<ffffffff812099ff>] ? acpi_ex_resolve_to_value+0x20b/0x214
2010-09-10T19:42:31.666088+08:00 boston kernel: [<ffffffff81203f77>] ? acpi_ds_evaluate_name_path+0x73/0xed
2010-09-10T19:42:31.666091+08:00 boston kernel: [<ffffffff81202c05>] ? acpi_ds_exec_end_op+0x8e/0x3cd
2010-09-10T19:42:31.666104+08:00 boston kernel: [<ffffffff8121497d>] ? acpi_ps_parse_loop+0x7dd/0x96c
2010-09-10T19:42:31.666109+08:00 boston kernel: [<ffffffff8104c5ce>] ? up+0xe/0x36
2010-09-10T19:42:31.666112+08:00 boston kernel: [<ffffffff81213af7>] ? acpi_ps_parse_aml+0x8e/0x29a
2010-09-10T19:42:31.666115+08:00 boston kernel: [<ffffffff8121512e>] ? acpi_ps_execute_method+0x1bf/0x28d
2010-09-10T19:42:31.666117+08:00 boston kernel: [<ffffffff81210741>] ? acpi_ns_evaluate+0xdd/0x19a
2010-09-10T19:42:31.666120+08:00 boston kernel: [<ffffffff812101f3>] ? acpi_evaluate_object+0x145/0x246
2010-09-10T19:42:31.666124+08:00 boston kernel: [<ffffffff81212d5a>] ? acpi_ns_check_predefined_names+0x3dd/0x3f3
2010-09-10T19:42:31.666127+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.666130+08:00 boston kernel: [<ffffffff811f81a2>] ? acpi_evaluate_integer+0x2a/0x48
2010-09-10T19:42:31.666133+08:00 boston kernel: [<ffffffff8104c5ce>] ? up+0xe/0x36
2010-09-10T19:42:31.666136+08:00 boston kernel: [<ffffffff812217a6>] ? thermal_get_temp+0x3c/0x6b
2010-09-10T19:42:31.666139+08:00 boston kernel: [<ffffffff81397577>] ? thermal_zone_device_update+0x32/0x229
2010-09-10T19:42:31.666142+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.666293+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.666299+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.666305+08:00 boston kernel: [<ffffffff81221fbf>] ? acpi_thermal_resume+0xda/0xf2
2010-09-10T19:42:31.666307+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.666310+08:00 boston kernel: [<ffffffff81295c8d>] ? legacy_resume+0x1e/0x55
2010-09-10T19:42:31.666313+08:00 boston kernel: [<ffffffff81295d24>] ? device_resume+0x60/0xdd
2010-09-10T19:42:31.666316+08:00 boston kernel: [<ffffffff811c2102>] ? kobject_get+0x12/0x17
2010-09-10T19:42:31.666319+08:00 boston kernel: [<ffffffff812963e1>] ? dpm_resume_end+0xf2/0x349
2010-09-10T19:42:31.666322+08:00 boston kernel: [<ffffffff8105c9a4>] ? suspend_devices_and_enter+0x15b/0x188
2010-09-10T19:42:31.666325+08:00 boston kernel: [<ffffffff8105ca6a>] ? enter_state+0x99/0xcb
2010-09-10T19:42:31.666328+08:00 boston kernel: [<ffffffff8105c2da>] ? state_store+0xb1/0xcf
2010-09-10T19:42:31.666336+08:00 boston kernel: [<ffffffff810e9f0f>] ? sysfs_write_file+0xd6/0x112
2010-09-10T19:42:31.666341+08:00 boston kernel: [<ffffffff810a2f82>] ? vfs_write+0xad/0x132
2010-09-10T19:42:31.666344+08:00 boston kernel: [<ffffffff810a30bd>] ? sys_write+0x45/0x6e
2010-09-10T19:42:31.666347+08:00 boston kernel: [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
2010-09-10T19:42:31.666349+08:00 boston kernel: BUG: scheduling while atomic: lid/2410/0x00000002
2010-09-10T19:42:31.666352+08:00 boston kernel: Modules linked in:
2010-09-10T19:42:31.666354+08:00 boston kernel: Pid: 2410, comm: lid Not tainted 2.6.36-rc3+ #5
2010-09-10T19:42:31.666357+08:00 boston kernel: Call Trace:
2010-09-10T19:42:31.666360+08:00 boston kernel: [<ffffffff8149bd23>] ? schedule+0xdf/0x68c
2010-09-10T19:42:31.666363+08:00 boston kernel: [<ffffffff81045028>] ? queue_work+0x44/0x4f
2010-09-10T19:42:31.666366+08:00 boston kernel: [<ffffffff8149c4ae>] ? schedule_timeout+0x21/0x1b2
2010-09-10T19:42:31.666369+08:00 boston kernel: [<ffffffff811fa41e>] ? acpi_device_resume+0x0/0x2b
2010-09-10T19:42:31.666372+08:00 boston kernel: [<ffffffff8121a6ba>] ? acpi_ut_release_mutex+0x5e/0x62
2010-09-10T19:42:31.666375+08:00 boston kernel: [<ffffffff811fa4c4>] ? acpi_bus_data_handler+0x0/0x1
2010-09-10T19:42:31.666377+08:00 boston kernel: [<ffffffff8120fd4c>] ? acpi_get_data+0x60/0x73
2010-09-10T19:42:31.666384+08:00 boston kernel: [<ffffffff8149bb30>] ? wait_for_common+0xc8/0x142
2010-09-10T19:42:31.666395+08:00 boston kernel: [<ffffffff81030891>] ? default_wake_function+0x0/0xf
2010-09-10T19:42:31.666399+08:00 boston kernel: [<ffffffff81295ce0>] ? device_resume+0x1c/0xdd
2010-09-10T19:42:31.666402+08:00 boston kernel: [<ffffffff811c2102>] ? kobject_get+0x12/0x17
2010-09-10T19:42:31.666405+08:00 boston kernel: [<ffffffff812963e1>] ? dpm_resume_end+0xf2/0x349
2010-09-10T19:42:31.666408+08:00 boston kernel: [<ffffffff8105c9a4>] ? suspend_devices_and_enter+0x15b/0x188
2010-09-10T19:42:31.666411+08:00 boston kernel: [<ffffffff8105ca6a>] ? enter_state+0x99/0xcb
2010-09-10T19:42:31.666414+08:00 boston kernel: [<ffffffff8105c2da>] ? state_store+0xb1/0xcf
2010-09-10T19:42:31.666417+08:00 boston kernel: [<ffffffff810e9f0f>] ? sysfs_write_file+0xd6/0x112
2010-09-10T19:42:31.666420+08:00 boston kernel: [<ffffffff810a2f82>] ? vfs_write+0xad/0x132
2010-09-10T19:42:31.666423+08:00 boston kernel: [<ffffffff810a30bd>] ? sys_write+0x45/0x6e
2010-09-10T19:42:31.666426+08:00 boston kernel: [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
2010-09-10T19:42:31.666428+08:00 boston kernel: BUG: scheduling while atomic: lid/2410/0x00000002
2010-09-10T19:42:31.666431+08:00 boston kernel: Modules linked in:
2010-09-10T19:42:31.666433+08:00 boston kernel: Pid: 2410, comm: lid Not tainted 2.6.36-rc3+ #5
2010-09-10T19:42:31.666435+08:00 boston kernel: Call Trace:
2010-09-10T19:42:31.666438+08:00 boston kernel: [<ffffffff8149bd23>] ? schedule+0xdf/0x68c
2010-09-10T19:42:31.666441+08:00 boston kernel: [<ffffffff81029df1>] ? pick_next_task_fair+0xc5/0x118
2010-09-10T19:42:31.666444+08:00 boston kernel: [<ffffffff8103cbff>] ? lock_timer_base+0x25/0x49
2010-09-10T19:42:31.666447+08:00 boston kernel: [<ffffffff8149c619>] ? schedule_timeout+0x18c/0x1b2
2010-09-10T19:42:31.666449+08:00 boston kernel: [<ffffffff8103cf5d>] ? process_timeout+0x0/0xa
2010-09-10T19:42:31.666461+08:00 boston kernel: [<ffffffff811fc682>] ? acpi_ec_transaction_unlocked+0x14c/0x211
2010-09-10T19:42:31.666466+08:00 boston kernel: [<ffffffff8104895d>] ? autoremove_wake_function+0x0/0x2a
2010-09-10T19:42:31.666469+08:00 boston kernel: [<ffffffff811fca7b>] ? acpi_ec_transaction+0x182/0x223
2010-09-10T19:42:31.666472+08:00 boston kernel: [<ffffffff811fcaec>] ? acpi_ec_transaction+0x1f3/0x223
2010-09-10T19:42:31.666475+08:00 boston kernel: [<ffffffff811fcd07>] ? acpi_ec_space_handler+0xf1/0x1be
2010-09-10T19:42:31.666478+08:00 boston kernel: [<ffffffff811c7770>] ? vsnprintf+0x3ef/0x428
2010-09-10T19:42:31.666481+08:00 boston kernel: [<ffffffff811fcc16>] ? acpi_ec_space_handler+0x0/0x1be
2010-09-10T19:42:31.666483+08:00 boston kernel: [<ffffffff81205a25>] ? acpi_ev_address_space_dispatch+0x16a/0x1b7
2010-09-10T19:42:31.666486+08:00 boston kernel: [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
2010-09-10T19:42:31.666490+08:00 boston kernel: [<ffffffff8120a213>] ? acpi_ex_access_region+0x21b/0x228
2010-09-10T19:42:31.666492+08:00 boston kernel: [<ffffffff811c6bba>] ? string+0x43/0xa2
2010-09-10T19:42:31.666495+08:00 boston kernel: [<ffffffff8120a312>] ? acpi_ex_field_datum_io+0xf2/0x184
2010-09-10T19:42:31.666499+08:00 boston kernel: [<ffffffff8120a434>] ? acpi_ex_extract_from_field+0x90/0x19b
2010-09-10T19:42:31.666502+08:00 boston kernel: [<ffffffff8121a271>] ? acpi_ut_allocate_object_desc_dbg+0x39/0x6f
2010-09-10T19:42:31.666505+08:00 boston kernel: [<ffffffff81208fcf>] ? acpi_ex_read_data_from_field+0x10d/0x14a
2010-09-10T19:42:31.666508+08:00 boston kernel: [<ffffffff8120db35>] ? acpi_ex_resolve_node_to_value+0x191/0x220
2010-09-10T19:42:31.666511+08:00 boston kernel: [<ffffffff812099ff>] ? acpi_ex_resolve_to_value+0x20b/0x214
2010-09-10T19:42:31.666514+08:00 boston kernel: [<ffffffff81203f77>] ? acpi_ds_evaluate_name_path+0x73/0xed
2010-09-10T19:42:31.666517+08:00 boston kernel: [<ffffffff81202c05>] ? acpi_ds_exec_end_op+0x8e/0x3cd
2010-09-10T19:42:31.666520+08:00 boston kernel: [<ffffffff8121497d>] ? acpi_ps_parse_loop+0x7dd/0x96c
2010-09-10T19:42:31.666522+08:00 boston kernel: [<ffffffff8104c5ce>] ? up+0xe/0x36
2010-09-10T19:42:31.666526+08:00 boston kernel: [<ffffffff81213af7>] ? acpi_ps_parse_aml+0x8e/0x29a
2010-09-10T19:42:31.666529+08:00 boston kernel: [<ffffffff8121512e>] ? acpi_ps_execute_method+0x1bf/0x28d
2010-09-10T19:42:31.666531+08:00 boston kernel: [<ffffffff81210741>] ? acpi_ns_evaluate+0xdd/0x19a
2010-09-10T19:42:31.666534+08:00 boston kernel: [<ffffffff812101f3>] ? acpi_evaluate_object+0x145/0x246
2010-09-10T19:42:31.666537+08:00 boston kernel: [<ffffffff813b6eb7>] ? acpi_evalf+0x135/0x1cc
2010-09-10T19:42:31.666550+08:00 boston kernel: [<ffffffff813b6eb7>] ? acpi_evalf+0x135/0x1cc
2010-09-10T19:42:31.666554+08:00 boston kernel: [<ffffffff813b6f81>] ? hotkey_get_wlsw+0x33/0x4d
2010-09-10T19:42:31.666558+08:00 boston kernel: [<ffffffff813b7ff1>] ? tpacpi_send_radiosw_update+0x6/0xb8
2010-09-10T19:42:31.666560+08:00 boston kernel: [<ffffffff813bb863>] ? hotkey_resume+0x44/0xb1
2010-09-10T19:42:31.666712+08:00 boston kernel: [<ffffffff813b6cf5>] ? tpacpi_resume_handler+0x21/0x3d
2010-09-10T19:42:31.666718+08:00 boston kernel: [<ffffffff81295b7b>] ? pm_op+0x8a/0x11e
2010-09-10T19:42:31.666724+08:00 boston kernel: [<ffffffff81295d11>] ? device_resume+0x4d/0xdd
2010-09-10T19:42:31.666726+08:00 boston kernel: [<ffffffff811c2102>] ? kobject_get+0x12/0x17
2010-09-10T19:42:31.666729+08:00 boston kernel: [<ffffffff812963e1>] ? dpm_resume_end+0xf2/0x349
2010-09-10T19:42:31.666732+08:00 boston kernel: [<ffffffff8105c9a4>] ? suspend_devices_and_enter+0x15b/0x188
2010-09-10T19:42:31.666735+08:00 boston kernel: [<ffffffff8105ca6a>] ? enter_state+0x99/0xcb
2010-09-10T19:42:31.666738+08:00 boston kernel: [<ffffffff8105c2da>] ? state_store+0xb1/0xcf
2010-09-10T19:42:31.666741+08:00 boston kernel: [<ffffffff810e9f0f>] ? sysfs_write_file+0xd6/0x112
2010-09-10T19:42:31.666744+08:00 boston kernel: [<ffffffff810a2f82>] ? vfs_write+0xad/0x132
2010-09-10T19:42:31.666746+08:00 boston kernel: [<ffffffff810a30bd>] ? sys_write+0x45/0x6e
2010-09-10T19:42:31.666755+08:00 boston kernel: [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
2010-09-10T19:42:31.666759+08:00 boston kernel: BUG: scheduling while atomic: lid/2410/0x00000002
2010-09-10T19:42:31.666761+08:00 boston kernel: Modules linked in:
2010-09-10T19:42:31.666764+08:00 boston kernel: Pid: 2410, comm: lid Not tainted 2.6.36-rc3+ #5
2010-09-10T19:42:31.666766+08:00 boston kernel: Call Trace:
2010-09-10T19:42:31.666769+08:00 boston kernel: [<ffffffff8149bd23>] ? schedule+0xdf/0x68c
2010-09-10T19:42:31.666772+08:00 boston kernel: [<ffffffff8149c619>] ? schedule_timeout+0x18c/0x1b2
2010-09-10T19:42:31.666775+08:00 boston kernel: [<ffffffff8103cf5d>] ? process_timeout+0x0/0xa
2010-09-10T19:42:31.666778+08:00 boston kernel: [<ffffffff811fc682>] ? acpi_ec_transaction_unlocked+0x14c/0x211
2010-09-10T19:42:31.666781+08:00 boston kernel: [<ffffffff8104895d>] ? autoremove_wake_function+0x0/0x2a
2010-09-10T19:42:31.666784+08:00 boston kernel: [<ffffffff8104895d>] ? autoremove_wake_function+0x0/0x2a
2010-09-10T19:42:31.666787+08:00 boston kernel: [<ffffffff811fca7b>] ? acpi_ec_transaction+0x182/0x223
2010-09-10T19:42:31.666790+08:00 boston kernel: [<ffffffff811fcaec>] ? acpi_ec_transaction+0x1f3/0x223
2010-09-10T19:42:31.666793+08:00 boston kernel: [<ffffffff811fcd07>] ? acpi_ec_space_handler+0xf1/0x1be
2010-09-10T19:42:31.666796+08:00 boston kernel: [<ffffffff8104c664>] ? down_timeout+0x42/0x4d
2010-09-10T19:42:31.666799+08:00 boston kernel: [<ffffffff811fcc16>] ? acpi_ec_space_handler+0x0/0x1be
2010-09-10T19:42:31.666809+08:00 boston kernel: [<ffffffff81205a25>] ? acpi_ev_address_space_dispatch+0x16a/0x1b7
2010-09-10T19:42:31.666813+08:00 boston kernel: [<ffffffff8120a213>] ? acpi_ex_access_region+0x21b/0x228
2010-09-10T19:42:31.666816+08:00 boston kernel: [<ffffffff8120a213>] ? acpi_ex_access_region+0x21b/0x228
2010-09-10T19:42:31.666819+08:00 boston kernel: [<ffffffff811c6bba>] ? string+0x43/0xa2
2010-09-10T19:42:31.666822+08:00 boston kernel: [<ffffffff8120a312>] ? acpi_ex_field_datum_io+0xf2/0x184
2010-09-10T19:42:31.666825+08:00 boston kernel: [<ffffffff8120a434>] ? acpi_ex_extract_from_field+0x90/0x19b
2010-09-10T19:42:31.666828+08:00 boston kernel: [<ffffffff8121a271>] ? acpi_ut_allocate_object_desc_dbg+0x39/0x6f
2010-09-10T19:42:31.666832+08:00 boston kernel: [<ffffffff81208fcf>] ? acpi_ex_read_data_from_field+0x10d/0x14a
2010-09-10T19:42:31.666835+08:00 boston kernel: [<ffffffff8120db35>] ? acpi_ex_resolve_node_to_value+0x191/0x220
2010-09-10T19:42:31.666838+08:00 boston kernel: [<ffffffff812099ff>] ? acpi_ex_resolve_to_value+0x20b/0x214
2010-09-10T19:42:31.666841+08:00 boston kernel: [<ffffffff81203f77>] ? acpi_ds_evaluate_name_path+0x73/0xed
2010-09-10T19:42:31.666844+08:00 boston kernel: [<ffffffff81202c05>] ? acpi_ds_exec_end_op+0x8e/0x3cd
2010-09-10T19:42:31.666847+08:00 boston kernel: [<ffffffff8121497d>] ? acpi_ps_parse_loop+0x7dd/0x96c
2010-09-10T19:42:31.666850+08:00 boston kernel: [<ffffffff81213af7>] ? acpi_ps_parse_aml+0x8e/0x29a
2010-09-10T19:42:31.666853+08:00 boston kernel: [<ffffffff8121512e>] ? acpi_ps_execute_method+0x1bf/0x28d
2010-09-10T19:42:31.666856+08:00 boston kernel: [<ffffffff81210741>] ? acpi_ns_evaluate+0xdd/0x19a
2010-09-10T19:42:31.666859+08:00 boston kernel: [<ffffffff812101f3>] ? acpi_evaluate_object+0x145/0x246
2010-09-10T19:42:31.666862+08:00 boston kernel: [<ffffffff812102e1>] ? acpi_evaluate_object+0x233/0x246
2010-09-10T19:42:31.666874+08:00 boston kernel: [<ffffffff813b6eb7>] ? acpi_evalf+0x135/0x1cc
2010-09-10T19:42:31.666878+08:00 boston kernel: [<ffffffff813b6eb7>] ? acpi_evalf+0x135/0x1cc
2010-09-10T19:42:31.666881+08:00 boston kernel: [<ffffffff813b6eb7>] ? acpi_evalf+0x135/0x1cc
2010-09-10T19:42:31.666884+08:00 boston kernel: [<ffffffff813b7774>] ? bluetooth_get_status+0x25/0x3e
2010-09-10T19:42:31.666887+08:00 boston kernel: [<ffffffff813b7f3b>] ? tpacpi_rfk_update_swstate+0x19/0x37
2010-09-10T19:42:31.666890+08:00 boston kernel: [<ffffffff813b800d>] ? tpacpi_send_radiosw_update+0x22/0xb8
2010-09-10T19:42:31.666893+08:00 boston kernel: [<ffffffff813bb863>] ? hotkey_resume+0x44/0xb1
2010-09-10T19:42:31.666896+08:00 boston kernel: [<ffffffff813b6cf5>] ? tpacpi_resume_handler+0x21/0x3d
2010-09-10T19:42:31.666899+08:00 boston kernel: [<ffffffff81295b7b>] ? pm_op+0x8a/0x11e
2010-09-10T19:42:31.666902+08:00 boston kernel: [<ffffffff81295d11>] ? device_resume+0x4d/0xdd
2010-09-10T19:42:31.666905+08:00 boston kernel: [<ffffffff811c2102>] ? kobject_get+0x12/0x17
2010-09-10T19:42:31.666908+08:00 boston kernel: [<ffffffff812963e1>] ? dpm_resume_end+0xf2/0x349
2010-09-10T19:42:31.666911+08:00 boston kernel: [<ffffffff8105c9a4>] ? suspend_devices_and_enter+0x15b/0x188
2010-09-10T19:42:31.666914+08:00 boston kernel: [<ffffffff8105ca6a>] ? enter_state+0x99/0xcb
2010-09-10T19:42:31.666916+08:00 boston kernel: [<ffffffff8105c2da>] ? state_store+0xb1/0xcf
2010-09-10T19:42:31.666919+08:00 boston kernel: [<ffffffff810e9f0f>] ? sysfs_write_file+0xd6/0x112
2010-09-10T19:42:31.666922+08:00 boston kernel: [<ffffffff810a2f82>] ? vfs_write+0xad/0x132
2010-09-10T19:42:31.666925+08:00 boston kernel: [<ffffffff810a30bd>] ? sys_write+0x45/0x6e
2010-09-10T19:42:31.666928+08:00 boston kernel: [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
2010-09-10T19:42:31.666931+08:00 boston kernel: BUG: scheduling while atomic: lid/2410/0x00000002
2010-09-10T19:42:31.666943+08:00 boston kernel: Modules linked in:
2010-09-10T19:42:31.666947+08:00 boston kernel: Pid: 2410, comm: lid Not tainted 2.6.36-rc3+ #5
2010-09-10T19:42:31.666949+08:00 boston kernel: Call Trace:
2010-09-10T19:42:31.666952+08:00 boston kernel: [<ffffffff8149bd23>] ? schedule+0xdf/0x68c
2010-09-10T19:42:31.666955+08:00 boston kernel: [<ffffffff8149c619>] ? schedule_timeout+0x18c/0x1b2
2010-09-10T19:42:31.666958+08:00 boston kernel: [<ffffffff8103cf5d>] ? process_timeout+0x0/0xa
2010-09-10T19:42:31.666961+08:00 boston kernel: [<ffffffff811fc682>] ? acpi_ec_transaction_unlocked+0x14c/0x211
2010-09-10T19:42:31.666964+08:00 boston kernel: [<ffffffff8104895d>] ? autoremove_wake_function+0x0/0x2a
2010-09-10T19:42:31.666967+08:00 boston kernel: [<ffffffff811fca7b>] ? acpi_ec_transaction+0x182/0x223
2010-09-10T19:42:31.666970+08:00 boston kernel: [<ffffffff8122e57f>] ? mix_pool_bytes_extract+0x59/0x154
2010-09-10T19:42:31.666973+08:00 boston kernel: [<ffffffff811fcbb8>] ? ec_read+0x57/0x67
2010-09-10T19:42:31.667129+08:00 boston kernel: [<ffffffff813b7c19>] ? acpi_ec_read+0x4a/0x54
2010-09-10T19:42:31.667138+08:00 boston kernel: [<ffffffff813b7e39>] ? fan_get_status+0x5e/0x9c
2010-09-10T19:42:31.667141+08:00 boston kernel: [<ffffffff813bfe11>] ? snd_ctl_notify+0x26/0x133
2010-09-10T19:42:31.667144+08:00 boston kernel: [<ffffffff813b8613>] ? fan_get_status_safe+0x29/0x69
2010-09-10T19:42:31.667146+08:00 boston kernel: [<ffffffff813b88e4>] ? fan_resume+0x34/0xbb
2010-09-10T19:42:31.667149+08:00 boston kernel: [<ffffffff813b6cf5>] ? tpacpi_resume_handler+0x21/0x3d
2010-09-10T19:42:31.667152+08:00 boston kernel: [<ffffffff81295b7b>] ? pm_op+0x8a/0x11e
2010-09-10T19:42:31.667155+08:00 boston kernel: [<ffffffff81295d11>] ? device_resume+0x4d/0xdd
2010-09-10T19:42:31.667158+08:00 boston kernel: [<ffffffff811c2102>] ? kobject_get+0x12/0x17
2010-09-10T19:42:31.667161+08:00 boston kernel: [<ffffffff812963e1>] ? dpm_resume_end+0xf2/0x349
2010-09-10T19:42:31.667164+08:00 boston kernel: [<ffffffff8105c9a4>] ? suspend_devices_and_enter+0x15b/0x188
2010-09-10T19:42:31.667168+08:00 boston kernel: [<ffffffff8105ca6a>] ? enter_state+0x99/0xcb
2010-09-10T19:42:31.667171+08:00 boston kernel: [<ffffffff8105c2da>] ? state_store+0xb1/0xcf
2010-09-10T19:42:31.667174+08:00 boston kernel: [<ffffffff810e9f0f>] ? sysfs_write_file+0xd6/0x112
2010-09-10T19:42:31.667177+08:00 boston kernel: [<ffffffff810a2f82>] ? vfs_write+0xad/0x132
2010-09-10T19:42:31.667180+08:00 boston kernel: [<ffffffff810a30bd>] ? sys_write+0x45/0x6e
2010-09-10T19:42:31.667183+08:00 boston kernel: [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
2010-09-10T19:42:31.667186+08:00 boston kernel: BUG: scheduling while atomic: lid/2410/0x00000002
2010-09-10T19:42:31.667188+08:00 boston kernel: Modules linked in:
2010-09-10T19:42:31.667191+08:00 boston kernel: Pid: 2410, comm: lid Not tainted 2.6.36-rc3+ #5
2010-09-10T19:42:31.667193+08:00 boston kernel: Call Trace:
2010-09-10T19:42:31.667196+08:00 boston kernel: [<ffffffff8149bd23>] ? schedule+0xdf/0x68c
2010-09-10T19:42:31.667199+08:00 boston kernel: [<ffffffff81045028>] ? queue_work+0x44/0x4f
2010-09-10T19:42:31.667202+08:00 boston kernel: [<ffffffff8149c4ae>] ? schedule_timeout+0x21/0x1b2
2010-09-10T19:42:31.667213+08:00 boston kernel: [<ffffffff813b7c19>] ? acpi_ec_read+0x4a/0x54
2010-09-10T19:42:31.667216+08:00 boston kernel: [<ffffffff8149bb30>] ? wait_for_common+0xc8/0x142
2010-09-10T19:42:31.667219+08:00 boston kernel: [<ffffffff81030891>] ? default_wake_function+0x0/0xf
2010-09-10T19:42:31.667222+08:00 boston kernel: [<ffffffff81295ce0>] ? device_resume+0x1c/0xdd
2010-09-10T19:42:31.667241+08:00 boston kernel: [<ffffffff811c2102>] ? kobject_get+0x12/0x17
2010-09-10T19:42:31.667246+08:00 boston kernel: [<ffffffff812963e1>] ? dpm_resume_end+0xf2/0x349
2010-09-10T19:42:31.667251+08:00 boston kernel: [<ffffffff8105c9a4>] ? suspend_devices_and_enter+0x15b/0x188
2010-09-10T19:42:31.667255+08:00 boston kernel: [<ffffffff8105ca6a>] ? enter_state+0x99/0xcb
2010-09-10T19:42:31.667259+08:00 boston kernel: [<ffffffff8105c2da>] ? state_store+0xb1/0xcf
2010-09-10T19:42:31.667264+08:00 boston kernel: [<ffffffff810e9f0f>] ? sysfs_write_file+0xd6/0x112
2010-09-10T19:42:31.667268+08:00 boston kernel: [<ffffffff810a2f82>] ? vfs_write+0xad/0x132
2010-09-10T19:42:31.667273+08:00 boston kernel: [<ffffffff810a30bd>] ? sys_write+0x45/0x6e
2010-09-10T19:42:31.667277+08:00 boston kernel: [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
2010-09-10T19:42:31.667281+08:00 boston kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
2010-09-10T19:42:31.667285+08:00 boston kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (unknown) succeeded
2010-09-10T19:42:31.667290+08:00 boston kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (unknown) filtered out
2010-09-10T19:42:31.667303+08:00 boston kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (unknown) filtered out
2010-09-10T19:42:31.667309+08:00 boston kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (unknown) succeeded
2010-09-10T19:42:31.667313+08:00 boston kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (unknown) filtered out
2010-09-10T19:42:31.667318+08:00 boston kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (unknown) filtered out
2010-09-10T19:42:31.667322+08:00 boston kernel: ata1.00: configured for UDMA/100
2010-09-10T19:42:31.667327+08:00 boston kernel: ata6: SATA link down (SStatus 0 SControl 300)
2010-09-10T19:42:31.667331+08:00 boston kernel: ata1.00: configured for UDMA/100
2010-09-10T19:42:31.667334+08:00 boston kernel: ata1: EH complete
2010-09-10T19:42:31.667339+08:00 boston kernel: BUG: scheduling while atomic: lid/2410/0x00000002
2010-09-10T19:42:31.667342+08:00 boston kernel: Modules linked in:
2010-09-10T19:42:31.667347+08:00 boston kernel: Pid: 2410, comm: lid Not tainted 2.6.36-rc3+ #5
2010-09-10T19:42:31.667350+08:00 boston kernel: Call Trace:
2010-09-10T19:42:31.667364+08:00 boston kernel: [<ffffffff8149bd23>] ? schedule+0xdf/0x68c
2010-09-10T19:42:31.667369+08:00 boston kernel: [<ffffffff81045028>] ? queue_work+0x44/0x4f
2010-09-10T19:42:31.667374+08:00 boston kernel: [<ffffffff8149c4ae>] ? schedule_timeout+0x21/0x1b2
2010-09-10T19:42:31.667379+08:00 boston kernel: [<ffffffff8136c05b>] ? mousedev_event+0x479/0x4a6
2010-09-10T19:42:31.667384+08:00 boston kernel: [<ffffffff8149bb30>] ? wait_for_common+0xc8/0x142
2010-09-10T19:42:31.667389+08:00 boston kernel: [<ffffffff81030891>] ? default_wake_function+0x0/0xf
2010-09-10T19:42:31.667393+08:00 boston kernel: [<ffffffff81295ce0>] ? device_resume+0x1c/0xdd
2010-09-10T19:42:31.667398+08:00 boston kernel: [<ffffffff811c2102>] ? kobject_get+0x12/0x17
2010-09-10T19:42:31.667403+08:00 boston kernel: [<ffffffff812963e1>] ? dpm_resume_end+0xf2/0x349
2010-09-10T19:42:31.667407+08:00 boston kernel: [<ffffffff8105c9a4>] ? suspend_devices_and_enter+0x15b/0x188
2010-09-10T19:42:31.667419+08:00 boston kernel: [<ffffffff8105ca6a>] ? enter_state+0x99/0xcb
2010-09-10T19:42:31.667425+08:00 boston kernel: [<ffffffff8105c2da>] ? state_store+0xb1/0xcf
2010-09-10T19:42:31.667430+08:00 boston kernel: [<ffffffff810e9f0f>] ? sysfs_write_file+0xd6/0x112
2010-09-10T19:42:31.667434+08:00 boston kernel: [<ffffffff810a2f82>] ? vfs_write+0xad/0x132
2010-09-10T19:42:31.667439+08:00 boston kernel: [<ffffffff810a30bd>] ? sys_write+0x45/0x6e
2010-09-10T19:42:31.667443+08:00 boston kernel: [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
2010-09-10T19:42:31.667447+08:00 boston kernel: ata5: SATA link down (SStatus 0 SControl 300)
2010-09-10T19:42:31.667451+08:00 boston kernel: PM: resume of devices complete after 407.751 msecs
2010-09-10T19:42:31.667455+08:00 boston kernel: Clocksource tsc unstable (delta = -17178559903 ns)
2010-09-10T19:42:31.667459+08:00 boston kernel: Restarting tasks ... 
2010-09-10T19:42:31.667463+08:00 boston kernel: BUG: scheduling while atomic: lid/2410/0x00000002
2010-09-10T19:42:31.667467+08:00 boston kernel: Modules linked in:
2010-09-10T19:42:31.667472+08:00 boston kernel: Pid: 2410, comm: lid Not tainted 2.6.36-rc3+ #5
2010-09-10T19:42:31.667477+08:00 boston kernel: Call Trace:
2010-09-10T19:42:31.667481+08:00 boston kernel: [<ffffffff8149bd23>] ? schedule+0xdf/0x68c
2010-09-10T19:42:31.667486+08:00 boston kernel: [<ffffffff8105c4ed>] ? thaw_processes+0x34/0x43
2010-09-10T19:42:31.667491+08:00 boston kernel: [<ffffffff8105ca71>] ? enter_state+0xa0/0xcb
2010-09-10T19:42:31.667496+08:00 boston kernel: [<ffffffff8105c2da>] ? state_store+0xb1/0xcf
2010-09-10T19:42:31.667500+08:00 boston kernel: [<ffffffff810e9f0f>] ? sysfs_write_file+0xd6/0x112
2010-09-10T19:42:31.667504+08:00 boston kernel: [<ffffffff810a2f82>] ? vfs_write+0xad/0x132
2010-09-10T19:42:31.667508+08:00 boston kernel: [<ffffffff810a30bd>] ? sys_write+0x45/0x6e
2010-09-10T19:42:31.667556+08:00 boston kernel: [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
2010-09-10T19:42:31.667568+08:00 boston kernel: done.
2010-09-10T19:42:31.667573+08:00 boston kernel: video LNXVIDEO:00: Restoring backlight state
2010-09-10T19:42:31.667578+08:00 boston kernel: BUG: scheduling while atomic: lid/2410/0x00000002
2010-09-10T19:42:31.667582+08:00 boston kernel: Modules linked in:
2010-09-10T19:42:31.667587+08:00 boston kernel: Pid: 2410, comm: lid Not tainted 2.6.36-rc3+ #5
2010-09-10T19:42:31.667591+08:00 boston kernel: Call Trace:
2010-09-10T19:42:31.667596+08:00 boston kernel: [<ffffffff8149bd23>] ? schedule+0xdf/0x68c
2010-09-10T19:42:31.667601+08:00 boston kernel: [<ffffffff81219b41>] ? acpi_ut_update_object_reference+0xdf/0x157
2010-09-10T19:42:31.667605+08:00 boston kernel: [<ffffffff8149c4ae>] ? schedule_timeout+0x21/0x1b2
2010-09-10T19:42:31.667611+08:00 boston kernel: [<ffffffff8121c3bf>] ? acpi_video_device_lcd_set_level+0x4c/0xd7
2010-09-10T19:42:31.667615+08:00 boston kernel: [<ffffffff8149d3e6>] ? __down+0x62/0x8f
2010-09-10T19:42:31.667619+08:00 boston kernel: [<ffffffff8104c71c>] ? down+0x27/0x37
2010-09-10T19:42:31.667629+08:00 boston kernel: [<ffffffff810337cc>] ? acquire_console_sem+0x2b/0x4b
2010-09-10T19:42:31.667635+08:00 boston kernel: [<ffffffff81238a4a>] ? vt_move_to_console+0xe/0x87
2010-09-10T19:42:31.667640+08:00 boston kernel: [<ffffffff8105c3d9>] ? pm_restore_console+0x15/0x23
2010-09-10T19:42:31.667644+08:00 boston kernel: [<ffffffff8105ca85>] ? enter_state+0xb4/0xcb
2010-09-10T19:42:31.667648+08:00 boston kernel: [<ffffffff8105c2da>] ? state_store+0xb1/0xcf
2010-09-10T19:42:31.667653+08:00 boston kernel: [<ffffffff810e9f0f>] ? sysfs_write_file+0xd6/0x112
2010-09-10T19:42:31.667657+08:00 boston kernel: [<ffffffff810a2f82>] ? vfs_write+0xad/0x132
2010-09-10T19:42:31.667661+08:00 boston kernel: [<ffffffff810a30bd>] ? sys_write+0x45/0x6e
2010-09-10T19:42:31.667666+08:00 boston kernel: [<ffffffff81001f02>] ? system_call_fastpath+0x16/0x1b
2010-09-10T19:42:31.667669+08:00 boston kernel: Switching to clocksource hpet
2010-09-10T19:42:31.734554+08:00 boston kernel: lid[2410]: segfault at 7faf666c09d4 ip 00007faf6594ac95 sp 00007fff9af72040 error 7
2010-09-10T19:42:31.734570+08:00 boston kernel: note: lid[2410] exited with preempt_count 1

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

* Re: 2.6.36-rc3 suspend issue (was: 2.6.35-rc4 / X201 issues)
  2010-09-10 11:53   ` Jeff Chua
@ 2010-09-10 12:05     ` Peter Zijlstra
  2010-09-10 17:19       ` Jeff Chua
  0 siblings, 1 reply; 14+ messages in thread
From: Peter Zijlstra @ 2010-09-10 12:05 UTC (permalink / raw)
  To: Jeff Chua
  Cc: Nico Schottelius, Rafael J. Wysocki, Nico Schottelius,
	Jesse Barnes, LKML, Linus Torvalds, Florian Pritz, Suresh Siddha,
	stable, Ingo Molnar, Brown, Len

On Fri, 2010-09-10 at 19:53 +0800, Jeff Chua wrote:
> On Fri, Sep 10, 2010 at 3:48 PM, Peter Zijlstra <peterz@infradead.org> wrote:
> > On Fri, 2010-09-10 at 13:36 +0800, Jeff Chua wrote:
> >>
> >> I've bisected and it's pointing to the following commit causing the
> >> errors after resume. Reverting the commit solves the problem.
> >"the errors" being those at the end of this email?
> 
> Yes (partial). Attached is the detailed kernel log that I just
> captured with the commit cd7240c0b900eb6d690ccee088a6c9b46dae815a
> applied.


Could you try again with CONFIG_FRAME_POINTER=y, these stacks are a
terrible mess.

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

* Re: 2.6.36-rc3 suspend issue (was: 2.6.35-rc4 / X201 issues)
  2010-09-10 12:05     ` Peter Zijlstra
@ 2010-09-10 17:19       ` Jeff Chua
  2010-09-10 20:32         ` [PATCH] x86, tsc: Fix a preemption leak in restore_sched_clock_state() Peter Zijlstra
  0 siblings, 1 reply; 14+ messages in thread
From: Jeff Chua @ 2010-09-10 17:19 UTC (permalink / raw)
  To: Peter Zijlstra
  Cc: Nico Schottelius, Rafael J. Wysocki, Nico Schottelius,
	Jesse Barnes, LKML, Linus Torvalds, Florian Pritz, Suresh Siddha,
	stable, Ingo Molnar, Brown, Len

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

On Fri, Sep 10, 2010 at 8:05 PM, Peter Zijlstra <peterz@infradead.org> wrote:
> On Fri, 2010-09-10 at 19:53 +0800, Jeff Chua wrote:
>> On Fri, Sep 10, 2010 at 3:48 PM, Peter Zijlstra <peterz@infradead.org> wrote:
>> > On Fri, 2010-09-10 at 13:36 +0800, Jeff Chua wrote:
>> >>
>> >> I've bisected and it's pointing to the following commit causing the
>> >> errors after resume. Reverting the commit solves the problem.
>> >"the errors" being those at the end of this email?
>>
>> Yes (partial). Attached is the detailed kernel log that I just
>> captured with the commit cd7240c0b900eb6d690ccee088a6c9b46dae815a
>> applied.
>
>
> Could you try again with CONFIG_FRAME_POINTER=y, these stacks are a
> terrible mess.

Attached (with boot up messages as well) ... but the logs looks very
similar to the previous one I sent.

Jeff

[-- Attachment #2: k1 --]
[-- Type: application/octet-stream, Size: 123925 bytes --]

2010-09-11T01:00:15.595304+08:00 boston kernel: imklog 5.5.6, log source = /proc/kmsg started.
2010-09-11T01:00:15.595613+08:00 boston kernel: EM
2010-09-11T01:00:15.595621+08:00 boston kernel:  #44 [00016a9d00 - 00016a9d68]         BOOTMEM
2010-09-11T01:00:15.595624+08:00 boston kernel:  #45 [00016a9d80 - 00016a9de8]         BOOTMEM
2010-09-11T01:00:15.595627+08:00 boston kernel:  #46 [00016a9e00 - 00016a9e68]         BOOTMEM
2010-09-11T01:00:15.595633+08:00 boston kernel:  #47 [00016a9e80 - 00016a9ee8]         BOOTMEM
2010-09-11T01:00:15.595636+08:00 boston kernel:  #48 [00016a9f00 - 00016a9f68]         BOOTMEM
2010-09-11T01:00:15.595639+08:00 boston kernel:  #49 [00016a9f80 - 00016a9fe8]         BOOTMEM
2010-09-11T01:00:15.595641+08:00 boston kernel:  #50 [00016ab000 - 00016ab068]         BOOTMEM
2010-09-11T01:00:15.595644+08:00 boston kernel:  #51 [00016ab080 - 00016ab0e8]         BOOTMEM
2010-09-11T01:00:15.595647+08:00 boston kernel:  #52 [00016ab100 - 00016ab168]         BOOTMEM
2010-09-11T01:00:15.595649+08:00 boston kernel:  #53 [00016ab180 - 00016ab1e8]         BOOTMEM
2010-09-11T01:00:15.595652+08:00 boston kernel:  #54 [00016ab200 - 00016ab268]         BOOTMEM
2010-09-11T01:00:15.595657+08:00 boston kernel:  #55 [00016ab280 - 00016ab2e8]         BOOTMEM
2010-09-11T01:00:15.595660+08:00 boston kernel:  #56 [0001677fc0 - 0001677fe0]         BOOTMEM
2010-09-11T01:00:15.595663+08:00 boston kernel:  #57 [00016ab300 - 00016ab320]         BOOTMEM
2010-09-11T01:00:15.595665+08:00 boston kernel:  #58 [00016ab340 - 00016ab360]         BOOTMEM
2010-09-11T01:00:15.595668+08:00 boston kernel:  #59 [00016ab380 - 00016ab3a0]         BOOTMEM
2010-09-11T01:00:15.595670+08:00 boston kernel:  #60 [00016ab3c0 - 00016ab3e0]         BOOTMEM
2010-09-11T01:00:15.595673+08:00 boston kernel:  #61 [00016ab400 - 00016ab420]         BOOTMEM
2010-09-11T01:00:15.595678+08:00 boston kernel:  #62 [00016ab440 - 00016ab460]         BOOTMEM
2010-09-11T01:00:15.595680+08:00 boston kernel:  #63 [00016ab480 - 00016ab4a0]         BOOTMEM
2010-09-11T01:00:15.595683+08:00 boston kernel:  #64 [00016ab4c0 - 00016ab5cc]         BOOTMEM
2010-09-11T01:00:15.595685+08:00 boston kernel:  #65 [00016ab600 - 00016ab70c]         BOOTMEM
2010-09-11T01:00:15.595688+08:00 boston kernel:  #66 [0001800000 - 000181b000]         BOOTMEM
2010-09-11T01:00:15.595690+08:00 boston kernel:  #67 [0001880000 - 000189b000]         BOOTMEM
2010-09-11T01:00:15.595693+08:00 boston kernel:  #68 [0001900000 - 000191b000]         BOOTMEM
2010-09-11T01:00:15.595696+08:00 boston kernel:  #69 [0001980000 - 000199b000]         BOOTMEM
2010-09-11T01:00:15.595700+08:00 boston kernel:  #70 [00016ad740 - 00016ad748]         BOOTMEM
2010-09-11T01:00:15.595703+08:00 boston kernel:  #71 [00016ad780 - 00016ad788]         BOOTMEM
2010-09-11T01:00:15.595705+08:00 boston kernel:  #72 [00016ad7c0 - 00016ad7d0]         BOOTMEM
2010-09-11T01:00:15.595708+08:00 boston kernel:  #73 [00016ad800 - 00016ad820]         BOOTMEM
2010-09-11T01:00:15.595710+08:00 boston kernel:  #74 [00016ad840 - 00016ad970]         BOOTMEM
2010-09-11T01:00:15.595713+08:00 boston kernel:  #75 [00016ad980 - 00016ad9d0]         BOOTMEM
2010-09-11T01:00:15.595716+08:00 boston kernel:  #76 [00016ada00 - 00016ada50]         BOOTMEM
2010-09-11T01:00:15.595720+08:00 boston kernel:  #77 [00016ada80 - 00016b5a80]         BOOTMEM
2010-09-11T01:00:15.595723+08:00 boston kernel:  #78 [000199b000 - 000599b000]         BOOTMEM
2010-09-11T01:00:15.595726+08:00 boston kernel:  #79 [00016b5a80 - 00016d5a80]         BOOTMEM
2010-09-11T01:00:15.595729+08:00 boston kernel:  #80 [00016d5a80 - 0001715a80]         BOOTMEM
2010-09-11T01:00:15.595731+08:00 boston kernel:  #81 [0000010000 - 0000018000]         BOOTMEM
2010-09-11T01:00:15.595735+08:00 boston kernel: Memory: 7991352k/9371648k available (3621k kernel code, 1192276k absent, 188020k reserved, 2107k data, 556k init)
2010-09-11T01:00:15.595737+08:00 boston kernel: SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
2010-09-11T01:00:15.595740+08:00 boston kernel: Hierarchical RCU implementation.
2010-09-11T01:00:15.595742+08:00 boston kernel: 	CONFIG_RCU_FANOUT set to non-default value of 32
2010-09-11T01:00:15.595743+08:00 boston kernel: 	RCU-based detection of stalled CPUs is disabled.
2010-09-11T01:00:15.595745+08:00 boston kernel: 	Verbose stalled-CPUs detection is disabled.
2010-09-11T01:00:15.595746+08:00 boston kernel: NR_IRQS:768
2010-09-11T01:00:15.595747+08:00 boston kernel: Extended CMOS year: 2000
2010-09-11T01:00:15.595748+08:00 boston kernel: Console: colour VGA+ 80x25
2010-09-11T01:00:15.595750+08:00 boston kernel: console [tty0] enabled
2010-09-11T01:00:15.595753+08:00 boston kernel: hpet clockevent registered
2010-09-11T01:00:15.595754+08:00 boston kernel: Fast TSC calibration using PIT
2010-09-11T01:00:15.595755+08:00 boston kernel: Detected 2128.263 MHz processor.
2010-09-11T01:00:15.595757+08:00 boston kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4256.52 BogoMIPS (lpj=21282630)
2010-09-11T01:00:15.595759+08:00 boston kernel: pid_max: default: 32768 minimum: 301
2010-09-11T01:00:15.595760+08:00 boston kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
2010-09-11T01:00:15.595762+08:00 boston kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
2010-09-11T01:00:15.595765+08:00 boston kernel: Mount-cache hash table entries: 256
2010-09-11T01:00:15.595766+08:00 boston kernel: CPU: Physical Processor ID: 0
2010-09-11T01:00:15.595768+08:00 boston kernel: CPU: Processor Core ID: 0
2010-09-11T01:00:15.595770+08:00 boston kernel: mce: CPU supports 9 MCE banks
2010-09-11T01:00:15.595772+08:00 boston kernel: CPU0: Thermal monitoring enabled (TM1)
2010-09-11T01:00:15.595775+08:00 boston kernel: using mwait in idle threads.
2010-09-11T01:00:15.595778+08:00 boston kernel: Performance Events: PEBS fmt1+, Westmere events, Intel PMU driver.
2010-09-11T01:00:15.595780+08:00 boston kernel: ... version:                3
2010-09-11T01:00:15.595784+08:00 boston kernel: ... bit width:              48
2010-09-11T01:00:15.595786+08:00 boston kernel: ... generic registers:      4
2010-09-11T01:00:15.595789+08:00 boston kernel: ... value mask:             0000ffffffffffff
2010-09-11T01:00:15.595791+08:00 boston kernel: ... max period:             000000007fffffff
2010-09-11T01:00:15.595794+08:00 boston kernel: ... fixed-purpose events:   3
2010-09-11T01:00:15.595796+08:00 boston kernel: ... event mask:             000000070000000f
2010-09-11T01:00:15.595798+08:00 boston kernel: ACPI: Core revision 20100702
2010-09-11T01:00:15.595803+08:00 boston kernel: Setting APIC routing to flat
2010-09-11T01:00:15.595806+08:00 boston kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
2010-09-11T01:00:15.595809+08:00 boston kernel: CPU0: Intel(R) Core(TM) i7 CPU       L 640  @ 2.13GHz stepping 02
2010-09-11T01:00:15.595812+08:00 boston kernel: Booting Node   0, Processors  #1 #2 #3 Ok.
2010-09-11T01:00:15.595814+08:00 boston kernel: Brought up 4 CPUs
2010-09-11T01:00:15.595817+08:00 boston kernel: Total of 4 processors activated (17024.45 BogoMIPS).
2010-09-11T01:00:15.595819+08:00 boston kernel: NET: Registered protocol family 16
2010-09-11T01:00:15.595822+08:00 boston kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
2010-09-11T01:00:15.595826+08:00 boston kernel: ACPI: bus type pci registered
2010-09-11T01:00:15.595830+08:00 boston kernel: PCI: Using configuration type 1 for base access
2010-09-11T01:00:15.595832+08:00 boston kernel: bio: create slab <bio-0> at 0
2010-09-11T01:00:15.595833+08:00 boston kernel: ACPI: EC: EC description table is found, configuring boot EC
2010-09-11T01:00:15.595834+08:00 boston kernel: ACPI: BIOS _OSI(Linux) query ignored
2010-09-11T01:00:15.595836+08:00 boston kernel: ACPI: SSDT 00000000bb71a918 003EB (v01  PmRef  Cpu0Ist 00003000 INTL 20050513)
2010-09-11T01:00:15.595972+08:00 boston kernel: ACPI: Dynamic OEM Table Load:
2010-09-11T01:00:15.595977+08:00 boston kernel: ACPI: SSDT (null) 003EB (v01  PmRef  Cpu0Ist 00003000 INTL 20050513)
2010-09-11T01:00:15.595979+08:00 boston kernel: ACPI: SSDT 00000000bb718718 006B2 (v01  PmRef  Cpu0Cst 00003001 INTL 20050513)
2010-09-11T01:00:15.595980+08:00 boston kernel: ACPI: Dynamic OEM Table Load:
2010-09-11T01:00:15.595981+08:00 boston kernel: ACPI: SSDT (null) 006B2 (v01  PmRef  Cpu0Cst 00003001 INTL 20050513)
2010-09-11T01:00:15.595983+08:00 boston kernel: ACPI: SSDT 00000000bb719a98 00303 (v01  PmRef    ApIst 00003000 INTL 20050513)
2010-09-11T01:00:15.595984+08:00 boston kernel: ACPI: Dynamic OEM Table Load:
2010-09-11T01:00:15.595986+08:00 boston kernel: ACPI: SSDT (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20050513)
2010-09-11T01:00:15.595988+08:00 boston kernel: ACPI: SSDT 00000000bb717d98 00119 (v01  PmRef    ApCst 00003000 INTL 20050513)
2010-09-11T01:00:15.595990+08:00 boston kernel: ACPI: Dynamic OEM Table Load:
2010-09-11T01:00:15.595992+08:00 boston kernel: ACPI: SSDT (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20050513)
2010-09-11T01:00:15.595993+08:00 boston kernel: ACPI: Interpreter enabled
2010-09-11T01:00:15.595994+08:00 boston kernel: ACPI: (supports S0 S3 S4 S5)
2010-09-11T01:00:15.595996+08:00 boston kernel: ACPI: Using IOAPIC for interrupt routing
2010-09-11T01:00:15.595997+08:00 boston kernel: ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
2010-09-11T01:00:15.595999+08:00 boston kernel: ACPI: Power Resource [PUBS] (on)
2010-09-11T01:00:15.596001+08:00 boston kernel: ACPI: ACPI Dock Station Driver: 3 docks/bays found
2010-09-11T01:00:15.596003+08:00 boston kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
2010-09-11T01:00:15.596005+08:00 boston kernel: ACPI: PCI Root Bridge [UNCR] (domain 0000 [bus ff])
2010-09-11T01:00:15.596007+08:00 boston kernel: Unable to assume PCIe control: Disabling ASPM
2010-09-11T01:00:15.596008+08:00 boston kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
2010-09-11T01:00:15.596010+08:00 boston kernel: pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
2010-09-11T01:00:15.596011+08:00 boston kernel: pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
2010-09-11T01:00:15.596013+08:00 boston kernel: pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
2010-09-11T01:00:15.596016+08:00 boston kernel: pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
2010-09-11T01:00:15.596018+08:00 boston kernel: pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
2010-09-11T01:00:15.596019+08:00 boston kernel: pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
2010-09-11T01:00:15.596021+08:00 boston kernel: pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfebfffff]
2010-09-11T01:00:15.596022+08:00 boston kernel: pci 0000:00:02.0: reg 10: [mem 0xf2000000-0xf23fffff 64bit]
2010-09-11T01:00:15.596024+08:00 boston kernel: pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref]
2010-09-11T01:00:15.596025+08:00 boston kernel: pci 0000:00:02.0: reg 20: [io  0x1800-0x1807]
2010-09-11T01:00:15.596028+08:00 boston kernel: pci 0000:00:16.0: reg 10: [mem 0xf2727800-0xf272780f 64bit]
2010-09-11T01:00:15.596030+08:00 boston kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
2010-09-11T01:00:15.596031+08:00 boston kernel: pci 0000:00:16.0: PME# disabled
2010-09-11T01:00:15.596032+08:00 boston kernel: pci 0000:00:19.0: reg 10: [mem 0xf2500000-0xf251ffff]
2010-09-11T01:00:15.596034+08:00 boston kernel: pci 0000:00:19.0: reg 14: [mem 0xf2525000-0xf2525fff]
2010-09-11T01:00:15.596035+08:00 boston kernel: pci 0000:00:19.0: reg 18: [io  0x1820-0x183f]
2010-09-11T01:00:15.596037+08:00 boston kernel: pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
2010-09-11T01:00:15.596038+08:00 boston kernel: pci 0000:00:19.0: PME# disabled
2010-09-11T01:00:15.596040+08:00 boston kernel: pci 0000:00:1a.0: reg 10: [mem 0xf2728000-0xf27283ff]
2010-09-11T01:00:15.596042+08:00 boston kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
2010-09-11T01:00:15.596043+08:00 boston kernel: pci 0000:00:1a.0: PME# disabled
2010-09-11T01:00:15.596045+08:00 boston kernel: pci 0000:00:1b.0: reg 10: [mem 0xf2520000-0xf2523fff 64bit]
2010-09-11T01:00:15.596046+08:00 boston kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
2010-09-11T01:00:15.596048+08:00 boston kernel: pci 0000:00:1b.0: PME# disabled
2010-09-11T01:00:15.596049+08:00 boston kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
2010-09-11T01:00:15.596050+08:00 boston kernel: pci 0000:00:1c.0: PME# disabled
2010-09-11T01:00:15.596053+08:00 boston kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
2010-09-11T01:00:15.596054+08:00 boston kernel: pci 0000:00:1c.3: PME# disabled
2010-09-11T01:00:15.596056+08:00 boston kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
2010-09-11T01:00:15.596057+08:00 boston kernel: pci 0000:00:1c.4: PME# disabled
2010-09-11T01:00:15.596059+08:00 boston kernel: pci 0000:00:1d.0: reg 10: [mem 0xf2728400-0xf27287ff]
2010-09-11T01:00:15.596060+08:00 boston kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
2010-09-11T01:00:15.596061+08:00 boston kernel: pci 0000:00:1d.0: PME# disabled
2010-09-11T01:00:15.596064+08:00 boston kernel: pci 0000:00:1f.2: reg 10: [io  0x1860-0x1867]
2010-09-11T01:00:15.596066+08:00 boston kernel: pci 0000:00:1f.2: reg 14: [io  0x1814-0x1817]
2010-09-11T01:00:15.596067+08:00 boston kernel: pci 0000:00:1f.2: reg 18: [io  0x1818-0x181f]
2010-09-11T01:00:15.596068+08:00 boston kernel: pci 0000:00:1f.2: reg 1c: [io  0x1810-0x1813]
2010-09-11T01:00:15.596071+08:00 boston kernel: pci 0000:00:1f.2: reg 20: [io  0x1840-0x185f]
2010-09-11T01:00:15.596072+08:00 boston kernel: pci 0000:00:1f.2: reg 24: [mem 0xf2727000-0xf27277ff]
2010-09-11T01:00:15.596074+08:00 boston kernel: pci 0000:00:1f.2: PME# supported from D3hot
2010-09-11T01:00:15.596075+08:00 boston kernel: pci 0000:00:1f.2: PME# disabled
2010-09-11T01:00:15.596078+08:00 boston kernel: pci 0000:00:1f.3: reg 10: [mem 0xf2728800-0xf27288ff 64bit]
2010-09-11T01:00:15.596079+08:00 boston kernel: pci 0000:00:1f.3: reg 20: [io  0x1880-0x189f]
2010-09-11T01:00:15.596095+08:00 boston kernel: pci 0000:00:1f.6: reg 10: [mem 0xf2526000-0xf2526fff 64bit]
2010-09-11T01:00:15.596099+08:00 boston kernel: pci 0000:00:1c.0: PCI bridge to [bus 0d-0d]
2010-09-11T01:00:15.596101+08:00 boston kernel: pci 0000:00:1c.0:   bridge window [io  0xf000-0x0000] (disabled)
2010-09-11T01:00:15.596104+08:00 boston kernel: pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
2010-09-11T01:00:15.596107+08:00 boston kernel: pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
2010-09-11T01:00:15.596112+08:00 boston kernel: pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
2010-09-11T01:00:15.596126+08:00 boston kernel: pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
2010-09-11T01:00:15.596130+08:00 boston kernel: pci 0000:00:1c.3:   bridge window [mem 0xf0000000-0xf1ffffff]
2010-09-11T01:00:15.596133+08:00 boston kernel: pci 0000:00:1c.3:   bridge window [mem 0xf2800000-0xf28fffff 64bit pref]
2010-09-11T01:00:15.596296+08:00 boston kernel: pci 0000:02:00.0: reg 10: [mem 0xf2400000-0xf2401fff 64bit]
2010-09-11T01:00:15.596301+08:00 boston kernel: pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
2010-09-11T01:00:15.596304+08:00 boston kernel: pci 0000:02:00.0: PME# disabled
2010-09-11T01:00:15.596307+08:00 boston kernel: pci 0000:00:1c.4: PCI bridge to [bus 02-02]
2010-09-11T01:00:15.596310+08:00 boston kernel: pci 0000:00:1c.4:   bridge window [io  0xf000-0x0000] (disabled)
2010-09-11T01:00:15.596312+08:00 boston kernel: pci 0000:00:1c.4:   bridge window [mem 0xf2400000-0xf24fffff]
2010-09-11T01:00:15.596315+08:00 boston kernel: pci 0000:00:1c.4:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
2010-09-11T01:00:15.596318+08:00 boston kernel: pci 0000:00:1e.0: PCI bridge to [bus 0e-0e] (subtractive decode)
2010-09-11T01:00:15.596321+08:00 boston kernel: pci 0000:00:1e.0:   bridge window [io  0xf000-0x0000] (disabled)
2010-09-11T01:00:15.596324+08:00 boston kernel: pci 0000:00:1e.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
2010-09-11T01:00:15.596327+08:00 boston kernel: pci 0000:00:1e.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
2010-09-11T01:00:15.596330+08:00 boston kernel: pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
2010-09-11T01:00:15.596333+08:00 boston kernel: pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
2010-09-11T01:00:15.596336+08:00 boston kernel: pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
2010-09-11T01:00:15.596339+08:00 boston kernel: pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
2010-09-11T01:00:15.596342+08:00 boston kernel: pci 0000:00:1e.0:   bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
2010-09-11T01:00:15.596345+08:00 boston kernel: pci 0000:00:1e.0:   bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
2010-09-11T01:00:15.596348+08:00 boston kernel: pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xfebfffff] (subtractive decode)
2010-09-11T01:00:15.596351+08:00 boston kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
2010-09-11T01:00:15.596353+08:00 boston kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
2010-09-11T01:00:15.596356+08:00 boston kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP4._PRT]
2010-09-11T01:00:15.596358+08:00 boston kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP5._PRT]
2010-09-11T01:00:15.596361+08:00 boston kernel: Firmware did not grant requested _OSC control
2010-09-11T01:00:15.596363+08:00 boston kernel: Unable to assume PCIe control: Disabling ASPM
2010-09-11T01:00:15.596366+08:00 boston kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
2010-09-11T01:00:15.596369+08:00 boston kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11)
2010-09-11T01:00:15.596371+08:00 boston kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
2010-09-11T01:00:15.596387+08:00 boston kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
2010-09-11T01:00:15.596391+08:00 boston kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11)
2010-09-11T01:00:15.596394+08:00 boston kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
2010-09-11T01:00:15.596397+08:00 boston kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
2010-09-11T01:00:15.596400+08:00 boston kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11)
2010-09-11T01:00:15.596402+08:00 boston kernel: HEST: Table is not found!
2010-09-11T01:00:15.596405+08:00 boston kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
2010-09-11T01:00:15.596407+08:00 boston kernel: vgaarb: loaded
2010-09-11T01:00:15.596410+08:00 boston kernel: SCSI subsystem initialized
2010-09-11T01:00:15.596412+08:00 boston kernel: libata version 3.00 loaded.
2010-09-11T01:00:15.596415+08:00 boston kernel: usbcore: registered new interface driver usbfs
2010-09-11T01:00:15.596418+08:00 boston kernel: usbcore: registered new interface driver hub
2010-09-11T01:00:15.596421+08:00 boston kernel: usbcore: registered new device driver usb
2010-09-11T01:00:15.596424+08:00 boston kernel: Advanced Linux Sound Architecture Driver Version 1.0.23.
2010-09-11T01:00:15.596426+08:00 boston kernel: PCI: Using ACPI for IRQ routing
2010-09-11T01:00:15.596429+08:00 boston kernel: PCI: pci_cache_line_size set to 64 bytes
2010-09-11T01:00:15.596432+08:00 boston kernel: reserve RAM buffer: 000000000009e800 - 000000000009ffff 
2010-09-11T01:00:15.596434+08:00 boston kernel: reserve RAM buffer: 00000000bb27c000 - 00000000bbffffff 
2010-09-11T01:00:15.596437+08:00 boston kernel: reserve RAM buffer: 00000000bb35f000 - 00000000bbffffff 
2010-09-11T01:00:15.596440+08:00 boston kernel: reserve RAM buffer: 00000000bb46f000 - 00000000bbffffff 
2010-09-11T01:00:15.596443+08:00 boston kernel: reserve RAM buffer: 00000000bb717000 - 00000000bbffffff 
2010-09-11T01:00:15.596445+08:00 boston kernel: reserve RAM buffer: 00000000bb76b000 - 00000000bbffffff 
2010-09-11T01:00:15.596448+08:00 boston kernel: reserve RAM buffer: 00000000bb800000 - 00000000bbffffff 
2010-09-11T01:00:15.596450+08:00 boston kernel: Switching to clocksource tsc
2010-09-11T01:00:15.596453+08:00 boston kernel: pnp: PnP ACPI init
2010-09-11T01:00:15.596455+08:00 boston kernel: ACPI: bus type pnp registered
2010-09-11T01:00:15.596457+08:00 boston kernel: pnp: PnP ACPI: found 12 devices
2010-09-11T01:00:15.596460+08:00 boston kernel: ACPI: ACPI bus type pnp unregistered
2010-09-11T01:00:15.596462+08:00 boston kernel: system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
2010-09-11T01:00:15.596465+08:00 boston kernel: system 00:00: [mem 0x000c0000-0x000c3fff] has been reserved
2010-09-11T01:00:15.596468+08:00 boston kernel: system 00:00: [mem 0x000c4000-0x000c7fff] has been reserved
2010-09-11T01:00:15.596470+08:00 boston kernel: system 00:00: [mem 0x000c8000-0x000cbfff] has been reserved
2010-09-11T01:00:15.596473+08:00 boston kernel: system 00:00: [mem 0x000cc000-0x000cffff] has been reserved
2010-09-11T01:00:15.596476+08:00 boston kernel: system 00:00: [mem 0x000dc000-0x000dffff] could not be reserved
2010-09-11T01:00:15.596479+08:00 boston kernel: system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
2010-09-11T01:00:15.596482+08:00 boston kernel: system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
2010-09-11T01:00:15.596484+08:00 boston kernel: system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
2010-09-11T01:00:15.596487+08:00 boston kernel: system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
2010-09-11T01:00:15.596515+08:00 boston kernel: system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
2010-09-11T01:00:15.596520+08:00 boston kernel: system 00:00: [mem 0x00100000-0xbfffffff] could not be reserved
2010-09-11T01:00:15.596523+08:00 boston kernel: system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
2010-09-11T01:00:15.596526+08:00 boston kernel: system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
2010-09-11T01:00:15.596689+08:00 boston kernel: system 00:03: [io  0x164e-0x164f] has been reserved
2010-09-11T01:00:15.596694+08:00 boston kernel: system 00:03: [io  0x1000-0x107f] has been reserved
2010-09-11T01:00:15.596697+08:00 boston kernel: system 00:03: [io  0x1180-0x11ff] has been reserved
2010-09-11T01:00:15.596700+08:00 boston kernel: system 00:03: [io  0x0800-0x080f] has been reserved
2010-09-11T01:00:15.596703+08:00 boston kernel: system 00:03: [io  0x15e0-0x15ef] has been reserved
2010-09-11T01:00:15.596705+08:00 boston kernel: system 00:03: [io  0x1600-0x1641] has been reserved
2010-09-11T01:00:15.596708+08:00 boston kernel: system 00:03: [io  0x1644-0x167f] could not be reserved
2010-09-11T01:00:15.596721+08:00 boston kernel: system 00:03: [mem 0xe0000000-0xefffffff] has been reserved
2010-09-11T01:00:15.596724+08:00 boston kernel: system 00:03: [mem 0xfeaff000-0xfeafffff] has been reserved
2010-09-11T01:00:15.596726+08:00 boston kernel: system 00:03: [mem 0xfed1c000-0xfed1ffff] has been reserved
2010-09-11T01:00:15.596729+08:00 boston kernel: system 00:03: [mem 0xfed10000-0xfed13fff] has been reserved
2010-09-11T01:00:15.596731+08:00 boston kernel: system 00:03: [mem 0xfed18000-0xfed18fff] has been reserved
2010-09-11T01:00:15.596733+08:00 boston kernel: system 00:03: [mem 0xfed19000-0xfed19fff] has been reserved
2010-09-11T01:00:15.596736+08:00 boston kernel: system 00:03: [mem 0xfed45000-0xfed4bfff] has been reserved
2010-09-11T01:00:15.596738+08:00 boston kernel: pci 0000:00:1c.0: PCI bridge to [bus 0d-0d]
2010-09-11T01:00:15.596741+08:00 boston kernel: pci 0000:00:1c.0:   bridge window [io  disabled]
2010-09-11T01:00:15.596744+08:00 boston kernel: pci 0000:00:1c.0:   bridge window [mem disabled]
2010-09-11T01:00:15.596746+08:00 boston kernel: pci 0000:00:1c.0:   bridge window [mem pref disabled]
2010-09-11T01:00:15.596748+08:00 boston kernel: pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
2010-09-11T01:00:15.596751+08:00 boston kernel: pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
2010-09-11T01:00:15.596754+08:00 boston kernel: pci 0000:00:1c.3:   bridge window [mem 0xf0000000-0xf1ffffff]
2010-09-11T01:00:15.596757+08:00 boston kernel: pci 0000:00:1c.3:   bridge window [mem 0xf2800000-0xf28fffff 64bit pref]
2010-09-11T01:00:15.596759+08:00 boston kernel: pci 0000:00:1c.4: PCI bridge to [bus 02-02]
2010-09-11T01:00:15.596762+08:00 boston kernel: pci 0000:00:1c.4:   bridge window [io  disabled]
2010-09-11T01:00:15.596764+08:00 boston kernel: pci 0000:00:1c.4:   bridge window [mem 0xf2400000-0xf24fffff]
2010-09-11T01:00:15.596767+08:00 boston kernel: pci 0000:00:1c.4:   bridge window [mem pref disabled]
2010-09-11T01:00:15.596769+08:00 boston kernel: pci 0000:00:1e.0: PCI bridge to [bus 0e-0e]
2010-09-11T01:00:15.596772+08:00 boston kernel: pci 0000:00:1e.0:   bridge window [io  disabled]
2010-09-11T01:00:15.596775+08:00 boston kernel: pci 0000:00:1e.0:   bridge window [mem disabled]
2010-09-11T01:00:15.596789+08:00 boston kernel: pci 0000:00:1e.0:   bridge window [mem pref disabled]
2010-09-11T01:00:15.596793+08:00 boston kernel: pci 0000:00:1c.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
2010-09-11T01:00:15.596796+08:00 boston kernel: pci 0000:00:1c.0: setting latency timer to 64
2010-09-11T01:00:15.596799+08:00 boston kernel: pci 0000:00:1c.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
2010-09-11T01:00:15.596802+08:00 boston kernel: pci 0000:00:1c.3: setting latency timer to 64
2010-09-11T01:00:15.596804+08:00 boston kernel: pci 0000:00:1c.4: PCI INT A -> GSI 20 (level, low) -> IRQ 20
2010-09-11T01:00:15.596806+08:00 boston kernel: pci 0000:00:1c.4: setting latency timer to 64
2010-09-11T01:00:15.596809+08:00 boston kernel: pci 0000:00:1e.0: setting latency timer to 64
2010-09-11T01:00:15.596812+08:00 boston kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
2010-09-11T01:00:15.596815+08:00 boston kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
2010-09-11T01:00:15.596817+08:00 boston kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
2010-09-11T01:00:15.596820+08:00 boston kernel: pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
2010-09-11T01:00:15.596823+08:00 boston kernel: pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
2010-09-11T01:00:15.596826+08:00 boston kernel: pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
2010-09-11T01:00:15.596828+08:00 boston kernel: pci_bus 0000:00: resource 10 [mem 0xc0000000-0xfebfffff]
2010-09-11T01:00:15.596831+08:00 boston kernel: pci_bus 0000:05: resource 0 [io  0x2000-0x2fff]
2010-09-11T01:00:15.596833+08:00 boston kernel: pci_bus 0000:05: resource 1 [mem 0xf0000000-0xf1ffffff]
2010-09-11T01:00:15.596836+08:00 boston kernel: pci_bus 0000:05: resource 2 [mem 0xf2800000-0xf28fffff 64bit pref]
2010-09-11T01:00:15.596839+08:00 boston kernel: pci_bus 0000:02: resource 1 [mem 0xf2400000-0xf24fffff]
2010-09-11T01:00:15.596842+08:00 boston kernel: pci_bus 0000:0e: resource 4 [io  0x0000-0x0cf7]
2010-09-11T01:00:15.596845+08:00 boston kernel: pci_bus 0000:0e: resource 5 [io  0x0d00-0xffff]
2010-09-11T01:00:15.596847+08:00 boston kernel: pci_bus 0000:0e: resource 6 [mem 0x000a0000-0x000bffff]
2010-09-11T01:00:15.596850+08:00 boston kernel: pci_bus 0000:0e: resource 7 [mem 0x000d0000-0x000d3fff]
2010-09-11T01:00:15.596853+08:00 boston kernel: pci_bus 0000:0e: resource 8 [mem 0x000d4000-0x000d7fff]
2010-09-11T01:00:15.596855+08:00 boston kernel: pci_bus 0000:0e: resource 9 [mem 0x000d8000-0x000dbfff]
2010-09-11T01:00:15.596858+08:00 boston kernel: pci_bus 0000:0e: resource 10 [mem 0xc0000000-0xfebfffff]
2010-09-11T01:00:15.596861+08:00 boston kernel: NET: Registered protocol family 2
2010-09-11T01:00:15.596864+08:00 boston kernel: IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
2010-09-11T01:00:15.596867+08:00 boston kernel: TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
2010-09-11T01:00:15.596869+08:00 boston kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
2010-09-11T01:00:15.596872+08:00 boston kernel: TCP: Hash tables configured (established 524288 bind 65536)
2010-09-11T01:00:15.596874+08:00 boston kernel: TCP reno registered
2010-09-11T01:00:15.596877+08:00 boston kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes)
2010-09-11T01:00:15.596880+08:00 boston kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
2010-09-11T01:00:15.596882+08:00 boston kernel: NET: Registered protocol family 1
2010-09-11T01:00:15.596884+08:00 boston kernel: pci 0000:00:02.0: Boot video device
2010-09-11T01:00:15.596887+08:00 boston kernel: PCI: CLS 64 bytes, default 64
2010-09-11T01:00:15.596889+08:00 boston kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
2010-09-11T01:00:15.596892+08:00 boston kernel: Placing 64MB software IO TLB between ffff88000199b000 - ffff88000599b000
2010-09-11T01:00:15.596895+08:00 boston kernel: software IO TLB at phys 0x199b000 - 0x599b000
2010-09-11T01:00:15.596897+08:00 boston kernel: Simple Boot Flag at 0x35 set to 0x1
2010-09-11T01:00:15.596899+08:00 boston kernel: msgmni has been set to 15608
2010-09-11T01:00:15.596902+08:00 boston kernel: alg: No test for stdrng (krng)
2010-09-11T01:00:15.596904+08:00 boston kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
2010-09-11T01:00:15.596907+08:00 boston kernel: io scheduler noop registered (default)
2010-09-11T01:00:15.597067+08:00 boston kernel: pcieport 0000:00:1c.0: setting latency timer to 64
2010-09-11T01:00:15.597072+08:00 boston kernel: pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
2010-09-11T01:00:15.597074+08:00 boston kernel: pcieport 0000:00:1c.3: setting latency timer to 64
2010-09-11T01:00:15.597077+08:00 boston kernel: pcieport 0000:00:1c.3: irq 41 for MSI/MSI-X
2010-09-11T01:00:15.597079+08:00 boston kernel: pcieport 0000:00:1c.4: setting latency timer to 64
2010-09-11T01:00:15.597081+08:00 boston kernel: pcieport 0000:00:1c.4: irq 42 for MSI/MSI-X
2010-09-11T01:00:15.597084+08:00 boston kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
2010-09-11T01:00:15.597086+08:00 boston kernel: Firmware did not grant requested _OSC control
2010-09-11T01:00:15.597088+08:00 boston kernel: Firmware did not grant requested _OSC control
2010-09-11T01:00:15.597091+08:00 boston kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
2010-09-11T01:00:15.597093+08:00 boston kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
2010-09-11T01:00:15.597096+08:00 boston kernel: acpiphp: Slot [1] registered
2010-09-11T01:00:15.597098+08:00 boston kernel: ACPI: AC Adapter [AC] (on-line)
2010-09-11T01:00:15.597101+08:00 boston kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
2010-09-11T01:00:15.597103+08:00 boston kernel: ACPI: Lid Switch [LID]
2010-09-11T01:00:15.597106+08:00 boston kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
2010-09-11T01:00:15.597108+08:00 boston kernel: ACPI: Sleep Button [SLPB]
2010-09-11T01:00:15.597110+08:00 boston kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
2010-09-11T01:00:15.597113+08:00 boston kernel: ACPI: Power Button [PWRF]
2010-09-11T01:00:15.597115+08:00 boston kernel: ACPI: acpi_idle registered with cpuidle
2010-09-11T01:00:15.597117+08:00 boston kernel: Monitor-Mwait will be used to enter C-1 state
2010-09-11T01:00:15.597119+08:00 boston kernel: Monitor-Mwait will be used to enter C-2 state
2010-09-11T01:00:15.597122+08:00 boston kernel: Monitor-Mwait will be used to enter C-3 state
2010-09-11T01:00:15.597124+08:00 boston kernel: thermal LNXTHERM:01: registered as thermal_zone0
2010-09-11T01:00:15.597126+08:00 boston kernel: ACPI: Thermal Zone [THM0] (54 C)
2010-09-11T01:00:15.597140+08:00 boston kernel: ERST: Table is not found!
2010-09-11T01:00:15.597144+08:00 boston kernel: GHES: HEST is not enabled!
2010-09-11T01:00:15.597146+08:00 boston kernel: ACPI: Battery Slot [BAT0] (battery present)
2010-09-11T01:00:15.597149+08:00 boston kernel: Non-volatile memory driver v1.3
2010-09-11T01:00:15.597151+08:00 boston kernel: Linux agpgart interface v0.103
2010-09-11T01:00:15.597153+08:00 boston kernel: agpgart-intel 0000:00:00.0: Intel HD Graphics Chipset
2010-09-11T01:00:15.597155+08:00 boston kernel: agpgart-intel 0000:00:00.0: detected 32764K stolen memory
2010-09-11T01:00:15.597158+08:00 boston kernel: agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
2010-09-11T01:00:15.597160+08:00 boston kernel: [drm] Initialized drm 1.1.0 20060810
2010-09-11T01:00:15.597163+08:00 boston kernel: i915 0000:00:02.0: power state changed by ACPI to D0
2010-09-11T01:00:15.597165+08:00 boston kernel: i915 0000:00:02.0: power state changed by ACPI to D0
2010-09-11T01:00:15.597167+08:00 boston kernel: i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
2010-09-11T01:00:15.597170+08:00 boston kernel: i915 0000:00:02.0: setting latency timer to 64
2010-09-11T01:00:15.597172+08:00 boston kernel: i915 0000:00:02.0: irq 43 for MSI/MSI-X
2010-09-11T01:00:15.597174+08:00 boston kernel: [drm] set up 31M of stolen space
2010-09-11T01:00:15.597177+08:00 boston kernel: Console: switching to colour frame buffer device 180x56
2010-09-11T01:00:15.597179+08:00 boston kernel: fb0: inteldrmfb frame buffer device
2010-09-11T01:00:15.597182+08:00 boston kernel: drm: registered panic notifier
2010-09-11T01:00:15.597184+08:00 boston kernel: acpi device:01: registered as cooling_device4
2010-09-11T01:00:15.597188+08:00 boston kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input3
2010-09-11T01:00:15.597190+08:00 boston kernel: ACPI: Video Device [VID] (multi-head: yes  rom: no  post: no)
2010-09-11T01:00:15.597193+08:00 boston kernel: [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
2010-09-11T01:00:15.597196+08:00 boston kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
2010-09-11T01:00:15.597198+08:00 boston kernel: brd: module loaded
2010-09-11T01:00:15.597200+08:00 boston kernel: loop: module loaded
2010-09-11T01:00:15.597202+08:00 boston kernel: megaraid cmm: 2.20.2.7 (Release Date: Sun Jul 16 00:01:03 EST 2006)
2010-09-11T01:00:15.597205+08:00 boston kernel: megaraid: 2.20.5.1 (Release Date: Thu Nov 16 15:32:35 EST 2006)
2010-09-11T01:00:15.597207+08:00 boston kernel: megasas: 00.00.04.17.1-rc1 Thu. Oct. 29, 11:41:51 PST 2009
2010-09-11T01:00:15.597210+08:00 boston kernel: mpt2sas version 06.100.00.00 loaded
2010-09-11T01:00:15.597212+08:00 boston kernel: ahci 0000:00:1f.2: version 3.0
2010-09-11T01:00:15.597214+08:00 boston kernel: ahci 0000:00:1f.2: PCI INT B -> GSI 16 (level, low) -> IRQ 16
2010-09-11T01:00:15.597217+08:00 boston kernel: ahci 0000:00:1f.2: irq 44 for MSI/MSI-X
2010-09-11T01:00:15.597219+08:00 boston kernel: ahci: SSS flag set, parallel bus scan disabled
2010-09-11T01:00:15.597222+08:00 boston kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 3 Gbps 0x31 impl SATA mode
2010-09-11T01:00:15.597225+08:00 boston kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pmp pio slum part ems sxs apst 
2010-09-11T01:00:15.597227+08:00 boston kernel: ahci 0000:00:1f.2: setting latency timer to 64
2010-09-11T01:00:15.597229+08:00 boston kernel: scsi0 : ahci
2010-09-11T01:00:15.597231+08:00 boston kernel: scsi1 : ahci
2010-09-11T01:00:15.597233+08:00 boston kernel: scsi2 : ahci
2010-09-11T01:00:15.597235+08:00 boston kernel: scsi3 : ahci
2010-09-11T01:00:15.597237+08:00 boston kernel: scsi4 : ahci
2010-09-11T01:00:15.597239+08:00 boston kernel: scsi5 : ahci
2010-09-11T01:00:15.597241+08:00 boston kernel: ata1: SATA max UDMA/133 abar m2048@0xf2727000 port 0xf2727100 irq 44
2010-09-11T01:00:15.597243+08:00 boston kernel: ata2: DUMMY
2010-09-11T01:00:15.597246+08:00 boston kernel: ata3: DUMMY
2010-09-11T01:00:15.597259+08:00 boston kernel: ata4: DUMMY
2010-09-11T01:00:15.597263+08:00 boston kernel: ata5: SATA max UDMA/133 abar m2048@0xf2727000 port 0xf2727300 irq 44
2010-09-11T01:00:15.597266+08:00 boston kernel: ata6: SATA max UDMA/133 abar m2048@0xf2727000 port 0xf2727380 irq 44
2010-09-11T01:00:15.597268+08:00 boston kernel: tun: Universal TUN/TAP device driver, 1.6
2010-09-11T01:00:15.597271+08:00 boston kernel: tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
2010-09-11T01:00:15.597273+08:00 boston kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
2010-09-11T01:00:15.597275+08:00 boston kernel: ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
2010-09-11T01:00:15.597278+08:00 boston kernel: ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
2010-09-11T01:00:15.597281+08:00 boston kernel: ehci_hcd 0000:00:1a.0: PCI INT D -> GSI 23 (level, low) -> IRQ 23
2010-09-11T01:00:15.597283+08:00 boston kernel: ehci_hcd 0000:00:1a.0: setting latency timer to 64
2010-09-11T01:00:15.597286+08:00 boston kernel: ehci_hcd 0000:00:1a.0: EHCI Host Controller
2010-09-11T01:00:15.597288+08:00 boston kernel: ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
2010-09-11T01:00:15.597291+08:00 boston kernel: ehci_hcd 0000:00:1a.0: debug port 2
2010-09-11T01:00:15.597440+08:00 boston kernel: ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
2010-09-11T01:00:15.597444+08:00 boston kernel: ehci_hcd 0000:00:1a.0: irq 23, io mem 0xf2728000
2010-09-11T01:00:15.597447+08:00 boston kernel: ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
2010-09-11T01:00:15.597449+08:00 boston kernel: hub 1-0:1.0: USB hub found
2010-09-11T01:00:15.597451+08:00 boston kernel: hub 1-0:1.0: 3 ports detected
2010-09-11T01:00:15.597454+08:00 boston kernel: ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
2010-09-11T01:00:15.597456+08:00 boston kernel: ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
2010-09-11T01:00:15.597458+08:00 boston kernel: ehci_hcd 0000:00:1d.0: PCI INT D -> GSI 19 (level, low) -> IRQ 19
2010-09-11T01:00:15.597461+08:00 boston kernel: ehci_hcd 0000:00:1d.0: setting latency timer to 64
2010-09-11T01:00:15.597463+08:00 boston kernel: ehci_hcd 0000:00:1d.0: EHCI Host Controller
2010-09-11T01:00:15.597470+08:00 boston kernel: ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
2010-09-11T01:00:15.597484+08:00 boston kernel: ehci_hcd 0000:00:1d.0: debug port 2
2010-09-11T01:00:15.597488+08:00 boston kernel: ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
2010-09-11T01:00:15.597490+08:00 boston kernel: ehci_hcd 0000:00:1d.0: irq 19, io mem 0xf2728400
2010-09-11T01:00:15.597493+08:00 boston kernel: ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
2010-09-11T01:00:15.597495+08:00 boston kernel: hub 2-0:1.0: USB hub found
2010-09-11T01:00:15.597497+08:00 boston kernel: hub 2-0:1.0: 3 ports detected
2010-09-11T01:00:15.597502+08:00 boston kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
2010-09-11T01:00:15.597505+08:00 boston kernel: uhci_hcd: USB Universal Host Controller Interface driver
2010-09-11T01:00:15.597508+08:00 boston kernel: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
2010-09-11T01:00:15.597510+08:00 boston kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
2010-09-11T01:00:15.597513+08:00 boston kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
2010-09-11T01:00:15.597515+08:00 boston kernel: mice: PS/2 mouse device common for all mice
2010-09-11T01:00:15.597518+08:00 boston kernel: input: PC Speaker as /devices/platform/pcspkr/input/input4
2010-09-11T01:00:15.597520+08:00 boston kernel: rtc_cmos 00:08: RTC can wake from S4
2010-09-11T01:00:15.597524+08:00 boston kernel: rtc_cmos 00:08: rtc core: registered rtc_cmos as rtc0
2010-09-11T01:00:15.597527+08:00 boston kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input5
2010-09-11T01:00:15.597530+08:00 boston kernel: rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
2010-09-11T01:00:15.597532+08:00 boston kernel: coretemp coretemp.0: TjMax is 105 C.
2010-09-11T01:00:15.597535+08:00 boston kernel: coretemp coretemp.2: TjMax is 105 C.
2010-09-11T01:00:15.597537+08:00 boston kernel: hdaps: supported laptop not found!
2010-09-11T01:00:15.597539+08:00 boston kernel: hdaps: driver init failed (ret=-19)!
2010-09-11T01:00:15.597543+08:00 boston kernel: device-mapper: ioctl: 4.18.0-ioctl (2010-06-29) initialised: dm-devel@redhat.com
2010-09-11T01:00:15.597546+08:00 boston kernel: EDAC MC: Ver: 2.1.0 Sep 11 2010
2010-09-11T01:00:15.597548+08:00 boston kernel: cpuidle: using governor ladder
2010-09-11T01:00:15.597550+08:00 boston kernel: cpuidle: using governor menu
2010-09-11T01:00:15.597552+08:00 boston kernel: usbcore: registered new interface driver hiddev
2010-09-11T01:00:15.597555+08:00 boston kernel: usbcore: registered new interface driver usbhid
2010-09-11T01:00:15.597557+08:00 boston kernel: usbhid: USB HID core driver
2010-09-11T01:00:15.597559+08:00 boston kernel: thinkpad_acpi: ThinkPad ACPI Extras v0.24
2010-09-11T01:00:15.597563+08:00 boston kernel: thinkpad_acpi: http://ibm-acpi.sf.net/
2010-09-11T01:00:15.597565+08:00 boston kernel: thinkpad_acpi: ThinkPad BIOS 6QET47WW (1.17 ), EC 6QHT29WW-1.10
2010-09-11T01:00:15.597568+08:00 boston kernel: thinkpad_acpi: Lenovo ThinkPad X201s, model 5413FGA
2010-09-11T01:00:15.597570+08:00 boston kernel: thinkpad_acpi: detected a 8-level brightness capable ThinkPad
2010-09-11T01:00:15.597573+08:00 boston kernel: thinkpad_acpi: radio switch found; radios are enabled
2010-09-11T01:00:15.597587+08:00 boston kernel: thinkpad_acpi: possible tablet mode switch found; ThinkPad in laptop mode
2010-09-11T01:00:15.597590+08:00 boston kernel: thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is blocked
2010-09-11T01:00:15.597594+08:00 boston kernel: Registered led device: tpacpi::thinklight
2010-09-11T01:00:15.597597+08:00 boston kernel: Registered led device: tpacpi::power
2010-09-11T01:00:15.597599+08:00 boston kernel: Registered led device: tpacpi:orange:batt
2010-09-11T01:00:15.597601+08:00 boston kernel: Registered led device: tpacpi:green:batt
2010-09-11T01:00:15.597604+08:00 boston kernel: Registered led device: tpacpi::dock_active
2010-09-11T01:00:15.597606+08:00 boston kernel: Registered led device: tpacpi::bay_active
2010-09-11T01:00:15.597608+08:00 boston kernel: Registered led device: tpacpi::dock_batt
2010-09-11T01:00:15.597611+08:00 boston kernel: Registered led device: tpacpi::unknown_led
2010-09-11T01:00:15.597615+08:00 boston kernel: Registered led device: tpacpi::standby
2010-09-11T01:00:15.597618+08:00 boston kernel: Registered led device: tpacpi::dock_status1
2010-09-11T01:00:15.597620+08:00 boston kernel: Registered led device: tpacpi::dock_status2
2010-09-11T01:00:15.597623+08:00 boston kernel: Registered led device: tpacpi::unknown_led2
2010-09-11T01:00:15.597626+08:00 boston kernel: Registered led device: tpacpi::unknown_led3
2010-09-11T01:00:15.597628+08:00 boston kernel: Registered led device: tpacpi::thinkvantage
2010-09-11T01:00:15.597631+08:00 boston kernel: thinkpad_acpi: warning: userspace override of important firmware LEDs is enabled
2010-09-11T01:00:15.597634+08:00 boston kernel: thinkpad_acpi: Standard ACPI backlight interface available, not loading native one.
2010-09-11T01:00:15.597638+08:00 boston kernel: thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
2010-09-11T01:00:15.597641+08:00 boston kernel: input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input6
2010-09-11T01:00:15.597643+08:00 boston kernel: HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17
2010-09-11T01:00:15.597646+08:00 boston kernel: HDA Intel 0000:00:1b.0: irq 45 for MSI/MSI-X
2010-09-11T01:00:15.597648+08:00 boston kernel: HDA Intel 0000:00:1b.0: setting latency timer to 64
2010-09-11T01:00:15.597650+08:00 boston kernel: ALSA device list:
2010-09-11T01:00:15.597653+08:00 boston kernel:  #0: HDA Intel at 0xf2520000 irq 45
2010-09-11T01:00:15.597657+08:00 boston kernel:  #5: ThinkPad Console Audio Control at EC reg 0x30, fw 6QHT29WW-1.10
2010-09-11T01:00:15.597659+08:00 boston kernel: TCP cubic registered
2010-09-11T01:00:15.597661+08:00 boston kernel: NET: Registered protocol family 17
2010-09-11T01:00:15.597664+08:00 boston kernel: usb 1-1: new high speed USB device using ehci_hcd and address 2
2010-09-11T01:00:15.597666+08:00 boston kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
2010-09-11T01:00:15.597669+08:00 boston kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (unknown) succeeded
2010-09-11T01:00:15.597671+08:00 boston kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (unknown) filtered out
2010-09-11T01:00:15.597674+08:00 boston kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (unknown) filtered out
2010-09-11T01:00:15.597830+08:00 boston kernel: ata1.00: ATA-7: SAMSUNG MMDOE56G5MXP-0VB, VBM1901Q, max UDMA/100
2010-09-11T01:00:15.597836+08:00 boston kernel: ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
2010-09-11T01:00:15.597839+08:00 boston kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (unknown) succeeded
2010-09-11T01:00:15.597842+08:00 boston kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (unknown) filtered out
2010-09-11T01:00:15.597845+08:00 boston kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (unknown) filtered out
2010-09-11T01:00:15.597847+08:00 boston kernel: ata1.00: configured for UDMA/100
2010-09-11T01:00:15.597850+08:00 boston kernel: ata1.00: configured for UDMA/100
2010-09-11T01:00:15.597852+08:00 boston kernel: ata1: EH complete
2010-09-11T01:00:15.597855+08:00 boston kernel: scsi 0:0:0:0: Direct-Access     ATA      SAMSUNG MMDOE56G VBM1 PQ: 0 ANSI: 5
2010-09-11T01:00:15.597858+08:00 boston kernel: sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
2010-09-11T01:00:15.597860+08:00 boston kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
2010-09-11T01:00:15.597863+08:00 boston kernel: sd 0:0:0:0: [sda] Write Protect is off
2010-09-11T01:00:15.597866+08:00 boston kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
2010-09-11T01:00:15.597869+08:00 boston kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
2010-09-11T01:00:15.597881+08:00 boston kernel: sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 >
2010-09-11T01:00:15.597885+08:00 boston kernel: sd 0:0:0:0: [sda] Attached SCSI disk
2010-09-11T01:00:15.597887+08:00 boston kernel: hub 1-1:1.0: USB hub found
2010-09-11T01:00:15.597889+08:00 boston kernel: hub 1-1:1.0: 6 ports detected
2010-09-11T01:00:15.597892+08:00 boston kernel: IBM TrackPoint firmware: 0x0e, buttons: 3/3
2010-09-11T01:00:15.597895+08:00 boston kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input7
2010-09-11T01:00:15.597898+08:00 boston kernel: usb 2-1: new high speed USB device using ehci_hcd and address 2
2010-09-11T01:00:15.597901+08:00 boston kernel: ata5: SATA link down (SStatus 0 SControl 300)
2010-09-11T01:00:15.597903+08:00 boston kernel: hub 2-1:1.0: USB hub found
2010-09-11T01:00:15.597906+08:00 boston kernel: hub 2-1:1.0: 8 ports detected
2010-09-11T01:00:15.597909+08:00 boston kernel: usb 1-1.2: new high speed USB device using ehci_hcd and address 3
2010-09-11T01:00:15.597912+08:00 boston kernel: usb 2-1.1: new high speed USB device using ehci_hcd and address 3
2010-09-11T01:00:15.597914+08:00 boston kernel: ata6: SATA link down (SStatus 0 SControl 300)
2010-09-11T01:00:15.597918+08:00 boston kernel: rtc_cmos 00:08: setting system clock to 2010-09-10 17:00:14 UTC (1284138014)
2010-09-11T01:00:15.597921+08:00 boston kernel: REISERFS (device sda2): found reiserfs format "3.6" with standard journal
2010-09-11T01:00:15.597924+08:00 boston kernel: REISERFS (device sda2): using ordered data mode
2010-09-11T01:00:15.597927+08:00 boston kernel: REISERFS (device sda2): journal params: device sda2, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
2010-09-11T01:00:15.597931+08:00 boston kernel: REISERFS (device sda2): checking transaction log (sda2)
2010-09-11T01:00:15.597933+08:00 boston kernel: REISERFS (device sda2): Using r5 hash to sort names
2010-09-11T01:00:15.597937+08:00 boston kernel: VFS: Mounted root (reiserfs filesystem) readonly on device 8:2.
2010-09-11T01:00:15.597939+08:00 boston kernel: Freeing unused kernel memory: 556k freed
2010-09-11T01:00:15.597942+08:00 boston kernel: REISERFS (device sda9): found reiserfs format "3.6" with standard journal
2010-09-11T01:00:15.597952+08:00 boston kernel: REISERFS (device sda9): using ordered data mode
2010-09-11T01:00:15.597958+08:00 boston kernel: REISERFS (device sda9): journal params: device sda9, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
2010-09-11T01:00:15.597961+08:00 boston kernel: REISERFS (device sda9): checking transaction log (sda9)
2010-09-11T01:00:15.597964+08:00 boston kernel: REISERFS (device sda9): Using r5 hash to sort names
2010-09-11T01:00:15.597967+08:00 boston kernel: REISERFS (device sda5): found reiserfs format "3.6" with standard journal
2010-09-11T01:00:15.597969+08:00 boston kernel: REISERFS (device sda5): using ordered data mode
2010-09-11T01:00:15.597973+08:00 boston kernel: REISERFS (device sda5): journal params: device sda5, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
2010-09-11T01:00:15.597976+08:00 boston kernel: REISERFS (device sda5): checking transaction log (sda5)
2010-09-11T01:00:15.597979+08:00 boston kernel: REISERFS (device sda5): Using r5 hash to sort names
2010-09-11T01:00:15.597982+08:00 boston kernel: REISERFS (device sda6): found reiserfs format "3.6" with standard journal
2010-09-11T01:00:15.597985+08:00 boston kernel: REISERFS (device sda6): using ordered data mode
2010-09-11T01:00:15.597989+08:00 boston kernel: REISERFS (device sda6): journal params: device sda6, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
2010-09-11T01:00:15.597992+08:00 boston kernel: REISERFS (device sda6): checking transaction log (sda6)
2010-09-11T01:00:15.597994+08:00 boston kernel: REISERFS (device sda6): Using r5 hash to sort names
2010-09-11T01:00:15.597998+08:00 boston kernel: REISERFS (device sda7): found reiserfs format "3.6" with standard journal
2010-09-11T01:00:15.598000+08:00 boston kernel: REISERFS (device sda7): using ordered data mode
2010-09-11T01:00:15.598004+08:00 boston kernel: REISERFS (device sda7): journal params: device sda7, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
2010-09-11T01:00:15.598007+08:00 boston kernel: REISERFS (device sda7): checking transaction log (sda7)
2010-09-11T01:00:15.598009+08:00 boston kernel: REISERFS (device sda7): Using r5 hash to sort names
2010-09-11T01:00:15.598012+08:00 boston kernel: REISERFS (device sda8): found reiserfs format "3.6" with standard journal
2010-09-11T01:00:15.598015+08:00 boston kernel: REISERFS (device sda8): using ordered data mode
2010-09-11T01:00:15.598019+08:00 boston kernel: REISERFS (device sda8): journal params: device sda8, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
2010-09-11T01:00:15.598022+08:00 boston kernel: REISERFS (device sda8): checking transaction log (sda8)
2010-09-11T01:00:15.598024+08:00 boston kernel: REISERFS (device sda8): Using r5 hash to sort names
2010-09-11T01:00:15.598182+08:00 boston kernel: REISERFS (device sda11): found reiserfs format "3.6" with standard journal
2010-09-11T01:00:15.598189+08:00 boston kernel: REISERFS (device sda11): using ordered data mode
2010-09-11T01:00:15.598193+08:00 boston kernel: REISERFS (device sda11): journal params: device sda11, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
2010-09-11T01:00:15.598196+08:00 boston kernel: REISERFS (device sda11): checking transaction log (sda11)
2010-09-11T01:00:15.598198+08:00 boston kernel: REISERFS (device sda11): Using r5 hash to sort names
2010-09-11T01:00:15.598201+08:00 boston kernel: REISERFS (device sda12): found reiserfs format "3.6" with standard journal
2010-09-11T01:00:15.598204+08:00 boston kernel: REISERFS (device sda12): using ordered data mode
2010-09-11T01:00:15.598208+08:00 boston kernel: REISERFS (device sda12): journal params: device sda12, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
2010-09-11T01:00:15.598211+08:00 boston kernel: REISERFS (device sda12): checking transaction log (sda12)
2010-09-11T01:00:15.598214+08:00 boston kernel: REISERFS (device sda12): Using r5 hash to sort names
2010-09-11T01:00:15.598217+08:00 boston kernel: REISERFS (device sda13): found reiserfs format "3.6" with standard journal
2010-09-11T01:00:15.598220+08:00 boston kernel: REISERFS (device sda13): using ordered data mode
2010-09-11T01:00:15.598226+08:00 boston kernel: REISERFS (device sda13): journal params: device sda13, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
2010-09-11T01:00:15.598230+08:00 boston kernel: REISERFS (device sda13): checking transaction log (sda13)
2010-09-11T01:00:15.598233+08:00 boston kernel: REISERFS (device sda13): Using r5 hash to sort names
2010-09-11T01:00:15.598236+08:00 boston kernel: REISERFS (device sda14): found reiserfs format "3.6" with standard journal
2010-09-11T01:00:15.598239+08:00 boston kernel: REISERFS (device sda14): using ordered data mode
2010-09-11T01:00:15.598243+08:00 boston kernel: REISERFS (device sda14): journal params: device sda14, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
2010-09-11T01:00:15.598260+08:00 boston kernel: REISERFS (device sda14): checking transaction log (sda14)
2010-09-11T01:00:15.598264+08:00 boston kernel: REISERFS (device sda14): Using r5 hash to sort names
2010-09-11T01:00:15.598273+08:00 boston kernel: REISERFS (device dm-0): found reiserfs format "3.6" with standard journal
2010-09-11T01:00:15.598276+08:00 boston kernel: REISERFS (device dm-0): using ordered data mode
2010-09-11T01:00:15.598280+08:00 boston kernel: REISERFS (device dm-0): journal params: device dm-0, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
2010-09-11T01:00:15.598283+08:00 boston kernel: REISERFS (device dm-0): checking transaction log (dm-0)
2010-09-11T01:00:15.598286+08:00 boston kernel: REISERFS (device dm-0): Using r5 hash to sort names
2010-09-11T01:00:15.598289+08:00 boston kernel: REISERFS (device dm-1): found reiserfs format "3.6" with standard journal
2010-09-11T01:00:15.598293+08:00 boston kernel: REISERFS (device dm-1): using ordered data mode
2010-09-11T01:00:15.598297+08:00 boston kernel: REISERFS (device dm-1): journal params: device dm-1, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
2010-09-11T01:00:15.598300+08:00 boston kernel: REISERFS (device dm-1): checking transaction log (dm-1)
2010-09-11T01:00:15.598303+08:00 boston kernel: REISERFS (device dm-1): Using r5 hash to sort names
2010-09-11T01:00:15.598306+08:00 boston kernel: REISERFS (device dm-2): found reiserfs format "3.6" with standard journal
2010-09-11T01:00:15.598308+08:00 boston kernel: REISERFS (device dm-2): using ordered data mode
2010-09-11T01:00:15.598312+08:00 boston kernel: REISERFS (device dm-2): journal params: device dm-2, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
2010-09-11T01:00:15.598321+08:00 boston kernel: REISERFS (device dm-2): checking transaction log (dm-2)
2010-09-11T01:00:15.598325+08:00 boston kernel: REISERFS (device dm-2): Using r5 hash to sort names
2010-09-11T01:00:15.598328+08:00 boston kernel: REISERFS (device dm-3): found reiserfs format "3.6" with standard journal
2010-09-11T01:00:15.598331+08:00 boston kernel: REISERFS (device dm-3): using ordered data mode
2010-09-11T01:00:15.598334+08:00 boston kernel: REISERFS (device dm-3): journal params: device dm-3, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
2010-09-11T01:00:15.598337+08:00 boston kernel: REISERFS (device dm-3): checking transaction log (dm-3)
2010-09-11T01:00:15.598340+08:00 boston kernel: REISERFS (device dm-3): Using r5 hash to sort names
2010-09-11T01:00:15.598343+08:00 boston kernel: REISERFS (device dm-4): found reiserfs format "3.6" with standard journal
2010-09-11T01:00:15.598346+08:00 boston kernel: REISERFS (device dm-4): using ordered data mode
2010-09-11T01:00:15.598350+08:00 boston kernel: REISERFS (device dm-4): journal params: device dm-4, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
2010-09-11T01:00:15.598353+08:00 boston kernel: REISERFS (device dm-4): checking transaction log (dm-4)
2010-09-11T01:00:15.598356+08:00 boston kernel: REISERFS (device dm-4): Using r5 hash to sort names
2010-09-11T01:00:15.598359+08:00 boston kernel: REISERFS (device dm-5): found reiserfs format "3.6" with standard journal
2010-09-11T01:00:15.598362+08:00 boston kernel: REISERFS (device dm-5): using ordered data mode
2010-09-11T01:00:15.598366+08:00 boston kernel: REISERFS (device dm-5): journal params: device dm-5, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
2010-09-11T01:00:15.598368+08:00 boston kernel: REISERFS (device dm-5): checking transaction log (dm-5)
2010-09-11T01:00:15.598371+08:00 boston kernel: REISERFS (device dm-5): Using r5 hash to sort names
2010-09-11T01:00:15.598375+08:00 boston kernel: Adding 8297568k swap on /dev/sda3.  Priority:-1 extents:1 across:8297568k SSD
2010-09-11T01:00:41.146002+08:00 boston kernel: PM: Syncing filesystems ... done.
2010-09-11T01:00:41.146269+08:00 boston kernel: Freezing user space processes ... 184
2010-09-11T01:00:41.146274+08:00 boston kernel: [<ffffffff8118d157>] acpi_ex_extract_from_field+0x92/0x1a2
2010-09-11T01:00:41.146279+08:00 boston kernel: [<ffffffff8118bcb0>] acpi_ex_read_data_from_field+0x113/0x153
2010-09-11T01:00:41.146283+08:00 boston kernel: [<ffffffff81190938>] acpi_ex_resolve_node_to_value+0x18c/0x218
2010-09-11T01:00:41.146287+08:00 boston kernel: [<ffffffff8118c6d7>] acpi_ex_resolve_to_value+0x203/0x20c
2010-09-11T01:00:41.146290+08:00 boston kernel: [<ffffffff811869ad>] acpi_ds_evaluate_name_path+0x79/0xf5
2010-09-11T01:00:41.146293+08:00 boston kernel: [<ffffffff811855ec>] acpi_ds_exec_end_op+0x96/0x3d6
2010-09-11T01:00:41.146296+08:00 boston kernel: [<ffffffff811979e0>] acpi_ps_parse_loop+0x7d9/0x95d
2010-09-11T01:00:41.146299+08:00 boston kernel: [<ffffffff81185e6a>] ? acpi_ds_call_control_method+0x120/0x18e
2010-09-11T01:00:41.146302+08:00 boston kernel: [<ffffffff81196b25>] acpi_ps_parse_aml+0x9a/0x2b9
2010-09-11T01:00:41.146305+08:00 boston kernel: [<ffffffff811981eb>] acpi_ps_execute_method+0x1cd/0x29e
2010-09-11T01:00:41.146308+08:00 boston kernel: [<ffffffff81193621>] acpi_ns_evaluate+0xe1/0x1a8
2010-09-11T01:00:41.146311+08:00 boston kernel: [<ffffffff8119309a>] acpi_evaluate_object+0x147/0x240
2010-09-11T01:00:41.146314+08:00 boston kernel: [<ffffffff8117caaf>] ? acpi_device_resume+0x0/0x2b
2010-09-11T01:00:41.146317+08:00 boston kernel: [<ffffffff811a5f4d>] acpi_battery_get_state+0x81/0x124
2010-09-11T01:00:41.146320+08:00 boston kernel: [<ffffffff811a6252>] acpi_battery_update+0x262/0x26d
2010-09-11T01:00:41.146322+08:00 boston kernel: [<ffffffff811a6323>] acpi_battery_resume+0x25/0x29
2010-09-11T01:00:41.146326+08:00 boston kernel: [<ffffffff8117cad4>] acpi_device_resume+0x25/0x2b
2010-09-11T01:00:41.146328+08:00 boston kernel: [<ffffffff81219882>] legacy_resume+0x1f/0x57
2010-09-11T01:00:41.146331+08:00 boston kernel: [<ffffffff81219921>] device_resume+0x67/0xe8
2010-09-11T01:00:41.146334+08:00 boston kernel: [<ffffffff81142f9c>] ? kobject_get+0x1a/0x22
2010-09-11T01:00:41.146337+08:00 boston kernel: [<ffffffff8121a01b>] dpm_resume_end+0xfd/0x358
2010-09-11T01:00:41.146340+08:00 boston kernel: [<ffffffff8105fda6>] suspend_devices_and_enter+0x166/0x196
2010-09-11T01:00:41.146343+08:00 boston kernel: [<ffffffff8105fe72>] enter_state+0x9c/0xcf
2010-09-11T01:00:41.146346+08:00 boston kernel: [<ffffffff8105f6ab>] state_store+0xb1/0xce
2010-09-11T01:00:41.146349+08:00 boston kernel: [<ffffffff81142b67>] kobj_attr_store+0x17/0x19
2010-09-11T01:00:41.146352+08:00 boston kernel: [<ffffffff810f0dda>] sysfs_write_file+0xf2/0x12e
2010-09-11T01:00:41.146355+08:00 boston kernel: [<ffffffff810a77e1>] vfs_write+0xae/0x136
2010-09-11T01:00:41.146357+08:00 boston kernel: [<ffffffff810a7922>] sys_write+0x45/0x6c
2010-09-11T01:00:41.146365+08:00 boston kernel: [<ffffffff81001fc2>] system_call_fastpath+0x16/0x1b
2010-09-11T01:00:41.146368+08:00 boston kernel: BUG: scheduling while atomic: lid/1881/0x00000002
2010-09-11T01:00:41.146371+08:00 boston kernel: Modules linked in:
2010-09-11T01:00:41.146374+08:00 boston kernel: Pid: 1881, comm: lid Not tainted 2.6.36-rc1+ #25
2010-09-11T01:00:41.146376+08:00 boston kernel: Call Trace:
2010-09-11T01:00:41.146379+08:00 boston kernel: [<ffffffff8102e495>] __schedule_bug+0x5c/0x60
2010-09-11T01:00:41.146382+08:00 boston kernel: [<ffffffff8138429c>] schedule+0xf3/0x697
2010-09-11T01:00:41.146385+08:00 boston kernel: [<ffffffff81384b8d>] schedule_timeout+0x189/0x1b1
2010-09-11T01:00:41.146388+08:00 boston kernel: [<ffffffff8103ed4b>] ? process_timeout+0x0/0xb
2010-09-11T01:00:41.146391+08:00 boston kernel: [<ffffffff8117ed95>] acpi_ec_transaction_unlocked+0x142/0x205
2010-09-11T01:00:41.146394+08:00 boston kernel: [<ffffffff8104af9b>] ? autoremove_wake_function+0x0/0x34
2010-09-11T01:00:41.146397+08:00 boston kernel: [<ffffffff8117f1a0>] acpi_ec_transaction+0x183/0x224
2010-09-11T01:00:41.146401+08:00 boston kernel: [<ffffffff81179f5d>] ? acpi_os_wait_semaphore+0x49/0x57
2010-09-11T01:00:41.146404+08:00 boston kernel: [<ffffffff8117f3bf>] acpi_ec_space_handler+0x88/0x1af
2010-09-11T01:00:41.146407+08:00 boston kernel: [<ffffffff8104ef53>] ? down_timeout+0x44/0x4e
2010-09-11T01:00:41.146410+08:00 boston kernel: [<ffffffff8117f337>] ? acpi_ec_space_handler+0x0/0x1af
2010-09-11T01:00:41.146413+08:00 boston kernel: [<ffffffff8118853a>] acpi_ev_address_space_dispatch+0x16b/0x1b9
2010-09-11T01:00:41.146416+08:00 boston kernel: [<ffffffff8118cf34>] acpi_ex_access_region+0x230/0x23d
2010-09-11T01:00:41.146419+08:00 boston kernel: [<ffffffff8118d033>] acpi_ex_field_datum_io+0xf2/0x184
2010-09-11T01:00:41.146422+08:00 boston kernel: [<ffffffff8118d157>] acpi_ex_extract_from_field+0x92/0x1a2
2010-09-11T01:00:41.146425+08:00 boston kernel: [<ffffffff8118bcb0>] acpi_ex_read_data_from_field+0x113/0x153
2010-09-11T01:00:41.146428+08:00 boston kernel: [<ffffffff81190938>] acpi_ex_resolve_node_to_value+0x18c/0x218
2010-09-11T01:00:41.146432+08:00 boston kernel: [<ffffffff8118c6d7>] acpi_ex_resolve_to_value+0x203/0x20c
2010-09-11T01:00:41.146435+08:00 boston kernel: [<ffffffff811869ad>] acpi_ds_evaluate_name_path+0x79/0xf5
2010-09-11T01:00:41.146439+08:00 boston kernel: [<ffffffff811855ec>] acpi_ds_exec_end_op+0x96/0x3d6
2010-09-11T01:00:41.146442+08:00 boston kernel: [<ffffffff811979e0>] acpi_ps_parse_loop+0x7d9/0x95d
2010-09-11T01:00:41.146445+08:00 boston kernel: [<ffffffff81185e6a>] ? acpi_ds_call_control_method+0x120/0x18e
2010-09-11T01:00:41.146448+08:00 boston kernel: [<ffffffff81196b25>] acpi_ps_parse_aml+0x9a/0x2b9
2010-09-11T01:00:41.146451+08:00 boston kernel: [<ffffffff811981eb>] acpi_ps_execute_method+0x1cd/0x29e
2010-09-11T01:00:41.146454+08:00 boston kernel: [<ffffffff81193621>] acpi_ns_evaluate+0xe1/0x1a8
2010-09-11T01:00:41.146457+08:00 boston kernel: [<ffffffff8119309a>] acpi_evaluate_object+0x147/0x240
2010-09-11T01:00:41.146460+08:00 boston kernel: [<ffffffff8117caaf>] ? acpi_device_resume+0x0/0x2b
2010-09-11T01:00:41.146464+08:00 boston kernel: [<ffffffff811a5f4d>] acpi_battery_get_state+0x81/0x124
2010-09-11T01:00:41.146467+08:00 boston kernel: [<ffffffff811a6252>] acpi_battery_update+0x262/0x26d
2010-09-11T01:00:41.146471+08:00 boston kernel: [<ffffffff811a6323>] acpi_battery_resume+0x25/0x29
2010-09-11T01:00:41.146475+08:00 boston kernel: [<ffffffff8117cad4>] acpi_device_resume+0x25/0x2b
2010-09-11T01:00:41.146479+08:00 boston kernel: [<ffffffff81219882>] legacy_resume+0x1f/0x57
2010-09-11T01:00:41.146483+08:00 boston kernel: [<ffffffff81219921>] device_resume+0x67/0xe8
2010-09-11T01:00:41.146488+08:00 boston kernel: [<ffffffff81142f9c>] ? kobject_get+0x1a/0x22
2010-09-11T01:00:41.146491+08:00 boston kernel: [<ffffffff8121a01b>] dpm_resume_end+0xfd/0x358
2010-09-11T01:00:41.146494+08:00 boston kernel: [<ffffffff8105fda6>] suspend_devices_and_enter+0x166/0x196
2010-09-11T01:00:41.146497+08:00 boston kernel: [<ffffffff8105fe72>] enter_state+0x9c/0xcf
2010-09-11T01:00:41.146500+08:00 boston kernel: [<ffffffff8105f6ab>] state_store+0xb1/0xce
2010-09-11T01:00:41.146503+08:00 boston kernel: [<ffffffff81142b67>] kobj_attr_store+0x17/0x19
2010-09-11T01:00:41.146506+08:00 boston kernel: [<ffffffff810f0dda>] sysfs_write_file+0xf2/0x12e
2010-09-11T01:00:41.146509+08:00 boston kernel: [<ffffffff810a77e1>] vfs_write+0xae/0x136
2010-09-11T01:00:41.146671+08:00 boston kernel: [<ffffffff810a7922>] sys_write+0x45/0x6c
2010-09-11T01:00:41.146675+08:00 boston kernel: [<ffffffff81001fc2>] system_call_fastpath+0x16/0x1b
2010-09-11T01:00:41.146678+08:00 boston kernel: BUG: scheduling while atomic: lid/1881/0x00000002
2010-09-11T01:00:41.146681+08:00 boston kernel: Modules linked in:
2010-09-11T01:00:41.146684+08:00 boston kernel: Pid: 1881, comm: lid Not tainted 2.6.36-rc1+ #25
2010-09-11T01:00:41.146686+08:00 boston kernel: Call Trace:
2010-09-11T01:00:41.146689+08:00 boston kernel: [<ffffffff8102e495>] __schedule_bug+0x5c/0x60
2010-09-11T01:00:41.146692+08:00 boston kernel: [<ffffffff8138429c>] schedule+0xf3/0x697
2010-09-11T01:00:41.146694+08:00 boston kernel: [<ffffffff81384b8d>] schedule_timeout+0x189/0x1b1
2010-09-11T01:00:41.146697+08:00 boston kernel: [<ffffffff8103ed4b>] ? process_timeout+0x0/0xb
2010-09-11T01:00:41.146700+08:00 boston kernel: [<ffffffff8117ed95>] acpi_ec_transaction_unlocked+0x142/0x205
2010-09-11T01:00:41.146703+08:00 boston kernel: [<ffffffff8104af9b>] ? autoremove_wake_function+0x0/0x34
2010-09-11T01:00:41.146707+08:00 boston kernel: [<ffffffff8117f1a0>] acpi_ec_transaction+0x183/0x224
2010-09-11T01:00:41.146711+08:00 boston kernel: [<ffffffff81179f5d>] ? acpi_os_wait_semaphore+0x49/0x57
2010-09-11T01:00:41.146714+08:00 boston kernel: [<ffffffff8117f426>] acpi_ec_space_handler+0xef/0x1af
2010-09-11T01:00:41.146717+08:00 boston kernel: [<ffffffff8117f337>] ? acpi_ec_space_handler+0x0/0x1af
2010-09-11T01:00:41.146720+08:00 boston kernel: [<ffffffff8118853a>] acpi_ev_address_space_dispatch+0x16b/0x1b9
2010-09-11T01:00:41.146722+08:00 boston kernel: [<ffffffff8118cf34>] acpi_ex_access_region+0x230/0x23d
2010-09-11T01:00:41.146725+08:00 boston kernel: [<ffffffff8118d033>] acpi_ex_field_datum_io+0xf2/0x184
2010-09-11T01:00:41.146729+08:00 boston kernel: [<ffffffff8118d157>] acpi_ex_extract_from_field+0x92/0x1a2
2010-09-11T01:00:41.146732+08:00 boston kernel: [<ffffffff8118bcb0>] acpi_ex_read_data_from_field+0x113/0x153
2010-09-11T01:00:41.146735+08:00 boston kernel: [<ffffffff81190938>] acpi_ex_resolve_node_to_value+0x18c/0x218
2010-09-11T01:00:41.146738+08:00 boston kernel: [<ffffffff8118c6d7>] acpi_ex_resolve_to_value+0x203/0x20c
2010-09-11T01:00:41.146741+08:00 boston kernel: [<ffffffff811869ad>] acpi_ds_evaluate_name_path+0x79/0xf5
2010-09-11T01:00:41.146745+08:00 boston kernel: [<ffffffff811855ec>] acpi_ds_exec_end_op+0x96/0x3d6
2010-09-11T01:00:41.146748+08:00 boston kernel: [<ffffffff811979e0>] acpi_ps_parse_loop+0x7d9/0x95d
2010-09-11T01:00:41.146751+08:00 boston kernel: [<ffffffff81185e6a>] ? acpi_ds_call_control_method+0x120/0x18e
2010-09-11T01:00:41.146754+08:00 boston kernel: [<ffffffff81196b25>] acpi_ps_parse_aml+0x9a/0x2b9
2010-09-11T01:00:41.146757+08:00 boston kernel: [<ffffffff811981eb>] acpi_ps_execute_method+0x1cd/0x29e
2010-09-11T01:00:41.146760+08:00 boston kernel: [<ffffffff81193621>] acpi_ns_evaluate+0xe1/0x1a8
2010-09-11T01:00:41.146763+08:00 boston kernel: [<ffffffff8119309a>] acpi_evaluate_object+0x147/0x240
2010-09-11T01:00:41.146766+08:00 boston kernel: [<ffffffff8117caaf>] ? acpi_device_resume+0x0/0x2b
2010-09-11T01:00:41.146769+08:00 boston kernel: [<ffffffff811a5f4d>] acpi_battery_get_state+0x81/0x124
2010-09-11T01:00:41.146772+08:00 boston kernel: [<ffffffff811a6252>] acpi_battery_update+0x262/0x26d
2010-09-11T01:00:41.146775+08:00 boston kernel: [<ffffffff811a6323>] acpi_battery_resume+0x25/0x29
2010-09-11T01:00:41.146778+08:00 boston kernel: [<ffffffff8117cad4>] acpi_device_resume+0x25/0x2b
2010-09-11T01:00:41.146781+08:00 boston kernel: [<ffffffff81219882>] legacy_resume+0x1f/0x57
2010-09-11T01:00:41.146784+08:00 boston kernel: [<ffffffff81219921>] device_resume+0x67/0xe8
2010-09-11T01:00:41.146788+08:00 boston kernel: [<ffffffff81142f9c>] ? kobject_get+0x1a/0x22
2010-09-11T01:00:41.146791+08:00 boston kernel: [<ffffffff8121a01b>] dpm_resume_end+0xfd/0x358
2010-09-11T01:00:41.146794+08:00 boston kernel: [<ffffffff8105fda6>] suspend_devices_and_enter+0x166/0x196
2010-09-11T01:00:41.146797+08:00 boston kernel: [<ffffffff8105fe72>] enter_state+0x9c/0xcf
2010-09-11T01:00:41.146800+08:00 boston kernel: [<ffffffff8105f6ab>] state_store+0xb1/0xce
2010-09-11T01:00:41.146803+08:00 boston kernel: [<ffffffff81142b67>] kobj_attr_store+0x17/0x19
2010-09-11T01:00:41.146806+08:00 boston kernel: [<ffffffff810f0dda>] sysfs_write_file+0xf2/0x12e
2010-09-11T01:00:41.146809+08:00 boston kernel: [<ffffffff810a77e1>] vfs_write+0xae/0x136
2010-09-11T01:00:41.146812+08:00 boston kernel: [<ffffffff810a7922>] sys_write+0x45/0x6c
2010-09-11T01:00:41.146815+08:00 boston kernel: [<ffffffff81001fc2>] system_call_fastpath+0x16/0x1b
2010-09-11T01:00:41.146817+08:00 boston kernel: BUG: scheduling while atomic: lid/1881/0x00000002
2010-09-11T01:00:41.146820+08:00 boston kernel: Modules linked in:
2010-09-11T01:00:41.146822+08:00 boston kernel: Pid: 1881, comm: lid Not tainted 2.6.36-rc1+ #25
2010-09-11T01:00:41.146825+08:00 boston kernel: Call Trace:
2010-09-11T01:00:41.146828+08:00 boston kernel: [<ffffffff8102e495>] __schedule_bug+0x5c/0x60
2010-09-11T01:00:41.146832+08:00 boston kernel: [<ffffffff8138429c>] schedule+0xf3/0x697
2010-09-11T01:00:41.146835+08:00 boston kernel: [<ffffffff81384b8d>] schedule_timeout+0x189/0x1b1
2010-09-11T01:00:41.146838+08:00 boston kernel: [<ffffffff8103ed4b>] ? process_timeout+0x0/0xb
2010-09-11T01:00:41.146841+08:00 boston kernel: [<ffffffff8117ed95>] acpi_ec_transaction_unlocked+0x142/0x205
2010-09-11T01:00:41.146844+08:00 boston kernel: [<ffffffff8104af9b>] ? autoremove_wake_function+0x0/0x34
2010-09-11T01:00:41.146847+08:00 boston kernel: [<ffffffff8117f1a0>] acpi_ec_transaction+0x183/0x224
2010-09-11T01:00:41.146851+08:00 boston kernel: [<ffffffff81179f5d>] ? acpi_os_wait_semaphore+0x49/0x57
2010-09-11T01:00:41.146854+08:00 boston kernel: [<ffffffff8117f426>] acpi_ec_space_handler+0xef/0x1af
2010-09-11T01:00:41.146857+08:00 boston kernel: [<ffffffff8117f337>] ? acpi_ec_space_handler+0x0/0x1af
2010-09-11T01:00:41.146860+08:00 boston kernel: [<ffffffff8118853a>] acpi_ev_address_space_dispatch+0x16b/0x1b9
2010-09-11T01:00:41.146863+08:00 boston kernel: [<ffffffff8118cf34>] acpi_ex_access_region+0x230/0x23d
2010-09-11T01:00:41.146866+08:00 boston kernel: [<ffffffff8118d033>] acpi_ex_field_datum_io+0xf2/0x184
2010-09-11T01:00:41.146869+08:00 boston kernel: [<ffffffff8118d157>] acpi_ex_extract_from_field+0x92/0x1a2
2010-09-11T01:00:41.146872+08:00 boston kernel: [<ffffffff8118bcb0>] acpi_ex_read_data_from_field+0x113/0x153
2010-09-11T01:00:41.146875+08:00 boston kernel: [<ffffffff81190938>] acpi_ex_resolve_node_to_value+0x18c/0x218
2010-09-11T01:00:41.146880+08:00 boston kernel: [<ffffffff8118c6d7>] acpi_ex_resolve_to_value+0x203/0x20c
2010-09-11T01:00:41.146884+08:00 boston kernel: [<ffffffff811869ad>] acpi_ds_evaluate_name_path+0x79/0xf5
2010-09-11T01:00:41.146887+08:00 boston kernel: [<ffffffff811855ec>] acpi_ds_exec_end_op+0x96/0x3d6
2010-09-11T01:00:41.146890+08:00 boston kernel: [<ffffffff811979e0>] acpi_ps_parse_loop+0x7d9/0x95d
2010-09-11T01:00:41.146896+08:00 boston kernel: [<ffffffff81185e6a>] ? acpi_ds_call_control_method+0x120/0x18e
2010-09-11T01:00:41.146899+08:00 boston kernel: [<ffffffff81196b25>] acpi_ps_parse_aml+0x9a/0x2b9
2010-09-11T01:00:41.146902+08:00 boston kernel: [<ffffffff811981eb>] acpi_ps_execute_method+0x1cd/0x29e
2010-09-11T01:00:41.147077+08:00 boston kernel: [<ffffffff81193621>] acpi_ns_evaluate+0xe1/0x1a8
2010-09-11T01:00:41.147081+08:00 boston kernel: [<ffffffff8119309a>] acpi_evaluate_object+0x147/0x240
2010-09-11T01:00:41.147084+08:00 boston kernel: [<ffffffff8117caaf>] ? acpi_device_resume+0x0/0x2b
2010-09-11T01:00:41.147087+08:00 boston kernel: [<ffffffff811a5f4d>] acpi_battery_get_state+0x81/0x124
2010-09-11T01:00:41.147089+08:00 boston kernel: [<ffffffff811a6252>] acpi_battery_update+0x262/0x26d
2010-09-11T01:00:41.147094+08:00 boston kernel: [<ffffffff811a6323>] acpi_battery_resume+0x25/0x29
2010-09-11T01:00:41.147097+08:00 boston kernel: [<ffffffff8117cad4>] acpi_device_resume+0x25/0x2b
2010-09-11T01:00:41.147100+08:00 boston kernel: [<ffffffff81219882>] legacy_resume+0x1f/0x57
2010-09-11T01:00:41.147103+08:00 boston kernel: [<ffffffff81219921>] device_resume+0x67/0xe8
2010-09-11T01:00:41.147106+08:00 boston kernel: [<ffffffff81142f9c>] ? kobject_get+0x1a/0x22
2010-09-11T01:00:41.147108+08:00 boston kernel: [<ffffffff8121a01b>] dpm_resume_end+0xfd/0x358
2010-09-11T01:00:41.147111+08:00 boston kernel: [<ffffffff8105fda6>] suspend_devices_and_enter+0x166/0x196
2010-09-11T01:00:41.147114+08:00 boston kernel: [<ffffffff8105fe72>] enter_state+0x9c/0xcf
2010-09-11T01:00:41.147119+08:00 boston kernel: [<ffffffff8105f6ab>] state_store+0xb1/0xce
2010-09-11T01:00:41.147122+08:00 boston kernel: [<ffffffff81142b67>] kobj_attr_store+0x17/0x19
2010-09-11T01:00:41.147125+08:00 boston kernel: [<ffffffff810f0dda>] sysfs_write_file+0xf2/0x12e
2010-09-11T01:00:41.147127+08:00 boston kernel: [<ffffffff810a77e1>] vfs_write+0xae/0x136
2010-09-11T01:00:41.147130+08:00 boston kernel: [<ffffffff810a7922>] sys_write+0x45/0x6c
2010-09-11T01:00:41.147132+08:00 boston kernel: [<ffffffff81001fc2>] system_call_fastpath+0x16/0x1b
2010-09-11T01:00:41.147134+08:00 boston kernel: BUG: scheduling while atomic: lid/1881/0x00000002
2010-09-11T01:00:41.147138+08:00 boston kernel: Modules linked in:
2010-09-11T01:00:41.147141+08:00 boston kernel: Pid: 1881, comm: lid Not tainted 2.6.36-rc1+ #25
2010-09-11T01:00:41.147143+08:00 boston kernel: Call Trace:
2010-09-11T01:00:41.147145+08:00 boston kernel: [<ffffffff8102e495>] __schedule_bug+0x5c/0x60
2010-09-11T01:00:41.147148+08:00 boston kernel: [<ffffffff8138429c>] schedule+0xf3/0x697
2010-09-11T01:00:41.147150+08:00 boston kernel: [<ffffffff81384b8d>] schedule_timeout+0x189/0x1b1
2010-09-11T01:00:41.147153+08:00 boston kernel: [<ffffffff8103ed4b>] ? process_timeout+0x0/0xb
2010-09-11T01:00:41.147156+08:00 boston kernel: [<ffffffff8117ed95>] acpi_ec_transaction_unlocked+0x142/0x205
2010-09-11T01:00:41.147161+08:00 boston kernel: [<ffffffff8104af9b>] ? autoremove_wake_function+0x0/0x34
2010-09-11T01:00:41.147164+08:00 boston kernel: [<ffffffff8117f1a0>] acpi_ec_transaction+0x183/0x224
2010-09-11T01:00:41.147167+08:00 boston kernel: [<ffffffff81179f5d>] ? acpi_os_wait_semaphore+0x49/0x57
2010-09-11T01:00:41.147170+08:00 boston kernel: [<ffffffff8117f4b1>] acpi_ec_space_handler+0x17a/0x1af
2010-09-11T01:00:41.147173+08:00 boston kernel: [<ffffffff8117f337>] ? acpi_ec_space_handler+0x0/0x1af
2010-09-11T01:00:41.147176+08:00 boston kernel: [<ffffffff8118853a>] acpi_ev_address_space_dispatch+0x16b/0x1b9
2010-09-11T01:00:41.147179+08:00 boston kernel: [<ffffffff8118cf34>] acpi_ex_access_region+0x230/0x23d
2010-09-11T01:00:41.147182+08:00 boston kernel: [<ffffffff8118d033>] acpi_ex_field_datum_io+0xf2/0x184
2010-09-11T01:00:41.147186+08:00 boston kernel: [<ffffffff8118d157>] acpi_ex_extract_from_field+0x92/0x1a2
2010-09-11T01:00:41.147188+08:00 boston kernel: [<ffffffff8118bcb0>] acpi_ex_read_data_from_field+0x113/0x153
2010-09-11T01:00:41.147191+08:00 boston kernel: [<ffffffff81190938>] acpi_ex_resolve_node_to_value+0x18c/0x218
2010-09-11T01:00:41.147194+08:00 boston kernel: [<ffffffff8118c6d7>] acpi_ex_resolve_to_value+0x203/0x20c
2010-09-11T01:00:41.147197+08:00 boston kernel: [<ffffffff811869ad>] acpi_ds_evaluate_name_path+0x79/0xf5
2010-09-11T01:00:41.147199+08:00 boston kernel: [<ffffffff811855ec>] acpi_ds_exec_end_op+0x96/0x3d6
2010-09-11T01:00:41.147202+08:00 boston kernel: [<ffffffff811979e0>] acpi_ps_parse_loop+0x7d9/0x95d
2010-09-11T01:00:41.147209+08:00 boston kernel: [<ffffffff81185e6a>] ? acpi_ds_call_control_method+0x120/0x18e
2010-09-11T01:00:41.147212+08:00 boston kernel: [<ffffffff81196b25>] acpi_ps_parse_aml+0x9a/0x2b9
2010-09-11T01:00:41.147215+08:00 boston kernel: [<ffffffff811981eb>] acpi_ps_execute_method+0x1cd/0x29e
2010-09-11T01:00:41.147218+08:00 boston kernel: [<ffffffff81193621>] acpi_ns_evaluate+0xe1/0x1a8
2010-09-11T01:00:41.147220+08:00 boston kernel: [<ffffffff8119309a>] acpi_evaluate_object+0x147/0x240
2010-09-11T01:00:41.147223+08:00 boston kernel: [<ffffffff8117caaf>] ? acpi_device_resume+0x0/0x2b
2010-09-11T01:00:41.147226+08:00 boston kernel: [<ffffffff811a5f4d>] acpi_battery_get_state+0x81/0x124
2010-09-11T01:00:41.147232+08:00 boston kernel: [<ffffffff811a6252>] acpi_battery_update+0x262/0x26d
2010-09-11T01:00:41.147235+08:00 boston kernel: [<ffffffff811a6323>] acpi_battery_resume+0x25/0x29
2010-09-11T01:00:41.147238+08:00 boston kernel: [<ffffffff8117cad4>] acpi_device_resume+0x25/0x2b
2010-09-11T01:00:41.147240+08:00 boston kernel: [<ffffffff81219882>] legacy_resume+0x1f/0x57
2010-09-11T01:00:41.147243+08:00 boston kernel: [<ffffffff81219921>] device_resume+0x67/0xe8
2010-09-11T01:00:41.147246+08:00 boston kernel: [<ffffffff81142f9c>] ? kobject_get+0x1a/0x22
2010-09-11T01:00:41.147248+08:00 boston kernel: [<ffffffff8121a01b>] dpm_resume_end+0xfd/0x358
2010-09-11T01:00:41.147252+08:00 boston kernel: [<ffffffff8105fda6>] suspend_devices_and_enter+0x166/0x196
2010-09-11T01:00:41.147256+08:00 boston kernel: [<ffffffff8105fe72>] enter_state+0x9c/0xcf
2010-09-11T01:00:41.147259+08:00 boston kernel: [<ffffffff8105f6ab>] state_store+0xb1/0xce
2010-09-11T01:00:41.147262+08:00 boston kernel: [<ffffffff81142b67>] kobj_attr_store+0x17/0x19
2010-09-11T01:00:41.147265+08:00 boston kernel: [<ffffffff810f0dda>] sysfs_write_file+0xf2/0x12e
2010-09-11T01:00:41.147270+08:00 boston kernel: [<ffffffff810a77e1>] vfs_write+0xae/0x136
2010-09-11T01:00:41.147273+08:00 boston kernel: [<ffffffff810a7922>] sys_write+0x45/0x6c
2010-09-11T01:00:41.147276+08:00 boston kernel: [<ffffffff81001fc2>] system_call_fastpath+0x16/0x1b
2010-09-11T01:00:41.147280+08:00 boston kernel: BUG: scheduling while atomic: lid/1881/0x00000002
2010-09-11T01:00:41.147282+08:00 boston kernel: Modules linked in:
2010-09-11T01:00:41.147285+08:00 boston kernel: Pid: 1881, comm: lid Not tainted 2.6.36-rc1+ #25
2010-09-11T01:00:41.147287+08:00 boston kernel: Call Trace:
2010-09-11T01:00:41.147290+08:00 boston kernel: [<ffffffff8102e495>] __schedule_bug+0x5c/0x60
2010-09-11T01:00:41.147292+08:00 boston kernel: [<ffffffff8138429c>] schedule+0xf3/0x697
2010-09-11T01:00:41.147295+08:00 boston kernel: [<ffffffff81384b8d>] schedule_timeout+0x189/0x1b1
2010-09-11T01:00:41.147298+08:00 boston kernel: [<ffffffff8103ed4b>] ? process_timeout+0x0/0xb
2010-09-11T01:00:41.147306+08:00 boston kernel: [<ffffffff8117ed95>] acpi_ec_transaction_unlocked+0x142/0x205
2010-09-11T01:00:41.147309+08:00 boston kernel: [<ffffffff8104af9b>] ? autoremove_wake_function+0x0/0x34
2010-09-11T01:00:41.147313+08:00 boston kernel: [<ffffffff8117f1a0>] acpi_ec_transaction+0x183/0x224
2010-09-11T01:00:41.147316+08:00 boston kernel: [<ffffffff8117f426>] acpi_ec_space_handler+0xef/0x1af
2010-09-11T01:00:41.147477+08:00 boston kernel: [<ffffffff8119dadd>] ? acpi_ut_acquire_mutex+0x47/0x8c
2010-09-11T01:00:41.147480+08:00 boston kernel: [<ffffffff8117f337>] ? acpi_ec_space_handler+0x0/0x1af
2010-09-11T01:00:41.147483+08:00 boston kernel: [<ffffffff8118853a>] acpi_ev_address_space_dispatch+0x16b/0x1b9
2010-09-11T01:00:41.147486+08:00 boston kernel: [<ffffffff8118cf34>] acpi_ex_access_region+0x230/0x23d
2010-09-11T01:00:41.147489+08:00 boston kernel: [<ffffffff81179e8e>] ? acpi_os_release_object+0x9/0xd
2010-09-11T01:00:41.147492+08:00 boston kernel: [<ffffffff811929c5>] ? acpi_ns_search_one_scope+0x1d/0x40
2010-09-11T01:00:41.147495+08:00 boston kernel: [<ffffffff8118d033>] acpi_ex_field_datum_io+0xf2/0x184
2010-09-11T01:00:41.147498+08:00 boston kernel: [<ffffffff8118d157>] acpi_ex_extract_from_field+0x92/0x1a2
2010-09-11T01:00:41.147501+08:00 boston kernel: [<ffffffff8118bcb0>] acpi_ex_read_data_from_field+0x113/0x153
2010-09-11T01:00:41.147504+08:00 boston kernel: [<ffffffff81190938>] acpi_ex_resolve_node_to_value+0x18c/0x218
2010-09-11T01:00:41.147513+08:00 boston kernel: [<ffffffff8118c6d7>] acpi_ex_resolve_to_value+0x203/0x20c
2010-09-11T01:00:41.147517+08:00 boston kernel: [<ffffffff811869ad>] acpi_ds_evaluate_name_path+0x79/0xf5
2010-09-11T01:00:41.147520+08:00 boston kernel: [<ffffffff811855ec>] acpi_ds_exec_end_op+0x96/0x3d6
2010-09-11T01:00:41.147523+08:00 boston kernel: [<ffffffff811979e0>] acpi_ps_parse_loop+0x7d9/0x95d
2010-09-11T01:00:41.147526+08:00 boston kernel: [<ffffffff81196b25>] acpi_ps_parse_aml+0x9a/0x2b9
2010-09-11T01:00:41.147529+08:00 boston kernel: [<ffffffff811981eb>] acpi_ps_execute_method+0x1cd/0x29e
2010-09-11T01:00:41.147532+08:00 boston kernel: [<ffffffff81193621>] acpi_ns_evaluate+0xe1/0x1a8
2010-09-11T01:00:41.147536+08:00 boston kernel: [<ffffffff8119309a>] acpi_evaluate_object+0x147/0x240
2010-09-11T01:00:41.147539+08:00 boston kernel: [<ffffffff8117caaf>] ? acpi_device_resume+0x0/0x2b
2010-09-11T01:00:41.147541+08:00 boston kernel: [<ffffffff8117a737>] acpi_evaluate_integer+0x2f/0x4d
2010-09-11T01:00:41.147544+08:00 boston kernel: [<ffffffff811a6252>] ? acpi_battery_update+0x262/0x26d
2010-09-11T01:00:41.147547+08:00 boston kernel: [<ffffffff8119e2b9>] acpi_ac_get_state+0x36/0x6a
2010-09-11T01:00:41.147550+08:00 boston kernel: [<ffffffff8119e3a8>] acpi_ac_resume+0x27/0x59
2010-09-11T01:00:41.147553+08:00 boston kernel: [<ffffffff8117cad4>] acpi_device_resume+0x25/0x2b
2010-09-11T01:00:41.147555+08:00 boston kernel: [<ffffffff81219882>] legacy_resume+0x1f/0x57
2010-09-11T01:00:41.147561+08:00 boston kernel: [<ffffffff81219921>] device_resume+0x67/0xe8
2010-09-11T01:00:41.147565+08:00 boston kernel: [<ffffffff81142f9c>] ? kobject_get+0x1a/0x22
2010-09-11T01:00:41.147567+08:00 boston kernel: [<ffffffff8121a01b>] dpm_resume_end+0xfd/0x358
2010-09-11T01:00:41.147570+08:00 boston kernel: [<ffffffff8105fda6>] suspend_devices_and_enter+0x166/0x196
2010-09-11T01:00:41.147573+08:00 boston kernel: [<ffffffff8105fe72>] enter_state+0x9c/0xcf
2010-09-11T01:00:41.147576+08:00 boston kernel: [<ffffffff8105f6ab>] state_store+0xb1/0xce
2010-09-11T01:00:41.147579+08:00 boston kernel: [<ffffffff81142b67>] kobj_attr_store+0x17/0x19
2010-09-11T01:00:41.147585+08:00 boston kernel: [<ffffffff810f0dda>] sysfs_write_file+0xf2/0x12e
2010-09-11T01:00:41.147588+08:00 boston kernel: [<ffffffff810a77e1>] vfs_write+0xae/0x136
2010-09-11T01:00:41.147591+08:00 boston kernel: [<ffffffff810a7922>] sys_write+0x45/0x6c
2010-09-11T01:00:41.147593+08:00 boston kernel: [<ffffffff81001fc2>] system_call_fastpath+0x16/0x1b
2010-09-11T01:00:41.147596+08:00 boston kernel: BUG: scheduling while atomic: lid/1881/0x00000002
2010-09-11T01:00:41.147598+08:00 boston kernel: Modules linked in:
2010-09-11T01:00:41.147601+08:00 boston kernel: Pid: 1881, comm: lid Not tainted 2.6.36-rc1+ #25
2010-09-11T01:00:41.147603+08:00 boston kernel: Call Trace:
2010-09-11T01:00:41.147608+08:00 boston kernel: [<ffffffff8102e495>] __schedule_bug+0x5c/0x60
2010-09-11T01:00:41.147611+08:00 boston kernel: [<ffffffff8138429c>] schedule+0xf3/0x697
2010-09-11T01:00:41.147614+08:00 boston kernel: [<ffffffff81384b8d>] schedule_timeout+0x189/0x1b1
2010-09-11T01:00:41.147617+08:00 boston kernel: [<ffffffff8103ed4b>] ? process_timeout+0x0/0xb
2010-09-11T01:00:41.147620+08:00 boston kernel: [<ffffffff8117ed95>] acpi_ec_transaction_unlocked+0x142/0x205
2010-09-11T01:00:41.147623+08:00 boston kernel: [<ffffffff8104af9b>] ? autoremove_wake_function+0x0/0x34
2010-09-11T01:00:41.147626+08:00 boston kernel: [<ffffffff8117f1a0>] acpi_ec_transaction+0x183/0x224
2010-09-11T01:00:41.147631+08:00 boston kernel: [<ffffffff8104af9b>] ? autoremove_wake_function+0x0/0x34
2010-09-11T01:00:41.147635+08:00 boston kernel: [<ffffffff8117f426>] acpi_ec_space_handler+0xef/0x1af
2010-09-11T01:00:41.147637+08:00 boston kernel: [<ffffffff8117f337>] ? acpi_ec_space_handler+0x0/0x1af
2010-09-11T01:00:41.147641+08:00 boston kernel: [<ffffffff8118853a>] acpi_ev_address_space_dispatch+0x16b/0x1b9
2010-09-11T01:00:41.147646+08:00 boston kernel: [<ffffffff8118cf34>] acpi_ex_access_region+0x230/0x23d
2010-09-11T01:00:41.147649+08:00 boston kernel: [<ffffffff81190100>] ? acpi_ex_enter_interpreter+0xb/0x2b
2010-09-11T01:00:41.147652+08:00 boston kernel: [<ffffffff8118d033>] acpi_ex_field_datum_io+0xf2/0x184
2010-09-11T01:00:41.147656+08:00 boston kernel: [<ffffffff8118d157>] acpi_ex_extract_from_field+0x92/0x1a2
2010-09-11T01:00:41.147661+08:00 boston kernel: [<ffffffff8118bcb0>] acpi_ex_read_data_from_field+0x113/0x153
2010-09-11T01:00:41.147665+08:00 boston kernel: [<ffffffff81190938>] acpi_ex_resolve_node_to_value+0x18c/0x218
2010-09-11T01:00:41.147667+08:00 boston kernel: [<ffffffff8118c6d7>] acpi_ex_resolve_to_value+0x203/0x20c
2010-09-11T01:00:41.147670+08:00 boston kernel: [<ffffffff811869ad>] acpi_ds_evaluate_name_path+0x79/0xf5
2010-09-11T01:00:41.147673+08:00 boston kernel: [<ffffffff811855ec>] acpi_ds_exec_end_op+0x96/0x3d6
2010-09-11T01:00:41.147676+08:00 boston kernel: [<ffffffff811979e0>] acpi_ps_parse_loop+0x7d9/0x95d
2010-09-11T01:00:41.147679+08:00 boston kernel: [<ffffffff81196b25>] acpi_ps_parse_aml+0x9a/0x2b9
2010-09-11T01:00:41.147684+08:00 boston kernel: [<ffffffff811981eb>] acpi_ps_execute_method+0x1cd/0x29e
2010-09-11T01:00:41.147687+08:00 boston kernel: [<ffffffff81193621>] acpi_ns_evaluate+0xe1/0x1a8
2010-09-11T01:00:41.147690+08:00 boston kernel: [<ffffffff8119309a>] acpi_evaluate_object+0x147/0x240
2010-09-11T01:00:41.147693+08:00 boston kernel: [<ffffffff8119cd24>] ? acpi_ut_update_ref_count+0x5a/0xa4
2010-09-11T01:00:41.147696+08:00 boston kernel: [<ffffffff8117caaf>] ? acpi_device_resume+0x0/0x2b
2010-09-11T01:00:41.147698+08:00 boston kernel: [<ffffffff8117a737>] acpi_evaluate_integer+0x2f/0x4d
2010-09-11T01:00:41.147701+08:00 boston kernel: [<ffffffff81179f10>] ? acpi_os_signal_semaphore+0x23/0x27
2010-09-11T01:00:41.147704+08:00 boston kernel: [<ffffffff811a4e16>] thermal_get_temp+0x40/0x6e
2010-09-11T01:00:41.147708+08:00 boston kernel: [<ffffffff812a9f0e>] thermal_zone_device_update+0x34/0x221
2010-09-11T01:00:41.147711+08:00 boston kernel: [<ffffffff8117caaf>] ? acpi_device_resume+0x0/0x2b
2010-09-11T01:00:41.147714+08:00 boston kernel: [<ffffffff8117a737>] ? acpi_evaluate_integer+0x2f/0x4d
2010-09-11T01:00:41.147875+08:00 boston kernel: [<ffffffff8117caaf>] ? acpi_device_resume+0x0/0x2b
2010-09-11T01:00:41.147882+08:00 boston kernel: [<ffffffff811a563e>] acpi_thermal_resume+0xda/0xf2
2010-09-11T01:00:41.147885+08:00 boston kernel: [<ffffffff8119e2b9>] ? acpi_ac_get_state+0x36/0x6a
2010-09-11T01:00:41.147888+08:00 boston kernel: [<ffffffff8117caaf>] ? acpi_device_resume+0x0/0x2b
2010-09-11T01:00:41.147891+08:00 boston kernel: [<ffffffff8117cad4>] acpi_device_resume+0x25/0x2b
2010-09-11T01:00:41.147896+08:00 boston kernel: [<ffffffff81219882>] legacy_resume+0x1f/0x57
2010-09-11T01:00:41.147900+08:00 boston kernel: [<ffffffff81219921>] device_resume+0x67/0xe8
2010-09-11T01:00:41.147902+08:00 boston kernel: [<ffffffff81142f9c>] ? kobject_get+0x1a/0x22
2010-09-11T01:00:41.147905+08:00 boston kernel: [<ffffffff8121a01b>] dpm_resume_end+0xfd/0x358
2010-09-11T01:00:41.147908+08:00 boston kernel: [<ffffffff8105fda6>] suspend_devices_and_enter+0x166/0x196
2010-09-11T01:00:41.147911+08:00 boston kernel: [<ffffffff8105fe72>] enter_state+0x9c/0xcf
2010-09-11T01:00:41.147913+08:00 boston kernel: [<ffffffff8105f6ab>] state_store+0xb1/0xce
2010-09-11T01:00:41.147917+08:00 boston kernel: [<ffffffff81142b67>] kobj_attr_store+0x17/0x19
2010-09-11T01:00:41.147920+08:00 boston kernel: [<ffffffff810f0dda>] sysfs_write_file+0xf2/0x12e
2010-09-11T01:00:41.147923+08:00 boston kernel: [<ffffffff810a77e1>] vfs_write+0xae/0x136
2010-09-11T01:00:41.147926+08:00 boston kernel: [<ffffffff810a7922>] sys_write+0x45/0x6c
2010-09-11T01:00:41.147929+08:00 boston kernel: [<ffffffff81001fc2>] system_call_fastpath+0x16/0x1b
2010-09-11T01:00:41.147931+08:00 boston kernel: BUG: scheduling while atomic: lid/1881/0x00000002
2010-09-11T01:00:41.147933+08:00 boston kernel: Modules linked in:
2010-09-11T01:00:41.147936+08:00 boston kernel: Pid: 1881, comm: lid Not tainted 2.6.36-rc1+ #25
2010-09-11T01:00:41.147940+08:00 boston kernel: Call Trace:
2010-09-11T01:00:41.147943+08:00 boston kernel: [<ffffffff8102e495>] __schedule_bug+0x5c/0x60
2010-09-11T01:00:41.147945+08:00 boston kernel: [<ffffffff8138429c>] schedule+0xf3/0x697
2010-09-11T01:00:41.147948+08:00 boston kernel: [<ffffffff81384b8d>] schedule_timeout+0x189/0x1b1
2010-09-11T01:00:41.147951+08:00 boston kernel: [<ffffffff8103ed4b>] ? process_timeout+0x0/0xb
2010-09-11T01:00:41.147954+08:00 boston kernel: [<ffffffff8117ed95>] acpi_ec_transaction_unlocked+0x142/0x205
2010-09-11T01:00:41.147957+08:00 boston kernel: [<ffffffff8104af9b>] ? autoremove_wake_function+0x0/0x34
2010-09-11T01:00:41.147961+08:00 boston kernel: [<ffffffff8117f1a0>] acpi_ec_transaction+0x183/0x224
2010-09-11T01:00:41.147964+08:00 boston kernel: [<ffffffff8104af9b>] ? autoremove_wake_function+0x0/0x34
2010-09-11T01:00:41.147967+08:00 boston kernel: [<ffffffff8117f426>] acpi_ec_space_handler+0xef/0x1af
2010-09-11T01:00:41.147970+08:00 boston kernel: [<ffffffff8117f337>] ? acpi_ec_space_handler+0x0/0x1af
2010-09-11T01:00:41.147973+08:00 boston kernel: [<ffffffff8118853a>] acpi_ev_address_space_dispatch+0x16b/0x1b9
2010-09-11T01:00:41.147976+08:00 boston kernel: [<ffffffff8118cf34>] acpi_ex_access_region+0x230/0x23d
2010-09-11T01:00:41.147978+08:00 boston kernel: [<ffffffff81190100>] ? acpi_ex_enter_interpreter+0xb/0x2b
2010-09-11T01:00:41.147981+08:00 boston kernel: [<ffffffff8118d033>] acpi_ex_field_datum_io+0xf2/0x184
2010-09-11T01:00:41.147986+08:00 boston kernel: [<ffffffff8118d157>] acpi_ex_extract_from_field+0x92/0x1a2
2010-09-11T01:00:41.147989+08:00 boston kernel: [<ffffffff8118bcb0>] acpi_ex_read_data_from_field+0x113/0x153
2010-09-11T01:00:41.147992+08:00 boston kernel: [<ffffffff81190938>] acpi_ex_resolve_node_to_value+0x18c/0x218
2010-09-11T01:00:41.147994+08:00 boston kernel: [<ffffffff8118c6d7>] acpi_ex_resolve_to_value+0x203/0x20c
2010-09-11T01:00:41.147997+08:00 boston kernel: [<ffffffff811869ad>] acpi_ds_evaluate_name_path+0x79/0xf5
2010-09-11T01:00:41.148000+08:00 boston kernel: [<ffffffff811855ec>] acpi_ds_exec_end_op+0x96/0x3d6
2010-09-11T01:00:41.148003+08:00 boston kernel: [<ffffffff811979e0>] acpi_ps_parse_loop+0x7d9/0x95d
2010-09-11T01:00:41.148008+08:00 boston kernel: [<ffffffff81196b25>] acpi_ps_parse_aml+0x9a/0x2b9
2010-09-11T01:00:41.148011+08:00 boston kernel: [<ffffffff811981eb>] acpi_ps_execute_method+0x1cd/0x29e
2010-09-11T01:00:41.148013+08:00 boston kernel: [<ffffffff81193621>] acpi_ns_evaluate+0xe1/0x1a8
2010-09-11T01:00:41.148016+08:00 boston kernel: [<ffffffff8119309a>] acpi_evaluate_object+0x147/0x240
2010-09-11T01:00:41.148019+08:00 boston kernel: [<ffffffff8119cd24>] ? acpi_ut_update_ref_count+0x5a/0xa4
2010-09-11T01:00:41.148022+08:00 boston kernel: [<ffffffff8117caaf>] ? acpi_device_resume+0x0/0x2b
2010-09-11T01:00:41.148025+08:00 boston kernel: [<ffffffff8117a737>] acpi_evaluate_integer+0x2f/0x4d
2010-09-11T01:00:41.148028+08:00 boston kernel: [<ffffffff81179f10>] ? acpi_os_signal_semaphore+0x23/0x27
2010-09-11T01:00:41.148033+08:00 boston kernel: [<ffffffff811a4e16>] thermal_get_temp+0x40/0x6e
2010-09-11T01:00:41.148037+08:00 boston kernel: [<ffffffff812a9f0e>] thermal_zone_device_update+0x34/0x221
2010-09-11T01:00:41.148039+08:00 boston kernel: [<ffffffff8117caaf>] ? acpi_device_resume+0x0/0x2b
2010-09-11T01:00:41.148042+08:00 boston kernel: [<ffffffff8117a737>] ? acpi_evaluate_integer+0x2f/0x4d
2010-09-11T01:00:41.148045+08:00 boston kernel: [<ffffffff8117caaf>] ? acpi_device_resume+0x0/0x2b
2010-09-11T01:00:41.148048+08:00 boston kernel: [<ffffffff811a563e>] acpi_thermal_resume+0xda/0xf2
2010-09-11T01:00:41.148050+08:00 boston kernel: [<ffffffff8119e2b9>] ? acpi_ac_get_state+0x36/0x6a
2010-09-11T01:00:41.148059+08:00 boston kernel: [<ffffffff8117caaf>] ? acpi_device_resume+0x0/0x2b
2010-09-11T01:00:41.148062+08:00 boston kernel: [<ffffffff8117cad4>] acpi_device_resume+0x25/0x2b
2010-09-11T01:00:41.148065+08:00 boston kernel: [<ffffffff81219882>] legacy_resume+0x1f/0x57
2010-09-11T01:00:41.148067+08:00 boston kernel: [<ffffffff81219921>] device_resume+0x67/0xe8
2010-09-11T01:00:41.148070+08:00 boston kernel: [<ffffffff81142f9c>] ? kobject_get+0x1a/0x22
2010-09-11T01:00:41.148073+08:00 boston kernel: [<ffffffff8121a01b>] dpm_resume_end+0xfd/0x358
2010-09-11T01:00:41.148076+08:00 boston kernel: [<ffffffff8105fda6>] suspend_devices_and_enter+0x166/0x196
2010-09-11T01:00:41.148078+08:00 boston kernel: [<ffffffff8105fe72>] enter_state+0x9c/0xcf
2010-09-11T01:00:41.148083+08:00 boston kernel: [<ffffffff8105f6ab>] state_store+0xb1/0xce
2010-09-11T01:00:41.148085+08:00 boston kernel: [<ffffffff81142b67>] kobj_attr_store+0x17/0x19
2010-09-11T01:00:41.148088+08:00 boston kernel: [<ffffffff810f0dda>] sysfs_write_file+0xf2/0x12e
2010-09-11T01:00:41.148091+08:00 boston kernel: [<ffffffff810a77e1>] vfs_write+0xae/0x136
2010-09-11T01:00:41.148094+08:00 boston kernel: [<ffffffff810a7922>] sys_write+0x45/0x6c
2010-09-11T01:00:41.148097+08:00 boston kernel: [<ffffffff81001fc2>] system_call_fastpath+0x16/0x1b
2010-09-11T01:00:41.148099+08:00 boston kernel: BUG: scheduling while atomic: lid/1881/0x00000002
2010-09-11T01:00:41.148103+08:00 boston kernel: Modules linked in:
2010-09-11T01:00:41.148106+08:00 boston kernel: Pid: 1881, comm: lid Not tainted 2.6.36-rc1+ #25
2010-09-11T01:00:41.148108+08:00 boston kernel: Call Trace:
2010-09-11T01:00:41.148111+08:00 boston kernel: [<ffffffff8102e495>] __schedule_bug+0x5c/0x60
2010-09-11T01:00:41.148113+08:00 boston kernel: [<ffffffff8138429c>] schedule+0xf3/0x697
2010-09-11T01:00:41.148116+08:00 boston kernel: [<ffffffff81384b8d>] schedule_timeout+0x189/0x1b1
2010-09-11T01:00:41.148279+08:00 boston kernel: [<ffffffff8103ed4b>] ? process_timeout+0x0/0xb
2010-09-11T01:00:41.148282+08:00 boston kernel: [<ffffffff8117ed95>] acpi_ec_transaction_unlocked+0x142/0x205
2010-09-11T01:00:41.148288+08:00 boston kernel: [<ffffffff8104af9b>] ? autoremove_wake_function+0x0/0x34
2010-09-11T01:00:41.148291+08:00 boston kernel: [<ffffffff8117f1a0>] acpi_ec_transaction+0x183/0x224
2010-09-11T01:00:41.148294+08:00 boston kernel: [<ffffffff8104af9b>] ? autoremove_wake_function+0x0/0x34
2010-09-11T01:00:41.148297+08:00 boston kernel: [<ffffffff8117f426>] acpi_ec_space_handler+0xef/0x1af
2010-09-11T01:00:41.148299+08:00 boston kernel: [<ffffffff8117f337>] ? acpi_ec_space_handler+0x0/0x1af
2010-09-11T01:00:41.148302+08:00 boston kernel: [<ffffffff8118853a>] acpi_ev_address_space_dispatch+0x16b/0x1b9
2010-09-11T01:00:41.148305+08:00 boston kernel: [<ffffffff8118cf34>] acpi_ex_access_region+0x230/0x23d
2010-09-11T01:00:41.148311+08:00 boston kernel: [<ffffffff81190100>] ? acpi_ex_enter_interpreter+0xb/0x2b
2010-09-11T01:00:41.148314+08:00 boston kernel: [<ffffffff8118d033>] acpi_ex_field_datum_io+0xf2/0x184
2010-09-11T01:00:41.148317+08:00 boston kernel: [<ffffffff8118d157>] acpi_ex_extract_from_field+0x92/0x1a2
2010-09-11T01:00:41.148319+08:00 boston kernel: [<ffffffff8118bcb0>] acpi_ex_read_data_from_field+0x113/0x153
2010-09-11T01:00:41.148322+08:00 boston kernel: [<ffffffff81190938>] acpi_ex_resolve_node_to_value+0x18c/0x218
2010-09-11T01:00:41.148324+08:00 boston kernel: [<ffffffff8118c6d7>] acpi_ex_resolve_to_value+0x203/0x20c
2010-09-11T01:00:41.148327+08:00 boston kernel: [<ffffffff811869ad>] acpi_ds_evaluate_name_path+0x79/0xf5
2010-09-11T01:00:41.148329+08:00 boston kernel: [<ffffffff811855ec>] acpi_ds_exec_end_op+0x96/0x3d6
2010-09-11T01:00:41.148334+08:00 boston kernel: [<ffffffff811979e0>] acpi_ps_parse_loop+0x7d9/0x95d
2010-09-11T01:00:41.148336+08:00 boston kernel: [<ffffffff81196b25>] acpi_ps_parse_aml+0x9a/0x2b9
2010-09-11T01:00:41.148339+08:00 boston kernel: [<ffffffff811981eb>] acpi_ps_execute_method+0x1cd/0x29e
2010-09-11T01:00:41.148341+08:00 boston kernel: [<ffffffff81193621>] acpi_ns_evaluate+0xe1/0x1a8
2010-09-11T01:00:41.148343+08:00 boston kernel: [<ffffffff8119309a>] acpi_evaluate_object+0x147/0x240
2010-09-11T01:00:41.148346+08:00 boston kernel: [<ffffffff8119cd24>] ? acpi_ut_update_ref_count+0x5a/0xa4
2010-09-11T01:00:41.148349+08:00 boston kernel: [<ffffffff8117caaf>] ? acpi_device_resume+0x0/0x2b
2010-09-11T01:00:41.148353+08:00 boston kernel: [<ffffffff8117a737>] acpi_evaluate_integer+0x2f/0x4d
2010-09-11T01:00:41.148357+08:00 boston kernel: [<ffffffff81179f10>] ? acpi_os_signal_semaphore+0x23/0x27
2010-09-11T01:00:41.148360+08:00 boston kernel: [<ffffffff811a4e16>] thermal_get_temp+0x40/0x6e
2010-09-11T01:00:41.148363+08:00 boston kernel: [<ffffffff812a9f0e>] thermal_zone_device_update+0x34/0x221
2010-09-11T01:00:41.148365+08:00 boston kernel: [<ffffffff8117caaf>] ? acpi_device_resume+0x0/0x2b
2010-09-11T01:00:41.148369+08:00 boston kernel: [<ffffffff8117a737>] ? acpi_evaluate_integer+0x2f/0x4d
2010-09-11T01:00:41.148372+08:00 boston kernel: [<ffffffff8117caaf>] ? acpi_device_resume+0x0/0x2b
2010-09-11T01:00:41.148375+08:00 boston kernel: [<ffffffff811a563e>] acpi_thermal_resume+0xda/0xf2
2010-09-11T01:00:41.148380+08:00 boston kernel: [<ffffffff8119e2b9>] ? acpi_ac_get_state+0x36/0x6a
2010-09-11T01:00:41.148384+08:00 boston kernel: [<ffffffff8117caaf>] ? acpi_device_resume+0x0/0x2b
2010-09-11T01:00:41.148386+08:00 boston kernel: [<ffffffff8117cad4>] acpi_device_resume+0x25/0x2b
2010-09-11T01:00:41.148389+08:00 boston kernel: [<ffffffff81219882>] legacy_resume+0x1f/0x57
2010-09-11T01:00:41.148392+08:00 boston kernel: [<ffffffff81219921>] device_resume+0x67/0xe8
2010-09-11T01:00:41.148395+08:00 boston kernel: [<ffffffff81142f9c>] ? kobject_get+0x1a/0x22
2010-09-11T01:00:41.148397+08:00 boston kernel: [<ffffffff8121a01b>] dpm_resume_end+0xfd/0x358
2010-09-11T01:00:41.148403+08:00 boston kernel: [<ffffffff8105fda6>] suspend_devices_and_enter+0x166/0x196
2010-09-11T01:00:41.148406+08:00 boston kernel: [<ffffffff8105fe72>] enter_state+0x9c/0xcf
2010-09-11T01:00:41.148408+08:00 boston kernel: [<ffffffff8105f6ab>] state_store+0xb1/0xce
2010-09-11T01:00:41.148411+08:00 boston kernel: [<ffffffff81142b67>] kobj_attr_store+0x17/0x19
2010-09-11T01:00:41.148414+08:00 boston kernel: [<ffffffff810f0dda>] sysfs_write_file+0xf2/0x12e
2010-09-11T01:00:41.148417+08:00 boston kernel: [<ffffffff810a77e1>] vfs_write+0xae/0x136
2010-09-11T01:00:41.148419+08:00 boston kernel: [<ffffffff810a7922>] sys_write+0x45/0x6c
2010-09-11T01:00:41.148422+08:00 boston kernel: [<ffffffff81001fc2>] system_call_fastpath+0x16/0x1b
2010-09-11T01:00:41.148427+08:00 boston kernel: BUG: scheduling while atomic: lid/1881/0x00000002
2010-09-11T01:00:41.148429+08:00 boston kernel: Modules linked in:
2010-09-11T01:00:41.148432+08:00 boston kernel: Pid: 1881, comm: lid Not tainted 2.6.36-rc1+ #25
2010-09-11T01:00:41.148434+08:00 boston kernel: Call Trace:
2010-09-11T01:00:41.148436+08:00 boston kernel: [<ffffffff8102e495>] __schedule_bug+0x5c/0x60
2010-09-11T01:00:41.148439+08:00 boston kernel: [<ffffffff8138429c>] schedule+0xf3/0x697
2010-09-11T01:00:41.148441+08:00 boston kernel: [<ffffffff811bfbb5>] ? kbd_event+0x556/0x57e
2010-09-11T01:00:41.148443+08:00 boston kernel: [<ffffffff81384a2a>] schedule_timeout+0x26/0x1b1
2010-09-11T01:00:41.148448+08:00 boston kernel: [<ffffffff812952bd>] ? input_pass_event+0xd7/0xe6
2010-09-11T01:00:41.148451+08:00 boston kernel: [<ffffffff81384093>] wait_for_common+0xc2/0x13c
2010-09-11T01:00:41.148453+08:00 boston kernel: [<ffffffff81032084>] ? default_wake_function+0x0/0xf
2010-09-11T01:00:41.148456+08:00 boston kernel: [<ffffffff813841a7>] wait_for_completion+0x18/0x1a
2010-09-11T01:00:41.148459+08:00 boston kernel: [<ffffffff812192be>] dpm_wait+0x2c/0x2e
2010-09-11T01:00:41.148462+08:00 boston kernel: [<ffffffff812198dc>] device_resume+0x22/0xe8
2010-09-11T01:00:41.148464+08:00 boston kernel: [<ffffffff81142f9c>] ? kobject_get+0x1a/0x22
2010-09-11T01:00:41.148469+08:00 boston kernel: [<ffffffff8121a01b>] dpm_resume_end+0xfd/0x358
2010-09-11T01:00:41.148472+08:00 boston kernel: [<ffffffff8105fda6>] suspend_devices_and_enter+0x166/0x196
2010-09-11T01:00:41.148474+08:00 boston kernel: [<ffffffff8105fe72>] enter_state+0x9c/0xcf
2010-09-11T01:00:41.148477+08:00 boston kernel: [<ffffffff8105f6ab>] state_store+0xb1/0xce
2010-09-11T01:00:41.148480+08:00 boston kernel: [<ffffffff81142b67>] kobj_attr_store+0x17/0x19
2010-09-11T01:00:41.148483+08:00 boston kernel: [<ffffffff810f0dda>] sysfs_write_file+0xf2/0x12e
2010-09-11T01:00:41.148485+08:00 boston kernel: [<ffffffff810a77e1>] vfs_write+0xae/0x136
2010-09-11T01:00:41.148488+08:00 boston kernel: [<ffffffff810a7922>] sys_write+0x45/0x6c
2010-09-11T01:00:41.148493+08:00 boston kernel: [<ffffffff81001fc2>] system_call_fastpath+0x16/0x1b
2010-09-11T01:00:41.148495+08:00 boston kernel: BUG: scheduling while atomic: lid/1881/0x00000002
2010-09-11T01:00:41.148497+08:00 boston kernel: Modules linked in:
2010-09-11T01:00:41.148500+08:00 boston kernel: Pid: 1881, comm: lid Not tainted 2.6.36-rc1+ #25
2010-09-11T01:00:41.148502+08:00 boston kernel: Call Trace:
2010-09-11T01:00:41.148506+08:00 boston kernel: [<ffffffff8102e495>] __schedule_bug+0x5c/0x60
2010-09-11T01:00:41.148508+08:00 boston kernel: [<ffffffff8138429c>] schedule+0xf3/0x697
2010-09-11T01:00:41.148673+08:00 boston kernel: [<ffffffff81384b8d>] schedule_timeout+0x189/0x1b1
2010-09-11T01:00:41.148676+08:00 boston kernel: [<ffffffff8103ed4b>] ? process_timeout+0x0/0xb
2010-09-11T01:00:41.148679+08:00 boston kernel: [<ffffffff8117ed95>] acpi_ec_transaction_unlocked+0x142/0x205
2010-09-11T01:00:41.148682+08:00 boston kernel: [<ffffffff8104af9b>] ? autoremove_wake_function+0x0/0x34
2010-09-11T01:00:41.148685+08:00 boston kernel: [<ffffffff8117ee46>] ? acpi_ec_transaction_unlocked+0x1f3/0x205
2010-09-11T01:00:41.148688+08:00 boston kernel: [<ffffffff8117f1a0>] acpi_ec_transaction+0x183/0x224
2010-09-11T01:00:41.148691+08:00 boston kernel: [<ffffffff8117f426>] acpi_ec_space_handler+0xef/0x1af
2010-09-11T01:00:41.148694+08:00 boston kernel: [<ffffffff813863b0>] ? _raw_spin_unlock_irqrestore+0x32/0x34
2010-09-11T01:00:41.148699+08:00 boston kernel: [<ffffffff8117f337>] ? acpi_ec_space_handler+0x0/0x1af
2010-09-11T01:00:41.148702+08:00 boston kernel: [<ffffffff8118853a>] acpi_ev_address_space_dispatch+0x16b/0x1b9
2010-09-11T01:00:41.148705+08:00 boston kernel: [<ffffffff8118cf34>] acpi_ex_access_region+0x230/0x23d
2010-09-11T01:00:41.148708+08:00 boston kernel: [<ffffffff8118d033>] acpi_ex_field_datum_io+0xf2/0x184
2010-09-11T01:00:41.148711+08:00 boston kernel: [<ffffffff8118d157>] acpi_ex_extract_from_field+0x92/0x1a2
2010-09-11T01:00:41.148714+08:00 boston kernel: [<ffffffff8118bcb0>] acpi_ex_read_data_from_field+0x113/0x153
2010-09-11T01:00:41.148717+08:00 boston kernel: [<ffffffff81190938>] acpi_ex_resolve_node_to_value+0x18c/0x218
2010-09-11T01:00:41.148722+08:00 boston kernel: [<ffffffff8118c6d7>] acpi_ex_resolve_to_value+0x203/0x20c
2010-09-11T01:00:41.148725+08:00 boston kernel: [<ffffffff811869ad>] acpi_ds_evaluate_name_path+0x79/0xf5
2010-09-11T01:00:41.148728+08:00 boston kernel: [<ffffffff811855ec>] acpi_ds_exec_end_op+0x96/0x3d6
2010-09-11T01:00:41.148731+08:00 boston kernel: [<ffffffff811979e0>] acpi_ps_parse_loop+0x7d9/0x95d
2010-09-11T01:00:41.148733+08:00 boston kernel: [<ffffffff81196b25>] acpi_ps_parse_aml+0x9a/0x2b9
2010-09-11T01:00:41.148736+08:00 boston kernel: [<ffffffff811981eb>] acpi_ps_execute_method+0x1cd/0x29e
2010-09-11T01:00:41.148739+08:00 boston kernel: [<ffffffff81193621>] acpi_ns_evaluate+0xe1/0x1a8
2010-09-11T01:00:41.148741+08:00 boston kernel: [<ffffffff8119309a>] acpi_evaluate_object+0x147/0x240
2010-09-11T01:00:41.148745+08:00 boston kernel: [<ffffffff812ca8f3>] acpi_evalf+0x128/0x1c6
2010-09-11T01:00:41.148748+08:00 boston kernel: [<ffffffff812ca8f3>] ? acpi_evalf+0x128/0x1c6
2010-09-11T01:00:41.148751+08:00 boston kernel: [<ffffffff812ca8f3>] ? acpi_evalf+0x128/0x1c6
2010-09-11T01:00:41.148753+08:00 boston kernel: [<ffffffff811bfbb5>] ? kbd_event+0x556/0x57e
2010-09-11T01:00:41.148756+08:00 boston kernel: [<ffffffff812ca9c7>] hotkey_get_wlsw+0x36/0x4c
2010-09-11T01:00:41.148759+08:00 boston kernel: [<ffffffff812caf8f>] ? hotkey_mask_set+0x72/0xe4
2010-09-11T01:00:41.148762+08:00 boston kernel: [<ffffffff812cb405>] tpacpi_send_radiosw_update+0xe/0xbc
2010-09-11T01:00:41.148768+08:00 boston kernel: [<ffffffff812cf325>] hotkey_resume+0x44/0xb5
2010-09-11T01:00:41.148771+08:00 boston kernel: [<ffffffff812ca6bd>] tpacpi_resume_handler+0x29/0x47
2010-09-11T01:00:41.148775+08:00 boston kernel: [<ffffffff81216f5e>] platform_pm_resume+0x33/0x39
2010-09-11T01:00:41.148778+08:00 boston kernel: [<ffffffff8121976b>] pm_op+0x8b/0x120
2010-09-11T01:00:41.148781+08:00 boston kernel: [<ffffffff8121990e>] device_resume+0x54/0xe8
2010-09-11T01:00:41.148784+08:00 boston kernel: [<ffffffff81142f9c>] ? kobject_get+0x1a/0x22
2010-09-11T01:00:41.148786+08:00 boston kernel: [<ffffffff8121a01b>] dpm_resume_end+0xfd/0x358
2010-09-11T01:00:41.148789+08:00 boston kernel: [<ffffffff8105fda6>] suspend_devices_and_enter+0x166/0x196
2010-09-11T01:00:41.148794+08:00 boston kernel: [<ffffffff8105fe72>] enter_state+0x9c/0xcf
2010-09-11T01:00:41.148797+08:00 boston kernel: [<ffffffff8105f6ab>] state_store+0xb1/0xce
2010-09-11T01:00:41.148800+08:00 boston kernel: [<ffffffff81142b67>] kobj_attr_store+0x17/0x19
2010-09-11T01:00:41.148802+08:00 boston kernel: [<ffffffff810f0dda>] sysfs_write_file+0xf2/0x12e
2010-09-11T01:00:41.148805+08:00 boston kernel: [<ffffffff810a77e1>] vfs_write+0xae/0x136
2010-09-11T01:00:41.148807+08:00 boston kernel: [<ffffffff810a7922>] sys_write+0x45/0x6c
2010-09-11T01:00:41.148810+08:00 boston kernel: [<ffffffff81001fc2>] system_call_fastpath+0x16/0x1b
2010-09-11T01:00:41.148815+08:00 boston kernel: BUG: scheduling while atomic: lid/1881/0x00000002
2010-09-11T01:00:41.148820+08:00 boston kernel: Modules linked in:
2010-09-11T01:00:41.148824+08:00 boston kernel: Pid: 1881, comm: lid Not tainted 2.6.36-rc1+ #25
2010-09-11T01:00:41.148826+08:00 boston kernel: Call Trace:
2010-09-11T01:00:41.148829+08:00 boston kernel: [<ffffffff8102e495>] __schedule_bug+0x5c/0x60
2010-09-11T01:00:41.148832+08:00 boston kernel: [<ffffffff8138429c>] schedule+0xf3/0x697
2010-09-11T01:00:41.148834+08:00 boston kernel: [<ffffffff81384b8d>] schedule_timeout+0x189/0x1b1
2010-09-11T01:00:41.148837+08:00 boston kernel: [<ffffffff8103ed4b>] ? process_timeout+0x0/0xb
2010-09-11T01:00:41.148842+08:00 boston kernel: [<ffffffff8117ed95>] acpi_ec_transaction_unlocked+0x142/0x205
2010-09-11T01:00:41.148845+08:00 boston kernel: [<ffffffff8104af9b>] ? autoremove_wake_function+0x0/0x34
2010-09-11T01:00:41.148848+08:00 boston kernel: [<ffffffff8117ee46>] ? acpi_ec_transaction_unlocked+0x1f3/0x205
2010-09-11T01:00:41.148850+08:00 boston kernel: [<ffffffff8117f1a0>] acpi_ec_transaction+0x183/0x224
2010-09-11T01:00:41.148853+08:00 boston kernel: [<ffffffff8117f426>] acpi_ec_space_handler+0xef/0x1af
2010-09-11T01:00:41.148856+08:00 boston kernel: [<ffffffff8117f337>] ? acpi_ec_space_handler+0x0/0x1af
2010-09-11T01:00:41.148859+08:00 boston kernel: [<ffffffff8118853a>] acpi_ev_address_space_dispatch+0x16b/0x1b9
2010-09-11T01:00:41.148864+08:00 boston kernel: [<ffffffff8118cf34>] acpi_ex_access_region+0x230/0x23d
2010-09-11T01:00:41.148867+08:00 boston kernel: [<ffffffff8118d033>] acpi_ex_field_datum_io+0xf2/0x184
2010-09-11T01:00:41.148869+08:00 boston kernel: [<ffffffff8118d157>] acpi_ex_extract_from_field+0x92/0x1a2
2010-09-11T01:00:41.148872+08:00 boston kernel: [<ffffffff8118bcb0>] acpi_ex_read_data_from_field+0x113/0x153
2010-09-11T01:00:41.148875+08:00 boston kernel: [<ffffffff81190938>] acpi_ex_resolve_node_to_value+0x18c/0x218
2010-09-11T01:00:41.148878+08:00 boston kernel: [<ffffffff8118c6d7>] acpi_ex_resolve_to_value+0x203/0x20c
2010-09-11T01:00:41.148881+08:00 boston kernel: [<ffffffff811869ad>] acpi_ds_evaluate_name_path+0x79/0xf5
2010-09-11T01:00:41.148883+08:00 boston kernel: [<ffffffff811855ec>] acpi_ds_exec_end_op+0x96/0x3d6
2010-09-11T01:00:41.148888+08:00 boston kernel: [<ffffffff811979e0>] acpi_ps_parse_loop+0x7d9/0x95d
2010-09-11T01:00:41.148891+08:00 boston kernel: [<ffffffff81185e49>] ? acpi_ds_call_control_method+0xff/0x18e
2010-09-11T01:00:41.148894+08:00 boston kernel: [<ffffffff81196b25>] acpi_ps_parse_aml+0x9a/0x2b9
2010-09-11T01:00:41.148897+08:00 boston kernel: [<ffffffff811981eb>] acpi_ps_execute_method+0x1cd/0x29e
2010-09-11T01:00:41.148900+08:00 boston kernel: [<ffffffff81193621>] acpi_ns_evaluate+0xe1/0x1a8
2010-09-11T01:00:41.148902+08:00 boston kernel: [<ffffffff8119309a>] acpi_evaluate_object+0x147/0x240
2010-09-11T01:00:41.149064+08:00 boston kernel: [<ffffffff812ca8f3>] acpi_evalf+0x128/0x1c6
2010-09-11T01:00:41.149070+08:00 boston kernel: [<ffffffff812ca8f3>] ? acpi_evalf+0x128/0x1c6
2010-09-11T01:00:41.149073+08:00 boston kernel: [<ffffffff812ca8f3>] ? acpi_evalf+0x128/0x1c6
2010-09-11T01:00:41.149076+08:00 boston kernel: [<ffffffff812cb1ce>] bluetooth_get_status+0x28/0x3d
2010-09-11T01:00:41.149079+08:00 boston kernel: [<ffffffff812cb419>] tpacpi_send_radiosw_update+0x22/0xbc
2010-09-11T01:00:41.149081+08:00 boston kernel: [<ffffffff812cf325>] hotkey_resume+0x44/0xb5
2010-09-11T01:00:41.149083+08:00 boston kernel: [<ffffffff812ca6bd>] tpacpi_resume_handler+0x29/0x47
2010-09-11T01:00:41.149086+08:00 boston kernel: [<ffffffff81216f5e>] platform_pm_resume+0x33/0x39
2010-09-11T01:00:41.149088+08:00 boston kernel: [<ffffffff8121976b>] pm_op+0x8b/0x120
2010-09-11T01:00:41.149093+08:00 boston kernel: [<ffffffff8121990e>] device_resume+0x54/0xe8
2010-09-11T01:00:41.149096+08:00 boston kernel: [<ffffffff81142f9c>] ? kobject_get+0x1a/0x22
2010-09-11T01:00:41.149098+08:00 boston kernel: [<ffffffff8121a01b>] dpm_resume_end+0xfd/0x358
2010-09-11T01:00:41.149104+08:00 boston kernel: [<ffffffff8105fda6>] suspend_devices_and_enter+0x166/0x196
2010-09-11T01:00:41.149107+08:00 boston kernel: [<ffffffff8105fe72>] enter_state+0x9c/0xcf
2010-09-11T01:00:41.149110+08:00 boston kernel: [<ffffffff8105f6ab>] state_store+0xb1/0xce
2010-09-11T01:00:41.149113+08:00 boston kernel: [<ffffffff81142b67>] kobj_attr_store+0x17/0x19
2010-09-11T01:00:41.149117+08:00 boston kernel: [<ffffffff810f0dda>] sysfs_write_file+0xf2/0x12e
2010-09-11T01:00:41.149120+08:00 boston kernel: [<ffffffff810a77e1>] vfs_write+0xae/0x136
2010-09-11T01:00:41.149123+08:00 boston kernel: [<ffffffff810a7922>] sys_write+0x45/0x6c
2010-09-11T01:00:41.149125+08:00 boston kernel: [<ffffffff81001fc2>] system_call_fastpath+0x16/0x1b
2010-09-11T01:00:41.149127+08:00 boston kernel: BUG: scheduling while atomic: lid/1881/0x00000002
2010-09-11T01:00:41.149130+08:00 boston kernel: Modules linked in:
2010-09-11T01:00:41.149132+08:00 boston kernel: Pid: 1881, comm: lid Not tainted 2.6.36-rc1+ #25
2010-09-11T01:00:41.149134+08:00 boston kernel: Call Trace:
2010-09-11T01:00:41.149138+08:00 boston kernel: [<ffffffff8102e495>] __schedule_bug+0x5c/0x60
2010-09-11T01:00:41.149142+08:00 boston kernel: [<ffffffff8138429c>] schedule+0xf3/0x697
2010-09-11T01:00:41.149144+08:00 boston kernel: [<ffffffff811bfbb5>] ? kbd_event+0x556/0x57e
2010-09-11T01:00:41.149147+08:00 boston kernel: [<ffffffff81384a2a>] schedule_timeout+0x26/0x1b1
2010-09-11T01:00:41.149150+08:00 boston kernel: [<ffffffff812952bd>] ? input_pass_event+0xd7/0xe6
2010-09-11T01:00:41.149152+08:00 boston kernel: [<ffffffff81384093>] wait_for_common+0xc2/0x13c
2010-09-11T01:00:41.149155+08:00 boston kernel: [<ffffffff81032084>] ? default_wake_function+0x0/0xf
2010-09-11T01:00:41.149158+08:00 boston kernel: [<ffffffff813841a7>] wait_for_completion+0x18/0x1a
2010-09-11T01:00:41.149163+08:00 boston kernel: [<ffffffff812192be>] dpm_wait+0x2c/0x2e
2010-09-11T01:00:41.149166+08:00 boston kernel: [<ffffffff812198dc>] device_resume+0x22/0xe8
2010-09-11T01:00:41.149169+08:00 boston kernel: [<ffffffff81142f9c>] ? kobject_get+0x1a/0x22
2010-09-11T01:00:41.149172+08:00 boston kernel: [<ffffffff8121a01b>] dpm_resume_end+0xfd/0x358
2010-09-11T01:00:41.149174+08:00 boston kernel: [<ffffffff8105fda6>] suspend_devices_and_enter+0x166/0x196
2010-09-11T01:00:41.149177+08:00 boston kernel: [<ffffffff8105fe72>] enter_state+0x9c/0xcf
2010-09-11T01:00:41.149180+08:00 boston kernel: [<ffffffff8105f6ab>] state_store+0xb1/0xce
2010-09-11T01:00:41.149184+08:00 boston kernel: [<ffffffff81142b67>] kobj_attr_store+0x17/0x19
2010-09-11T01:00:41.149187+08:00 boston kernel: [<ffffffff810f0dda>] sysfs_write_file+0xf2/0x12e
2010-09-11T01:00:41.149190+08:00 boston kernel: [<ffffffff810a77e1>] vfs_write+0xae/0x136
2010-09-11T01:00:41.149192+08:00 boston kernel: [<ffffffff810a7922>] sys_write+0x45/0x6c
2010-09-11T01:00:41.149195+08:00 boston kernel: [<ffffffff81001fc2>] system_call_fastpath+0x16/0x1b
2010-09-11T01:00:41.149198+08:00 boston kernel: usb 2-1.1: reset high speed USB device using ehci_hcd and address 3
2010-09-11T01:00:41.149201+08:00 boston kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
2010-09-11T01:00:41.149204+08:00 boston kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (unknown) succeeded
2010-09-11T01:00:41.149208+08:00 boston kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (unknown) filtered out
2010-09-11T01:00:41.149211+08:00 boston kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (unknown) filtered out
2010-09-11T01:00:41.149214+08:00 boston kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (unknown) succeeded
2010-09-11T01:00:41.149216+08:00 boston kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (unknown) filtered out
2010-09-11T01:00:41.149219+08:00 boston kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (unknown) filtered out
2010-09-11T01:00:41.149221+08:00 boston kernel: ata1.00: configured for UDMA/100
2010-09-11T01:00:41.149224+08:00 boston kernel: ata6: SATA link down (SStatus 0 SControl 300)
2010-09-11T01:00:41.149231+08:00 boston kernel: ata1.00: configured for UDMA/100
2010-09-11T01:00:41.149234+08:00 boston kernel: ata1: EH complete
2010-09-11T01:00:41.149236+08:00 boston kernel: BUG: scheduling while atomic: lid/1881/0x00000002
2010-09-11T01:00:41.149239+08:00 boston kernel: Modules linked in:
2010-09-11T01:00:41.149241+08:00 boston kernel: Pid: 1881, comm: lid Not tainted 2.6.36-rc1+ #25
2010-09-11T01:00:41.149243+08:00 boston kernel: Call Trace:
2010-09-11T01:00:41.149246+08:00 boston kernel: [<ffffffff8102e495>] __schedule_bug+0x5c/0x60
2010-09-11T01:00:41.149248+08:00 boston kernel: [<ffffffff8138429c>] schedule+0xf3/0x697
2010-09-11T01:00:41.149254+08:00 boston kernel: [<ffffffff81384a2a>] schedule_timeout+0x26/0x1b1
2010-09-11T01:00:41.149256+08:00 boston kernel: [<ffffffff81295269>] ? input_pass_event+0x83/0xe6
2010-09-11T01:00:41.149259+08:00 boston kernel: [<ffffffff81384093>] wait_for_common+0xc2/0x13c
2010-09-11T01:00:41.149262+08:00 boston kernel: [<ffffffff81032084>] ? default_wake_function+0x0/0xf
2010-09-11T01:00:41.149265+08:00 boston kernel: [<ffffffff813841a7>] wait_for_completion+0x18/0x1a
2010-09-11T01:00:41.149267+08:00 boston kernel: [<ffffffff812192be>] dpm_wait+0x2c/0x2e
2010-09-11T01:00:41.149270+08:00 boston kernel: [<ffffffff812198dc>] device_resume+0x22/0xe8
2010-09-11T01:00:41.149274+08:00 boston kernel: [<ffffffff81142f9c>] ? kobject_get+0x1a/0x22
2010-09-11T01:00:41.149277+08:00 boston kernel: [<ffffffff8121a01b>] dpm_resume_end+0xfd/0x358
2010-09-11T01:00:41.149280+08:00 boston kernel: [<ffffffff8105fda6>] suspend_devices_and_enter+0x166/0x196
2010-09-11T01:00:41.149283+08:00 boston kernel: [<ffffffff8105fe72>] enter_state+0x9c/0xcf
2010-09-11T01:00:41.149286+08:00 boston kernel: [<ffffffff8105f6ab>] state_store+0xb1/0xce
2010-09-11T01:00:41.149289+08:00 boston kernel: [<ffffffff81142b67>] kobj_attr_store+0x17/0x19
2010-09-11T01:00:41.149291+08:00 boston kernel: [<ffffffff810f0dda>] sysfs_write_file+0xf2/0x12e
2010-09-11T01:00:41.149294+08:00 boston kernel: [<ffffffff810a77e1>] vfs_write+0xae/0x136
2010-09-11T01:00:41.149299+08:00 boston kernel: [<ffffffff810a7922>] sys_write+0x45/0x6c
2010-09-11T01:00:41.149302+08:00 boston kernel: [<ffffffff81001fc2>] system_call_fastpath+0x16/0x1b
2010-09-11T01:00:41.149305+08:00 boston kernel: ata5: SATA link down (SStatus 0 SControl 300)
2010-09-11T01:00:41.149307+08:00 boston kernel: PM: resume of devices complete after 407.725 msecs
2010-09-11T01:00:41.149309+08:00 boston kernel: Restarting tasks ... 
2010-09-11T01:00:41.149314+08:00 boston kernel: BUG: scheduling while atomic: lid/1881/0x00000002
2010-09-11T01:00:41.149317+08:00 boston kernel: Modules linked in:
2010-09-11T01:00:41.157695+08:00 boston kernel: Pid: 1881, comm: lid Not tainted 2.6.36-rc1+ #25
2010-09-11T01:00:41.157710+08:00 boston kernel: Call Trace:
2010-09-11T01:00:41.157714+08:00 boston kernel: [<ffffffff8102e495>] __schedule_bug+0x5c/0x60
2010-09-11T01:00:41.157717+08:00 boston kernel: usb 1-1.2: USB disconnect, address 3
2010-09-11T01:00:41.157719+08:00 boston kernel: [<ffffffff8138429c>] schedule+0xf3/0x697
2010-09-11T01:00:41.157723+08:00 boston kernel: [<ffffffff8138630a>] ? _raw_read_unlock+0x26/0x28
2010-09-11T01:00:41.157725+08:00 boston kernel: [<ffffffff8105f8d0>] thaw_processes+0x34/0x44
2010-09-11T01:00:41.157728+08:00 boston kernel: [<ffffffff8105fe79>] enter_state+0xa3/0xcf
2010-09-11T01:00:41.157731+08:00 boston kernel: [<ffffffff8105f6ab>] state_store+0xb1/0xce
2010-09-11T01:00:41.167092+08:00 boston kernel: [<ffffffff81142b67>] kobj_attr_store+0x17/0x19
2010-09-11T01:00:41.167108+08:00 boston kernel: [<ffffffff810f0dda>] sysfs_write_file+0xf2/0x12e
2010-09-11T01:00:41.167112+08:00 boston kernel: [<ffffffff810a77e1>] vfs_write+0xae/0x136
2010-09-11T01:00:41.167115+08:00 boston kernel: [<ffffffff810a7922>] sys_write+0x45/0x6c
2010-09-11T01:00:41.167118+08:00 boston kernel: [<ffffffff81001fc2>] system_call_fastpath+0x16/0x1b
2010-09-11T01:00:41.167120+08:00 boston kernel: done.
2010-09-11T01:00:41.167123+08:00 boston kernel: video LNXVIDEO:00: Restoring backlight state
2010-09-11T01:00:41.167126+08:00 boston kernel: BUG: scheduling while atomic: lid/1881/0x00000002
2010-09-11T01:00:41.167129+08:00 boston kernel: Modules linked in:
2010-09-11T01:00:41.167132+08:00 boston kernel: Pid: 1881, comm: lid Not tainted 2.6.36-rc1+ #25
2010-09-11T01:00:41.177538+08:00 boston kernel: Call Trace:
2010-09-11T01:00:41.177551+08:00 boston kernel: [<ffffffff8102e495>] __schedule_bug+0x5c/0x60
2010-09-11T01:00:41.177554+08:00 boston kernel: [<ffffffff8138429c>] schedule+0xf3/0x697
2010-09-11T01:00:41.177557+08:00 boston kernel: [<ffffffff8104b1dd>] ? prepare_to_wait+0x71/0x7c
2010-09-11T01:00:41.177559+08:00 boston kernel: [<ffffffff811bb605>] vt_event_wait+0xc2/0x128
2010-09-11T01:00:41.177563+08:00 boston kernel: [<ffffffff8104af9b>] ? autoremove_wake_function+0x0/0x34
2010-09-11T01:00:41.177565+08:00 boston kernel: [<ffffffff811bb697>] vt_waitactive+0x2c/0x49
2010-09-11T01:00:41.177568+08:00 boston kernel: [<ffffffff811bb72c>] vt_move_to_console+0x78/0x9a
2010-09-11T01:00:41.177571+08:00 boston kernel: [<ffffffff8105f7b9>] pm_restore_console+0x15/0x22
2010-09-11T01:00:41.177573+08:00 boston kernel: [<ffffffff8105fe8d>] enter_state+0xb7/0xcf
2010-09-11T01:00:41.177576+08:00 boston kernel: [<ffffffff8105f6ab>] state_store+0xb1/0xce
2010-09-11T01:00:41.177578+08:00 boston kernel: [<ffffffff81142b67>] kobj_attr_store+0x17/0x19
2010-09-11T01:00:41.187062+08:00 boston kernel: [<ffffffff810f0dda>] sysfs_write_file+0xf2/0x12e
2010-09-11T01:00:41.187078+08:00 boston kernel: [<ffffffff810a77e1>] vfs_write+0xae/0x136
2010-09-11T01:00:41.187082+08:00 boston kernel: [<ffffffff810a7922>] sys_write+0x45/0x6c
2010-09-11T01:00:41.187085+08:00 boston kernel: [<ffffffff81001fc2>] system_call_fastpath+0x16/0x1b
2010-09-11T01:00:41.187089+08:00 boston kernel: lid[1881]: segfault at 7f07997e99d4 ip 00007f0798a73c95 sp 00007fff28665ff0 error 7
2010-09-11T01:00:41.187092+08:00 boston kernel: note: lid[1881] exited with preempt_count 1
2010-09-11T01:00:41.197475+08:00 boston kernel: BUG: scheduling while atomic: lid/1881/0x10000002
2010-09-11T01:00:41.197483+08:00 boston kernel: Modules linked in:
2010-09-11T01:00:41.197486+08:00 boston kernel: Pid: 1881, comm: lid Not tainted 2.6.36-rc1+ #25
2010-09-11T01:00:41.197489+08:00 boston kernel: Call Trace:
2010-09-11T01:00:41.197492+08:00 boston kernel: [<ffffffff8102e495>] __schedule_bug+0x5c/0x60
2010-09-11T01:00:41.197494+08:00 boston kernel: [<ffffffff8138429c>] schedule+0xf3/0x697
2010-09-11T01:00:41.197497+08:00 boston kernel: [<ffffffff81030de0>] __cond_resched+0x25/0x30
2010-09-11T01:00:41.197499+08:00 boston kernel: [<ffffffff813848fe>] _cond_resched+0x27/0x32
2010-09-11T01:00:41.197502+08:00 boston kernel: [<ffffffff81089d77>] unmap_vmas+0x710/0x8ed
2010-09-11T01:00:41.197504+08:00 boston kernel: [<ffffffff8108bd36>] exit_mmap+0xc8/0x170
2010-09-11T01:00:41.207089+08:00 boston kernel: [<ffffffff810328c4>] mmput+0x39/0xe0
2010-09-11T01:00:41.207098+08:00 boston kernel: [<ffffffff81036631>] exit_mm+0x10b/0x118
2010-09-11T01:00:41.207102+08:00 boston kernel: [<ffffffff81037dd0>] do_exit+0x1e2/0x689
2010-09-11T01:00:41.207105+08:00 boston kernel: [<ffffffff810382e9>] do_group_exit+0x72/0x9a
2010-09-11T01:00:41.207108+08:00 boston kernel: [<ffffffff81041e16>] get_signal_to_deliver+0x384/0x3a3
2010-09-11T01:00:41.207111+08:00 boston kernel: [<ffffffff81383e6a>] ? printk+0x3c/0x42
2010-09-11T01:00:41.207113+08:00 boston kernel: [<ffffffff81001527>] do_signal+0x6d/0x673
2010-09-11T01:00:41.207117+08:00 boston kernel: [<ffffffff8102155a>] ? bad_area_nosemaphore+0xe/0x10
2010-09-11T01:00:41.207122+08:00 boston kernel: [<ffffffff81383e6a>] ? printk+0x3c/0x42
2010-09-11T01:00:41.207125+08:00 boston kernel: [<ffffffff81034210>] ? do_fork+0x200/0x2b9
2010-09-11T01:00:41.217071+08:00 boston kernel: [<ffffffff81001b54>] do_notify_resume+0x27/0x47
2010-09-11T01:00:41.217090+08:00 boston kernel: [<ffffffff8138691c>] retint_signal+0x48/0x8c

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

* [PATCH] x86, tsc: Fix a preemption leak in restore_sched_clock_state()
  2010-09-10 17:19       ` Jeff Chua
@ 2010-09-10 20:32         ` Peter Zijlstra
  2010-09-10 21:01           ` Suresh Siddha
  2010-09-11  7:49           ` [tip:sched/urgent] " tip-bot for Peter Zijlstra
  0 siblings, 2 replies; 14+ messages in thread
From: Peter Zijlstra @ 2010-09-10 20:32 UTC (permalink / raw)
  To: Jeff Chua
  Cc: Nico Schottelius, Rafael J. Wysocki, Nico Schottelius,
	Jesse Barnes, LKML, Linus Torvalds, Florian Pritz, Suresh Siddha,
	stable, Ingo Molnar, Brown, Len


D'0h !! *facepalm*

Shame on me for not spotting that sooner.

---
Subject: x86, tsc: Fix a preemption leak in restore_sched_clock_state()

A real life genuine preemption leak..

Reported-by: Jeff Chua <jeff.chua.linux@gmail.com>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
---
 arch/x86/kernel/tsc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/x86/kernel/tsc.c b/arch/x86/kernel/tsc.c
index 873a321..4496315 100644
--- a/arch/x86/kernel/tsc.c
+++ b/arch/x86/kernel/tsc.c
@@ -655,7 +655,7 @@ void restore_sched_clock_state(void)
 
 	local_irq_save(flags);
 
-	get_cpu_var(cyc2ns_offset) = 0;
+	__get_cpu_var(cyc2ns_offset) = 0;
 	offset = cyc2ns_suspend - sched_clock();
 
 	for_each_possible_cpu(cpu)


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

* Re: [PATCH] x86, tsc: Fix a preemption leak in restore_sched_clock_state()
  2010-09-10 20:32         ` [PATCH] x86, tsc: Fix a preemption leak in restore_sched_clock_state() Peter Zijlstra
@ 2010-09-10 21:01           ` Suresh Siddha
  2010-09-11  0:59             ` Jeff Chua
  2010-09-11  7:49           ` [tip:sched/urgent] " tip-bot for Peter Zijlstra
  1 sibling, 1 reply; 14+ messages in thread
From: Suresh Siddha @ 2010-09-10 21:01 UTC (permalink / raw)
  To: Peter Zijlstra
  Cc: Jeff Chua, Nico Schottelius, Rafael J. Wysocki, Nico Schottelius,
	Jesse Barnes, LKML, Linus Torvalds, Florian Pritz, stable,
	Ingo Molnar, Brown, Len

On Fri, 2010-09-10 at 13:32 -0700, Peter Zijlstra wrote:
> D'0h !! *facepalm*
> 
> Shame on me for not spotting that sooner.
> 
> ---
> Subject: x86, tsc: Fix a preemption leak in restore_sched_clock_state()
> 
> A real life genuine preemption leak..
> 
> Reported-by: Jeff Chua <jeff.chua.linux@gmail.com>
> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
> ---
>  arch/x86/kernel/tsc.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/x86/kernel/tsc.c b/arch/x86/kernel/tsc.c
> index 873a321..4496315 100644
> --- a/arch/x86/kernel/tsc.c
> +++ b/arch/x86/kernel/tsc.c
> @@ -655,7 +655,7 @@ void restore_sched_clock_state(void)
>  
>  	local_irq_save(flags);
>  
> -	get_cpu_var(cyc2ns_offset) = 0;
> +	__get_cpu_var(cyc2ns_offset) = 0;
>  	offset = cyc2ns_suspend - sched_clock();
>  
>  	for_each_possible_cpu(cpu)

Acked-by: Suresh Siddha <suresh.b.siddha@intel.com>

Before heading for lunch, I was scratching my head and thinking that I
might be doing something wrong with the local_irq_disable() and
local_irq_enable() in that patch. But you got it right.

Thanks for looking at this and thanks to Jeff for reporting.

Original patch was marked as stable for 2.6.32+, so we need to make sure
that Greg picks up this piece too along with the original patch.


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

* Re: [PATCH] x86, tsc: Fix a preemption leak in restore_sched_clock_state()
  2010-09-10 21:01           ` Suresh Siddha
@ 2010-09-11  0:59             ` Jeff Chua
  0 siblings, 0 replies; 14+ messages in thread
From: Jeff Chua @ 2010-09-11  0:59 UTC (permalink / raw)
  To: Suresh Siddha, Peter Zijlstra
  Cc: Nico Schottelius, Rafael J. Wysocki, Nico Schottelius,
	Jesse Barnes, LKML, Linus Torvalds, Florian Pritz, stable,
	Ingo Molnar, Brown, Len

On Sat, Sep 11, 2010 at 5:01 AM, Suresh Siddha
<suresh.b.siddha@intel.com> wrote:
> On Fri, 2010-09-10 at 13:32 -0700, Peter Zijlstra wrote:
>> D'0h !! *facepalm*
>>
>> Shame on me for not spotting that sooner.

It was a hard one to catch.

> Thanks for looking at this and thanks to Jeff for reporting.
>
> Original patch was marked as stable for 2.6.32+, so we need to make sure
> that Greg picks up this piece too along with the original patch.

Verified that it indeed fixed the problem!

Thanks for fixing this.

Jeff

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

* [tip:sched/urgent] x86, tsc: Fix a preemption leak in restore_sched_clock_state()
  2010-09-10 20:32         ` [PATCH] x86, tsc: Fix a preemption leak in restore_sched_clock_state() Peter Zijlstra
  2010-09-10 21:01           ` Suresh Siddha
@ 2010-09-11  7:49           ` tip-bot for Peter Zijlstra
  2010-09-13  7:42             ` Nico Schottelius
  1 sibling, 1 reply; 14+ messages in thread
From: tip-bot for Peter Zijlstra @ 2010-09-11  7:49 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: linux-kernel, hpa, mingo, torvalds, nico-linux-20100709,
	a.p.zijlstra, peterz, flo, lenb, jbarnes, suresh.b.siddha, tglx,
	rjw, mingo

Commit-ID:  55496c896b8a695140045099d4e0175cf09d4eae
Gitweb:     http://git.kernel.org/tip/55496c896b8a695140045099d4e0175cf09d4eae
Author:     Peter Zijlstra <peterz@infradead.org>
AuthorDate: Fri, 10 Sep 2010 22:32:53 +0200
Committer:  Ingo Molnar <mingo@elte.hu>
CommitDate: Sat, 11 Sep 2010 09:47:07 +0200

x86, tsc: Fix a preemption leak in restore_sched_clock_state()

Doh, a real life genuine preemption leak..

This caused a suspend failure.

Reported-bisected-and-tested-by-the-invaluable: Jeff Chua <jeff.chua.linux@gmail.com>
Acked-by: Suresh Siddha <suresh.b.siddha@intel.com>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Rafael J. Wysocki <rjw@sisk.pl>
Cc: Nico Schottelius <nico-linux-20100709@schottelius.org>
Cc: Jesse Barnes <jbarnes@virtuousgeek.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Florian Pritz <flo@xssn.at>
Cc: Suresh Siddha <suresh.b.siddha@intel.com>
Cc: Len Brown <lenb@kernel.org>
Cc: <stable@kernel.org> # Greg, please apply after: cd7240c ("x86, tsc, sched: Recompute cyc2ns_offset's during resume from")
sleep states
LKML-Reference: <1284150773.402.122.camel@laptop>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
---
 arch/x86/kernel/tsc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/x86/kernel/tsc.c b/arch/x86/kernel/tsc.c
index d632934..26a863a 100644
--- a/arch/x86/kernel/tsc.c
+++ b/arch/x86/kernel/tsc.c
@@ -655,7 +655,7 @@ void restore_sched_clock_state(void)
 
 	local_irq_save(flags);
 
-	get_cpu_var(cyc2ns_offset) = 0;
+	__get_cpu_var(cyc2ns_offset) = 0;
 	offset = cyc2ns_suspend - sched_clock();
 
 	for_each_possible_cpu(cpu)

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

* Re: [tip:sched/urgent] x86, tsc: Fix a preemption leak in restore_sched_clock_state()
  2010-09-11  7:49           ` [tip:sched/urgent] " tip-bot for Peter Zijlstra
@ 2010-09-13  7:42             ` Nico Schottelius
  2010-09-13  8:46               ` Ingo Molnar
  0 siblings, 1 reply; 14+ messages in thread
From: Nico Schottelius @ 2010-09-13  7:42 UTC (permalink / raw)
  To: mingo, hpa, linux-kernel, a.p.zijlstra, nico-linux-20100709,
	torvalds, peterz, flo, lenb, jbarnes, suresh.b.siddha, tglx, rjw,
	mingo
  Cc: linux-tip-commits

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

Good morning,

tip-bot for Peter Zijlstra [Sat, Sep 11, 2010 at 07:49:07AM +0000]:
> Commit-ID:  55496c896b8a695140045099d4e0175cf09d4eae
> Gitweb:     http://git.kernel.org/tip/55496c896b8a695140045099d4e0175cf09d4eae
> Author:     Peter Zijlstra <peterz@infradead.org>
> AuthorDate: Fri, 10 Sep 2010 22:32:53 +0200
> Committer:  Ingo Molnar <mingo@elte.hu>
> CommitDate: Sat, 11 Sep 2010 09:47:07 +0200
> 
> x86, tsc: Fix a preemption leak in restore_sched_clock_state()

running 2.6.36-rc3-00464-g84e1d83 now, which includes that fix.

So far no resume issues, but the backlight does not power on again,
if the lid is opened.

Manually triggering display backlight increase (via fn-home)
changes it to 100% though.

I've not seen that behaviour for a very long time and never on the
X201. It has been an issue on the X200, which means probably around
2.6.30.

Cheers,

Nico

-- 
PGP key: 7ED9 F7D3 6B10 81D7 0EC5  5C09 D7DC C8E4 3187 7DF0

[-- Attachment #2: Type: application/pgp-signature, Size: 198 bytes --]

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

* Re: [tip:sched/urgent] x86, tsc: Fix a preemption leak in restore_sched_clock_state()
  2010-09-13  7:42             ` Nico Schottelius
@ 2010-09-13  8:46               ` Ingo Molnar
  2010-09-13 22:56                 ` Jeff Chua
  0 siblings, 1 reply; 14+ messages in thread
From: Ingo Molnar @ 2010-09-13  8:46 UTC (permalink / raw)
  To: Nico Schottelius, mingo, hpa, linux-kernel, a.p.zijlstra,
	torvalds, peterz, flo, lenb, jbarnes, suresh.b.siddha, tglx, rjw,
	linux-tip-commits


* Nico Schottelius <nico-linux-20100709@schottelius.org> wrote:

> Good morning,
> 
> tip-bot for Peter Zijlstra [Sat, Sep 11, 2010 at 07:49:07AM +0000]:
> > Commit-ID:  55496c896b8a695140045099d4e0175cf09d4eae
> > Gitweb:     http://git.kernel.org/tip/55496c896b8a695140045099d4e0175cf09d4eae
> > Author:     Peter Zijlstra <peterz@infradead.org>
> > AuthorDate: Fri, 10 Sep 2010 22:32:53 +0200
> > Committer:  Ingo Molnar <mingo@elte.hu>
> > CommitDate: Sat, 11 Sep 2010 09:47:07 +0200
> > 
> > x86, tsc: Fix a preemption leak in restore_sched_clock_state()
> 
> running 2.6.36-rc3-00464-g84e1d83 now, which includes that fix.
> 
> So far no resume issues, but the backlight does not power on again,
> if the lid is opened.

That's probably unrelated.

> Manually triggering display backlight increase (via fn-home) changes 
> it to 100% though.
> 
> I've not seen that behaviour for a very long time and never on the 
> X201. It has been an issue on the X200, which means probably around 
> 2.6.30.

Might make sense to bisect it ... as long as you remember to do this at 
every bisection step that has the hung-suspend bug:

  git cherry-pick 55496c896b8a695140045099d4e0175cf09d4eae

Thanks,

	Ingo

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

* Re: [tip:sched/urgent] x86, tsc: Fix a preemption leak in restore_sched_clock_state()
  2010-09-13  8:46               ` Ingo Molnar
@ 2010-09-13 22:56                 ` Jeff Chua
  2010-09-15  8:03                   ` Nico Schottelius
  0 siblings, 1 reply; 14+ messages in thread
From: Jeff Chua @ 2010-09-13 22:56 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: Nico Schottelius, mingo, hpa, linux-kernel, a.p.zijlstra,
	torvalds, peterz, flo, lenb, jbarnes, suresh.b.siddha, tglx, rjw,
	linux-tip-commits

On Mon, Sep 13, 2010 at 4:46 PM, Ingo Molnar <mingo@elte.hu> wrote:
>
> * Nico Schottelius <nico-linux-20100709@schottelius.org> wrote:
>
>> Good morning,
>>
>> tip-bot for Peter Zijlstra [Sat, Sep 11, 2010 at 07:49:07AM +0000]:
>> > Commit-ID:  55496c896b8a695140045099d4e0175cf09d4eae
>> > Gitweb:     http://git.kernel.org/tip/55496c896b8a695140045099d4e0175cf09d4eae
>> > Author:     Peter Zijlstra <peterz@infradead.org>
>> > AuthorDate: Fri, 10 Sep 2010 22:32:53 +0200
>> > Committer:  Ingo Molnar <mingo@elte.hu>
>> > CommitDate: Sat, 11 Sep 2010 09:47:07 +0200
>> >
>> > x86, tsc: Fix a preemption leak in restore_sched_clock_state()

> Might make sense to bisect it ... as long as you remember to do this at
> every bisection step that has the hung-suspend bug:

Have you tried just running "echo mem >/sys/power/state" to see if that works?

Jeff.

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

* Re: [tip:sched/urgent] x86, tsc: Fix a preemption leak in restore_sched_clock_state()
  2010-09-13 22:56                 ` Jeff Chua
@ 2010-09-15  8:03                   ` Nico Schottelius
  2010-09-28 11:59                     ` 2.6.36-rc3-00464-g84e1d83 resume issue (was: [tip:sched/urgent] x86, tsc: Fix a preemption leak in restore_sched_clock_state()) Nico Schottelius
  0 siblings, 1 reply; 14+ messages in thread
From: Nico Schottelius @ 2010-09-15  8:03 UTC (permalink / raw)
  To: Jeff Chua
  Cc: Ingo Molnar, Nico Schottelius, mingo, hpa, linux-kernel,
	a.p.zijlstra, torvalds, peterz, flo, lenb, jbarnes,
	suresh.b.siddha, tglx, rjw, linux-tip-commits

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

Jeff Chua [Tue, Sep 14, 2010 at 06:56:42AM +0800]:
> On Mon, Sep 13, 2010 at 4:46 PM, Ingo Molnar <mingo@elte.hu> wrote:
> >
> > * Nico Schottelius <nico-linux-20100709@schottelius.org> wrote:
> >
> >> Good morning,
> >>
> >> tip-bot for Peter Zijlstra [Sat, Sep 11, 2010 at 07:49:07AM +0000]:
> >> > Commit-ID:  55496c896b8a695140045099d4e0175cf09d4eae
> >> > Gitweb:     http://git.kernel.org/tip/55496c896b8a695140045099d4e0175cf09d4eae
> >> > Author:     Peter Zijlstra <peterz@infradead.org>
> >> > AuthorDate: Fri, 10 Sep 2010 22:32:53 +0200
> >> > Committer:  Ingo Molnar <mingo@elte.hu>
> >> > CommitDate: Sat, 11 Sep 2010 09:47:07 +0200
> >> >
> >> > x86, tsc: Fix a preemption leak in restore_sched_clock_state()
> 
> > Might make sense to bisect it ... as long as you remember to do this at
> > every bisection step that has the hung-suspend bug:
> 
> Have you tried just running "echo mem >/sys/power/state" to see if that works?

I'm using pm-suspend, which probably does nothing else.

The strange thing though is that I cannot reproduce the bachlight off
situation anymore :-/

Will keep an eye on it and report back if I see anything not working.

Regarding suspend: No crash so far! (after about 10-15 suspend & resumes)

Cheers,

Nico

-- 
PGP key: 7ED9 F7D3 6B10 81D7 0EC5  5C09 D7DC C8E4 3187 7DF0

[-- Attachment #2: Type: application/pgp-signature, Size: 198 bytes --]

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

* 2.6.36-rc3-00464-g84e1d83 resume issue (was: [tip:sched/urgent] x86, tsc: Fix a preemption leak in restore_sched_clock_state())
  2010-09-15  8:03                   ` Nico Schottelius
@ 2010-09-28 11:59                     ` Nico Schottelius
  0 siblings, 0 replies; 14+ messages in thread
From: Nico Schottelius @ 2010-09-28 11:59 UTC (permalink / raw)
  To: Jeff Chua, Ingo Molnar, mingo, hpa, linux-kernel, a.p.zijlstra,
	torvalds, peterz, flo, lenb, jbarnes, suresh.b.siddha, tglx, rjw,
	linux-tip-commits


[-- Attachment #1.1: Type: text/plain, Size: 391 bytes --]

Hello again,

after

 10:06:52 up 3 days, 21:01,  3 users,  load average: 1.81, 1.68, 1.65

the screen in xorg is black after resume, about 20 suspend & resume
cycles.

Good news: Both xorg and the kernel detected the problem (logs attached).

Rebooting to 2.6.36-rc4-00076-g9c03f16 now.

Cheers,

Nico



-- 
PGP key: 7ED9 F7D3 6B10 81D7 0EC5  5C09 D7DC C8E4 3187 7DF0

[-- Attachment #1.2: Xorg.0.log.2.6.36-rc3-00464-g84e1d83 --]
[-- Type: text/plain, Size: 51951 bytes --]

[    32.332] 
This is a pre-release version of the X server from The X.Org Foundation.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the "xorg" product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the X.Org Foundation git repository.
See http://wiki.x.org/wiki/GitPage for git access instructions.
[    32.333] 
X.Org X Server 1.8.1.902 (1.8.2 RC 2)
Release Date: 2010-06-21
[    32.334] X Protocol Version 11, Revision 0
[    32.334] Build Operating System: Linux 2.6.34-ARCH x86_64 
[    32.334] Current Operating System: Linux kr 2.6.36-rc3-00464-g84e1d83 #40 SMP PREEMPT Sun Sep 12 11:34:26 CEST 2010 x86_64
[    32.335] Kernel command line: 
[    32.335] Build Date: 21 June 2010  12:01:49PM
[    32.335]  
[    32.335] Current version of pixman: 0.18.4
[    32.335] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    32.336] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    32.337] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Sep 12 13:05:37 2010
[    32.364] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    32.377] (==) No Layout section.  Using the first Screen section.
[    32.377] (==) No screen section available. Using defaults.
[    32.377] (**) |-->Screen "Default Screen Section" (0)
[    32.377] (**) |   |-->Monitor "<default monitor>"
[    32.377] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    32.377] (==) Automatically adding devices
[    32.377] (==) Automatically enabling devices
[    32.447] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[    32.447] 	Entry deleted from font path.
[    32.503] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/Type1/,
	/usr/share/fonts/100dpi/,
	/usr/share/fonts/75dpi/
[    32.503] (==) ModulePath set to "/usr/lib/xorg/modules"
[    32.503] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    32.503] (II) Loader magic: 0x7ce880
[    32.503] (II) Module ABI versions:
[    32.503] 	X.Org ANSI C Emulation: 0.4
[    32.503] 	X.Org Video Driver: 7.0
[    32.503] 	X.Org XInput driver : 9.0
[    32.503] 	X.Org Server Extension : 3.0
[    32.514] (--) PCI:*(0:0:2:0) 8086:0046:17aa:215a Intel Corporation Core Processor Integrated Graphics Controller rev 2, Mem @ 0xf2000000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8
[    32.515] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    32.515] (II) LoadModule: "extmod"
[    32.553] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[    32.561] (II) Module extmod: vendor="X.Org Foundation"
[    32.561] 	compiled for 1.8.1.902, module version = 1.0.0
[    32.561] 	Module class: X.Org Server Extension
[    32.561] 	ABI class: X.Org Server Extension, version 3.0
[    32.561] (II) Loading extension MIT-SCREEN-SAVER
[    32.561] (II) Loading extension XFree86-VidModeExtension
[    32.561] (II) Loading extension XFree86-DGA
[    32.561] (II) Loading extension DPMS
[    32.561] (II) Loading extension XVideo
[    32.561] (II) Loading extension XVideo-MotionCompensation
[    32.561] (II) Loading extension X-Resource
[    32.561] (II) LoadModule: "dbe"
[    32.561] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[    32.571] (II) Module dbe: vendor="X.Org Foundation"
[    32.571] 	compiled for 1.8.1.902, module version = 1.0.0
[    32.571] 	Module class: X.Org Server Extension
[    32.571] 	ABI class: X.Org Server Extension, version 3.0
[    32.571] (II) Loading extension DOUBLE-BUFFER
[    32.571] (II) LoadModule: "glx"
[    32.571] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    32.577] (II) Module glx: vendor="X.Org Foundation"
[    32.577] 	compiled for 1.8.1.902, module version = 1.0.0
[    32.577] 	ABI class: X.Org Server Extension, version 3.0
[    32.577] (==) AIGLX enabled
[    32.577] (II) Loading extension GLX
[    32.578] (II) LoadModule: "record"
[    32.578] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[    32.579] (II) Module record: vendor="X.Org Foundation"
[    32.579] 	compiled for 1.8.1.902, module version = 1.13.0
[    32.579] 	Module class: X.Org Server Extension
[    32.579] 	ABI class: X.Org Server Extension, version 3.0
[    32.579] (II) Loading extension RECORD
[    32.579] (II) LoadModule: "dri"
[    32.579] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[    32.601] (II) Module dri: vendor="X.Org Foundation"
[    32.601] 	compiled for 1.8.1.902, module version = 1.0.0
[    32.601] 	ABI class: X.Org Server Extension, version 3.0
[    32.601] (II) Loading extension XFree86-DRI
[    32.601] (II) LoadModule: "dri2"
[    32.601] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    32.602] (II) Module dri2: vendor="X.Org Foundation"
[    32.602] 	compiled for 1.8.1.902, module version = 1.2.0
[    32.602] 	ABI class: X.Org Server Extension, version 3.0
[    32.602] (II) Loading extension DRI2
[    32.602] (==) Matched intel as autoconfigured driver 0
[    32.602] (==) Matched vesa as autoconfigured driver 1
[    32.602] (==) Matched fbdev as autoconfigured driver 2
[    32.602] (==) Assigned the driver to the xf86ConfigLayout
[    32.602] (II) LoadModule: "intel"
[    32.603] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[    32.646] (II) Module intel: vendor="X.Org Foundation"
[    32.646] 	compiled for 1.8.1.902, module version = 2.12.0
[    32.646] 	Module class: X.Org Video Driver
[    32.646] 	ABI class: X.Org Video Driver, version 7.0
[    32.646] (II) LoadModule: "vesa"
[    32.647] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    32.652] (II) Module vesa: vendor="X.Org Foundation"
[    32.652] 	compiled for 1.8.0, module version = 2.3.0
[    32.652] 	Module class: X.Org Video Driver
[    32.652] 	ABI class: X.Org Video Driver, version 7.0
[    32.652] (II) LoadModule: "fbdev"
[    32.676] (WW) Warning, couldn't open module fbdev
[    32.676] (II) UnloadModule: "fbdev"
[    32.676] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    32.677] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
	i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
	E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
	965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
	4 Series, G45/G43, Q45/Q43, G41, B43, Clarkdale, Arrandale
[    32.677] (II) VESA: driver for VESA chipsets: vesa
[    32.677] (--) using VT number 7

[    32.682] (II) Primary Device is: PCI 00@00:02:0
[    32.682] (WW) Falling back to old probe method for vesa
[    33.467] drmOpenDevice: node name is /dev/dri/card0
[    33.467] drmOpenDevice: open result is 8, (OK)
[    33.572] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
[    33.572] drmOpenDevice: node name is /dev/dri/card0
[    33.572] drmOpenDevice: open result is 8, (OK)
[    33.572] drmOpenByBusid: drmOpenMinor returns 8
[    33.572] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
[    33.572] (II) intel(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    33.572] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[    33.572] (==) intel(0): RGB weight 888
[    33.572] (==) intel(0): Default visual is TrueColor
[    33.572] (II) intel(0): Integrated Graphics Chipset: Intel(R) Arrandale
[    33.572] (--) intel(0): Chipset: "Arrandale"
[    33.572] (==) intel(0): video overlay key set to 0x101fe
[    33.698] (II) intel(0): Output LVDS1 has no monitor section
[    33.698] (II) intel(0): found backlight control interface /sys/class/backlight/acpi_video0
[    33.748] (II) intel(0): Output VGA1 has no monitor section
[    33.786] (II) intel(0): Output HDMI1 has no monitor section
[    33.787] (II) intel(0): Output DP1 has no monitor section
[    33.913] (II) intel(0): EDID for output LVDS1
[    33.913] (II) intel(0): Manufacturer: LEN  Model: 4011  Serial#: 0
[    33.913] (II) intel(0): Year: 2009  Week: 1
[    33.913] (II) intel(0): EDID Version: 1.3
[    33.913] (II) intel(0): Digital Display Input
[    33.913] (II) intel(0): Max Image Size [cm]: horiz.: 26  vert.: 16
[    33.913] (II) intel(0): Gamma: 2.20
[    33.913] (II) intel(0): DPMS capabilities: StandBy Suspend Off
[    33.913] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    33.913] (II) intel(0): First detailed timing is preferred mode
[    33.913] (II) intel(0): redX: 0.560 redY: 0.350   greenX: 0.345 greenY: 0.560
[    33.913] (II) intel(0): blueX: 0.150 blueY: 0.105   whiteX: 0.313 whiteY: 0.329
[    33.913] (II) intel(0): Manufacturer's mask: 0
[    33.913] (II) intel(0): Supported detailed timing:
[    33.913] (II) intel(0): clock: 69.3 MHz   Image Size:  261 x 163 mm
[    33.913] (II) intel(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1403 h_border: 0
[    33.913] (II) intel(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 821 v_border: 0
[    33.913] (II) intel(0): Supported detailed timing:
[    33.913] (II) intel(0): clock: 57.6 MHz   Image Size:  261 x 163 mm
[    33.913] (II) intel(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1403 h_border: 0
[    33.913] (II) intel(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 821 v_border: 0
[    33.913] (II) intel(0): Unknown vendor-specific block f
[    33.913] (II) intel(0):  B121EW09 V3
[    33.913] (II) intel(0): EDID (in hex):
[    33.913] (II) intel(0): 	00ffffffffffff0030ae114000000000
[    33.913] (II) intel(0): 	01130103801a1078ea65858f59588f26
[    33.913] (II) intel(0): 	1b505400000001010101010101010101
[    33.913] (II) intel(0): 	010101010101121b007b502015303020
[    33.913] (II) intel(0): 	360005a3100000187f16007b50201530
[    33.913] (II) intel(0): 	3020360005a3100000180000000f0081
[    33.913] (II) intel(0): 	0a3c810a3216090006af5633000000fe
[    33.913] (II) intel(0): 	004231323145573039205633200a009b
[    33.913] (II) intel(0): EDID vendor "LEN", prod id 16401
[    33.913] (II) intel(0): Printing DDC gathered Modelines:
[    33.913] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[    33.913] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[    33.913] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[    33.913] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[    33.913] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[    33.913] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[    33.913] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
[    33.913] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[    33.913] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[    33.913] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
[    33.913] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
[    33.913] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
[    33.913] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
[    33.913] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
[    33.913] (II) intel(0): Printing probed modes for output LVDS1
[    33.913] (II) intel(0): Modeline "1280x800"x60.2   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[    33.913] (II) intel(0): Modeline "1280x800"x50.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[    33.913] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[    33.913] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[    33.913] (II) intel(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[    33.913] (II) intel(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[    33.948] (II) intel(0): EDID for output VGA1
[    33.957] (II) intel(0): EDID for output HDMI1
[    34.002] (II) intel(0): EDID for output DP1
[    34.002] (II) intel(0): Output LVDS1 connected
[    34.002] (II) intel(0): Output VGA1 disconnected
[    34.002] (II) intel(0): Output HDMI1 disconnected
[    34.002] (II) intel(0): Output DP1 disconnected
[    34.002] (II) intel(0): Using exact sizes for initial modes
[    34.002] (II) intel(0): Output LVDS1 using initial mode 1280x800
[    34.002] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[    34.002] (II) intel(0): Pageflipping enabled in kernel, but disabled in X
[    34.002] (II) intel(0): Don't panic: https://bugzilla.redhat.com/588421
[    34.002] (**) intel(0): Display dimensions: (260, 160) mm
[    34.002] (**) intel(0): DPI set to (125, 127)
[    34.002] (II) Loading sub module "fb"
[    34.003] (II) LoadModule: "fb"
[    34.003] (II) Loading /usr/lib/xorg/modules/libfb.so
[    34.051] (II) Module fb: vendor="X.Org Foundation"
[    34.051] 	compiled for 1.8.1.902, module version = 1.0.0
[    34.051] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    34.051] (II) UnloadModule: "vesa"
[    34.051] (II) Unloading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    34.051] (==) Depth 24 pixmap format is 32 bpp
[    34.051] (II) intel(0): [DRI2] Setup complete
[    34.051] (II) intel(0): [DRI2]   DRI driver: i965
[    34.051] (**) intel(0): Tiling enabled
[    34.051] (**) intel(0): SwapBuffers wait enabled
[    34.051] (==) intel(0): VideoRam: 262144 KB
[    34.051] (II) intel(0): Allocated new frame buffer 1280x800 stride 5120, tiled
[    34.069] (II) UXA(0): Driver registered support for the following operations:
[    34.069] (II)         solid
[    34.069] (II)         copy
[    34.069] (II)         composite (RENDER acceleration)
[    34.069] (II)         put_image
[    34.069] (II)         get_image
[    34.076] (==) intel(0): Backing store disabled
[    34.076] (==) intel(0): Silken mouse enabled
[    34.077] (II) intel(0): Initializing HW Cursor
[    34.139] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[    34.141] (==) intel(0): DPMS enabled
[    34.141] (==) intel(0): Intel XvMC decoder enabled
[    34.141] (II) intel(0): Set up textured video
[    34.141] (II) intel(0): [XvMC] xvmc_vld driver initialized.
[    34.141] (II) intel(0): direct rendering: DRI2 Enabled
[    34.141] (--) RandR disabled
[    34.141] (II) Initializing built-in extension Generic Event Extension
[    34.141] (II) Initializing built-in extension SHAPE
[    34.141] (II) Initializing built-in extension MIT-SHM
[    34.141] (II) Initializing built-in extension XInputExtension
[    34.141] (II) Initializing built-in extension XTEST
[    34.141] (II) Initializing built-in extension BIG-REQUESTS
[    34.141] (II) Initializing built-in extension SYNC
[    34.141] (II) Initializing built-in extension XKEYBOARD
[    34.141] (II) Initializing built-in extension XC-MISC
[    34.141] (II) Initializing built-in extension SECURITY
[    34.141] (II) Initializing built-in extension XINERAMA
[    34.141] (II) Initializing built-in extension XFIXES
[    34.141] (II) Initializing built-in extension RENDER
[    34.141] (II) Initializing built-in extension RANDR
[    34.141] (II) Initializing built-in extension COMPOSITE
[    34.141] (II) Initializing built-in extension DAMAGE
[    34.196] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[    34.196] (II) AIGLX: enabled GLX_INTEL_swap_event
[    34.196] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[    34.196] (II) AIGLX: enabled GLX_SGI_make_current_read
[    34.196] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[    34.196] (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i965_dri.so
[    34.196] (II) GLX: Initialized DRI2 GL provider for screen 0
[    34.196] (II) intel(0): Setting screen physical size to 338 x 211
[    34.683] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[    34.683] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    34.683] (II) LoadModule: "evdev"
[    34.683] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    34.692] (II) Module evdev: vendor="X.Org Foundation"
[    34.692] 	compiled for 1.8.1.902, module version = 2.4.0
[    34.692] 	Module class: X.Org XInput Driver
[    34.692] 	ABI class: X.Org XInput driver, version 9.0
[    34.692] (**) Power Button: always reports core events
[    34.692] (**) Power Button: Device: "/dev/input/event2"
[    34.699] (II) Power Button: Found keys
[    34.699] (II) Power Button: Configuring as keyboard
[    34.699] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[    34.699] (**) Option "xkb_rules" "evdev"
[    34.699] (**) Option "xkb_model" "evdev"
[    34.699] (**) Option "xkb_layout" "us"
[    34.733] (II) config/udev: Adding input device Video Bus (/dev/input/event10)
[    34.733] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[    34.733] (**) Video Bus: always reports core events
[    34.733] (**) Video Bus: Device: "/dev/input/event10"
[    34.739] (II) Video Bus: Found keys
[    34.739] (II) Video Bus: Configuring as keyboard
[    34.739] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
[    34.739] (**) Option "xkb_rules" "evdev"
[    34.739] (**) Option "xkb_model" "evdev"
[    34.739] (**) Option "xkb_layout" "us"
[    34.740] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[    34.740] (II) No input driver/identifier specified (ignoring)
[    34.741] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
[    34.741] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[    34.741] (**) Sleep Button: always reports core events
[    34.741] (**) Sleep Button: Device: "/dev/input/event1"
[    34.751] (II) Sleep Button: Found keys
[    34.751] (II) Sleep Button: Configuring as keyboard
[    34.751] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
[    34.751] (**) Option "xkb_rules" "evdev"
[    34.751] (**) Option "xkb_model" "evdev"
[    34.751] (**) Option "xkb_layout" "us"
[    34.753] (II) config/udev: Adding input device Integrated Camera (/dev/input/event8)
[    34.753] (**) Integrated Camera: Applying InputClass "evdev keyboard catchall"
[    34.753] (**) Integrated Camera: always reports core events
[    34.753] (**) Integrated Camera: Device: "/dev/input/event8"
[    34.763] (II) Integrated Camera: Found keys
[    34.763] (II) Integrated Camera: Configuring as keyboard
[    34.763] (II) XINPUT: Adding extended input device "Integrated Camera" (type: KEYBOARD)
[    34.763] (**) Option "xkb_rules" "evdev"
[    34.763] (**) Option "xkb_model" "evdev"
[    34.763] (**) Option "xkb_layout" "us"
[    34.763] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event7)
[    34.763] (II) No input driver/identifier specified (ignoring)
[    34.767] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
[    34.767] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[    34.767] (**) AT Translated Set 2 keyboard: always reports core events
[    34.767] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event3"
[    34.775] (II) AT Translated Set 2 keyboard: Found keys
[    34.775] (II) AT Translated Set 2 keyboard: Configuring as keyboard
[    34.775] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
[    34.775] (**) Option "xkb_rules" "evdev"
[    34.775] (**) Option "xkb_model" "evdev"
[    34.775] (**) Option "xkb_layout" "us"
[    34.775] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event4)
[    34.775] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[    34.775] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[    34.775] (II) LoadModule: "synaptics"
[    34.775] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[    34.785] (II) Module synaptics: vendor="X.Org Foundation"
[    34.785] 	compiled for 1.8.0.902, module version = 1.2.2
[    34.785] 	Module class: X.Org XInput Driver
[    34.785] 	ABI class: X.Org XInput driver, version 9.0
[    34.785] (II) Synaptics touchpad driver version 1.2.2
[    34.785] (**) Option "Device" "/dev/input/event4"
[    34.823] (II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5888
[    34.823] (II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4810
[    34.823] (II) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[    34.823] (II) SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[    34.823] (II) SynPS/2 Synaptics TouchPad: buttons: left right
[    34.823] (**) Option "TapButton1" "1"
[    34.823] (**) Option "TapButton2" "2"
[    34.823] (**) Option "TapButton3" "3"
[    34.855] (--) SynPS/2 Synaptics TouchPad: touchpad found
[    34.855] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    34.871] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
[    34.871] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[    34.871] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 0
[    34.871] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[    34.871] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[    34.895] (--) SynPS/2 Synaptics TouchPad: touchpad found
[    34.895] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[    34.895] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[    34.895] (II) Synaptics touchpad driver version 1.2.2
[    35.407] SynPS/2 Synaptics TouchPad no synaptics event device found
[    35.407] (**) Option "Device" "/dev/input/mouse0"
[    35.415] (**) Option "TapButton1" "1"
[    35.415] (**) Option "TapButton2" "2"
[    35.415] (**) Option "TapButton3" "3"
[    35.435] Query no Synaptics: 6003C8
[    35.435] (--) SynPS/2 Synaptics TouchPad: no supported touchpad found
[    35.435] (EE) SynPS/2 Synaptics TouchPad Unable to query/initialize Synaptics hardware.
[    35.448] (EE) PreInit failed for input device "SynPS/2 Synaptics TouchPad"
[    35.448] (II) UnloadModule: "synaptics"
[    35.448] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event9)
[    35.448] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
[    35.448] (**) TPPS/2 IBM TrackPoint: always reports core events
[    35.448] (**) TPPS/2 IBM TrackPoint: Device: "/dev/input/event9"
[    35.456] (II) TPPS/2 IBM TrackPoint: Found 3 mouse buttons
[    35.456] (II) TPPS/2 IBM TrackPoint: Found relative axes
[    35.456] (II) TPPS/2 IBM TrackPoint: Found x and y relative axes
[    35.456] (II) TPPS/2 IBM TrackPoint: Configuring as mouse
[    35.456] (**) TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
[    35.456] (**) TPPS/2 IBM TrackPoint: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    35.456] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE)
[    35.456] (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
[    35.456] (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0
[    35.456] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
[    35.456] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
[    35.456] (II) TPPS/2 IBM TrackPoint: initialized for relative axes.
[    35.456] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse1)
[    35.456] (II) No input driver/identifier specified (ignoring)
[    35.456] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
[    35.456] (II) No input driver/identifier specified (ignoring)
[    35.457] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event6)
[    35.457] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
[    35.457] (**) ThinkPad Extra Buttons: always reports core events
[    35.457] (**) ThinkPad Extra Buttons: Device: "/dev/input/event6"
[    35.464] (II) ThinkPad Extra Buttons: Found keys
[    35.464] (II) ThinkPad Extra Buttons: Configuring as keyboard
[    35.464] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD)
[    35.464] (**) Option "xkb_rules" "evdev"
[    35.464] (**) Option "xkb_model" "evdev"
[    35.464] (**) Option "xkb_layout" "us"
[ 12058.381] (II) AIGLX: Suspending AIGLX clients for VT switch
[ 12062.506] (II) AIGLX: Resuming AIGLX clients after VT switch
[ 12062.683] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 12062.683] (II) intel(0): Printing DDC gathered Modelines:
[ 12062.683] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 12062.683] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 12062.827] (--) SynPS/2 Synaptics TouchPad: touchpad found
[ 69504.600] (II) AIGLX: Suspending AIGLX clients for VT switch
[ 69506.165] (II) AIGLX: Resuming AIGLX clients after VT switch
[ 69506.446] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 69506.447] (II) intel(0): Printing DDC gathered Modelines:
[ 69506.447] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 69506.447] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 69506.987] (--) SynPS/2 Synaptics TouchPad: touchpad found
[ 72632.908] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 72632.908] (II) intel(0): Printing DDC gathered Modelines:
[ 72632.908] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 72632.908] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 72633.617] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 72633.617] (II) intel(0): Printing DDC gathered Modelines:
[ 72633.617] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 72633.617] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 72634.339] (II) intel(0): Allocated new frame buffer 1600x2000 stride 6656, tiled
[ 72634.843] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 72634.843] (II) intel(0): Printing DDC gathered Modelines:
[ 72634.843] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 72634.843] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 72635.674] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 72635.674] (II) intel(0): Printing DDC gathered Modelines:
[ 72635.674] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 72635.674] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 72636.507] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 72636.507] (II) intel(0): Printing DDC gathered Modelines:
[ 72636.507] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 72636.507] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 72637.340] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 72637.340] (II) intel(0): Printing DDC gathered Modelines:
[ 72637.340] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 72637.340] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 72638.172] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 72638.172] (II) intel(0): Printing DDC gathered Modelines:
[ 72638.172] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 72638.218] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 72639.051] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 72639.051] (II) intel(0): Printing DDC gathered Modelines:
[ 72639.051] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 72639.051] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 72640.004] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 72640.004] (II) intel(0): Printing DDC gathered Modelines:
[ 72640.004] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 72640.004] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 72640.838] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 72640.838] (II) intel(0): Printing DDC gathered Modelines:
[ 72640.838] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 72640.838] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 72641.671] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 72641.671] (II) intel(0): Printing DDC gathered Modelines:
[ 72641.671] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 72641.671] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 76412.181] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 76412.181] (II) intel(0): Printing DDC gathered Modelines:
[ 76412.181] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 76412.181] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 76412.420] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 76412.420] (II) intel(0): Printing DDC gathered Modelines:
[ 76412.420] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 76412.420] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 76412.866] (II) intel(0): Allocated new frame buffer 1280x800 stride 5120, tiled
[ 76413.199] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 76413.199] (II) intel(0): Printing DDC gathered Modelines:
[ 76413.199] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 76413.199] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 76413.495] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 76413.495] (II) intel(0): Printing DDC gathered Modelines:
[ 76413.495] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 76413.495] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 76413.709] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 76413.709] (II) intel(0): Printing DDC gathered Modelines:
[ 76413.709] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 76413.709] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 76413.959] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 76413.959] (II) intel(0): Printing DDC gathered Modelines:
[ 76413.959] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 76413.959] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 76414.189] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 76414.189] (II) intel(0): Printing DDC gathered Modelines:
[ 76414.189] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 76414.189] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 76414.403] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 76414.403] (II) intel(0): Printing DDC gathered Modelines:
[ 76414.403] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 76414.403] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 76414.633] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 76414.633] (II) intel(0): Printing DDC gathered Modelines:
[ 76414.633] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 76414.633] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 76414.847] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 76414.847] (II) intel(0): Printing DDC gathered Modelines:
[ 76414.847] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 76414.847] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 76415.061] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 76415.061] (II) intel(0): Printing DDC gathered Modelines:
[ 76415.061] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 76415.061] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 78028.975] (II) AIGLX: Suspending AIGLX clients for VT switch
[ 78033.711] (II) AIGLX: Resuming AIGLX clients after VT switch
[ 78033.888] (II) intel(0): EDID vendor "LEN", prod id 16401
[ 78033.888] (II) intel(0): Printing DDC gathered Modelines:
[ 78033.888] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[ 78033.888] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[ 78034.022] (--) SynPS/2 Synaptics TouchPad: touchpad found
[155815.956] (II) intel(0): EDID vendor "LEN", prod id 16401
[155815.956] (II) intel(0): Printing DDC gathered Modelines:
[155815.956] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[155815.956] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[217104.325] (II) AIGLX: Suspending AIGLX clients for VT switch
[217109.186] (II) AIGLX: Resuming AIGLX clients after VT switch
[217109.363] (II) intel(0): EDID vendor "LEN", prod id 16401
[217109.363] (II) intel(0): Printing DDC gathered Modelines:
[217109.363] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[217109.363] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[217109.504] (--) SynPS/2 Synaptics TouchPad: touchpad found
[217578.417] (II) AIGLX: Suspending AIGLX clients for VT switch
[217582.668] (II) AIGLX: Resuming AIGLX clients after VT switch
[217582.845] (II) intel(0): EDID vendor "LEN", prod id 16401
[217582.845] (II) intel(0): Printing DDC gathered Modelines:
[217582.845] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[217582.845] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[217582.963] (--) SynPS/2 Synaptics TouchPad: touchpad found
[218546.487] (II) intel(0): EDID vendor "LEN", prod id 16401
[218546.487] (II) intel(0): Printing DDC gathered Modelines:
[218546.487] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[218546.487] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[218547.511] (II) intel(0): EDID vendor "LEN", prod id 16401
[218547.511] (II) intel(0): Printing DDC gathered Modelines:
[218547.511] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[218547.511] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[218548.116] (II) intel(0): Allocated new frame buffer 1600x2000 stride 6656, tiled
[218548.635] (II) intel(0): EDID vendor "LEN", prod id 16401
[218548.636] (II) intel(0): Printing DDC gathered Modelines:
[218548.636] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[218548.636] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[218549.475] (II) intel(0): EDID vendor "LEN", prod id 16401
[218549.475] (II) intel(0): Printing DDC gathered Modelines:
[218549.475] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[218549.475] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[218550.306] (II) intel(0): EDID vendor "LEN", prod id 16401
[218550.307] (II) intel(0): Printing DDC gathered Modelines:
[218550.307] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[218550.307] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[218551.145] (II) intel(0): EDID vendor "LEN", prod id 16401
[218551.145] (II) intel(0): Printing DDC gathered Modelines:
[218551.145] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[218551.145] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[218552.101] (II) intel(0): EDID vendor "LEN", prod id 16401
[218552.101] (II) intel(0): Printing DDC gathered Modelines:
[218552.101] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[218552.101] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[218553.003] (II) intel(0): EDID vendor "LEN", prod id 16401
[218553.003] (II) intel(0): Printing DDC gathered Modelines:
[218553.003] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[218553.003] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[218553.836] (II) intel(0): EDID vendor "LEN", prod id 16401
[218553.836] (II) intel(0): Printing DDC gathered Modelines:
[218553.836] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[218553.836] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[218554.793] (II) intel(0): EDID vendor "LEN", prod id 16401
[218554.793] (II) intel(0): Printing DDC gathered Modelines:
[218554.793] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[218554.793] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[218555.625] (II) intel(0): EDID vendor "LEN", prod id 16401
[218555.625] (II) intel(0): Printing DDC gathered Modelines:
[218555.625] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[218555.625] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[304780.840] (II) AIGLX: Suspending AIGLX clients for VT switch
[304786.039] (II) AIGLX: Resuming AIGLX clients after VT switch
[304786.344] (II) intel(0): EDID vendor "LEN", prod id 16401
[304786.344] (II) intel(0): Printing DDC gathered Modelines:
[304786.344] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[304786.344] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[304786.468] (--) SynPS/2 Synaptics TouchPad: touchpad found
[305789.293] (WW) intel(0): get vblank counter failed: Invalid argument
[305790.330] (II) AIGLX: Suspending AIGLX clients for VT switch
[305795.333] (II) AIGLX: Resuming AIGLX clients after VT switch
[305795.648] (II) intel(0): EDID vendor "LEN", prod id 16401
[305795.648] (II) intel(0): Printing DDC gathered Modelines:
[305795.648] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[305795.648] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[305795.766] (--) SynPS/2 Synaptics TouchPad: touchpad found
[305795.782] (WW) intel(0): get vblank counter failed: Invalid argument
[305795.782] (WW) intel(0): first get vblank counter failed: Invalid argument
[305796.165] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305796.468] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305796.544] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305796.620] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305796.695] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305796.771] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305796.846] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305796.922] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305796.998] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305797.074] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305797.074] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305797.150] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305797.226] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305797.301] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305797.496] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305797.592] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305797.688] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305797.785] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305797.881] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305797.976] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305798.072] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305799.073] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305799.149] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305799.225] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305799.303] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305799.380] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305800.806] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305800.882] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305800.958] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305801.034] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305801.110] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305801.186] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305801.261] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305802.151] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305802.226] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305802.328] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305802.424] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305802.520] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305802.617] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305802.693] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305802.768] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305802.843] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305802.918] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305802.993] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305803.069] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305803.145] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305803.220] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305803.295] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305803.370] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305803.973] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305804.048] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305804.142] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305804.294] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305804.520] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305804.749] (II) AIGLX: Suspending AIGLX clients for VT switch
[305808.204] (II) AIGLX: Resuming AIGLX clients after VT switch
[305808.517] (II) intel(0): EDID vendor "LEN", prod id 16401
[305808.517] (II) intel(0): Printing DDC gathered Modelines:
[305808.517] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz)
[305808.517] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz)
[305808.670] (--) SynPS/2 Synaptics TouchPad: touchpad found
[305809.214] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305809.365] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305809.442] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305809.442] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305809.442] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305809.442] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305809.443] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305809.746] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305809.821] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305809.896] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.
[305810.071] (II) AIGLX: Suspending AIGLX clients for VT switch
[305815.694] (EE) intel(0): Failed to submit batch buffer, expect rendering corruption or even a frozen display: Input/output error.

[-- Attachment #1.3: dmesg.2.6.36-rc3-00464-g84e1d83 --]
[-- Type: text/plain, Size: 120063 bytes --]

[257511.103290] add_index: xtInsert failed!
[257511.103391] add_index: xtInsert failed!
[257514.224243] add_index: xtInsert failed!
[257514.224442] add_index: xtInsert failed!
[257514.224846] add_index: xtInsert failed!
[257529.163303] add_index: xtInsert failed!
[257529.163430] add_index: xtInsert failed!
[257570.722311] add_index: xtInsert failed!
[257570.722474] add_index: xtInsert failed!
[257570.722761] add_index: xtInsert failed!
[257577.061886] usb 1-1.5.1: USB disconnect, address 44
[257577.061899] PM: Removing info for No Bus:ep_81
[257577.061923] PM: Removing info for No Bus:ep_02
[257577.061939] PM: Removing info for usb:1-1.5.1:1.0
[257577.061968] PM: Removing info for No Bus:23:0:0:0
[257577.062077] PM: Removing info for No Bus:23:0:0:0
[257577.062091] PM: Removing info for No Bus:sg3
[257577.062144] PM: Removing info for scsi:23:0:0:0
[257577.062163] PM: Removing info for No Bus:23:0:0:0
[257577.062206] PM: Removing info for No Bus:sdc1
[257577.066394] PM: Removing info for No Bus:8:32
[257577.066457] PM: Removing info for No Bus:sdc
[257577.066553] PM: Removing info for scsi:target23:0:0
[257577.066590] PM: Removing info for No Bus:host23
[257577.066614] PM: Removing info for scsi:host23
[257577.066671] PM: Removing info for No Bus:ep_00
[257577.066685] PM: Removing info for usb:1-1.5.1
[269724.779138] e1000e: eth0 NIC Link is Down
[269728.882605] ata2.00: disabled
[269728.882672] PM: Removing info for acpi:LNXIOBAY:05
[269728.882736] PM: Removing info for acpi:device:37
[269728.882772] PM: Removing info for acpi:IBM0079:05
[269728.882787] ACPI: \_SB_.GDCK - undocking
[269728.882944] ata2.00: detaching (SCSI 1:0:0:0)
[269728.882952] PM: Removing info for No Bus:1:0:0:0
[269728.884599] PM: Removing info for No Bus:1:0:0:0
[269728.884702] ata2: exception Emask 0x50 SAct 0x0 SErr 0x4080800 action 0xe frozen
[269728.884708] ata2: irq_stat 0x000000c0, connection status changed
[269728.884716] ata2: SError: { HostInt 10B8B DevExch }
[269728.884733] ata2: hard resetting link
[269728.885412] PM: Removing info for No Bus:sg1
[269728.887029] PM: Removing info for scsi:1:0:0:0
[269728.891137] PM: Removing info for No Bus:11:0
[269728.891200] PM: Removing info for No Bus:sr0
[269728.896738] usb 1-1.5: clear tt 3 (9183) error -71
[269728.902871] usb 1-1.5: USB disconnect, address 22
[269728.902876] usb 1-1.5.2: USB disconnect, address 23
[269728.902888] PM: Removing info for No Bus:ep_81
[269728.902912] PM: Removing info for No Bus:ep_02
[269728.902926] PM: Removing info for usb:1-1.5.2:1.0
[269728.902954] PM: Removing info for No Bus:12:0:0:0
[269728.903093] PM: Removing info for No Bus:12:0:0:0
[269728.903110] PM: Removing info for No Bus:sg2
[269728.903201] PM: Removing info for scsi:12:0:0:0
[269728.903239] PM: Removing info for No Bus:12:0:0:0
[269728.904334] usb 1-1.5.3: pl2303_read_int_callback - usb_submit_urb failed with result -19
[269728.910131] PM: Removing info for No Bus:8:16
[269728.910211] PM: Removing info for No Bus:sdb
[269728.910315] PM: Removing info for scsi:target12:0:0
[269728.910343] PM: Removing info for No Bus:host12
[269728.910368] PM: Removing info for scsi:host12
[269728.910453] PM: Removing info for No Bus:ep_00
[269728.910466] PM: Removing info for usb:1-1.5.2
[269728.910582] usb 1-1.5.3: USB disconnect, address 24
[269728.910591] PM: Removing info for No Bus:ep_81
[269728.910602] PM: Removing info for No Bus:ep_02
[269728.910610] PM: Removing info for No Bus:ep_83
[269728.910620] PM: Removing info for usb:1-1.5.3:1.0
[269728.910651] PM: Removing info for usb-serial:ttyUSB0
[269728.910731] PM: Removing info for No Bus:ttyUSB0
[269728.910816] pl2303 ttyUSB0: pl2303 converter now disconnected from ttyUSB0
[269728.910825] pl2303 1-1.5.3:1.0: device disconnected
[269728.910842] PM: Removing info for No Bus:ep_00
[269728.910855] PM: Removing info for usb:1-1.5.3
[269728.910960] PM: Removing info for No Bus:ep_81
[269728.910974] PM: Removing info for usb:1-1.5:1.0
[269728.911005] PM: Removing info for No Bus:ep_00
[269728.911015] PM: Removing info for usb:1-1.5
[269729.605884] ata2: SATA link down (SStatus 0 SControl 300)
[269729.605899] ata2: EH complete
[269729.606039] PM: Removing info for scsi:target1:0:0
[269732.446653] thinkpad_acpi: EC reports that Thermal Table has changed
[269732.450427] ACPI: \_SB_.GDCK - undocking
[277719.508454] thinkpad_acpi: EC reports that Thermal Table has changed
[277719.884407] ata2: exception Emask 0x10 SAct 0x0 SErr 0x4040000 action 0xe frozen
[277719.884412] ata2: irq_stat 0x000000c0, connection status changed
[277719.884418] ata2: SError: { CommWake DevExch }
[277719.884432] ata2: hard resetting link
[277720.107525] ACPI: \_SB_.GDCK - docking
[277720.110038] PM: Adding info for acpi:LNXIOBAY:06
[277720.110186] PM: Adding info for acpi:device:38
[277720.110903] PM: Adding info for acpi:IBM0079:06
[277720.680431] usb 1-1.5: new high speed USB device using ehci_hcd and address 45
[277720.765573] PM: Adding info for usb:1-1.5
[277720.765809] PM: Adding info for usb:1-1.5:1.0
[277720.765842] hub 1-1.5:1.0: USB hub found
[277720.766250] hub 1-1.5:1.0: 4 ports detected
[277720.766413] PM: Adding info for No Bus:ep_81
[277720.767308] PM: Adding info for No Bus:ep_00
[277721.039754] usb 1-1.5.3: new full speed USB device using ehci_hcd and address 46
[277721.116401] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[277721.121721] ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 (IDLE) succeeded
[277721.122540] ata2.00: ACPI cmd e3/00:02:00:00:00:a0 (IDLE) succeeded
[277721.125270] PM: Adding info for usb:1-1.5.3
[277721.125533] PM: Adding info for usb:1-1.5.3:1.0
[277721.125567] pl2303 1-1.5.3:1.0: pl2303 converter detected
[277721.126195] ata2.00: ATAPI: HL-DT-ST DVDRAM GSA-U20N, HX12, max UDMA/133
[277721.128941] PM: Adding info for usb-serial:ttyUSB0
[277721.129127] PM: Adding info for No Bus:ttyUSB0
[277721.129150] usb 1-1.5.3: pl2303 converter now attached to ttyUSB0
[277721.129184] PM: Adding info for No Bus:ep_81
[277721.129209] PM: Adding info for No Bus:ep_02
[277721.129225] PM: Adding info for No Bus:ep_83
[277721.129246] PM: Adding info for No Bus:ep_00
[277721.132857] ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 (IDLE) succeeded
[277721.133745] ata2.00: ACPI cmd e3/00:02:00:00:00:a0 (IDLE) succeeded
[277721.137378] ata2.00: configured for UDMA/133
[277721.250383] ata2: EH complete
[277721.253527] scsi 1:0:0:0: CD-ROM            HL-DT-ST DVDRAM GSA-U20N  HX12 PQ: 0 ANSI: 5
[277721.253559] PM: Adding info for scsi:target1:0:0
[277721.253615] PM: Adding info for scsi:1:0:0:0
[277721.602970] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[277721.603026] PM: Adding info for No Bus:sr0
[277721.603130] PM: Adding info for No Bus:11:0
[277721.603162] sr 1:0:0:0: Attached scsi CD-ROM sr0
[277721.603189] PM: Adding info for No Bus:1:0:0:0
[277721.603322] PM: Adding info for No Bus:sg1
[277721.603372] sr 1:0:0:0: Attached scsi generic sg1 type 5
[277721.603463] PM: Adding info for No Bus:1:0:0:0
[277726.573638] usb 1-1.5.2: new high speed USB device using ehci_hcd and address 47
[277726.660689] PM: Adding info for usb:1-1.5.2
[277726.660890] PM: Adding info for usb:1-1.5.2:1.0
[277726.661075] usb-storage 1-1.5.2:1.0: Quirks match for vid 1058 pid 0704: 8000
[277726.661121] scsi24 : usb-storage 1-1.5.2:1.0
[277726.661145] PM: Adding info for scsi:host24
[277726.661221] PM: Adding info for No Bus:host24
[277726.661377] PM: Adding info for No Bus:ep_81
[277726.661402] PM: Adding info for No Bus:ep_02
[277726.661427] PM: Adding info for No Bus:ep_00
[277727.660821] scsi 24:0:0:0: Direct-Access     WD       5000BMV External 1.75 PQ: 0 ANSI: 4
[277727.660842] PM: Adding info for scsi:target24:0:0
[277727.660878] PM: Adding info for scsi:24:0:0:0
[277727.660909] PM: Adding info for No Bus:24:0:0:0
[277727.660947] PM: Adding info for No Bus:24:0:0:0
[277727.661057] PM: Adding info for No Bus:sg2
[277727.661100] sd 24:0:0:0: Attached scsi generic sg2 type 0
[277727.661134] PM: Adding info for No Bus:24:0:0:0
[277727.662723] sd 24:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[277727.663867] sd 24:0:0:0: [sdb] Write Protect is off
[277727.663876] sd 24:0:0:0: [sdb] Mode Sense: 23 00 00 00
[277727.663882] sd 24:0:0:0: [sdb] Assuming drive cache: write through
[277727.663943] PM: Adding info for No Bus:sdb
[277727.666396] sd 24:0:0:0: [sdb] Assuming drive cache: write through
[277727.699616]  sdb: unknown partition table
[277727.699750] PM: Adding info for No Bus:8:16
[277727.700955] sd 24:0:0:0: [sdb] Assuming drive cache: write through
[277727.700962] sd 24:0:0:0: [sdb] Attached SCSI disk
[277735.334443] sr 1:0:0:0: [sr0]  Result: hostbyte=0x00 driverbyte=0x08
[277735.334450] sr 1:0:0:0: [sr0]  Sense Key : 0x5 [current] 
[277735.334457] ILI
[277735.334459] sr 1:0:0:0: [sr0]  ASC=0x64 ASCQ=0x0
[277735.334465] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[277735.334477] end_request: I/O error, dev sr0, sector 0
[277735.334482] Buffer I/O error on device sr0, logical block 0
[277735.334487] Buffer I/O error on device sr0, logical block 1
[277735.337586] sr 1:0:0:0: [sr0]  Result: hostbyte=0x00 driverbyte=0x08
[277735.337592] sr 1:0:0:0: [sr0]  Sense Key : 0x5 [current] 
[277735.337597] ILI
[277735.337600] sr 1:0:0:0: [sr0]  ASC=0x64 ASCQ=0x0
[277735.337605] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[277735.337617] end_request: I/O error, dev sr0, sector 0
[277735.337621] Buffer I/O error on device sr0, logical block 0
[277735.337626] Buffer I/O error on device sr0, logical block 1
[277735.340679] sr 1:0:0:0: [sr0]  Result: hostbyte=0x00 driverbyte=0x08
[277735.340685] sr 1:0:0:0: [sr0]  Sense Key : 0x5 [current] 
[277735.340690] ILI
[277735.340693] sr 1:0:0:0: [sr0]  ASC=0x64 ASCQ=0x0
[277735.340698] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[277735.340709] end_request: I/O error, dev sr0, sector 0
[277735.340714] Buffer I/O error on device sr0, logical block 0
[277735.340718] Buffer I/O error on device sr0, logical block 1
[280246.946398] add_index: xtInsert failed!
[280246.946405] add_index: xtInsert failed!
[280246.946442] add_index: xtInsert failed!
[280246.946445] add_index: xtInsert failed!
[280249.284963] add_index: xtInsert failed!
[280249.284971] add_index: xtInsert failed!
[280249.285026] add_index: xtInsert failed!
[280249.285030] add_index: xtInsert failed!
[280250.508687] add_index: xtInsert failed!
[280250.508694] add_index: xtInsert failed!
[280250.508774] add_index: xtInsert failed!
[280250.508778] add_index: xtInsert failed!
[281219.124662] wlan0: deauthenticated from 00:05:4e:4d:82:6d (Reason: 2)
[281219.138141] cfg80211: Calling CRDA to update world regulatory domain
[281247.118872] wlan0: authenticate with 00:05:4e:4d:82:6d (try 1)
[281247.121115] wlan0: authenticated
[281247.126130] wlan0: associate with 00:05:4e:4d:82:6d (try 1)
[281247.325531] wlan0: associate with 00:05:4e:4d:82:6d (try 2)
[281247.327829] wlan0: RX AssocResp from 00:05:4e:4d:82:6d (capab=0x1 status=0 aid=1)
[281247.327835] wlan0: associated
[298934.223968] No probe response from AP 00:05:4e:4d:82:6d after 500ms, disconnecting.
[298934.240904] cfg80211: Calling CRDA to update world regulatory domain
[298937.550306] wlan0: authenticate with 00:05:4e:4d:82:6d (try 1)
[298937.749543] wlan0: authenticate with 00:05:4e:4d:82:6d (try 2)
[298937.949174] wlan0: authenticate with 00:05:4e:4d:82:6d (try 3)
[298938.009573] wlan0: authenticated
[298938.019432] wlan0: associate with 00:05:4e:4d:82:6d (try 1)
[298938.218620] wlan0: associate with 00:05:4e:4d:82:6d (try 2)
[298938.418255] wlan0: associate with 00:05:4e:4d:82:6d (try 3)
[298938.493570] wlan0: RX AssocResp from 00:05:4e:4d:82:6d (capab=0x1 status=0 aid=1)
[298938.493575] wlan0: associated
[300732.933932] No probe response from AP 00:05:4e:4d:82:6d after 500ms, disconnecting.
[300732.948125] cfg80211: Calling CRDA to update world regulatory domain
[300736.258396] wlan0: authenticate with 00:05:4e:4d:82:6d (try 1)
[300736.261024] wlan0: authenticated
[300736.264292] wlan0: associate with 00:05:4e:4d:82:6d (try 1)
[300736.463455] wlan0: associate with 00:05:4e:4d:82:6d (try 2)
[300736.470636] wlan0: RX AssocResp from 00:05:4e:4d:82:6d (capab=0x1 status=0 aid=1)
[300736.470642] wlan0: associated
[301946.713796] No probe response from AP 00:05:4e:4d:82:6d after 500ms, disconnecting.
[301946.727996] cfg80211: Calling CRDA to update world regulatory domain
[301958.207679] wlan0: authenticate with 00:05:4e:4d:82:6d (try 1)
[301958.407383] wlan0: authenticate with 00:05:4e:4d:82:6d (try 2)
[301958.410013] wlan0: authenticated
[301958.417306] wlan0: associate with 00:05:4e:4d:82:6d (try 1)
[301958.423293] wlan0: RX AssocResp from 00:05:4e:4d:82:6d (capab=0x1 status=0 aid=1)
[301958.423301] wlan0: associated
[301972.666274] No probe response from AP 00:05:4e:4d:82:6d after 500ms, disconnecting.
[301972.680606] cfg80211: Calling CRDA to update world regulatory domain
[301976.013202] wlan0: authenticate with 00:05:4e:4d:82:6d (try 1)
[301976.212828] wlan0: authenticate with 00:05:4e:4d:82:6d (try 2)
[301976.215466] wlan0: authenticated
[301976.225220] wlan0: associate with 00:05:4e:4d:82:6d (try 1)
[301976.231929] wlan0: RX AssocResp from 00:05:4e:4d:82:6d (capab=0x1 status=0 aid=1)
[301976.231936] wlan0: associated
[301990.633486] No probe response from AP 00:05:4e:4d:82:6d after 500ms, disconnecting.
[301990.647486] cfg80211: Calling CRDA to update world regulatory domain
[301993.933455] wlan0: authenticate with 00:05:4e:4d:82:6d (try 1)
[301994.133054] wlan0: authenticate with 00:05:4e:4d:82:6d (try 2)
[301994.135922] wlan0: authenticated
[301994.139285] wlan0: associate with 00:05:4e:4d:82:6d (try 1)
[301994.338673] wlan0: associate with 00:05:4e:4d:82:6d (try 2)
[301994.538307] wlan0: associate with 00:05:4e:4d:82:6d (try 3)
[301994.737932] wlan0: association with 00:05:4e:4d:82:6d timed out
[302007.102399] wlan0: authenticate with 00:05:4e:4d:82:6d (try 1)
[302007.105041] wlan0: authenticated
[302007.108724] wlan0: associate with 00:05:4e:4d:82:6d (try 1)
[302007.307942] wlan0: associate with 00:05:4e:4d:82:6d (try 2)
[302007.311173] wlan0: RX AssocResp from 00:05:4e:4d:82:6d (capab=0x1 status=0 aid=1)
[302007.311178] wlan0: associated
[302017.576164] No probe response from AP 00:05:4e:4d:82:6d after 500ms, disconnecting.
[302017.590190] cfg80211: Calling CRDA to update world regulatory domain
[302020.942961] wlan0: authenticate with 00:05:4e:4d:82:6d (try 1)
[302020.948539] wlan0: authenticated
[302020.952245] wlan0: associate with 00:05:4e:4d:82:6d (try 1)
[302021.151630] wlan0: associate with 00:05:4e:4d:82:6d (try 2)
[302021.154023] wlan0: RX AssocResp from 00:05:4e:4d:82:6d (capab=0x1 status=0 aid=1)
[302021.154029] wlan0: associated
[302035.551271] No probe response from AP 00:05:4e:4d:82:6d after 500ms, disconnecting.
[302035.563375] cfg80211: Calling CRDA to update world regulatory domain
[302047.067842] wlan0: authenticate with 00:05:4e:4d:82:6d (try 1)
[302047.266855] wlan0: authenticate with 00:05:4e:4d:82:6d (try 2)
[302047.466517] wlan0: authenticate with 00:05:4e:4d:82:6d (try 3)
[302047.666171] wlan0: authentication with 00:05:4e:4d:82:6d timed out
[302060.260413] wlan0: authenticate with 00:05:4e:4d:82:6d (try 1)
[302060.262992] wlan0: authenticated
[302060.266502] wlan0: associate with 00:05:4e:4d:82:6d (try 1)
[302060.465700] wlan0: associate with 00:05:4e:4d:82:6d (try 2)
[302060.472091] wlan0: RX AssocResp from 00:05:4e:4d:82:6d (capab=0x1 status=0 aid=1)
[302060.472097] wlan0: associated
[302081.467285] No probe response from AP 00:05:4e:4d:82:6d after 500ms, disconnecting.
[302081.488296] cfg80211: Calling CRDA to update world regulatory domain
[302093.008343] wlan0: authenticate with 00:05:4e:4d:82:6d (try 1)
[302093.207807] wlan0: authenticate with 00:05:4e:4d:82:6d (try 2)
[302093.407449] wlan0: authenticate with 00:05:4e:4d:82:6d (try 3)
[302093.607096] wlan0: authentication with 00:05:4e:4d:82:6d timed out
[302106.246502] wlan0: authenticate with 00:05:4e:4d:82:6d (try 1)
[302106.250251] wlan0: authenticated
[302106.265180] wlan0: associate with 00:05:4e:4d:82:6d (try 1)
[302106.464575] wlan0: associate with 00:05:4e:4d:82:6d (try 2)
[302106.484243] wlan0: RX AssocResp from 00:05:4e:4d:82:6d (capab=0x1 status=0 aid=1)
[302106.484248] wlan0: associated
[302260.140427] No probe response from AP 00:05:4e:4d:82:6d after 500ms, disconnecting.
[302260.158812] cfg80211: Calling CRDA to update world regulatory domain
[302271.685443] wlan0: authenticate with 00:05:4e:4d:82:6d (try 1)
[302271.688004] wlan0: authenticated
[302271.691180] wlan0: associate with 00:05:4e:4d:82:6d (try 1)
[302271.889917] wlan0: associate with 00:05:4e:4d:82:6d (try 2)
[302271.893077] wlan0: RX AssocResp from 00:05:4e:4d:82:6d (capab=0x1 status=0 aid=1)
[302271.893086] wlan0: associated
[302578.558062] No probe response from AP 00:05:4e:4d:82:6d after 500ms, disconnecting.
[302578.573398] cfg80211: Calling CRDA to update world regulatory domain
[302581.879955] wlan0: authenticate with 00:05:4e:4d:82:6d (try 1)
[302582.079589] wlan0: authenticate with 00:05:4e:4d:82:6d (try 2)
[302582.082165] wlan0: authenticated
[302582.083562] wlan0: associate with 00:05:4e:4d:82:6d (try 1)
[302582.086912] wlan0: RX AssocResp from 00:05:4e:4d:82:6d (capab=0x1 status=0 aid=1)
[302582.086920] wlan0: associated
[304073.822992] No probe response from AP 00:05:4e:4d:82:6d after 500ms, disconnecting.
[304073.837237] cfg80211: Calling CRDA to update world regulatory domain
[304077.125458] wlan0: authenticate with 00:05:4e:4d:82:6d (try 1)
[304077.164761] wlan0: authenticated
[304077.173529] wlan0: associate with 00:05:4e:4d:82:6d (try 1)
[304077.372484] wlan0: associate with 00:05:4e:4d:82:6d (try 2)
[304077.374724] wlan0: RX AssocResp from 00:05:4e:4d:82:6d (capab=0x1 status=0 aid=1)
[304077.374729] wlan0: associated
[304221.572219] ata2.00: disabled
[304221.572279] PM: Removing info for acpi:LNXIOBAY:06
[304221.572334] PM: Removing info for acpi:device:38
[304221.572387] PM: Removing info for acpi:IBM0079:06
[304221.572414] ACPI: \_SB_.GDCK - undocking
[304221.572655] ata2.00: detaching (SCSI 1:0:0:0)
[304221.572667] PM: Removing info for No Bus:1:0:0:0
[304221.572870] PM: Removing info for No Bus:1:0:0:0
[304221.572887] PM: Removing info for No Bus:sg1
[304221.572960] PM: Removing info for scsi:1:0:0:0
[304221.573956] ata2: exception Emask 0x50 SAct 0x0 SErr 0x4080800 action 0xe frozen
[304221.573963] ata2: irq_stat 0x000000c0, connection status changed
[304221.573971] ata2: SError: { HostInt 10B8B DevExch }
[304221.573989] ata2: hard resetting link
[304221.577128] PM: Removing info for No Bus:11:0
[304221.577321] PM: Removing info for No Bus:sr0
[304221.768897] usb 1-1.5: USB disconnect, address 45
[304221.768903] usb 1-1.5.2: USB disconnect, address 47
[304221.768914] PM: Removing info for No Bus:ep_81
[304221.768940] PM: Removing info for No Bus:ep_02
[304221.768954] PM: Removing info for usb:1-1.5.2:1.0
[304221.768984] PM: Removing info for No Bus:24:0:0:0
[304221.769112] PM: Removing info for No Bus:24:0:0:0
[304221.769130] PM: Removing info for No Bus:sg2
[304221.769215] PM: Removing info for scsi:24:0:0:0
[304221.769255] PM: Removing info for No Bus:24:0:0:0
[304221.773371] PM: Removing info for No Bus:8:16
[304221.773432] PM: Removing info for No Bus:sdb
[304221.773529] PM: Removing info for scsi:target24:0:0
[304221.773561] PM: Removing info for No Bus:host24
[304221.773600] PM: Removing info for scsi:host24
[304221.773707] PM: Removing info for No Bus:ep_00
[304221.773735] PM: Removing info for usb:1-1.5.2
[304221.773861] usb 1-1.5.3: USB disconnect, address 46
[304221.773873] PM: Removing info for No Bus:ep_81
[304221.773896] PM: Removing info for No Bus:ep_02
[304221.773912] PM: Removing info for No Bus:ep_83
[304221.773926] PM: Removing info for usb:1-1.5.3:1.0
[304221.773956] PM: Removing info for usb-serial:ttyUSB0
[304221.774034] PM: Removing info for No Bus:ttyUSB0
[304221.774140] pl2303 ttyUSB0: pl2303 converter now disconnected from ttyUSB0
[304221.774159] pl2303 1-1.5.3:1.0: device disconnected
[304221.774182] PM: Removing info for No Bus:ep_00
[304221.774199] PM: Removing info for usb:1-1.5.3
[304221.774383] PM: Removing info for No Bus:ep_81
[304221.774404] PM: Removing info for usb:1-1.5:1.0
[304221.774462] PM: Removing info for No Bus:ep_00
[304221.774481] PM: Removing info for usb:1-1.5
[304222.295449] ata2: SATA link down (SStatus 0 SControl 300)
[304222.295466] ata2: EH complete
[304222.295554] PM: Removing info for scsi:target1:0:0
[304224.324097] usb 1-1.4: USB disconnect, address 21
[304224.324129] btusb_intr_complete: hci0 urb ffff88008a758cc0 failed to resubmit (19)
[304224.324323] btusb_bulk_complete: hci0 urb ffff88008a758180 failed to resubmit (19)
[304224.324330] btusb_bulk_complete: hci0 urb ffff88008a758d80 failed to resubmit (19)
[304224.324868] PM: Removing info for No Bus:ep_81
[304224.324884] PM: Removing info for No Bus:ep_82
[304224.324890] PM: Removing info for No Bus:ep_02
[304224.324899] PM: Removing info for usb:1-1.4:1.0
[304224.324932] btusb_send_frame: hci0 urb ffff88008b2bc840 submission failed
[304224.574287] PM: Removing info for No Bus:rfkill6
[304224.574358] PM: Removing info for No Bus:hci0
[304224.574495] PM: Removing info for No Bus:ep_83
[304224.574511] PM: Removing info for No Bus:ep_03
[304224.574518] PM: Removing info for usb:1-1.4:1.1
[304224.574535] PM: Removing info for No Bus:ep_84
[304224.574543] PM: Removing info for No Bus:ep_04
[304224.574551] PM: Removing info for usb:1-1.4:1.2
[304224.574566] PM: Removing info for usb:1-1.4:1.3
[304224.574581] PM: Removing info for No Bus:ep_00
[304224.574591] PM: Removing info for usb:1-1.4
[304225.049894] PM: Syncing filesystems ... done.
[304225.074795] PM: Preparing system for mem sleep
[304226.338268] Freezing user space processes ... (elapsed 0.01 seconds) done.
[304226.349055] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[304226.360017] PM: Entering mem sleep
[304226.360165] Suspending console(s) (use no_console_suspend to debug)
[304226.360191] platform dock.0: preparing suspend
[304226.360193] platform dock.1: preparing suspend
[304226.360195] platform dock.2: preparing suspend
[304226.360198] pci 0000:ff:00.0: preparing suspend
[304226.360199] pci 0000:ff:00.1: preparing suspend
[304226.360201] pci 0000:ff:02.0: preparing suspend
[304226.360203] pci 0000:ff:02.1: preparing suspend
[304226.360204] pci 0000:ff:02.2: preparing suspend
[304226.360206] pci 0000:ff:02.3: preparing suspend
[304226.360209] agpgart-intel 0000:00:00.0: preparing suspend
[304226.360211] i915 0000:00:02.0: preparing suspend
[304226.360213] pci 0000:00:16.0: preparing suspend
[304226.360215] serial 0000:00:16.3: preparing suspend
[304226.360217] e1000e 0000:00:19.0: preparing suspend, may wakeup
[304226.360219] ehci_hcd 0000:00:1a.0: preparing suspend
[304226.360221] HDA Intel 0000:00:1b.0: preparing suspend
[304226.360223] pci 0000:00:1c.0: preparing suspend
[304226.360224] pci 0000:00:1c.3: preparing suspend
[304226.360226] pci 0000:00:1c.4: preparing suspend
[304226.360228] ehci_hcd 0000:00:1d.0: preparing suspend
[304226.360230] pci 0000:00:1e.0: preparing suspend
[304226.360231] pci 0000:00:1f.0: preparing suspend
[304226.360233] ahci 0000:00:1f.2: preparing suspend
[304226.360235] i801_smbus 0000:00:1f.3: preparing suspend
[304226.360237] intel ips 0000:00:1f.6: preparing suspend
[304226.360240] iwlagn 0000:02:00.0: preparing suspend
[304226.360255] pcspkr pcspkr: preparing suspend
[304226.360256] platform microcode: preparing suspend
[304226.360331] i8042 i8042: preparing suspend
[304226.360340] usb usb1: preparing type suspend, may wakeup
[304226.360343] serial8250 serial8250: preparing suspend
[304226.360345] usb usb2: preparing type suspend, may wakeup
[304226.360350] platform regulatory.0: preparing suspend
[304226.360353] thinkpad_acpi thinkpad_acpi: preparing suspend
[304226.360355] thinkpad_hwmon thinkpad_hwmon: preparing suspend
[304226.360363] usb 1-1: preparing type suspend
[304226.360365] usb 2-1: preparing type suspend
[304226.360368] usb 1-1.3: preparing type suspend
[304226.360370] usb 1-1.6: preparing type suspend
[304226.360398] input input10: type suspend
[304226.360402] backlight acpi_video0: legacy class suspend
[304226.360404] i2c i2c-4: suspend
[304226.360407] drm card0-DisplayPort-1: legacy class suspend
[304226.360409] drm card0-HDMI Type A-1: legacy class suspend
[304226.360411] i2c i2c-3: suspend
[304226.360412] drm card0-VGA-1: legacy class suspend
[304226.360414] i2c i2c-2: suspend
[304226.360416] drm card0-LVDS-1: legacy class suspend
[304226.360417] i2c i2c-1: suspend
[304226.360419] drm card0: legacy class suspend
[304226.360422] drm controlD64: legacy class suspend
[304226.360463] input input9: type suspend
[304226.360465] input input8: type suspend
[304226.360483] rfkill rfkill1: legacy class suspend
[304226.360485] usb 1-1.6: type suspend
[304226.360487] ieee80211 phy0: legacy class suspend
[304226.360494] usb 1-1.3: type suspend
[304226.360504] usb 2-1: type suspend
[304226.365690] usb 1-1: type suspend
[304226.365693] input input7: type suspend
[304226.365696] input input6: type suspend
[304226.365700] leds tpacpi::thinkvantage: legacy class suspend
[304226.365703] leds tpacpi::unknown_led3: legacy class suspend
[304226.365705] leds tpacpi::unknown_led2: legacy class suspend
[304226.365707] leds tpacpi::dock_status2: legacy class suspend
[304226.365710] leds tpacpi::dock_status1: legacy class suspend
[304226.365712] leds tpacpi::standby: legacy class suspend
[304226.365715] leds tpacpi::unknown_led: legacy class suspend
[304226.365717] leds tpacpi::dock_batt: legacy class suspend
[304226.365719] leds tpacpi::bay_active: legacy class suspend
[304226.365722] leds tpacpi::dock_active: legacy class suspend
[304226.365724] leds tpacpi:green:batt: legacy class suspend
[304226.365726] leds tpacpi:orange:batt: legacy class suspend
[304226.365729] leds tpacpi::power: legacy class suspend
[304226.365731] leds tpacpi::thinklight: legacy class suspend
[304226.365734] rfkill rfkill0: legacy class suspend
[304226.365737] thinkpad_hwmon thinkpad_hwmon: suspend
[304226.365740] thinkpad_acpi thinkpad_acpi: suspend
[304226.365744] i2c i2c-0: suspend
[304226.365748] platform regulatory.0: suspend
[304226.365759] serial8250 serial8250: suspend
[304226.365760] usb usb2: type suspend, may wakeup
[304226.365764] input input5: type suspend
[304226.365767] psmouse serio2: suspend
[304226.365947] usb usb1: type suspend, may wakeup
[304226.549394] input input4: type suspend
[304226.549413] input input3: type suspend
[304226.549423] psmouse serio1: suspend
[304226.549428] sd 0:0:0:0: suspend
[304226.549437] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[304226.590090] sd 0:0:0:0: [sda] Stopping disk
[304226.603724] atkbd serio0: suspend
[304226.604297] i8042 i8042: suspend
[304226.605386] scsi host5: suspend
[304226.605390] scsi host4: suspend
[304226.605394] scsi host3: suspend
[304226.605397] scsi host2: suspend
[304226.605400] scsi host1: suspend
[304226.605451] input input2: type suspend
[304226.605453] input input1: type suspend
[304226.605455] input input0: type suspend
[304226.605458] platform microcode: suspend
[304226.605460] pcspkr pcspkr: suspend
[304226.605489] system 00:0c: legacy suspend
[304226.605491] ACPI handle has no context!
[304226.605495] tpm_tis 00:0b: legacy suspend
[304226.797246] i8042 aux 00:0a: legacy suspend
[304226.797254] i8042 kbd 00:09: legacy suspend
[304226.797261] rtc_cmos 00:08: legacy suspend, may wakeup
[304226.797269] pnp 00:07: legacy suspend
[304226.797272] pnp 00:06: legacy suspend
[304226.797275] pnp 00:05: legacy suspend
[304226.797278] pnp 00:04: legacy suspend
[304226.797281] system 00:03: legacy suspend
[304226.797287] pnp 00:02: legacy suspend
[304226.797290] pnp 00:01: legacy suspend
[304226.797293] system 00:00: legacy suspend
[304226.797331] platform dock.2: suspend
[304226.797334] platform dock.1: suspend
[304226.797337] platform dock.0: suspend
[304226.797340] button LNXPWRBN:00: legacy suspend
[304226.797344] thermal LNXTHERM:01: legacy suspend
[304226.797347] acpi LNXTHERM:00: legacy suspend
[304226.797351] wmi PNP0C14:00: legacy suspend
[304226.797354] acpi PNP0C02:01: legacy suspend
[304226.797357] acpi device:32: legacy suspend
[304226.797360] acpi device:31: legacy suspend
[304226.797363] acpi device:2f: legacy suspend
[304226.797366] acpi device:2e: legacy suspend
[304226.797369] acpi device:2d: legacy suspend
[304226.797372] acpi device:2c: legacy suspend
[304226.797376] acpi device:2b: legacy suspend
[304226.797379] acpi device:2a: legacy suspend
[304226.797382] acpi device:29: legacy suspend
[304226.797388] acpi device:28: legacy suspend
[304226.797390] acpi device:27: legacy suspend
[304226.797391] acpi device:26: legacy suspend
[304226.797393] acpi device:25: legacy suspend
[304226.797396] iwlagn 0000:02:00.0: suspend
[304226.797398] acpi device:24: legacy suspend
[304226.797400] acpi device:23: legacy suspend
[304226.797401] acpi device:22: legacy suspend
[304226.797403] acpi device:21: legacy suspend
[304226.797405] acpi device:20: legacy suspend
[304226.797407] acpi device:1f: legacy suspend
[304226.797408] acpi device:1e: legacy suspend
[304226.797410] acpi device:1d: legacy suspend
[304226.797412] acpi device:1c: legacy suspend
[304226.797413] acpi device:1b: legacy suspend
[304226.797415] acpi device:1a: legacy suspend
[304226.797416] acpi device:19: legacy suspend
[304226.797418] acpi device:18: legacy suspend
[304226.797420] acpi device:17: legacy suspend
[304226.797421] acpi device:16: legacy suspend
[304226.797423] acpi device:15: legacy suspend
[304226.797425] acpi device:14: legacy suspend
[304226.797426] acpi device:13: legacy suspend
[304226.797428] acpi device:12: legacy suspend
[304226.797429] acpi device:11: legacy suspend
[304226.797431] acpi device:10: legacy suspend
[304226.797433] acpi device:0f: legacy suspend
[304226.797434] acpi device:0e: legacy suspend
[304226.797436] acpi device:0d: legacy suspend
[304226.797438] acpi device:0c: legacy suspend
[304226.797440] acpi device:0b: legacy suspend
[304226.797443] acpi LNXVIDEO:01: legacy suspend
[304226.797446] acpi device:0a: legacy suspend
[304226.797448] thinkpad_hotkey IBM0068:00: legacy suspend
[304226.797451] ac ACPI0003:00: legacy suspend
[304226.797453] battery PNP0C0A:00: legacy suspend
[304226.797456] power LNXPOWER:00: legacy suspend
[304226.797458] ec PNP0C09:00: legacy suspend
[304226.797460] acpi SMO1200:00: legacy suspend
[304226.797461] acpi LEN0018:00: legacy suspend
[304226.797463] acpi PNP0303:00: legacy suspend
[304226.797465] acpi PNP0B00:00: legacy suspend
[304226.797466] acpi PNP0C04:00: legacy suspend
[304226.797468] acpi PNP0800:00: legacy suspend
[304226.797470] acpi PNP0200:00: legacy suspend
[304226.797471] acpi PNP0103:00: legacy suspend
[304226.797473] acpi PNP0100:00: legacy suspend
[304226.797475] acpi PNP0000:00: legacy suspend
[304226.797479] intel ips 0000:00:1f.6: suspend
[304226.797482] acpi PNP0C02:00: legacy suspend
[304226.797485] acpi device:09: legacy suspend
[304226.797487] acpi device:08: legacy suspend
[304226.797489] acpi device:07: legacy suspend
[304226.797491] acpi device:06: legacy suspend
[304226.797493] acpi device:05: legacy suspend
[304226.797494] acpi device:04: legacy suspend
[304226.797496] acpi device:03: legacy suspend
[304226.797498] acpi device:02: legacy suspend
[304226.797500] acpi device:01: legacy suspend
[304226.797504] video LNXVIDEO:00: legacy suspend
[304226.797507] i801_smbus 0000:00:1f.3: suspend
[304226.797510] pci_root PNP0A08:00: legacy suspend
[304226.797512] acpi device:00: legacy suspend
[304226.797514] pci_root PNP0A03:00: legacy suspend
[304226.797516] button PNP0C0E:00: legacy suspend
[304226.797518] button PNP0C0D:00: legacy suspend
[304226.797520] acpi PNP0C01:00: legacy suspend
[304226.797522] pci_link PNP0C0F:07: legacy suspend
[304226.797524] pci_link PNP0C0F:06: legacy suspend
[304226.797526] pci_link PNP0C0F:05: legacy suspend
[304226.797528] pci_link PNP0C0F:04: legacy suspend
[304226.797530] pci_link PNP0C0F:03: legacy suspend
[304226.797531] pci_link PNP0C0F:02: legacy suspend
[304226.797533] pci_link PNP0C0F:01: legacy suspend
[304226.797535] pci_link PNP0C0F:00: legacy suspend
[304226.797539] acpi LNXSYBUS:00: legacy suspend
[304226.797541] pci 0000:00:1f.0: suspend
[304226.797543] processor LNXCPU:07: legacy suspend
[304226.797545] pci 0000:00:1e.0: suspend
[304226.797570] ehci_hcd 0000:00:1d.0: suspend
[304226.797572] processor LNXCPU:06: legacy suspend
[304226.797595] processor LNXCPU:05: legacy suspend
[304226.797598] processor LNXCPU:04: legacy suspend
[304226.797622] processor LNXCPU:03: legacy suspend
[304226.797624] processor LNXCPU:02: legacy suspend
[304226.797627] processor LNXCPU:01: legacy suspend
[304226.797629] processor LNXCPU:00: legacy suspend
[304226.797633] acpi LNXSYSTM:00: legacy suspend
[304226.797677] ehci_hcd 0000:00:1d.0: PCI INT D disabled
[304226.797775] pci 0000:00:1c.3: suspend
[304226.797777] pci 0000:00:1c.0: suspend
[304226.797783] HDA Intel 0000:00:1b.0: suspend
[304226.797816] ehci_hcd 0000:00:1a.0: suspend
[304226.797837] ehci_hcd 0000:00:1a.0: PCI INT D disabled
[304226.797842] e1000e 0000:00:19.0: suspend, may wakeup
[304226.797884] serial 0000:00:16.3: suspend
[304226.797911] pci 0000:00:16.0: suspend
[304226.797919] i915 0000:00:02.0: suspend
[304226.797935] agpgart-intel 0000:00:00.0: suspend
[304226.797954] pci 0000:ff:02.3: suspend
[304226.797956] ACPI handle has no context!
[304226.797959] pci 0000:ff:02.2: suspend
[304226.797961] pci 0000:ff:02.1: suspend
[304226.797965] pci 0000:ff:02.0: suspend
[304226.797969] pci 0000:ff:00.1: suspend
[304226.797972] pci 0000:ff:00.0: suspend
[304226.808232] pci 0000:00:1c.4: suspend
[304226.813180] i915 0000:00:02.0: power state changed by ACPI to D3
[304226.899392] HDA Intel 0000:00:1b.0: PCI INT B disabled
[304226.960496] scsi target0:0:0: suspend
[304226.960513] scsi host0: suspend
[304226.960557] ahci 0000:00:1f.2: suspend
[304226.992130] e1000e 0000:00:19.0: PME# enabled
[304226.992137] e1000e 0000:00:19.0: wake-up capability enabled by ACPI
[304227.014978] PM: suspend of devices complete after 655.777 msecs
[304227.015021] input input10: LATE type suspend
[304227.015024] i2c i2c-4: LATE suspend
[304227.015026] i2c i2c-3: LATE suspend
[304227.015029] i2c i2c-2: LATE suspend
[304227.015031] i2c i2c-1: LATE suspend
[304227.015038] input input9: LATE type suspend
[304227.015040] input input8: LATE type suspend
[304227.015043] usb 1-1.6: LATE type suspend
[304227.015045] usb 1-1.3: LATE type suspend
[304227.015049] usb 2-1: LATE type suspend
[304227.015051] usb 1-1: LATE type suspend
[304227.015054] input input7: LATE type suspend
[304227.015056] input input6: LATE type suspend
[304227.015059] thinkpad_hwmon thinkpad_hwmon: LATE suspend
[304227.015062] thinkpad_acpi thinkpad_acpi: LATE suspend
[304227.015065] i2c i2c-0: LATE suspend
[304227.015068] platform regulatory.0: LATE suspend
[304227.015071] usb usb2: LATE type suspend, may wakeup
[304227.015074] serial8250 serial8250: LATE suspend
[304227.015076] usb usb1: LATE type suspend, may wakeup
[304227.015079] input input5: LATE type suspend
[304227.015082] psmouse serio2: LATE suspend
[304227.015084] input input4: LATE type suspend
[304227.015087] sd 0:0:0:0: LATE suspend
[304227.015090] scsi target0:0:0: LATE suspend
[304227.015092] input input3: LATE type suspend
[304227.015095] psmouse serio1: LATE suspend
[304227.015097] atkbd serio0: LATE suspend
[304227.015099] i8042 i8042: LATE suspend
[304227.015102] scsi host5: LATE suspend
[304227.015104] scsi host4: LATE suspend
[304227.015106] scsi host3: LATE suspend
[304227.015108] scsi host2: LATE suspend
[304227.015111] scsi host1: LATE suspend
[304227.015113] scsi host0: LATE suspend
[304227.015128] input input2: LATE type suspend
[304227.015133] input input1: LATE type suspend
[304227.015134] input input0: LATE type suspend
[304227.015136] platform microcode: LATE suspend
[304227.015137] pcspkr pcspkr: LATE suspend
[304227.015140] iwlagn 0000:02:00.0: LATE suspend
[304227.015143] intel ips 0000:00:1f.6: LATE suspend
[304227.015174] i801_smbus 0000:00:1f.3: LATE suspend
[304227.015175] ahci 0000:00:1f.2: LATE suspend
[304227.015176] pci 0000:00:1f.0: LATE suspend
[304227.015204] pci 0000:00:1e.0: LATE suspend
[304227.015231] ehci_hcd 0000:00:1d.0: LATE suspend
[304227.027792] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D3
[304227.027800] pci 0000:00:1c.4: LATE suspend
[304227.027859] pci 0000:00:1c.3: LATE suspend
[304227.027916] pci 0000:00:1c.0: LATE suspend
[304227.027961] HDA Intel 0000:00:1b.0: LATE suspend
[304227.027962] ehci_hcd 0000:00:1a.0: LATE suspend
[304227.045790] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D3
[304227.045797] e1000e 0000:00:19.0: LATE suspend, may wakeup
[304227.045801] serial 0000:00:16.3: LATE suspend
[304227.045803] pci 0000:00:16.0: LATE suspend
[304227.045844] i915 0000:00:02.0: LATE suspend
[304227.045846] agpgart-intel 0000:00:00.0: LATE suspend
[304227.045860] pci 0000:ff:02.3: LATE suspend
[304227.045871] pci 0000:ff:02.2: LATE suspend
[304227.045881] pci 0000:ff:02.1: LATE suspend
[304227.045892] pci 0000:ff:02.0: LATE suspend
[304227.045902] pci 0000:ff:00.1: LATE suspend
[304227.045912] pci 0000:ff:00.0: LATE suspend
[304227.045926] platform dock.2: LATE suspend
[304227.045927] platform dock.1: LATE suspend
[304227.045928] platform dock.0: LATE suspend
[304227.045932] PM: late suspend of devices complete after 31.007 msecs
[304227.046073] ACPI: Preparing to enter system sleep state S3
[304227.093682] PM: Saving platform NVS memory
[304227.226130] Disabling non-boot CPUs ...
[304227.239832] CPU 1 is now offline
[304227.259461] CPU 2 is now offline
[304227.270383] CPU 3 is now offline
[304227.270385] SMP alternatives: switching to UP code
[304227.273848] Extended CMOS year: 2000
[304227.274144] Back to C!
[304227.274147] PM: Restoring platform NVS memory
[304227.411523] Extended CMOS year: 2000
[304227.411558] Enabling non-boot CPUs ...
[304227.411969] SMP alternatives: switching to SMP code
[304227.415049] Booting Node 0 Processor 1 APIC 0x1
[304227.521907] CPU1 is up
[304227.521995] Booting Node 0 Processor 2 APIC 0x4
[304227.628708] CPU2 is up
[304227.628810] Booting Node 0 Processor 3 APIC 0x5
[304227.735743] CPU3 is up
[304227.736719] ACPI: Waking up from system sleep state S3
[304227.820577] thinkpad_acpi: EC reports that Thermal Table has changed
[304227.833331] platform dock.0: EARLY resume
[304227.833336] platform dock.1: EARLY resume
[304227.833338] platform dock.2: EARLY resume
[304227.833342] pci 0000:ff:00.0: EARLY resume
[304227.833358] pci 0000:ff:00.1: EARLY resume
[304227.833371] pci 0000:ff:02.0: EARLY resume
[304227.833382] pci 0000:ff:02.1: EARLY resume
[304227.833389] pci 0000:ff:02.2: EARLY resume
[304227.833397] pci 0000:ff:02.3: EARLY resume
[304227.833405] agpgart-intel 0000:00:00.0: EARLY resume
[304227.833417] i915 0000:00:02.0: EARLY resume
[304227.833429] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[304227.833440] pci 0000:00:16.0: EARLY resume
[304227.833481] serial 0000:00:16.3: EARLY resume
[304227.833522] e1000e 0000:00:19.0: EARLY resume
[304227.833569] ehci_hcd 0000:00:1a.0: EARLY resume
[304227.833585] ehci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x400, writing 0x40b)
[304227.833603] ehci_hcd 0000:00:1a.0: restoring config space at offset 0x4 (was 0x0, writing 0xf2728000)
[304227.833611] ehci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900102)
[304227.852190] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
[304227.854206] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
[304227.854214] HDA Intel 0000:00:1b.0: EARLY resume
[304227.854276] pci 0000:00:1c.0: EARLY resume
[304227.854335] pci 0000:00:1c.3: EARLY resume
[304227.854387] pci 0000:00:1c.4: EARLY resume
[304227.854407] pci 0000:00:1c.4: restoring config space at offset 0xf (was 0x100, writing 0x4010b)
[304227.854420] pci 0000:00:1c.4: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[304227.854425] pci 0000:00:1c.4: restoring config space at offset 0x8 (was 0x0, writing 0xf240f240)
[304227.854430] pci 0000:00:1c.4: restoring config space at offset 0x7 (was 0x0, writing 0xf0)
[304227.854439] pci 0000:00:1c.4: restoring config space at offset 0x3 (was 0x810000, writing 0x810010)
[304227.854446] pci 0000:00:1c.4: restoring config space at offset 0x1 (was 0x100000, writing 0x100107)
[304227.854464] ehci_hcd 0000:00:1d.0: EARLY resume
[304227.854481] ehci_hcd 0000:00:1d.0: restoring config space at offset 0xf (was 0x400, writing 0x40b)
[304227.854499] ehci_hcd 0000:00:1d.0: restoring config space at offset 0x4 (was 0x0, writing 0xf2728400)
[304227.854507] ehci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900102)
[304227.856197] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
[304227.858195] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
[304227.858202] pci 0000:00:1e.0: EARLY resume
[304227.858248] pci 0000:00:1f.0: EARLY resume
[304227.858293] ahci 0000:00:1f.2: EARLY resume
[304227.858328] ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00007, writing 0x2b00407)
[304227.858359] i801_smbus 0000:00:1f.3: EARLY resume
[304227.858386] intel ips 0000:00:1f.6: EARLY resume
[304227.858400] intel ips 0000:00:1f.6: restoring config space at offset 0xf (was 0x400, writing 0x40b)
[304227.858422] intel ips 0000:00:1f.6: restoring config space at offset 0x1 (was 0x100000, writing 0x100002)
[304227.858436] iwlagn 0000:02:00.0: EARLY resume
[304227.858506] iwlagn 0000:02:00.0: restoring config space at offset 0x1 (was 0x100106, writing 0x100506)
[304227.858569] pcspkr pcspkr: EARLY resume
[304227.858571] platform microcode: EARLY resume
[304227.858573] input input0: EARLY type resume
[304227.858575] input input1: EARLY type resume
[304227.858577] input input2: EARLY type resume
[304227.858617] scsi host0: EARLY resume
[304227.858619] scsi host1: EARLY resume
[304227.858620] scsi host2: EARLY resume
[304227.858622] scsi host3: EARLY resume
[304227.858623] scsi host4: EARLY resume
[304227.858625] scsi host5: EARLY resume
[304227.858627] i8042 i8042: EARLY resume
[304227.858629] atkbd serio0: EARLY resume
[304227.858630] psmouse serio1: EARLY resume
[304227.858633] input input3: EARLY type resume
[304227.858635] scsi target0:0:0: EARLY resume
[304227.858637] sd 0:0:0:0: EARLY resume
[304227.858639] input input4: EARLY type resume
[304227.858641] psmouse serio2: EARLY resume
[304227.858643] input input5: EARLY type resume
[304227.858645] usb usb1: EARLY type resume
[304227.858648] serial8250 serial8250: EARLY resume
[304227.858650] usb usb2: EARLY type resume
[304227.858653] platform regulatory.0: EARLY resume
[304227.858656] i2c i2c-0: EARLY resume
[304227.858658] thinkpad_acpi thinkpad_acpi: EARLY resume
[304227.858660] thinkpad_hwmon thinkpad_hwmon: EARLY resume
[304227.858664] input input6: EARLY type resume
[304227.858666] input input7: EARLY type resume
[304227.858668] usb 1-1: EARLY type resume
[304227.858670] usb 2-1: EARLY type resume
[304227.858673] usb 1-1.3: EARLY type resume
[304227.858675] usb 1-1.6: EARLY type resume
[304227.858677] input input8: EARLY type resume
[304227.858679] input input9: EARLY type resume
[304227.858691] i2c i2c-1: EARLY resume
[304227.858693] i2c i2c-2: EARLY resume
[304227.858694] i2c i2c-3: EARLY resume
[304227.858696] i2c i2c-4: EARLY resume
[304227.858698] input input10: EARLY type resume
[304227.858701] PM: early resume of devices complete after 25.431 msecs
[304227.858828] pci 0000:ff:00.0: resume
[304227.858833] pci 0000:ff:00.1: resume
[304227.858836] pci 0000:ff:02.0: resume
[304227.858839] pci 0000:ff:02.1: resume
[304227.858841] pci 0000:ff:02.2: resume
[304227.858843] pci 0000:ff:02.3: resume
[304227.858845] acpi LNXSYSTM:00: legacy resume
[304227.858848] agpgart-intel 0000:00:00.0: resume
[304227.858850] i915 0000:00:02.0: resume
[304227.858852] processor LNXCPU:00: legacy resume
[304227.858856] processor LNXCPU:01: legacy resume
[304227.858859] processor LNXCPU:02: legacy resume
[304227.858861] processor LNXCPU:03: legacy resume
[304227.858863] processor LNXCPU:04: legacy resume
[304227.858866] processor LNXCPU:05: legacy resume
[304227.858868] processor LNXCPU:06: legacy resume
[304227.858870] i915 0000:00:02.0: power state changed by ACPI to D0
[304227.858873] processor LNXCPU:07: legacy resume
[304227.858875] acpi LNXSYBUS:00: legacy resume
[304227.858878] pci_link PNP0C0F:00: legacy resume
[304227.858881] pci_link PNP0C0F:01: legacy resume
[304227.858883] i915 0000:00:02.0: power state changed by ACPI to D0
[304227.858885] pci_link PNP0C0F:02: legacy resume
[304227.858888] pci_link PNP0C0F:03: legacy resume
[304227.858890] i915 0000:00:02.0: setting latency timer to 64
[304227.858892] pci_link PNP0C0F:04: legacy resume
[304227.858894] pci_link PNP0C0F:05: legacy resume
[304227.858896] pci_link PNP0C0F:06: legacy resume
[304227.858898] pci_link PNP0C0F:07: legacy resume
[304227.858900] acpi PNP0C01:00: legacy resume
[304227.858902] button PNP0C0D:00: legacy resume
[304227.858945] pci 0000:00:16.0: resume
[304227.858948] serial 0000:00:16.3: resume
[304227.858955] e1000e 0000:00:19.0: resume
[304227.858963] e1000e 0000:00:19.0: wake-up capability disabled by ACPI
[304227.858971] e1000e 0000:00:19.0: PME# disabled
[304227.859087] e1000e 0000:00:19.0: irq 41 for MSI/MSI-X
[304227.859150] ehci_hcd 0000:00:1a.0: resume
[304227.859180] HDA Intel 0000:00:1b.0: resume
[304227.859191] HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[304227.859198] HDA Intel 0000:00:1b.0: setting latency timer to 64
[304227.859236] HDA Intel 0000:00:1b.0: irq 42 for MSI/MSI-X
[304227.859273] pci 0000:00:1c.0: resume
[304227.859279] pci 0000:00:1c.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[304227.859285] pci 0000:00:1c.0: setting latency timer to 64
[304227.859289] pci 0000:00:1c.3: resume
[304227.859295] pci 0000:00:1c.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
[304227.859300] pci 0000:00:1c.3: setting latency timer to 64
[304227.859305] pci 0000:00:1c.4: resume
[304227.859311] pci 0000:00:1c.4: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[304227.859316] pci 0000:00:1c.4: setting latency timer to 64
[304227.859321] ehci_hcd 0000:00:1d.0: resume
[304227.859347] pci 0000:00:1e.0: resume
[304227.859355] pci 0000:00:1e.0: setting latency timer to 64
[304227.859360] pci 0000:00:1f.0: resume
[304227.859367] i801_smbus 0000:00:1f.3: resume
[304227.859373] intel ips 0000:00:1f.6: resume
[304227.859375] iwlagn 0000:02:00.0: resume
[304227.859383] ahci 0000:00:1f.2: resume
[304227.859397] ahci 0000:00:1f.2: setting latency timer to 64
[304227.859573] scsi host1: resume
[304227.859575] scsi host0: resume
[304227.859577] scsi host2: resume
[304227.859580] scsi host3: resume
[304227.859585] scsi host4: resume
[304227.859588] scsi host5: resume
[304227.859600] scsi target0:0:0: resume
[304227.859603] sd 0:0:0:0: resume
[304227.859608] sd 0:0:0:0: [sda] Starting disk
[304227.859774] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
[304227.859816] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
[304227.859972] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
[304227.859980] ehci_hcd 0000:00:1d.0: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[304227.859987] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[304227.860026] usb usb2: type resume
[304227.860173] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
[304227.860181] ehci_hcd 0000:00:1a.0: PCI INT D -> GSI 23 (level, low) -> IRQ 23
[304227.860187] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[304227.860219] usb usb1: type resume
[304227.860348] button PNP0C0E:00: legacy resume
[304227.860351] pci_root PNP0A03:00: legacy resume
[304227.860353] acpi device:00: legacy resume
[304227.860355] pci_root PNP0A08:00: legacy resume
[304227.860358] video LNXVIDEO:00: legacy resume
[304227.860360] acpi device:01: legacy resume
[304227.860362] acpi device:02: legacy resume
[304227.860365] acpi device:03: legacy resume
[304227.860367] acpi device:04: legacy resume
[304227.860369] acpi device:05: legacy resume
[304227.860371] acpi device:06: legacy resume
[304227.860373] acpi device:07: legacy resume
[304227.860375] acpi device:08: legacy resume
[304227.860377] acpi device:09: legacy resume
[304227.860379] acpi PNP0C02:00: legacy resume
[304227.860381] acpi PNP0000:00: legacy resume
[304227.860383] acpi PNP0100:00: legacy resume
[304227.860385] acpi PNP0103:00: legacy resume
[304227.860387] acpi PNP0200:00: legacy resume
[304227.860389] acpi PNP0800:00: legacy resume
[304227.860391] acpi PNP0C04:00: legacy resume
[304227.860393] acpi PNP0B00:00: legacy resume
[304227.860395] acpi PNP0303:00: legacy resume
[304227.860397] acpi LEN0018:00: legacy resume
[304227.860399] acpi SMO1200:00: legacy resume
[304227.860402] ec PNP0C09:00: legacy resume
[304227.860404] power LNXPOWER:00: legacy resume
[304227.860563] battery PNP0C0A:00: legacy resume
[304227.876440] ac ACPI0003:00: legacy resume
[304227.876598] thinkpad_hotkey IBM0068:00: legacy resume
[304227.876601] acpi device:0a: legacy resume
[304227.876603] acpi LNXVIDEO:01: legacy resume
[304227.876605] acpi device:0b: legacy resume
[304227.876606] acpi device:0c: legacy resume
[304227.876608] acpi device:0d: legacy resume
[304227.876610] acpi device:0e: legacy resume
[304227.876612] acpi device:0f: legacy resume
[304227.876613] acpi device:10: legacy resume
[304227.876615] acpi device:11: legacy resume
[304227.876617] acpi device:12: legacy resume
[304227.876619] acpi device:13: legacy resume
[304227.876620] acpi device:14: legacy resume
[304227.876622] acpi device:15: legacy resume
[304227.876624] acpi device:16: legacy resume
[304227.876626] acpi device:17: legacy resume
[304227.876628] acpi device:18: legacy resume
[304227.876629] acpi device:19: legacy resume
[304227.876631] acpi device:1a: legacy resume
[304227.876633] acpi device:1b: legacy resume
[304227.876635] acpi device:1c: legacy resume
[304227.876636] acpi device:1d: legacy resume
[304227.876638] acpi device:1e: legacy resume
[304227.876640] acpi device:1f: legacy resume
[304227.876642] acpi device:20: legacy resume
[304227.876643] acpi device:21: legacy resume
[304227.876645] acpi device:22: legacy resume
[304227.876647] acpi device:23: legacy resume
[304227.876649] acpi device:24: legacy resume
[304227.876651] acpi device:25: legacy resume
[304227.876652] acpi device:26: legacy resume
[304227.876654] acpi device:27: legacy resume
[304227.876656] acpi device:28: legacy resume
[304227.876658] acpi device:29: legacy resume
[304227.876659] acpi device:2a: legacy resume
[304227.876661] acpi device:2b: legacy resume
[304227.876663] acpi device:2c: legacy resume
[304227.876665] acpi device:2d: legacy resume
[304227.876666] acpi device:2e: legacy resume
[304227.876668] acpi device:2f: legacy resume
[304227.876670] acpi device:31: legacy resume
[304227.876672] acpi device:32: legacy resume
[304227.876674] acpi PNP0C02:01: legacy resume
[304227.876676] wmi PNP0C14:00: legacy resume
[304227.876678] acpi LNXTHERM:00: legacy resume
[304227.876680] thermal LNXTHERM:01: legacy resume
[304227.877131] button LNXPWRBN:00: legacy resume
[304227.877134] platform dock.0: resume
[304227.877136] platform dock.1: resume
[304227.877138] platform dock.2: resume
[304227.877143] system 00:00: legacy resume
[304227.877147] pnp 00:01: legacy resume
[304227.877148] pnp 00:02: legacy resume
[304227.877150] system 00:03: legacy resume
[304227.877153] pnp 00:04: legacy resume
[304227.877154] pnp 00:05: legacy resume
[304227.877156] pnp 00:06: legacy resume
[304227.877158] pnp 00:07: legacy resume
[304227.877160] rtc_cmos 00:08: legacy resume
[304227.877163] i8042 kbd 00:09: legacy resume
[304227.877166] i8042 aux 00:0a: legacy resume
[304227.877168] tpm_tis 00:0b: legacy resume
[304227.900071] usb 2-1: type resume
[304227.901067] usb 1-1: type resume
[304227.910057] system 00:0c: legacy resume
[304227.910074] pcspkr pcspkr: resume
[304227.910076] platform microcode: resume
[304227.910078] input input0: type resume
[304227.910081] input input1: type resume
[304227.910098] input input2: type resume
[304227.910197] i8042 i8042: resume
[304227.911081] atkbd serio0: resume
[304227.911086] psmouse serio1: resume
[304227.911089] input input3: type resume
[304228.001908] usb 1-1.3: type resume
[304228.001911] usb 1-1.6: type resume
[304228.074975] usb 1-1.3: reset full speed USB device using ehci_hcd and address 3
[304228.165614] ata2: SATA link down (SStatus 0 SControl 300)
[304228.167610] ata5: SATA link down (SStatus 0 SControl 300)
[304228.169601] ata6: SATA link down (SStatus 0 SControl 300)
[304228.232623] usb 1-1.6: reset high speed USB device using ehci_hcd and address 5
[304230.355643] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[304230.357964] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[304230.357971] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[304230.357977] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[304230.362701] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[304230.362708] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[304230.362714] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[304230.364773] ata1.00: configured for UDMA/100
[304230.369385] ata1.00: configured for UDMA/100
[304230.369391] ata1: EH complete
[304230.395417] input input4: type resume
[304230.395430] psmouse serio2: resume
[304230.395440] input input5: type resume
[304230.395467] serial8250 serial8250: resume
[304230.395525] platform regulatory.0: resume
[304230.395536] i2c i2c-0: resume
[304230.395545] thinkpad_acpi thinkpad_acpi: resume
[304230.397399] thinkpad_hwmon thinkpad_hwmon: resume
[304230.397403] rfkill rfkill0: legacy class resume
[304230.397406] leds tpacpi::thinklight: legacy class resume
[304230.397408] leds tpacpi::power: legacy class resume
[304230.397411] leds tpacpi:orange:batt: legacy class resume
[304230.397413] leds tpacpi:green:batt: legacy class resume
[304230.397415] leds tpacpi::dock_active: legacy class resume
[304230.397417] leds tpacpi::bay_active: legacy class resume
[304230.397419] leds tpacpi::dock_batt: legacy class resume
[304230.397421] leds tpacpi::unknown_led: legacy class resume
[304230.397424] leds tpacpi::standby: legacy class resume
[304230.397426] leds tpacpi::dock_status1: legacy class resume
[304230.397428] leds tpacpi::dock_status2: legacy class resume
[304230.397430] leds tpacpi::unknown_led2: legacy class resume
[304230.397432] leds tpacpi::unknown_led3: legacy class resume
[304230.397434] leds tpacpi::thinkvantage: legacy class resume
[304230.397436] input input6: type resume
[304230.397446] input input7: type resume
[304230.397454] ieee80211 phy0: legacy class resume
[304230.487651] rfkill rfkill1: legacy class resume
[304230.487677] input input8: type resume
[304230.487686] input input9: type resume
[304230.487726] drm controlD64: legacy class resume
[304230.487729] drm card0: legacy class resume
[304230.487732] i2c i2c-1: resume
[304230.487734] drm card0-LVDS-1: legacy class resume
[304230.487737] i2c i2c-2: resume
[304230.487739] drm card0-VGA-1: legacy class resume
[304230.487741] i2c i2c-3: resume
[304230.487744] drm card0-HDMI Type A-1: legacy class resume
[304230.487747] drm card0-DisplayPort-1: legacy class resume
[304230.487749] i2c i2c-4: resume
[304230.487752] backlight acpi_video0: legacy class resume
[304230.487756] input input10: type resume
[304230.487765] PM: resume of devices complete after 2633.798 msecs
[304230.487783] usb 1-1.6: completing type resume
[304230.487786] usb 1-1.3: completing type resume
[304230.487788] usb 2-1: completing type resume
[304230.487792] usb 1-1: completing type resume
[304230.487797] thinkpad_hwmon thinkpad_hwmon: completing resume
[304230.487800] thinkpad_acpi thinkpad_acpi: completing resume
[304230.487803] platform regulatory.0: completing resume
[304230.487807] usb usb2: completing type resume
[304230.487810] serial8250 serial8250: completing resume
[304230.487813] usb usb1: completing type resume
[304230.487822] i8042 i8042: completing resume
[304230.487932] platform microcode: completing resume
[304230.487934] pcspkr pcspkr: completing resume
[304230.487956] iwlagn 0000:02:00.0: completing resume
[304230.487960] intel ips 0000:00:1f.6: completing resume
[304230.487963] i801_smbus 0000:00:1f.3: completing resume
[304230.487965] ahci 0000:00:1f.2: completing resume
[304230.487968] pci 0000:00:1f.0: completing resume
[304230.487970] pci 0000:00:1e.0: completing resume
[304230.487973] ehci_hcd 0000:00:1d.0: completing resume
[304230.487976] pci 0000:00:1c.4: completing resume
[304230.487978] pci 0000:00:1c.3: completing resume
[304230.487980] pci 0000:00:1c.0: completing resume
[304230.487983] HDA Intel 0000:00:1b.0: completing resume
[304230.487986] ehci_hcd 0000:00:1a.0: completing resume
[304230.487988] e1000e 0000:00:19.0: completing resume
[304230.487992] serial 0000:00:16.3: completing resume
[304230.487994] pci 0000:00:16.0: completing resume
[304230.487997] i915 0000:00:02.0: completing resume
[304230.487999] agpgart-intel 0000:00:00.0: completing resume
[304230.488003] pci 0000:ff:02.3: completing resume
[304230.488005] pci 0000:ff:02.2: completing resume
[304230.488008] pci 0000:ff:02.1: completing resume
[304230.488010] pci 0000:ff:02.0: completing resume
[304230.488012] pci 0000:ff:00.1: completing resume
[304230.488015] pci 0000:ff:00.0: completing resume
[304230.488018] platform dock.2: completing resume
[304230.488021] platform dock.1: completing resume
[304230.488023] platform dock.0: completing resume
[304230.488631] PM: Finishing wakeup.
[304230.488633] Restarting tasks ... done.
[304230.492286] video LNXVIDEO:00: Restoring backlight state
[304231.105253] usb 1-1.4: new full speed USB device using ehci_hcd and address 48
[304231.194353] PM: Adding info for usb:1-1.4
[304231.194496] PM: Adding info for usb:1-1.4:1.0
[304231.194606] PM: Adding info for No Bus:hci0
[304231.194641] PM: Adding info for No Bus:rfkill7
[304231.194674] PM: Adding info for No Bus:ep_81
[304231.194687] PM: Adding info for No Bus:ep_82
[304231.194700] PM: Adding info for No Bus:ep_02
[304231.194715] PM: Adding info for usb:1-1.4:1.1
[304231.194739] PM: Adding info for No Bus:ep_83
[304231.194751] PM: Adding info for No Bus:ep_03
[304231.194764] PM: Adding info for usb:1-1.4:1.2
[304231.194807] PM: Adding info for No Bus:ep_84
[304231.194819] PM: Adding info for No Bus:ep_04
[304231.194833] PM: Adding info for usb:1-1.4:1.3
[304231.194871] PM: Adding info for No Bus:ep_00
[304951.572592] add_index: xtInsert failed!
[304951.572597] add_index: xtInsert failed!
[304951.572618] add_index: xtInsert failed!
[304951.572620] add_index: xtInsert failed!
[305231.955597] usb 1-1.4: USB disconnect, address 48
[305231.955625] btusb_intr_complete: hci0 urb ffff88009638c6c0 failed to resubmit (19)
[305231.955710] btusb_bulk_complete: hci0 urb ffff88009638c000 failed to resubmit (19)
[305231.955714] btusb_bulk_complete: hci0 urb ffff88009638c0c0 failed to resubmit (19)
[305231.955725] PM: Removing info for No Bus:ep_81
[305231.955745] PM: Removing info for No Bus:ep_82
[305231.955755] PM: Removing info for No Bus:ep_02
[305231.955766] PM: Removing info for usb:1-1.4:1.0
[305231.955969] btusb_send_frame: hci0 urb ffff8800802140c0 submission failed
[305232.205088] PM: Removing info for No Bus:rfkill7
[305232.205164] PM: Removing info for No Bus:hci0
[305232.205282] PM: Removing info for No Bus:ep_83
[305232.205311] PM: Removing info for No Bus:ep_03
[305232.205321] PM: Removing info for usb:1-1.4:1.1
[305232.205346] PM: Removing info for No Bus:ep_84
[305232.205358] PM: Removing info for No Bus:ep_04
[305232.205369] PM: Removing info for usb:1-1.4:1.2
[305232.205391] PM: Removing info for usb:1-1.4:1.3
[305232.205413] PM: Removing info for No Bus:ep_00
[305232.205423] PM: Removing info for usb:1-1.4
[305232.833321] PM: Syncing filesystems ... done.
[305232.858557] PM: Preparing system for mem sleep
[305233.867937] Freezing user space processes ... (elapsed 0.01 seconds) done.
[305233.879035] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[305233.890055] PM: Entering mem sleep
[305233.890174] Suspending console(s) (use no_console_suspend to debug)
[305233.890202] platform dock.0: preparing suspend
[305233.890204] platform dock.1: preparing suspend
[305233.890206] platform dock.2: preparing suspend
[305233.890209] pci 0000:ff:00.0: preparing suspend
[305233.890211] pci 0000:ff:00.1: preparing suspend
[305233.890213] pci 0000:ff:02.0: preparing suspend
[305233.890215] pci 0000:ff:02.1: preparing suspend
[305233.890217] pci 0000:ff:02.2: preparing suspend
[305233.890219] pci 0000:ff:02.3: preparing suspend
[305233.890221] agpgart-intel 0000:00:00.0: preparing suspend
[305233.890224] i915 0000:00:02.0: preparing suspend
[305233.890226] pci 0000:00:16.0: preparing suspend
[305233.890229] serial 0000:00:16.3: preparing suspend
[305233.890231] e1000e 0000:00:19.0: preparing suspend, may wakeup
[305233.890234] ehci_hcd 0000:00:1a.0: preparing suspend
[305233.890236] HDA Intel 0000:00:1b.0: preparing suspend
[305233.890238] pci 0000:00:1c.0: preparing suspend
[305233.890240] pci 0000:00:1c.3: preparing suspend
[305233.890242] pci 0000:00:1c.4: preparing suspend
[305233.890244] ehci_hcd 0000:00:1d.0: preparing suspend
[305233.890246] pci 0000:00:1e.0: preparing suspend
[305233.890248] pci 0000:00:1f.0: preparing suspend
[305233.890250] ahci 0000:00:1f.2: preparing suspend
[305233.890252] i801_smbus 0000:00:1f.3: preparing suspend
[305233.890255] intel ips 0000:00:1f.6: preparing suspend
[305233.890257] iwlagn 0000:02:00.0: preparing suspend
[305233.890273] pcspkr pcspkr: preparing suspend
[305233.890275] platform microcode: preparing suspend
[305233.890353] i8042 i8042: preparing suspend
[305233.890362] usb usb1: preparing type suspend, may wakeup
[305233.890366] serial8250 serial8250: preparing suspend
[305233.890369] usb usb2: preparing type suspend, may wakeup
[305233.890374] platform regulatory.0: preparing suspend
[305233.890377] thinkpad_acpi thinkpad_acpi: preparing suspend
[305233.890380] thinkpad_hwmon thinkpad_hwmon: preparing suspend
[305233.890388] usb 1-1: preparing type suspend
[305233.890391] usb 2-1: preparing type suspend
[305233.890394] usb 1-1.3: preparing type suspend
[305233.890397] usb 1-1.6: preparing type suspend
[305233.890426] input input10: type suspend
[305233.890430] backlight acpi_video0: legacy class suspend
[305233.890433] i2c i2c-4: suspend
[305233.890436] drm card0-DisplayPort-1: legacy class suspend
[305233.890438] drm card0-HDMI Type A-1: legacy class suspend
[305233.890440] i2c i2c-3: suspend
[305233.890442] drm card0-VGA-1: legacy class suspend
[305233.890444] i2c i2c-2: suspend
[305233.890446] drm card0-LVDS-1: legacy class suspend
[305233.890448] i2c i2c-1: suspend
[305233.890451] drm card0: legacy class suspend
[305233.890453] drm controlD64: legacy class suspend
[305233.890496] input input9: type suspend
[305233.890499] input input8: type suspend
[305233.890518] rfkill rfkill1: legacy class suspend
[305233.890521] usb 1-1.6: type suspend
[305233.890523] ieee80211 phy0: legacy class suspend
[305233.890531] usb 1-1.3: type suspend
[305233.890538] usb 2-1: type suspend
[305233.894959] usb 1-1: type suspend
[305233.894962] input input7: type suspend
[305233.894966] input input6: type suspend
[305233.894970] leds tpacpi::thinkvantage: legacy class suspend
[305233.894973] leds tpacpi::unknown_led3: legacy class suspend
[305233.894976] leds tpacpi::unknown_led2: legacy class suspend
[305233.894979] leds tpacpi::dock_status2: legacy class suspend
[305233.894982] leds tpacpi::dock_status1: legacy class suspend
[305233.894985] leds tpacpi::standby: legacy class suspend
[305233.894988] leds tpacpi::unknown_led: legacy class suspend
[305233.894990] leds tpacpi::dock_batt: legacy class suspend
[305233.894993] leds tpacpi::bay_active: legacy class suspend
[305233.894996] leds tpacpi::dock_active: legacy class suspend
[305233.894998] leds tpacpi:green:batt: legacy class suspend
[305233.895001] leds tpacpi:orange:batt: legacy class suspend
[305233.895004] leds tpacpi::power: legacy class suspend
[305233.895007] leds tpacpi::thinklight: legacy class suspend
[305233.895010] rfkill rfkill0: legacy class suspend
[305233.895013] thinkpad_hwmon thinkpad_hwmon: suspend
[305233.895017] thinkpad_acpi thinkpad_acpi: suspend
[305233.895022] i2c i2c-0: suspend
[305233.895027] platform regulatory.0: suspend
[305233.895039] serial8250 serial8250: suspend
[305233.895043] usb usb2: type suspend, may wakeup
[305233.895046] input input5: type suspend
[305233.895050] psmouse serio2: suspend
[305233.895075] usb usb1: type suspend, may wakeup
[305234.074542] input input4: type suspend
[305234.074562] input input3: type suspend
[305234.074572] psmouse serio1: suspend
[305234.074581] sd 0:0:0:0: suspend
[305234.074590] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[305234.117096] sd 0:0:0:0: [sda] Stopping disk
[305234.128877] atkbd serio0: suspend
[305234.129435] i8042 i8042: suspend
[305234.130053] scsi host5: suspend
[305234.130059] scsi host4: suspend
[305234.130063] scsi host3: suspend
[305234.130066] scsi host2: suspend
[305234.130069] scsi host1: suspend
[305234.130112] input input2: type suspend
[305234.130114] input input1: type suspend
[305234.130117] input input0: type suspend
[305234.130120] platform microcode: suspend
[305234.130122] pcspkr pcspkr: suspend
[305234.130146] system 00:0c: legacy suspend
[305234.130148] ACPI handle has no context!
[305234.130153] tpm_tis 00:0b: legacy suspend
[305234.321289] i8042 aux 00:0a: legacy suspend
[305234.321297] i8042 kbd 00:09: legacy suspend
[305234.321304] rtc_cmos 00:08: legacy suspend, may wakeup
[305234.321313] pnp 00:07: legacy suspend
[305234.321316] pnp 00:06: legacy suspend
[305234.321319] pnp 00:05: legacy suspend
[305234.321322] pnp 00:04: legacy suspend
[305234.321325] system 00:03: legacy suspend
[305234.321330] pnp 00:02: legacy suspend
[305234.321333] pnp 00:01: legacy suspend
[305234.321336] system 00:00: legacy suspend
[305234.321372] platform dock.2: suspend
[305234.321375] platform dock.1: suspend
[305234.321377] platform dock.0: suspend
[305234.321381] button LNXPWRBN:00: legacy suspend
[305234.321385] thermal LNXTHERM:01: legacy suspend
[305234.321388] acpi LNXTHERM:00: legacy suspend
[305234.321391] wmi PNP0C14:00: legacy suspend
[305234.321395] acpi PNP0C02:01: legacy suspend
[305234.321398] acpi device:32: legacy suspend
[305234.321401] acpi device:31: legacy suspend
[305234.321404] acpi device:2f: legacy suspend
[305234.321410] acpi device:2e: legacy suspend
[305234.321412] iwlagn 0000:02:00.0: suspend
[305234.321415] acpi device:2d: legacy suspend
[305234.321417] acpi device:2c: legacy suspend
[305234.321420] acpi device:2b: legacy suspend
[305234.321422] acpi device:2a: legacy suspend
[305234.321424] acpi device:29: legacy suspend
[305234.321426] acpi device:28: legacy suspend
[305234.321428] acpi device:27: legacy suspend
[305234.321429] acpi device:26: legacy suspend
[305234.321431] acpi device:25: legacy suspend
[305234.321433] acpi device:24: legacy suspend
[305234.321435] acpi device:23: legacy suspend
[305234.321437] acpi device:22: legacy suspend
[305234.321438] acpi device:21: legacy suspend
[305234.321441] acpi device:20: legacy suspend
[305234.321443] acpi device:1f: legacy suspend
[305234.321444] acpi device:1e: legacy suspend
[305234.321446] acpi device:1d: legacy suspend
[305234.321448] acpi device:1c: legacy suspend
[305234.321450] acpi device:1b: legacy suspend
[305234.321451] acpi device:1a: legacy suspend
[305234.321453] acpi device:19: legacy suspend
[305234.321455] acpi device:18: legacy suspend
[305234.321457] acpi device:17: legacy suspend
[305234.321459] acpi device:16: legacy suspend
[305234.321462] acpi device:15: legacy suspend
[305234.321464] acpi device:14: legacy suspend
[305234.321467] acpi device:13: legacy suspend
[305234.321469] acpi device:12: legacy suspend
[305234.321471] acpi device:11: legacy suspend
[305234.321474] acpi device:10: legacy suspend
[305234.321476] acpi device:0f: legacy suspend
[305234.321479] acpi device:0e: legacy suspend
[305234.321481] acpi device:0d: legacy suspend
[305234.321483] acpi device:0c: legacy suspend
[305234.321486] acpi device:0b: legacy suspend
[305234.321489] acpi LNXVIDEO:01: legacy suspend
[305234.321492] acpi device:0a: legacy suspend
[305234.321495] thinkpad_hotkey IBM0068:00: legacy suspend
[305234.321498] ac ACPI0003:00: legacy suspend
[305234.321502] intel ips 0000:00:1f.6: suspend
[305234.321505] battery PNP0C0A:00: legacy suspend
[305234.321508] power LNXPOWER:00: legacy suspend
[305234.321512] ec PNP0C09:00: legacy suspend
[305234.321514] acpi SMO1200:00: legacy suspend
[305234.321516] acpi LEN0018:00: legacy suspend
[305234.321517] acpi PNP0303:00: legacy suspend
[305234.321519] acpi PNP0B00:00: legacy suspend
[305234.321521] acpi PNP0C04:00: legacy suspend
[305234.321524] acpi PNP0800:00: legacy suspend
[305234.321527] acpi PNP0200:00: legacy suspend
[305234.321529] i801_smbus 0000:00:1f.3: suspend
[305234.321539] acpi PNP0103:00: legacy suspend
[305234.321541] acpi PNP0100:00: legacy suspend
[305234.321543] acpi PNP0000:00: legacy suspend
[305234.321545] acpi PNP0C02:00: legacy suspend
[305234.321548] acpi device:09: legacy suspend
[305234.321550] acpi device:08: legacy suspend
[305234.321552] acpi device:07: legacy suspend
[305234.321553] acpi device:06: legacy suspend
[305234.321555] acpi device:05: legacy suspend
[305234.321557] acpi device:04: legacy suspend
[305234.321559] acpi device:03: legacy suspend
[305234.321561] acpi device:02: legacy suspend
[305234.321563] acpi device:01: legacy suspend
[305234.321565] video LNXVIDEO:00: legacy suspend
[305234.321569] pci_root PNP0A08:00: legacy suspend
[305234.321571] acpi device:00: legacy suspend
[305234.321572] pci_root PNP0A03:00: legacy suspend
[305234.321574] button PNP0C0E:00: legacy suspend
[305234.321576] button PNP0C0D:00: legacy suspend
[305234.321578] acpi PNP0C01:00: legacy suspend
[305234.321581] pci_link PNP0C0F:07: legacy suspend
[305234.321584] pci_link PNP0C0F:06: legacy suspend
[305234.321587] pci_link PNP0C0F:05: legacy suspend
[305234.321589] pci 0000:00:1f.0: suspend
[305234.321591] pci_link PNP0C0F:04: legacy suspend
[305234.321594] pci 0000:00:1e.0: suspend
[305234.321596] pci_link PNP0C0F:03: legacy suspend
[305234.321598] ehci_hcd 0000:00:1d.0: suspend
[305234.321600] pci_link PNP0C0F:02: legacy suspend
[305234.321615] pci_link PNP0C0F:01: legacy suspend
[305234.321618] pci_link PNP0C0F:00: legacy suspend
[305234.321643] acpi LNXSYBUS:00: legacy suspend
[305234.321646] processor LNXCPU:07: legacy suspend
[305234.321668] processor LNXCPU:06: legacy suspend
[305234.321670] processor LNXCPU:05: legacy suspend
[305234.321673] processor LNXCPU:04: legacy suspend
[305234.321676] processor LNXCPU:03: legacy suspend
[305234.321678] processor LNXCPU:02: legacy suspend
[305234.321681] processor LNXCPU:01: legacy suspend
[305234.321683] processor LNXCPU:00: legacy suspend
[305234.321687] acpi LNXSYSTM:00: legacy suspend
[305234.321698] ehci_hcd 0000:00:1d.0: PCI INT D disabled
[305234.321773] pci 0000:00:1c.3: suspend
[305234.321776] pci 0000:00:1c.0: suspend
[305234.321779] HDA Intel 0000:00:1b.0: suspend
[305234.321811] ehci_hcd 0000:00:1a.0: suspend
[305234.321832] ehci_hcd 0000:00:1a.0: PCI INT D disabled
[305234.321838] e1000e 0000:00:19.0: suspend, may wakeup
[305234.321882] serial 0000:00:16.3: suspend
[305234.321917] pci 0000:00:16.0: suspend
[305234.321925] i915 0000:00:02.0: suspend
[305234.321940] agpgart-intel 0000:00:00.0: suspend
[305234.321954] ACPI handle has no context!
[305234.321961] pci 0000:ff:02.3: suspend
[305234.321965] pci 0000:ff:02.2: suspend
[305234.321968] pci 0000:ff:02.1: suspend
[305234.321971] pci 0000:ff:02.0: suspend
[305234.321975] pci 0000:ff:00.1: suspend
[305234.321978] pci 0000:ff:00.0: suspend
[305234.332252] pci 0000:00:1c.4: suspend
[305234.337261] i915 0000:00:02.0: power state changed by ACPI to D3
[305234.423466] HDA Intel 0000:00:1b.0: PCI INT B disabled
[305234.512628] scsi target0:0:0: suspend
[305234.512673] scsi host0: suspend
[305234.512684] ahci 0000:00:1f.2: suspend
[305234.517340] e1000e 0000:00:19.0: PME# enabled
[305234.517348] e1000e 0000:00:19.0: wake-up capability enabled by ACPI
[305234.566909] PM: suspend of devices complete after 677.721 msecs
[305234.566952] input input10: LATE type suspend
[305234.566955] i2c i2c-4: LATE suspend
[305234.566958] i2c i2c-3: LATE suspend
[305234.566960] i2c i2c-2: LATE suspend
[305234.566963] i2c i2c-1: LATE suspend
[305234.566969] input input9: LATE type suspend
[305234.566972] input input8: LATE type suspend
[305234.566975] usb 1-1.6: LATE type suspend
[305234.566977] usb 1-1.3: LATE type suspend
[305234.566980] usb 2-1: LATE type suspend
[305234.566983] usb 1-1: LATE type suspend
[305234.566986] input input7: LATE type suspend
[305234.566988] input input6: LATE type suspend
[305234.566991] thinkpad_hwmon thinkpad_hwmon: LATE suspend
[305234.566994] thinkpad_acpi thinkpad_acpi: LATE suspend
[305234.566997] i2c i2c-0: LATE suspend
[305234.567000] platform regulatory.0: LATE suspend
[305234.567003] usb usb2: LATE type suspend, may wakeup
[305234.567006] serial8250 serial8250: LATE suspend
[305234.567009] usb usb1: LATE type suspend, may wakeup
[305234.567011] input input5: LATE type suspend
[305234.567014] psmouse serio2: LATE suspend
[305234.567016] input input4: LATE type suspend
[305234.567022] sd 0:0:0:0: LATE suspend
[305234.567024] scsi target0:0:0: LATE suspend
[305234.567026] input input3: LATE type suspend
[305234.567027] psmouse serio1: LATE suspend
[305234.567029] atkbd serio0: LATE suspend
[305234.567030] i8042 i8042: LATE suspend
[305234.567032] scsi host5: LATE suspend
[305234.567033] scsi host4: LATE suspend
[305234.567035] scsi host3: LATE suspend
[305234.567036] scsi host2: LATE suspend
[305234.567037] scsi host1: LATE suspend
[305234.567039] scsi host0: LATE suspend
[305234.567049] input input2: LATE type suspend
[305234.567051] input input1: LATE type suspend
[305234.567052] input input0: LATE type suspend
[305234.567054] platform microcode: LATE suspend
[305234.567056] pcspkr pcspkr: LATE suspend
[305234.567059] iwlagn 0000:02:00.0: LATE suspend
[305234.567061] intel ips 0000:00:1f.6: LATE suspend
[305234.567093] i801_smbus 0000:00:1f.3: LATE suspend
[305234.567095] ahci 0000:00:1f.2: LATE suspend
[305234.567097] pci 0000:00:1f.0: LATE suspend
[305234.567126] pci 0000:00:1e.0: LATE suspend
[305234.567153] ehci_hcd 0000:00:1d.0: LATE suspend
[305234.579842] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D3
[305234.579849] pci 0000:00:1c.4: LATE suspend
[305234.579904] pci 0000:00:1c.3: LATE suspend
[305234.579955] pci 0000:00:1c.0: LATE suspend
[305234.580002] HDA Intel 0000:00:1b.0: LATE suspend
[305234.580004] ehci_hcd 0000:00:1a.0: LATE suspend
[305234.597751] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D3
[305234.597758] e1000e 0000:00:19.0: LATE suspend, may wakeup
[305234.597761] serial 0000:00:16.3: LATE suspend
[305234.597764] pci 0000:00:16.0: LATE suspend
[305234.597804] i915 0000:00:02.0: LATE suspend
[305234.597806] agpgart-intel 0000:00:00.0: LATE suspend
[305234.597821] pci 0000:ff:02.3: LATE suspend
[305234.597831] pci 0000:ff:02.2: LATE suspend
[305234.597844] pci 0000:ff:02.1: LATE suspend
[305234.597850] pci 0000:ff:02.0: LATE suspend
[305234.597857] pci 0000:ff:00.1: LATE suspend
[305234.597863] pci 0000:ff:00.0: LATE suspend
[305234.597870] platform dock.2: LATE suspend
[305234.597872] platform dock.1: LATE suspend
[305234.597874] platform dock.0: LATE suspend
[305234.597878] PM: late suspend of devices complete after 31.022 msecs
[305234.598017] ACPI: Preparing to enter system sleep state S3
[305234.645718] PM: Saving platform NVS memory
[305234.776175] Disabling non-boot CPUs ...
[305234.789847] CPU 1 is now offline
[305234.809458] CPU 2 is now offline
[305234.822375] CPU 3 is now offline
[305234.822377] SMP alternatives: switching to UP code
[305234.826101] Extended CMOS year: 2000
[305234.826397] Back to C!
[305234.826401] PM: Restoring platform NVS memory
[305234.963728] Extended CMOS year: 2000
[305234.963763] Enabling non-boot CPUs ...
[305234.963911] SMP alternatives: switching to SMP code
[305234.966969] Booting Node 0 Processor 1 APIC 0x1
[305235.073871] CPU1 is up
[305235.073960] Booting Node 0 Processor 2 APIC 0x4
[305235.180677] CPU2 is up
[305235.180774] Booting Node 0 Processor 3 APIC 0x5
[305235.287637] CPU3 is up
[305235.288591] ACPI: Waking up from system sleep state S3
[305235.365245] platform dock.0: EARLY resume
[305235.365250] platform dock.1: EARLY resume
[305235.365254] platform dock.2: EARLY resume
[305235.365257] pci 0000:ff:00.0: EARLY resume
[305235.365276] pci 0000:ff:00.1: EARLY resume
[305235.365292] pci 0000:ff:02.0: EARLY resume
[305235.365307] pci 0000:ff:02.1: EARLY resume
[305235.365314] pci 0000:ff:02.2: EARLY resume
[305235.365322] pci 0000:ff:02.3: EARLY resume
[305235.365330] agpgart-intel 0000:00:00.0: EARLY resume
[305235.365342] i915 0000:00:02.0: EARLY resume
[305235.365354] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[305235.365365] pci 0000:00:16.0: EARLY resume
[305235.365406] serial 0000:00:16.3: EARLY resume
[305235.365446] e1000e 0000:00:19.0: EARLY resume
[305235.365491] ehci_hcd 0000:00:1a.0: EARLY resume
[305235.365507] ehci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x400, writing 0x40b)
[305235.365526] ehci_hcd 0000:00:1a.0: restoring config space at offset 0x4 (was 0x0, writing 0xf2728000)
[305235.365534] ehci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900102)
[305235.376182] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
[305235.378199] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
[305235.378207] HDA Intel 0000:00:1b.0: EARLY resume
[305235.378270] pci 0000:00:1c.0: EARLY resume
[305235.378329] pci 0000:00:1c.3: EARLY resume
[305235.378381] pci 0000:00:1c.4: EARLY resume
[305235.378400] pci 0000:00:1c.4: restoring config space at offset 0xf (was 0x100, writing 0x4010b)
[305235.378412] pci 0000:00:1c.4: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[305235.378417] pci 0000:00:1c.4: restoring config space at offset 0x8 (was 0x0, writing 0xf240f240)
[305235.378423] pci 0000:00:1c.4: restoring config space at offset 0x7 (was 0x0, writing 0xf0)
[305235.378432] pci 0000:00:1c.4: restoring config space at offset 0x3 (was 0x810000, writing 0x810010)
[305235.378438] pci 0000:00:1c.4: restoring config space at offset 0x1 (was 0x100000, writing 0x100107)
[305235.378456] ehci_hcd 0000:00:1d.0: EARLY resume
[305235.378472] ehci_hcd 0000:00:1d.0: restoring config space at offset 0xf (was 0x400, writing 0x40b)
[305235.378490] ehci_hcd 0000:00:1d.0: restoring config space at offset 0x4 (was 0x0, writing 0xf2728400)
[305235.378499] ehci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900102)
[305235.380192] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
[305235.382191] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
[305235.382199] pci 0000:00:1e.0: EARLY resume
[305235.382244] pci 0000:00:1f.0: EARLY resume
[305235.382288] ahci 0000:00:1f.2: EARLY resume
[305235.382323] ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00007, writing 0x2b00407)
[305235.382354] i801_smbus 0000:00:1f.3: EARLY resume
[305235.382382] intel ips 0000:00:1f.6: EARLY resume
[305235.382396] intel ips 0000:00:1f.6: restoring config space at offset 0xf (was 0x400, writing 0x40b)
[305235.382419] intel ips 0000:00:1f.6: restoring config space at offset 0x1 (was 0x100000, writing 0x100002)
[305235.382432] iwlagn 0000:02:00.0: EARLY resume
[305235.382502] iwlagn 0000:02:00.0: restoring config space at offset 0x1 (was 0x100106, writing 0x100506)
[305235.382566] pcspkr pcspkr: EARLY resume
[305235.382568] platform microcode: EARLY resume
[305235.382570] input input0: EARLY type resume
[305235.382572] input input1: EARLY type resume
[305235.382574] input input2: EARLY type resume
[305235.382614] scsi host0: EARLY resume
[305235.382616] scsi host1: EARLY resume
[305235.382617] scsi host2: EARLY resume
[305235.382619] scsi host3: EARLY resume
[305235.382620] scsi host4: EARLY resume
[305235.382622] scsi host5: EARLY resume
[305235.382624] i8042 i8042: EARLY resume
[305235.382626] atkbd serio0: EARLY resume
[305235.382628] psmouse serio1: EARLY resume
[305235.382630] input input3: EARLY type resume
[305235.382632] scsi target0:0:0: EARLY resume
[305235.382634] sd 0:0:0:0: EARLY resume
[305235.382637] input input4: EARLY type resume
[305235.382639] psmouse serio2: EARLY resume
[305235.382641] input input5: EARLY type resume
[305235.382643] usb usb1: EARLY type resume
[305235.382645] serial8250 serial8250: EARLY resume
[305235.382648] usb usb2: EARLY type resume
[305235.382651] platform regulatory.0: EARLY resume
[305235.382654] i2c i2c-0: EARLY resume
[305235.382656] thinkpad_acpi thinkpad_acpi: EARLY resume
[305235.382658] thinkpad_hwmon thinkpad_hwmon: EARLY resume
[305235.382661] input input6: EARLY type resume
[305235.382663] input input7: EARLY type resume
[305235.382666] usb 1-1: EARLY type resume
[305235.382668] usb 2-1: EARLY type resume
[305235.382670] usb 1-1.3: EARLY type resume
[305235.382673] usb 1-1.6: EARLY type resume
[305235.382675] input input8: EARLY type resume
[305235.382677] input input9: EARLY type resume
[305235.382689] i2c i2c-1: EARLY resume
[305235.382690] i2c i2c-2: EARLY resume
[305235.382692] i2c i2c-3: EARLY resume
[305235.382694] i2c i2c-4: EARLY resume
[305235.382696] input input10: EARLY type resume
[305235.382699] PM: early resume of devices complete after 17.501 msecs
[305235.382827] pci 0000:ff:00.0: resume
[305235.382832] pci 0000:ff:00.1: resume
[305235.382835] pci 0000:ff:02.0: resume
[305235.382837] pci 0000:ff:02.1: resume
[305235.382839] pci 0000:ff:02.2: resume
[305235.382841] pci 0000:ff:02.3: resume
[305235.382846] agpgart-intel 0000:00:00.0: resume
[305235.382849] i915 0000:00:02.0: resume
[305235.382851] pci 0000:00:16.0: resume
[305235.382853] serial 0000:00:16.3: resume
[305235.382855] e1000e 0000:00:19.0: resume
[305235.382864] ehci_hcd 0000:00:1a.0: resume
[305235.382874] i915 0000:00:02.0: power state changed by ACPI to D0
[305235.382876] e1000e 0000:00:19.0: wake-up capability disabled by ACPI
[305235.382882] e1000e 0000:00:19.0: PME# disabled
[305235.382885] HDA Intel 0000:00:1b.0: resume
[305235.382891] acpi LNXSYSTM:00: legacy resume
[305235.382893] pci 0000:00:1c.0: resume
[305235.382895] processor LNXCPU:00: legacy resume
[305235.382905] processor LNXCPU:01: legacy resume
[305235.382910] pci 0000:00:1c.3: resume
[305235.382912] processor LNXCPU:02: legacy resume
[305235.382915] pci 0000:00:1c.4: resume
[305235.382920] ehci_hcd 0000:00:1d.0: resume
[305235.382929] pci 0000:00:1e.0: resume
[305235.382931] processor LNXCPU:03: legacy resume
[305235.382934] pci 0000:00:1f.0: resume
[305235.382936] processor LNXCPU:04: legacy resume
[305235.382938] ahci 0000:00:1f.2: resume
[305235.382940] processor LNXCPU:05: legacy resume
[305235.382942] processor LNXCPU:06: legacy resume
[305235.382945] processor LNXCPU:07: legacy resume
[305235.382947] i801_smbus 0000:00:1f.3: resume
[305235.382949] acpi LNXSYBUS:00: legacy resume
[305235.382952] pci_link PNP0C0F:00: legacy resume
[305235.382958] pci_link PNP0C0F:01: legacy resume
[305235.382960] pci_link PNP0C0F:02: legacy resume
[305235.382962] pci_link PNP0C0F:03: legacy resume
[305235.382964] pci_link PNP0C0F:04: legacy resume
[305235.382966] pci_link PNP0C0F:05: legacy resume
[305235.382968] pci_link PNP0C0F:06: legacy resume
[305235.382970] pci_link PNP0C0F:07: legacy resume
[305235.382972] acpi PNP0C01:00: legacy resume
[305235.382974] button PNP0C0D:00: legacy resume
[305235.382999] intel ips 0000:00:1f.6: resume
[305235.383032] e1000e 0000:00:19.0: irq 41 for MSI/MSI-X
[305235.383086] pci 0000:00:1c.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[305235.383093] pci 0000:00:1c.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
[305235.383096] pci 0000:00:1c.0: setting latency timer to 64
[305235.383099] pci 0000:00:1c.3: setting latency timer to 64
[305235.383117] pci 0000:00:1c.4: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[305235.383122] pci 0000:00:1c.4: setting latency timer to 64
[305235.383131] iwlagn 0000:02:00.0: resume
[305235.383144] pci 0000:00:1e.0: setting latency timer to 64
[305235.383203] HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[305235.383210] HDA Intel 0000:00:1b.0: setting latency timer to 64
[305235.383275] HDA Intel 0000:00:1b.0: irq 42 for MSI/MSI-X
[305235.383335] ahci 0000:00:1f.2: setting latency timer to 64
[305235.383428] scsi host0: resume
[305235.383435] scsi target0:0:0: resume
[305235.383470] scsi host3: resume
[305235.383479] scsi host4: resume
[305235.383486] i915 0000:00:02.0: power state changed by ACPI to D0
[305235.383488] scsi host5: resume
[305235.383490] i915 0000:00:02.0: setting latency timer to 64
[305235.383713] scsi host2: resume
[305235.383719] scsi host1: resume
[305235.383768] sd 0:0:0:0: resume
[305235.383772] sd 0:0:0:0: [sda] Starting disk
[305235.383876] button PNP0C0E:00: legacy resume
[305235.383879] pci_root PNP0A03:00: legacy resume
[305235.383881] acpi device:00: legacy resume
[305235.383883] pci_root PNP0A08:00: legacy resume
[305235.383886] video LNXVIDEO:00: legacy resume
[305235.383888] acpi device:01: legacy resume
[305235.383890] acpi device:02: legacy resume
[305235.383892] acpi device:03: legacy resume
[305235.383894] acpi device:04: legacy resume
[305235.383896] acpi device:05: legacy resume
[305235.383898] acpi device:06: legacy resume
[305235.383900] acpi device:07: legacy resume
[305235.383903] acpi device:08: legacy resume
[305235.383905] acpi device:09: legacy resume
[305235.383907] acpi PNP0C02:00: legacy resume
[305235.383909] acpi PNP0000:00: legacy resume
[305235.383911] acpi PNP0100:00: legacy resume
[305235.383913] acpi PNP0103:00: legacy resume
[305235.383915] acpi PNP0200:00: legacy resume
[305235.383918] acpi PNP0800:00: legacy resume
[305235.383920] acpi PNP0C04:00: legacy resume
[305235.383922] acpi PNP0B00:00: legacy resume
[305235.383924] acpi PNP0303:00: legacy resume
[305235.383926] acpi LEN0018:00: legacy resume
[305235.383928] acpi SMO1200:00: legacy resume
[305235.383931] ec PNP0C09:00: legacy resume
[305235.383933] power LNXPOWER:00: legacy resume
[305235.384087] battery PNP0C0A:00: legacy resume
[305235.399985] ac ACPI0003:00: legacy resume
[305235.400127] thinkpad_hotkey IBM0068:00: legacy resume
[305235.400129] acpi device:0a: legacy resume
[305235.400131] acpi LNXVIDEO:01: legacy resume
[305235.400133] acpi device:0b: legacy resume
[305235.400135] acpi device:0c: legacy resume
[305235.400137] acpi device:0d: legacy resume
[305235.400138] acpi device:0e: legacy resume
[305235.400140] acpi device:0f: legacy resume
[305235.400142] acpi device:10: legacy resume
[305235.400144] acpi device:11: legacy resume
[305235.400146] acpi device:12: legacy resume
[305235.400147] acpi device:13: legacy resume
[305235.400149] acpi device:14: legacy resume
[305235.400151] acpi device:15: legacy resume
[305235.400153] acpi device:16: legacy resume
[305235.400155] acpi device:17: legacy resume
[305235.400156] acpi device:18: legacy resume
[305235.400158] acpi device:19: legacy resume
[305235.400160] acpi device:1a: legacy resume
[305235.400162] acpi device:1b: legacy resume
[305235.400164] acpi device:1c: legacy resume
[305235.400165] acpi device:1d: legacy resume
[305235.400167] acpi device:1e: legacy resume
[305235.400169] acpi device:1f: legacy resume
[305235.400171] acpi device:20: legacy resume
[305235.400172] acpi device:21: legacy resume
[305235.400174] acpi device:22: legacy resume
[305235.400176] acpi device:23: legacy resume
[305235.400178] acpi device:24: legacy resume
[305235.400179] acpi device:25: legacy resume
[305235.400181] acpi device:26: legacy resume
[305235.400183] acpi device:27: legacy resume
[305235.400185] acpi device:28: legacy resume
[305235.400186] acpi device:29: legacy resume
[305235.400188] acpi device:2a: legacy resume
[305235.400190] acpi device:2b: legacy resume
[305235.400192] acpi device:2c: legacy resume
[305235.400194] acpi device:2d: legacy resume
[305235.400195] acpi device:2e: legacy resume
[305235.400197] acpi device:2f: legacy resume
[305235.400199] acpi device:31: legacy resume
[305235.400201] acpi device:32: legacy resume
[305235.400203] acpi PNP0C02:01: legacy resume
[305235.400205] wmi PNP0C14:00: legacy resume
[305235.400207] acpi LNXTHERM:00: legacy resume
[305235.400209] thermal LNXTHERM:01: legacy resume
[305235.400687] button LNXPWRBN:00: legacy resume
[305235.400690] platform dock.0: resume
[305235.400692] platform dock.1: resume
[305235.400693] platform dock.2: resume
[305235.400699] system 00:00: legacy resume
[305235.400702] pnp 00:01: legacy resume
[305235.400704] pnp 00:02: legacy resume
[305235.400706] system 00:03: legacy resume
[305235.400709] pnp 00:04: legacy resume
[305235.400710] pnp 00:05: legacy resume
[305235.400712] pnp 00:06: legacy resume
[305235.400714] pnp 00:07: legacy resume
[305235.400716] rtc_cmos 00:08: legacy resume
[305235.400719] i8042 kbd 00:09: legacy resume
[305235.400722] i8042 aux 00:0a: legacy resume
[305235.400724] tpm_tis 00:0b: legacy resume
[305235.400891] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
[305235.401046] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
[305235.401053] ehci_hcd 0000:00:1a.0: PCI INT D -> GSI 23 (level, low) -> IRQ 23
[305235.401060] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[305235.401110] usb usb1: type resume
[305235.401230] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
[305235.401383] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
[305235.401390] ehci_hcd 0000:00:1d.0: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[305235.401397] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[305235.401423] usb usb2: type resume
[305235.425070] system 00:0c: legacy resume
[305235.425087] pcspkr pcspkr: resume
[305235.425088] platform microcode: resume
[305235.425091] input input0: type resume
[305235.425093] input input1: type resume
[305235.425102] input input2: type resume
[305235.425187] i8042 i8042: resume
[305235.426018] atkbd serio0: resume
[305235.426023] psmouse serio1: resume
[305235.426032] input input3: type resume
[305235.442034] usb 1-1: type resume
[305235.442039] usb 2-1: type resume
[305235.542933] usb 1-1.6: type resume
[305235.542962] usb 1-1.3: type resume
[305235.615996] usb 1-1.6: reset high speed USB device using ehci_hcd and address 5
[305235.687604] ata2: SATA link down (SStatus 0 SControl 300)
[305235.691596] ata5: SATA link down (SStatus 0 SControl 300)
[305235.693609] ata6: SATA link down (SStatus 0 SControl 300)
[305235.777612] usb 1-1.3: reset full speed USB device using ehci_hcd and address 3
[305237.931530] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[305237.933957] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[305237.933963] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[305237.933967] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[305237.938774] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[305237.938780] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[305237.938784] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[305237.940896] ata1.00: configured for UDMA/100
[305237.956097] ata1.00: configured for UDMA/100
[305237.956103] ata1: EH complete
[305237.982789] input input4: type resume
[305237.982802] psmouse serio2: resume
[305237.982810] input input5: type resume
[305237.982837] serial8250 serial8250: resume
[305237.982856] platform regulatory.0: resume
[305237.982866] i2c i2c-0: resume
[305237.982871] thinkpad_acpi thinkpad_acpi: resume
[305237.984932] thinkpad_hwmon thinkpad_hwmon: resume
[305237.984936] rfkill rfkill0: legacy class resume
[305237.984939] leds tpacpi::thinklight: legacy class resume
[305237.984941] leds tpacpi::power: legacy class resume
[305237.984944] leds tpacpi:orange:batt: legacy class resume
[305237.984946] leds tpacpi:green:batt: legacy class resume
[305237.984948] leds tpacpi::dock_active: legacy class resume
[305237.984950] leds tpacpi::bay_active: legacy class resume
[305237.984953] leds tpacpi::dock_batt: legacy class resume
[305237.984955] leds tpacpi::unknown_led: legacy class resume
[305237.984957] leds tpacpi::standby: legacy class resume
[305237.984959] leds tpacpi::dock_status1: legacy class resume
[305237.984961] leds tpacpi::dock_status2: legacy class resume
[305237.984963] leds tpacpi::unknown_led2: legacy class resume
[305237.984965] leds tpacpi::unknown_led3: legacy class resume
[305237.984967] leds tpacpi::thinkvantage: legacy class resume
[305237.984970] input input6: type resume
[305237.984981] input input7: type resume
[305237.984988] ieee80211 phy0: legacy class resume
[305238.075413] rfkill rfkill1: legacy class resume
[305238.075466] input input8: type resume
[305238.075474] input input9: type resume
[305238.075503] drm controlD64: legacy class resume
[305238.075505] drm card0: legacy class resume
[305238.075507] i2c i2c-1: resume
[305238.075509] drm card0-LVDS-1: legacy class resume
[305238.075511] i2c i2c-2: resume
[305238.075513] drm card0-VGA-1: legacy class resume
[305238.075515] i2c i2c-3: resume
[305238.075517] drm card0-HDMI Type A-1: legacy class resume
[305238.075519] drm card0-DisplayPort-1: legacy class resume
[305238.075520] i2c i2c-4: resume
[305238.075523] backlight acpi_video0: legacy class resume
[305238.075526] input input10: type resume
[305238.075533] PM: resume of devices complete after 2697.685 msecs
[305238.075548] usb 1-1.6: completing type resume
[305238.075551] usb 1-1.3: completing type resume
[305238.075553] usb 2-1: completing type resume
[305238.075556] usb 1-1: completing type resume
[305238.075561] thinkpad_hwmon thinkpad_hwmon: completing resume
[305238.075562] thinkpad_acpi thinkpad_acpi: completing resume
[305238.075565] platform regulatory.0: completing resume
[305238.075569] usb usb2: completing type resume
[305238.075571] serial8250 serial8250: completing resume
[305238.075573] usb usb1: completing type resume
[305238.075580] i8042 i8042: completing resume
[305238.075661] platform microcode: completing resume
[305238.075664] pcspkr pcspkr: completing resume
[305238.075680] iwlagn 0000:02:00.0: completing resume
[305238.075682] intel ips 0000:00:1f.6: completing resume
[305238.075684] i801_smbus 0000:00:1f.3: completing resume
[305238.075686] ahci 0000:00:1f.2: completing resume
[305238.075689] pci 0000:00:1f.0: completing resume
[305238.075690] pci 0000:00:1e.0: completing resume
[305238.075692] ehci_hcd 0000:00:1d.0: completing resume
[305238.075694] pci 0000:00:1c.4: completing resume
[305238.075696] pci 0000:00:1c.3: completing resume
[305238.075698] pci 0000:00:1c.0: completing resume
[305238.075700] HDA Intel 0000:00:1b.0: completing resume
[305238.075702] ehci_hcd 0000:00:1a.0: completing resume
[305238.075704] e1000e 0000:00:19.0: completing resume
[305238.075706] serial 0000:00:16.3: completing resume
[305238.075708] pci 0000:00:16.0: completing resume
[305238.075710] i915 0000:00:02.0: completing resume
[305238.075713] agpgart-intel 0000:00:00.0: completing resume
[305238.075715] pci 0000:ff:02.3: completing resume
[305238.075717] pci 0000:ff:02.2: completing resume
[305238.075719] pci 0000:ff:02.1: completing resume
[305238.075720] pci 0000:ff:02.0: completing resume
[305238.075722] pci 0000:ff:00.1: completing resume
[305238.075724] pci 0000:ff:00.0: completing resume
[305238.075726] platform dock.2: completing resume
[305238.075728] platform dock.1: completing resume
[305238.075730] platform dock.0: completing resume
[305238.076254] PM: Finishing wakeup.
[305238.076255] Restarting tasks ... done.
[305238.084230] video LNXVIDEO:00: Restoring backlight state
[305238.646351] usb 1-1.4: new full speed USB device using ehci_hcd and address 49
[305238.735708] PM: Adding info for usb:1-1.4
[305238.735988] PM: Adding info for usb:1-1.4:1.0
[305238.736134] PM: Adding info for No Bus:hci0
[305238.736206] PM: Adding info for No Bus:rfkill8
[305238.736268] PM: Adding info for No Bus:ep_81
[305238.736294] PM: Adding info for No Bus:ep_82
[305238.736318] PM: Adding info for No Bus:ep_02
[305238.736347] PM: Adding info for usb:1-1.4:1.1
[305238.736402] PM: Adding info for No Bus:ep_83
[305238.736428] PM: Adding info for No Bus:ep_03
[305238.736457] PM: Adding info for usb:1-1.4:1.2
[305238.736548] PM: Adding info for No Bus:ep_84
[305238.736572] PM: Adding info for No Bus:ep_04
[305238.736601] PM: Adding info for usb:1-1.4:1.3
[305238.736685] PM: Adding info for No Bus:ep_00
[305238.832838] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305238.834906] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 3 at 0)
[305239.218118] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305239.218141] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 7 at 0)
[305239.294027] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305239.294057] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 9 at 0)
[305239.369859] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305239.369890] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 12 at 0)
[305239.444759] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305239.444806] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 14 at 0)
[305239.520584] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305239.520615] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 16 at 0)
[305239.595476] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305239.595499] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 18 at 0)
[305239.671291] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305239.671322] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 20 at 0)
[305239.747168] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305239.747199] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 23 at 0)
[305239.823014] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305239.823038] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 26 at 0)
[305239.898927] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305239.898958] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 29 at 0)
[305239.974739] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305239.974754] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 31 at 0)
[305240.049635] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305240.049670] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 33 at 0)
[305240.147436] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305240.147505] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 34 at 0)
[305240.244262] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305240.244330] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 36 at 0)
[305240.340054] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305240.340081] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 170 at 0)
[305240.435942] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305240.435983] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 390 at 0)
[305240.532700] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305240.532727] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 748 at 0)
[305240.628595] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305240.628632] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 1207 at 0)
[305240.723351] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305240.723382] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 1542 at 0)
[305240.819177] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305240.819207] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 1954 at 0)
[305240.940990] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305240.941023] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2296 at 0)
[305241.066761] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305241.066790] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2633 at 0)
[305241.191567] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305241.191603] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2635 at 0)
[305241.317321] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305241.317353] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2637 at 0)
[305241.443072] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305241.443146] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2639 at 0)
[305241.568837] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305241.568865] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2641 at 0)
[305241.694635] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305241.694655] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2643 at 0)
[305241.818385] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305241.818431] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2645 at 0)
[305241.894265] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305241.894292] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2735 at 0)
[305241.970064] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305241.970078] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2737 at 0)
[305242.047985] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305242.048012] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2739 at 0)
[305242.124827] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305242.124858] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2741 at 0)
[305242.228669] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305242.228714] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2742 at 0)
[305242.354441] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305242.354469] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2744 at 0)
[305242.479223] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305242.479273] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2746 at 0)
[305242.604963] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305242.604998] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2748 at 0)
[305242.729744] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305242.729787] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2750 at 0)
[305242.871505] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305242.871548] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2752 at 0)
[305242.997228] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305242.997302] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2754 at 0)
[305243.123025] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305243.123056] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2756 at 0)
[305243.262773] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305243.262815] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2758 at 0)
[305243.398539] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305243.398574] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2760 at 0)
[305243.473378] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305243.473402] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2763 at 0)
[305243.548244] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305243.548278] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2766 at 0)
[305243.624090] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305243.624120] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2770 at 0)
[305243.699969] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305243.700001] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2774 at 0)
[305243.775824] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305243.775854] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2776 at 0)
[305243.851661] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305243.851690] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2779 at 0)
[305243.927544] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305243.927579] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2781 at 0)
[305244.002381] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305244.002412] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2784 at 0)
[305244.077263] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305244.077280] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2785 at 0)
[305244.213997] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305244.214023] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2786 at 0)
[305244.357742] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305244.357773] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2788 at 0)
[305244.499529] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305244.499551] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2790 at 0)
[305244.648209] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305244.648240] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2792 at 0)
[305244.795942] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305244.795979] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2794 at 0)
[305244.890766] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305244.890787] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2797 at 0)
[305244.965668] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305244.965698] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2799 at 0)
[305245.067469] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305245.067504] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2802 at 0)
[305245.163296] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305245.163331] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2819 at 0)
[305245.259119] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305245.259152] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2852 at 0)
[305245.355922] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305245.355946] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2892 at 0)
[305245.431809] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305245.431842] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2895 at 0)
[305245.506664] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305245.506694] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2897 at 0)
[305245.581524] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305245.581554] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2899 at 0)
[305245.656349] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305245.656387] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2902 at 0)
[305245.731248] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305245.731275] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2904 at 0)
[305245.807131] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305245.807164] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2906 at 0)
[305245.882973] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305245.883001] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2908 at 0)
[305245.957849] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305245.957885] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2910 at 0)
[305246.032706] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305246.032739] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2912 at 0)
[305246.107550] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305246.107578] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2914 at 0)
[305246.182414] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305246.182462] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2917 at 0)
[305246.257265] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305246.257338] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2920 at 0)
[305246.333136] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305246.333179] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2923 at 0)
[305246.408019] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305246.408084] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2926 at 0)
[305246.482880] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305246.482944] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2929 at 0)
[305246.557745] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305246.557819] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2932 at 0)
[305246.633612] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305246.633689] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2935 at 0)
[305246.709478] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305246.709507] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2939 at 0)
[305246.784333] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305246.784367] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2941 at 0)
[305246.878156] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305246.878187] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2943 at 0)
[305246.954028] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305246.954080] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2945 at 0)
[305247.029888] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305247.029922] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2948 at 0)
[305247.104739] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305247.104769] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2950 at 0)
[305247.179578] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305247.179620] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2953 at 0)
[305247.255461] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305247.255492] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2956 at 0)
[305247.330329] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305247.330360] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2958 at 0)
[305247.455048] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305251.733289] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305251.733320] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2960 at 0)
[305251.850075] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305251.850110] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 2972 at 0)
[305251.940891] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305251.940923] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 3048 at 0)
[305252.015775] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305252.015806] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 3050 at 0)
[305252.091603] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305252.091633] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 3053 at 0)
[305252.168487] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305252.168515] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 3055 at 0)
[305252.244344] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305252.244381] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 3057 at 0)
[305252.320248] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305252.320323] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 3060 at 0)
[305252.396041] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305252.396099] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 3063 at 0)
[305252.471926] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305252.471961] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 3066 at 0)
[305252.546798] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305252.546830] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 3068 at 0)
[305252.621656] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305252.621691] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 3070 at 0)
[305252.696467] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305252.696501] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 3072 at 0)
[305252.772342] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305258.408996] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305258.409016] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 3075 at 0)
[305318.289476] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305318.289503] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 3077 at 0)
[305318.364358] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
[305318.364392] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -5 (awaiting 3079 at 0)

[-- Attachment #2: Type: application/pgp-signature, Size: 198 bytes --]

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

end of thread, other threads:[~2010-09-28 11:58 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-10  5:36 2.6.36-rc3 suspend issue (was: 2.6.35-rc4 / X201 issues) Jeff Chua
2010-09-10  7:48 ` Peter Zijlstra
2010-09-10 11:53   ` Jeff Chua
2010-09-10 12:05     ` Peter Zijlstra
2010-09-10 17:19       ` Jeff Chua
2010-09-10 20:32         ` [PATCH] x86, tsc: Fix a preemption leak in restore_sched_clock_state() Peter Zijlstra
2010-09-10 21:01           ` Suresh Siddha
2010-09-11  0:59             ` Jeff Chua
2010-09-11  7:49           ` [tip:sched/urgent] " tip-bot for Peter Zijlstra
2010-09-13  7:42             ` Nico Schottelius
2010-09-13  8:46               ` Ingo Molnar
2010-09-13 22:56                 ` Jeff Chua
2010-09-15  8:03                   ` Nico Schottelius
2010-09-28 11:59                     ` 2.6.36-rc3-00464-g84e1d83 resume issue (was: [tip:sched/urgent] x86, tsc: Fix a preemption leak in restore_sched_clock_state()) Nico Schottelius

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.