From: Pavel Machek <pavel@ucw.cz>
To: "João Paulo Rechi Vita" <jprvita@gmail.com>
Cc: "Rafael J . Wysocki" <rjw@rjwysocki.net>,
"Len Brown" <lenb@kernel.org>,
"Hans de Goede" <hdegoede@redhat.com>,
linux-acpi@vger.kernel.org, "Daniel Drake" <drake@endlessm.com>,
"Sebastian Reichel" <sebastian.reichel@collabora.co.uk>,
linux-kernel@vger.kernel.org, linux@endlessm.com,
"João Paulo Rechi Vita" <jprvita@endlessm.com>
Subject: Re: [PATCH] ACPI / battery: Fix reporting "Not charging" when capacity is 100%
Date: Mon, 5 Nov 2018 10:19:18 +0100 [thread overview]
Message-ID: <20181105091917.GD4439@amd> (raw)
In-Reply-To: <20181103065732.12134-1-jprvita@endlessm.com>
[-- Attachment #1: Type: text/plain, Size: 1472 bytes --]
On Fri 2018-11-02 23:57:32, João Paulo Rechi Vita wrote:
> Commit 19fffc8450d4378580a8f019b195c4617083176f fixed reporting
> "Discharging" on some machines when AC was connected but the battery was
> not charging. But now on these machines the battery status is reported
> as "Not charging" even when the battery is fully charged.
>
> This commit takes the battery capacity into consideration when checking
> if "Not charging" should be returned and "Full" is returned when the
> capacity is 100%.
>
> Signed-off-by: João Paulo Rechi Vita <jprvita@endlessm.com>
We have people trying to modify this and it caused regressions in
MATE, IIRC.
Plus, I don't think "100% charge" is right test for "battery full". At
least on thinkpads, there's configuration option, and it is common
_not_ to charge batterry above 95% or so (to increase its lifetime).
Pavel
> * was plugged in and the device thus did not start a new charge cycle.
> */
> if ((battery_ac_is_broken || power_supply_is_system_supplied()) &&
> - battery->rate_now == 0)
> + battery->rate_now == 0) {
> + if (battery->capacity_now && battery->full_charge_capacity &&
> + battery->capacity_now / battery->full_charge_capacity == 1)
> + return POWER_SUPPLY_STATUS_FULL;
Division? Really?
Pavel
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 181 bytes --]
next prev parent reply other threads:[~2018-11-05 9:19 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-03 6:57 [PATCH] ACPI / battery: Fix reporting "Not charging" when capacity is 100% João Paulo Rechi Vita
2018-11-03 11:28 ` Hans de Goede
2018-11-06 20:14 ` João Paulo Rechi Vita
2018-11-05 9:19 ` Pavel Machek [this message]
2018-11-06 20:34 ` João Paulo Rechi Vita
2018-11-07 4:53 ` Daniel Drake
2018-11-11 11:57 ` Hans de Goede
2018-11-11 12:22 ` Pavel Machek
2018-11-20 2:12 ` João Paulo Rechi Vita
2018-11-20 9:16 ` Pavel Machek
2018-11-11 11:30 ` Pavel Machek
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=20181105091917.GD4439@amd \
--to=pavel@ucw.cz \
--cc=drake@endlessm.com \
--cc=hdegoede@redhat.com \
--cc=jprvita@endlessm.com \
--cc=jprvita@gmail.com \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@endlessm.com \
--cc=rjw@rjwysocki.net \
--cc=sebastian.reichel@collabora.co.uk \
/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 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.