From: Theodore Tso <tytso@mit.edu>
To: "André Goddard Rosa" <andre.goddard@gmail.com>
Cc: Pavel Roskin <proski@gnu.org>,
Stefan Haberland <stefan.haberland@de.ibm.com>,
Jan Kara <jack@suse.cz>,
linux-cachefs@redhat.com, Mike Snitzer <snitzer@redhat.com>,
Neil Brown <neilb@suse.de>,
Frederic Weisbecker <fweisbec@gmail.com>,
Jens Axboe <jens.axboe@oracle.com>,
Heiko Carstens <heiko.carstens@de.ibm.com>,
"James E . J . Bottomley" <jejb@parisc-linux.org>,
ibm-acpi-devel@lists.sourceforge.net, dm-devel@redhat.com,
Julia Lawall <julia@diku.dk>, "H . Peter Anvin" <hpa@zytor.com>,
Daire Byrne <Daire.Byrne@framestore.com>,
Alasdair G Kergon <agk@redhat.com>,
Greg Banks <gnb@melbourne.sgi.com>,
Stefan Weinhuber <wein@de.ibm.com>,
Eric Sandeen <sandeen@redhat.com>, Adam Belay <abelay@mit.edu>,
Helge Deller <deller@gmx.de>,
x86@kernel.org, James Morris <jmorris@namei.org>,
Takashi Iwai <tiwai@suse.de>, Ingo Molnar <mingo@redhat.com>,
Alan Cox <alan@lxorguk.ukuu.org.uk
Subject: Re: [PATCH v4 12/12] tree-wide: convert open calls to remove spaces to skip_spaces() lib function
Date: Sun, 8 Nov 2009 13:47:22 -0500 [thread overview]
Message-ID: <20091108184722.GA1647@mit.edu> (raw)
In-Reply-To: <7d5883637aa976b54e944998f635d47a41618a75.1257602781.git.andre.goddard@gmail.com>
On Sat, Nov 07, 2009 at 01:16:20PM -0200, André Goddard Rosa wrote:
> Makes use of skip_spaces() defined in lib/string.c for removing leading
> spaces from strings all over the tree.
>
> Also, while at it, if we see (*str && isspace(*str)), we can be sure to
> remove the first condition (*str) as the second one (isspace(*str)) also
> evaluates to 0 whenever *str == 0, making it redundant. In other words,
> "a char equals zero is never a space".
There are a number of places that have the pattern of skipping
whitespace, calling simpler_strtoul(), and then skipping whitespace
afterwards. And thinkpad_acpi.c and fs/ext4/super.c both have an
indentical function, parse_strotul(), which basically does this plus
doing actual error checking (a number of callers of simple_strtoul
aren't checking to see if the user passed in a valid number or not,
boo.)
I would suggest that we should lift parse_strtoul() into lib/, both to
save a bit of code, as well as encouraging people to do proper input
validation, while we are doing this tree-wide cleanup.
- Ted
next prev parent reply other threads:[~2009-11-08 18:47 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <cover.1257602781.git.andre.goddard@gmail.com>
2009-11-08 16:05 ` [dm-devel] [PATCH v4 00/12] introduce skip_spaces(), reducing code size plus some clean-ups James Bottomley
2009-11-08 16:52 ` André Goddard Rosa
[not found] ` <c7d3b02b5e28eaa54a5360d57dfd177c44320187.1257602781.git.andre.goddard@gmail.com>
2009-11-08 16:50 ` [PATCH v4 10/12] string: factorize skip_spaces and export it to be generally available Alan Cox
[not found] ` <7d5883637aa976b54e944998f635d47a41618a75.1257602781.git.andre.goddard@gmail.com>
2009-11-08 18:47 ` Theodore Tso [this message]
2009-11-08 20:23 ` [PATCH v4 12/12] tree-wide: convert open calls to remove spaces to skip_spaces() lib function Julia Lawall
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=20091108184722.GA1647@mit.edu \
--to=tytso@mit.edu \
--cc=Daire.Byrne@framestore.com \
--cc=abelay@mit.edu \
--cc=agk@redhat.com \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=andre.goddard@gmail.com \
--cc=deller@gmx.de \
--cc=dm-devel@redhat.com \
--cc=fweisbec@gmail.com \
--cc=gnb@melbourne.sgi.com \
--cc=heiko.carstens@de.ibm.com \
--cc=hpa@zytor.com \
--cc=ibm-acpi-devel@lists.sourceforge.net \
--cc=jack@suse.cz \
--cc=jejb@parisc-linux.org \
--cc=jens.axboe@oracle.com \
--cc=jmorris@namei.org \
--cc=julia@diku.dk \
--cc=linux-cachefs@redhat.com \
--cc=mingo@redhat.com \
--cc=neilb@suse.de \
--cc=proski@gnu.org \
--cc=sandeen@redhat.com \
--cc=snitzer@redhat.com \
--cc=stefan.haberland@de.ibm.com \
--cc=tiwai@suse.de \
--cc=wein@de.ibm.com \
--cc=x86@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;
as well as URLs for NNTP newsgroup(s).