From: Hans de Goede <hdegoede@redhat.com>
To: Divya Bharathi <divya27392@gmail.com>, dvhart@infradead.org
Cc: LKML <linux-kernel@vger.kernel.org>,
Linux Next Mailing List <linux-next@vger.kernel.org>,
platform-driver-x86@vger.kernel.org,
Divya Bharathi <divya.bharathi@dell.com>,
Mario Limonciello <mario.limonciello@dell.com>,
Prasanth KSR <prasanth.ksr@dell.com>
Subject: Re: [PATCH] platform/x86: dell-wmi-sysman: work around for BIOS bug
Date: Wed, 2 Dec 2020 13:21:11 +0100 [thread overview]
Message-ID: <06db27af-7387-9343-acd3-d75e8c46b623@redhat.com> (raw)
In-Reply-To: <20201202065636.299000-1-divya.bharathi@dell.com>
Hi,
On 12/2/20 7:56 AM, Divya Bharathi wrote:
> BIOS sets incorrect value (zero) when SET value passed for integer attribute
> with + sign. Added workaround to remove + sign before passing input to BIOS
>
> Co-developed-by: Mario Limonciello <mario.limonciello@dell.com>
> Signed-off-by: Mario Limonciello <mario.limonciello@dell.com>
> Co-developed-by: Prasanth KSR <prasanth.ksr@dell.com>
> Signed-off-by: Prasanth KSR <prasanth.ksr@dell.com>
> Signed-off-by: Divya Bharathi <divya.bharathi@dell.com>
> ---
> drivers/platform/x86/dell-wmi-sysman/int-attributes.c | 8 +++++++-
> 1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/platform/x86/dell-wmi-sysman/int-attributes.c b/drivers/platform/x86/dell-wmi-sysman/int-attributes.c
> index ea773d8e8d3a..f30d155135c3 100644
> --- a/drivers/platform/x86/dell-wmi-sysman/int-attributes.c
> +++ b/drivers/platform/x86/dell-wmi-sysman/int-attributes.c
> @@ -39,7 +39,7 @@ static ssize_t current_value_show(struct kobject *kobj, struct kobj_attribute *a
> * @instance_id: The instance on which input is validated
> * @buf: Input value
> */
> -static int validate_integer_input(int instance_id, const char *buf)
> +static int validate_integer_input(int instance_id, char *buf)
> {
> int in_val;
> int ret;
> @@ -51,6 +51,12 @@ static int validate_integer_input(int instance_id, const char *buf)
> in_val > wmi_priv.integer_data[instance_id].max_value)
> return -EINVAL;
>
> + /* workaround for BIOS error.
> + * validate input to avoid setting 0 when integer input passed with + sign
> + */
> + if (*buf == '+')
> + memmove(buf, (buf + 1), strlen(buf));
Can you please use "strlen(buf + 1) + 1" as last argument to the memmove?
I know the effect is the same but that makes it much clearer that you
are also moving the terminating 0 (which at first I thought you were not).
Otherwise this looks good to me.
Regards,
Hans
next prev parent reply other threads:[~2020-12-02 12:23 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-02 6:56 [PATCH] platform/x86: dell-wmi-sysman: work around for BIOS bug Divya Bharathi
2020-12-02 12:21 ` Hans de Goede [this message]
-- strict thread matches above, loose matches on Subject: below --
2020-12-02 13:19 Divya Bharathi
2020-12-07 14:05 ` Hans de Goede
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=06db27af-7387-9343-acd3-d75e8c46b623@redhat.com \
--to=hdegoede@redhat.com \
--cc=divya.bharathi@dell.com \
--cc=divya27392@gmail.com \
--cc=dvhart@infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-next@vger.kernel.org \
--cc=mario.limonciello@dell.com \
--cc=platform-driver-x86@vger.kernel.org \
--cc=prasanth.ksr@dell.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;
as well as URLs for NNTP newsgroup(s).