From: Takashi Iwai <tiwai@suse.de>
To: Alexey Dobriyan <adobriyan@gmail.com>
Cc: akpm@linux-foundation.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH -mm v2] sound: convert to parse_integer()
Date: Wed, 29 Jul 2015 08:55:16 +0200 [thread overview]
Message-ID: <s5hpp3be9m3.wl-tiwai@suse.de> (raw)
In-Reply-To: <20150727210301.GA24623@p183.telecom.by>
On Mon, 27 Jul 2015 23:03:01 +0200,
Alexey Dobriyan wrote:
>
> Convert away from deprecated simple_strto*() interfaces to
> parse_integer() and kstrto*().
>
> Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
The error handling looks good to me. In addition to Andrew's
suggestion and the removal of word termination check, some nitpicking
below:
> --- a/sound/core/oss/mixer_oss.c
> +++ b/sound/core/oss/mixer_oss.c
> @@ -1180,6 +1180,7 @@ static void snd_mixer_oss_proc_write(struct snd_info_entry *entry,
> int ch, idx;
> struct snd_mixer_oss_assign_table *tbl;
> struct slot *slot;
> + int rv;
A more common variable name is err or ret for such a purpose.
> --- a/sound/soc/soc-core.c
> +++ b/sound/soc/soc-core.c
> @@ -250,7 +250,7 @@ static ssize_t codec_reg_write_file(struct file *file,
> char buf[32];
> size_t buf_size;
> char *start = buf;
> - unsigned long reg, value;
> + unsigned int reg, value;
> struct snd_soc_codec *codec = file->private_data;
> int ret;
>
> @@ -261,10 +261,13 @@ static ssize_t codec_reg_write_file(struct file *file,
>
> while (*start == ' ')
> start++;
> - reg = simple_strtoul(start, &start, 16);
> + ret = parse_integer(start, 16, ®);
> + if (ret < 0)
> + return ret;
> + start += ret;
> while (*start == ' ')
> start++;
> - ret = kstrtoul(start, 16, &value);
> + ret = kstrtouint(start, 16, &value);
> if (ret)
> return ret;
This looks inconsistent, the first one uses parse_integer() while the
second kstrtouint(). Better to stick with one API.
thanks,
Takashi
next prev parent reply other threads:[~2015-07-29 6:55 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <55ad7455.egmJBODfpfpsZpe5%akpm@linux-foundation.org>
[not found] ` <s5hlhe6vyq2.wl-tiwai@suse.de>
2015-07-27 21:03 ` Alexey Dobriyan
2015-07-28 21:06 ` Andrew Morton
2015-07-29 6:49 ` Takashi Iwai
2015-07-29 6:55 ` Takashi Iwai [this message]
2015-07-27 21:07 ` + parse_integer-convert-sound.patch added to -mm tree Alexey Dobriyan
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=s5hpp3be9m3.wl-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=adobriyan@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
/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
all inboxes | Powered by JetHome®