Re: halt does not shut the system down

2007-10-16 Thread John Sigler
John Sigler wrote: Alexey Starikovskiy wrote: Could you please open bug at bugzilla.kernel.org and put all these files there? http://bugzilla.kernel.org/show_bug.cgi?id=9148 Writing 15361 (i.e. 0x3C01) to ACPI_REGISTER_PM1A_CONTROL appears to hang my system in acpi_os_write_port(). What

Re: halt does not shut the system down

2007-10-16 Thread linux-os (Dick Johnson)
On Tue, 16 Oct 2007, John Sigler wrote: John Sigler wrote: Alexey Starikovskiy wrote: Could you please open bug at bugzilla.kernel.org and put all these files there? http://bugzilla.kernel.org/show_bug.cgi?id=9148 Writing 15361 (i.e. 0x3C01) to ACPI_REGISTER_PM1A_CONTROL appears to

Brightness buttons broken on Toshiba Satellite Proc A100 in kernel 2.6.23 (Fedora8)

2007-10-16 Thread Danny Baumann
Hi, after upgrading to Fedora 8 which brought kernel 2.6.23 with it I can no longer use the brightness buttons (Fn+F6/F7) on my above mentioned laptop. Pressing them generates F6 and F7 key events instead of ACPI events. This used to work fine in Fedora 7's 2.6.22.9 kernel. Is there anything I

Re: Brightness buttons broken on Toshiba Satellite Proc A100 in kernel 2.6.23 (Fedora8)

2007-10-16 Thread Chuck Ebbert
On 10/16/2007 08:49 AM, Danny Baumann wrote: Hi, after upgrading to Fedora 8 which brought kernel 2.6.23 with it I can no longer use the brightness buttons (Fn+F6/F7) on my above mentioned laptop. Pressing them generates F6 and F7 key events instead of ACPI events. This used to work fine

Re: [PATCH 1/1] Recent Lenovo ThinkPads define a dummy grahpics device, find it and ignore it

2007-10-16 Thread Thomas Renninger
On Mon, 2007-10-15 at 17:48 +0100, Matthew Garrett wrote: Why not just call acpi_get_pyhsical_device() on the appropriate handle and look at the struct device you get back? Remember to put_device() it once you're done. Yep, works great. I should have asked earlier for such a thing... Len

Re: [PATCH 1/1] Recent Lenovo ThinkPads define a dummy grahpics device, find it and ignore it

2007-10-16 Thread Thomas Renninger
On Tue, 2007-10-16 at 16:39 +0200, Thomas Renninger wrote: On Mon, 2007-10-15 at 17:48 +0100, Matthew Garrett wrote: Why not just call acpi_get_pyhsical_device() on the appropriate handle and look at the struct device you get back? Remember to put_device() it once you're done. First read,

Re: [PATCH 1/1] Recent Lenovo ThinkPads define a dummy grahpics device, find it and ignore it

2007-10-16 Thread Matthew Garrett
On Tue, Oct 16, 2007 at 04:39:01PM +0200, Thomas Renninger wrote: + /* + * Check whether we have really a graphics device physically + * in the slot and registered at the system. + */ + dev = acpi_get_physical_device(device-handle); + if (!dev) { +

Re: Brightness buttons broken on Toshiba Satellite Proc A100 in kernel 2.6.23 (Fedora8)

2007-10-16 Thread Danny Baumann
Hi, after upgrading to Fedora 8 which brought kernel 2.6.23 with it I can no longer use the brightness buttons (Fn+F6/F7) on my above mentioned laptop. Pressing them generates F6 and F7 key events instead of ACPI events. This used to work fine in Fedora 7's 2.6.22.9 kernel. Is

[PATCH] Current brightness level got not set correctly in video module, fix it.

2007-10-16 Thread Thomas Renninger
Hi, Len, this should be a rather safe and obvious one. Can you apply it, pls. Without this one, one should get NULL pointer when cap.BQC is not set as device-brightness should not be allocated then. Christian: This should fix up the wrong initial 0 entry for the current brightness you saw.

Re: halt does not shut the system down

2007-10-16 Thread Alexey Starikovskiy
John Sigler wrote: +===+ | Soft-Off by PWR-BTTN | |---| | Instant-Off . [v]| | Delay 4 Sec. . [ ]| |

ACPI: Unsupported model

2007-10-16 Thread Lorenz Kiefner
Hello! I've got a new notebook and kernel 2.6.23 complains, I should send the DSDT to the developers. It would be nice to see an eMail-address there - I hope this mail gets to the right persons... The notebook is a ASUS S37E barebone with a Santa Rosa-chipset. You can download the DSDT and

Re: [PATCH] Current brightness level got not set correctly in video module, fix it.

2007-10-16 Thread Christian Birchinger
On Tue, Oct 16, 2007 at 05:41:58PM +0200, Thomas Renninger wrote: Len, this should be a rather safe and obvious one. Can you apply it, pls. Without this one, one should get NULL pointer when cap.BQC is not set as device-brightness should not be allocated then. Christian: This should fix

Re: [PATCH 2/2] Recent Lenovo ThinkPads define a dummy grahpics device, find it and ignore it

2007-10-16 Thread Christian Birchinger
On Mon, Oct 15, 2007 at 06:33:15PM +0200, Thomas Renninger wrote: Recent Lenovo ThinkPads define a dummy grahpics device, find it and ignore it I think it's ok. dmesg says: ACPI: Video device VID not physically connected, ignoring input: Video Bus as /devices/virtual/input/input11 ACPI: Video

Re: [PATCH 2/2] Recent Lenovo ThinkPads define a dummy grahpics device, find it and ignore it

2007-10-16 Thread Maik Broemme
Hi, Christian Birchinger [EMAIL PROTECTED] wrote: On Mon, Oct 15, 2007 at 06:33:15PM +0200, Thomas Renninger wrote: Recent Lenovo ThinkPads define a dummy grahpics device, find it and ignore it I think it's ok. dmesg says: ACPI: Video device VID not physically connected, ignoring

[PATCH] ACPI: suspend: Wrong order of GPE restore.

2007-10-16 Thread Alexey Starikovskiy
acpi_leave_sleep_state() should have correct list of wake and runtime GPEs, which is available only after disable_wakeup_device() is called. Signed-off-by: Alexey Starikovskiy [EMAIL PROTECTED] --- drivers/acpi/sleep/main.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff

Re: [PATCH] ACPI: suspend: Wrong order of GPE restore.

2007-10-16 Thread Rafael J. Wysocki
On Tuesday, 16 October 2007 20:55, Alexey Starikovskiy wrote: acpi_leave_sleep_state() should have correct list of wake and runtime GPEs, which is available only after disable_wakeup_device() is called. Signed-off-by: Alexey Starikovskiy [EMAIL PROTECTED] --- Ackedy-by: Rafael J. Wysocki

Re: 2.6.23-mm1

2007-10-16 Thread Mark Gross
On Mon, Oct 15, 2007 at 10:40:02PM +0200, Rafael J. Wysocki wrote: On Monday, 15 October 2007 18:09, Mark Gross wrote: On Fri, Oct 12, 2007 at 11:32:40PM +0200, Rafael J. Wysocki wrote: On Friday, 12 October 2007 06:31, Andrew Morton wrote:

Re: 2.6.23-mm1

2007-10-16 Thread Rafael J. Wysocki
On Tuesday, 16 October 2007 21:58, Mark Gross wrote: On Mon, Oct 15, 2007 at 10:40:02PM +0200, Rafael J. Wysocki wrote: On Monday, 15 October 2007 18:09, Mark Gross wrote: On Fri, Oct 12, 2007 at 11:32:40PM +0200, Rafael J. Wysocki wrote: On Friday, 12 October 2007 06:31, Andrew Morton

Re: [RFC] [PATCH] ACPI :Modify timer override connection in Some NVIDIA systems

2007-10-16 Thread Chuck Ebbert
On 10/15/2007 12:32 PM, Andi Kleen wrote: On Monday 15 October 2007 18:30:13 Chuck Ebbert wrote: On 10/12/2007 03:04 AM, Zhao Yakui wrote: Hi, All The BIOS of some systems using NVIDIA chipset gives the uncorrect timer override connection, which will cause that I/O APIC and timer can't

Re: [RFC] [PATCH] ACPI :Modify timer override connection in Some NVIDIA systems

2007-10-16 Thread Andi Kleen
On Tuesday 16 October 2007 23:07:29 Chuck Ebbert wrote: Do I need something more than early-quirks-unification and nvidia-timer-quirk? Because those two don't fix anything; I have to manually force acpi_use_timer_override to get things to work right. The RFC patch seems to be doing the right

Re: [RFC] [PATCH] ACPI :Modify timer override connection in Some NVIDIA systems

2007-10-16 Thread Chuck Ebbert
On 10/16/2007 05:51 PM, Andi Kleen wrote: On Tuesday 16 October 2007 23:07:29 Chuck Ebbert wrote: Do I need something more than early-quirks-unification and nvidia-timer-quirk? Because those two don't fix anything; I have to manually force acpi_use_timer_override to get things to work

Re: [RFC] [PATCH] ACPI :Modify timer override connection in Some NVIDIA systems

2007-10-16 Thread Andi Kleen
On Tuesday 16 October 2007 23:57:25 Chuck Ebbert wrote: On 10/16/2007 05:51 PM, Andi Kleen wrote: On Tuesday 16 October 2007 23:07:29 Chuck Ebbert wrote: Do I need something more than early-quirks-unification and nvidia-timer-quirk? Because those two don't fix anything; I have to

Re: 2.6.23-mm1

2007-10-16 Thread Mark Gross
On Tue, Oct 16, 2007 at 10:28:13PM +0200, Rafael J. Wysocki wrote: On Tuesday, 16 October 2007 21:58, Mark Gross wrote: On Mon, Oct 15, 2007 at 10:40:02PM +0200, Rafael J. Wysocki wrote: On Monday, 15 October 2007 18:09, Mark Gross wrote: On Fri, Oct 12, 2007 at 11:32:40PM +0200, Rafael

Re: [PATCH] swsusp: Use platform mode by default

2007-10-16 Thread Qi Yong
On 14/05/2007, Stefan Seyfried [EMAIL PROTECTED] wrote: On Fri, May 11, 2007 at 03:51:38PM -0700, Linus Torvalds wrote: On Fri, 11 May 2007, Rafael J. Wysocki wrote: Just to clarify, the change in question isn't new. It was introduced by the commit

Re: [PATCH] swsusp: Use platform mode by default

2007-10-16 Thread Qi Yong
On 12/05/2007, Linus Torvalds [EMAIL PROTECTED] wrote: On Fri, 11 May 2007, Rafael J. Wysocki wrote: We're working on fixing the breakage, but currently it's difficult, because none of my testboxes has problems with the 'platform' hibernation and I cannot reproduce the reported issues.

Re: [PATCH] swsusp: Use platform mode by default

2007-10-16 Thread Linus Torvalds
On Wed, 17 Oct 2007, Qi Yong wrote: The key point is fall back to shutdown _only_ if !ops, otherwise don't touch hibernation_mode. And that solves my problem. Please, when resurrecting a five-month-old discussion, give more of the old context. I don't know about anybody else, but I get

Re: Fix to All wake-up devices are disabled after suspend-to disk isn't yet included in mainline

2007-10-16 Thread Andrew Morton
On Wed, 17 Oct 2007 04:39:30 +0200 Maxim Levitsky [EMAIL PROTECTED] wrote: A while ago I asked on LKML about the problem of loosing all wake device capabilities, after a suspend to disk (eg: I can't wake the system from keyboard if I suspend to disk and then to ram) I was provided with

Re: [PATCH] swsusp: Use platform mode by default

2007-10-16 Thread Qi Yong
On Wed, Oct 17, 2007 at 10:46:12AM +0800, Qi Yong wrote: On 12/05/2007, Linus Torvalds [EMAIL PROTECTED] wrote: On Fri, 11 May 2007, Rafael J. Wysocki wrote: We're working on fixing the breakage, but currently it's difficult, because none of my testboxes has problems with the

Re: Fix to All wake-up devices are disabled after suspend-to disk isn't yet included in mainline

2007-10-16 Thread Maxim Levitsky
On Wednesday 17 October 2007 05:48:02 Andrew Morton wrote: On Wed, 17 Oct 2007 04:39:30 +0200 Maxim Levitsky [EMAIL PROTECTED] wrote: A while ago I asked on LKML about the problem of loosing all wake device capabilities, after a suspend to disk (eg: I can't wake the system from keyboard