From: Zhang Rui <rui.zhang@intel.com>
To: "Rafael J. Wysocki" <rjw@sisk.pl>
Cc: "Zhao, Yakui" <yakui.zhao@intel.com>,
ACPI Devel Maling List <linux-acpi@vger.kernel.org>,
Alexey Starikovskiy <astarikovskiy@suse.de>,
Len Brown <lenb@kernel.org>, LKML <linux-kernel@vger.kernel.org>,
walken <walken@zoy.org>
Subject: Re: Regression: ACPI AC driver doesn't work on Toshiba Portege R500 (bisected)
Date: Mon, 24 Nov 2008 09:31:20 +0800 [thread overview]
Message-ID: <1227490280.15014.291.camel@rzhang-dt> (raw)
In-Reply-To: <200811240221.54716.rjw@sisk.pl>
[-- Attachment #1: Type: text/plain, Size: 3088 bytes --]
On Mon, 2008-11-24 at 09:21 +0800, Rafael J. Wysocki wrote:
> On Monday, 24 of November 2008, Zhao Yakui wrote:
> > On Mon, 2008-11-24 at 07:37 +0800, Rafael J. Wysocki wrote:
> > > On Sunday, 23 of November 2008, Rafael J. Wysocki wrote:
> > > > Hi,
> > > >
> > > > With current mainline (2.6.28-rc6-git1 as of today) on Toshiba Portege R500 the
> > > > status of the AC adapter is not updated when the adapter is unplugged and
> > > > plugged in. Evidently, /sys/class/power_supply/ADP1/online always contains the
> > > > same value. Interestingly enough, though, if the box is suspended to RAM and
> > > > resumed, the status of the AC adapter is correctly updated, but the value read
> > > > at that time remains in /sys/class/power_supply/ADP1/online until the next
> > > > suspend/resume cycle regardless of what's going on with the AC adapter.
> > > >
> > > > 2.6.27.7 works correctly on this box so the recent EC patches don't seem to
> > > > cause this regression to happen.
> > > >
> > > > Any other ideas?
> > Hi, Rafael
> > Will you please open a new bug at
> > http://bugzilla.kernel.org/enter_bug.cgi?product=ACPI and attach the
> > output of acpidump, dmesg, lspci -vxxx?
> > If no ACPI event is reported when AC adapter is unplugged and
> > plugged, the /sys/class interface can't display the correct AC status.
> > Now Rui is working on this issue and the patch is already finished. But
> > it is not sent to Lenb.
>
> Can you give me a link to the patch, please?
From: Zhang Rui <rui.zhang@intel.com>
Subject: power_supply: update ac status before acquiring it.
Update AC status in sysfs I/F.
http://bugzilla.kernel.org/show_bug.cgi?id=12035
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
---
drivers/acpi/ac.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
Index: linux-2.6/drivers/acpi/ac.c
===================================================================
--- linux-2.6.orig/drivers/acpi/ac.c
+++ linux-2.6/drivers/acpi/ac.c
@@ -87,6 +87,7 @@ struct acpi_ac {
unsigned long long state;
};
+static int acpi_ac_get_state(struct acpi_ac *ac);
#define to_acpi_ac(x) container_of(x, struct acpi_ac, charger);
#ifdef CONFIG_ACPI_PROCFS_POWER
@@ -103,15 +104,18 @@ static int get_ac_property(struct power_
enum power_supply_property psp,
union power_supply_propval *val)
{
+ int result;
struct acpi_ac *ac = to_acpi_ac(psy);
+
switch (psp) {
case POWER_SUPPLY_PROP_ONLINE:
+ result = acpi_ac_get_state(ac);
val->intval = ac->state;
break;
default:
return -EINVAL;
}
- return 0;
+ return result;
}
static enum power_supply_property ac_props[] = {
>
> > From the problem description it seems that the problem is related
> > with the AC driver. But from the git-bisect it seems that the problem is
> > related with the button driver(Fix power button device).
> >
> > Any-way, please attach the output of dmesg, acpidump, lspci -vxxx.
>
> Created http://bugzilla.kernel.org/show_bug.cgi?id=12091 with the information
> attached as requested.
>
I'll take this bug. :)
thanks,
rui
[-- Attachment #2: patch-12035-power_supply-update-AC-status --]
[-- Type: message/rfc822, Size: 1287 bytes --]
From: Zhang Rui <rui.zhang@intel.com>
Subject: power_supply: update ac status before acquiring it.
Date: Mon, 24 Nov 2008 09:31:07 +0800
Message-ID: <1227490267.15014.290.camel@rzhang-dt>
Update AC status in sysfs I/F.
http://bugzilla.kernel.org/show_bug.cgi?id=12035
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
---
drivers/acpi/ac.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
Index: linux-2.6/drivers/acpi/ac.c
===================================================================
--- linux-2.6.orig/drivers/acpi/ac.c
+++ linux-2.6/drivers/acpi/ac.c
@@ -87,6 +87,7 @@ struct acpi_ac {
unsigned long long state;
};
+static int acpi_ac_get_state(struct acpi_ac *ac);
#define to_acpi_ac(x) container_of(x, struct acpi_ac, charger);
#ifdef CONFIG_ACPI_PROCFS_POWER
@@ -103,15 +104,18 @@ static int get_ac_property(struct power_
enum power_supply_property psp,
union power_supply_propval *val)
{
+ int result;
struct acpi_ac *ac = to_acpi_ac(psy);
+
switch (psp) {
case POWER_SUPPLY_PROP_ONLINE:
+ result = acpi_ac_get_state(ac);
val->intval = ac->state;
break;
default:
return -EINVAL;
}
- return 0;
+ return result;
}
static enum power_supply_property ac_props[] = {
next prev parent reply other threads:[~2008-11-24 1:32 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-22 23:53 Regression: ACPI AC driver doesn't work on Toshiba Portege R500 Rafael J. Wysocki
2008-11-23 23:37 ` Regression: ACPI AC driver doesn't work on Toshiba Portege R500 (bisected) Rafael J. Wysocki
2008-11-24 1:02 ` Rafael J. Wysocki
2008-11-24 13:27 ` Rafael J. Wysocki
2008-11-24 1:15 ` Zhao Yakui
2008-11-24 1:21 ` Rafael J. Wysocki
2008-11-24 1:31 ` Zhang Rui [this message]
2008-11-24 13:30 ` Rafael J. Wysocki
2008-11-25 1:20 ` Zhang Rui
2008-11-25 9:06 ` Rafael J. Wysocki
2008-11-25 9:36 ` [PATCH] ACPI: Revert commit faee816b150238 due to regression Rafael J. Wysocki
2008-11-25 1:24 ` Regression: ACPI AC driver doesn't work on Toshiba Portege R500 (bisected) Zhao Yakui
2008-11-25 9:08 ` Rafael J. Wysocki
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1227490280.15014.291.camel@rzhang-dt \
--to=rui.zhang@intel.com \
--cc=astarikovskiy@suse.de \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rjw@sisk.pl \
--cc=walken@zoy.org \
--cc=yakui.zhao@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox