From: Lan Tianyu <tianyu.lan@intel.com>
To: "Zheng, Lv" <lv.zheng@intel.com>
Cc: David Rientjes <rientjes@google.com>,
"rjw@rjwysocki.net" <rjw@rjwysocki.net>,
"lenb@kernel.org" <lenb@kernel.org>,
"naszar@ya.ru" <naszar@ya.ru>,
"linux-acpi@vger.kernel.org" <linux-acpi@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] ACPI/Battery: Retry to get Battery information if failed during probing
Date: Mon, 16 Jun 2014 10:43:31 +0800 [thread overview]
Message-ID: <539E59D3.7080508@intel.com> (raw)
In-Reply-To: <1AE640813FDE7649BE1B193DEA596E880262DA59@SHSMSX101.ccr.corp.intel.com>
On 2014年06月16日 10:35, Zheng, Lv wrote:
> Hi,
>
>> From: linux-acpi-owner@vger.kernel.org [mailto:linux-acpi-owner@vger.kernel.org] On Behalf Of Lan Tianyu
>> Sent: Monday, June 16, 2014 10:12 AM
>> To: David Rientjes
>> Cc: rjw@rjwysocki.net; lenb@kernel.org; naszar@ya.ru; linux-acpi@vger.kernel.org; linux-kernel@vger.kernel.org
>> Subject: Re: [PATCH] ACPI/Battery: Retry to get Battery information if failed during probing
>>
>> On 2014年06月14日 05:46, David Rientjes wrote:
>>> On Fri, 13 Jun 2014, Lan Tianyu wrote:
>>>
>>>> How about this?
>>>>
>>>> - result = acpi_battery_update(battery, false);
>>>> - if (result)
>>>> +
>>>> + /*
>>>> + * Some machines'(E,G Lenovo Z480) ECs are not stable
>
> Just a reminder.
>
> This statement may not be true.
> The issue may be caused by the EC driver itself.
> So we need to investigate.
Not sure. The bug doesn't happen every time. 5-10% during boot up.
>
>>>> + * during boot up and this causes battery driver fails to be
>>>> + * probed due to failure of getting battery information
>>>> + * from EC sometimes. After several retries, the operation
>>>> + * may work. So add retry code here and 20ms sleep between
>>>> + * every retries.
>>>> + */
>>>> + while (acpi_battery_update(battery, false) && retry--)
>
> If EC hardware is stable, why we need to do retry here?
>
Yes, if it can work normally every time, we don't need retry here.
> Thanks and best regards
> -Lv
>
>>>> + msleep(20);
>>>> + if (!retry) {
>>>> + result = -ENODEV;
>>>> goto fail;
>>>> + }
>>>> +
>>>
>>> I think you want --retry and not retry--.
>>
>> My original purpose is to retry 5 times after the first try fails.
>> If use "--retry" here, it just retries 4 times.
>>
>>> Otherwise it's possible for the
>>> final call to acpi_battery_update() to succeed and now it's returning
>>> -ENODEV.
>>>
>>
>> Yes, it maybe and I will change code like the following.
>>
>> while ((result = acpi_battery_update(battery, false)) && retry--)
>> msleep(20);
>> if (result)
>> goto fail;
>>
>>
>> --
>> Best regards
>> Tianyu Lan
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Best regards
Tianyu Lan
--
To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: Lan Tianyu <tianyu.lan@intel.com>
To: "Zheng, Lv" <lv.zheng@intel.com>
Cc: David Rientjes <rientjes@google.com>,
"rjw@rjwysocki.net" <rjw@rjwysocki.net>,
"lenb@kernel.org" <lenb@kernel.org>,
"naszar@ya.ru" <naszar@ya.ru>,
"linux-acpi@vger.kernel.org" <linux-acpi@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] ACPI/Battery: Retry to get Battery information if failed during probing
Date: Mon, 16 Jun 2014 10:43:31 +0800 [thread overview]
Message-ID: <539E59D3.7080508@intel.com> (raw)
In-Reply-To: <1AE640813FDE7649BE1B193DEA596E880262DA59@SHSMSX101.ccr.corp.intel.com>
On 2014年06月16日 10:35, Zheng, Lv wrote:
> Hi,
>
>> From: linux-acpi-owner@vger.kernel.org [mailto:linux-acpi-owner@vger.kernel.org] On Behalf Of Lan Tianyu
>> Sent: Monday, June 16, 2014 10:12 AM
>> To: David Rientjes
>> Cc: rjw@rjwysocki.net; lenb@kernel.org; naszar@ya.ru; linux-acpi@vger.kernel.org; linux-kernel@vger.kernel.org
>> Subject: Re: [PATCH] ACPI/Battery: Retry to get Battery information if failed during probing
>>
>> On 2014年06月14日 05:46, David Rientjes wrote:
>>> On Fri, 13 Jun 2014, Lan Tianyu wrote:
>>>
>>>> How about this?
>>>>
>>>> - result = acpi_battery_update(battery, false);
>>>> - if (result)
>>>> +
>>>> + /*
>>>> + * Some machines'(E,G Lenovo Z480) ECs are not stable
>
> Just a reminder.
>
> This statement may not be true.
> The issue may be caused by the EC driver itself.
> So we need to investigate.
Not sure. The bug doesn't happen every time. 5-10% during boot up.
>
>>>> + * during boot up and this causes battery driver fails to be
>>>> + * probed due to failure of getting battery information
>>>> + * from EC sometimes. After several retries, the operation
>>>> + * may work. So add retry code here and 20ms sleep between
>>>> + * every retries.
>>>> + */
>>>> + while (acpi_battery_update(battery, false) && retry--)
>
> If EC hardware is stable, why we need to do retry here?
>
Yes, if it can work normally every time, we don't need retry here.
> Thanks and best regards
> -Lv
>
>>>> + msleep(20);
>>>> + if (!retry) {
>>>> + result = -ENODEV;
>>>> goto fail;
>>>> + }
>>>> +
>>>
>>> I think you want --retry and not retry--.
>>
>> My original purpose is to retry 5 times after the first try fails.
>> If use "--retry" here, it just retries 4 times.
>>
>>> Otherwise it's possible for the
>>> final call to acpi_battery_update() to succeed and now it's returning
>>> -ENODEV.
>>>
>>
>> Yes, it maybe and I will change code like the following.
>>
>> while ((result = acpi_battery_update(battery, false)) && retry--)
>> msleep(20);
>> if (result)
>> goto fail;
>>
>>
>> --
>> Best regards
>> Tianyu Lan
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Best regards
Tianyu Lan
next prev parent reply other threads:[~2014-06-16 2:44 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-12 6:02 [PATCH] ACPI/Battery: Retry to get Battery information if failed during probing Lan Tianyu
2014-06-12 6:55 ` David Rientjes
2014-06-12 7:19 ` Lan Tianyu
2014-06-12 7:19 ` Lan Tianyu
2014-06-12 7:26 ` David Rientjes
2014-06-12 8:14 ` Lan Tianyu
2014-06-12 8:14 ` Lan Tianyu
2014-06-12 21:17 ` David Rientjes
2014-06-13 2:25 ` Lan Tianyu
2014-06-13 2:25 ` Lan Tianyu
2014-06-13 21:46 ` David Rientjes
2014-06-16 2:12 ` Lan Tianyu
2014-06-16 2:12 ` Lan Tianyu
2014-06-16 2:35 ` Zheng, Lv
2014-06-16 2:35 ` Zheng, Lv
2014-06-16 2:43 ` Lan Tianyu [this message]
2014-06-16 2:43 ` Lan Tianyu
2014-06-17 1:27 ` David Rientjes
2014-06-17 1:27 ` Lan Tianyu
2014-06-17 1:27 ` Lan Tianyu
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=539E59D3.7080508@intel.com \
--to=tianyu.lan@intel.com \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lv.zheng@intel.com \
--cc=naszar@ya.ru \
--cc=rientjes@google.com \
--cc=rjw@rjwysocki.net \
/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.