[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1331569011.4386.15.camel@lorien2>
Date: Mon, 12 Mar 2012 10:16:51 -0600
From: Shuah Khan <shuahkhan@...il.com>
To: LKML <linux-kernel@...r.kernel.org>
Cc: shuahkhan@...il.com
Subject: simple_strtoull() - FIXME?
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
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists