public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* simple_strtoull() - FIXME?
@ 2012-03-12 16:16 Shuah Khan
  2012-03-12 23:19 ` Ryan Mallon
  0 siblings, 1 reply; 2+ messages in thread
From: Shuah Khan @ 2012-03-12 16:16 UTC (permalink / raw)
  To: LKML; +Cc: shuahkhan

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



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-03-12 23:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-12 16:16 simple_strtoull() - FIXME? Shuah Khan
2012-03-12 23:19 ` Ryan Mallon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox