From: Shuah Khan <shuahkhan@gmail.com>
To: LKML <linux-kernel@vger.kernel.org>
Cc: shuahkhan@gmail.com
Subject: simple_strtoull() - FIXME?
Date: Mon, 12 Mar 2012 10:16:51 -0600 [thread overview]
Message-ID: <1331569011.4386.15.camel@lorien2> (raw)
What's this FIXME in simple_strtoull() for? Something to be terribly
concerned about and need fixing (assuming there is something that still
needs fixing)
unsigned long long simple_strtoull(const char *cp, char **endp, unsigned
int base)
{
unsigned long long result;
unsigned int rv;
cp = _parse_integer_fixup_radix(cp, &base);
rv = _parse_integer(cp, base, &result);
/* FIXME */
cp += (rv & ~KSTRTOX_OVERFLOW);
if (endp)
*endp = (char *)cp;
return result;
}
EXPORT_SYMBOL(simple_strtoull);
-- Shuah
next reply other threads:[~2012-03-12 16:16 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-12 16:16 Shuah Khan [this message]
2012-03-12 23:19 ` simple_strtoull() - FIXME? Ryan Mallon
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=1331569011.4386.15.camel@lorien2 \
--to=shuahkhan@gmail.com \
--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