]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
kernel/res_counter.c: replace simple_strtoull by kstrtoull
authorFabian Frederick <fabf@skynet.be>
Wed, 4 Jun 2014 23:11:24 +0000 (16:11 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 4 Jun 2014 23:54:15 +0000 (16:54 -0700)
[akpm@linux-foundation.org: don't overwrite kstrtoull()'s errno]
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Cc: Michal Hocko <mhocko@suse.cz>
Cc: Tejun Heo <tj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
kernel/res_counter.c

index 51dbac6a363358b435a14f9e7952b9489eb3bf9d..e791130f85a7ace7bbfc4d412151b912d6b87d49 100644 (file)
@@ -186,8 +186,11 @@ int res_counter_memparse_write_strategy(const char *buf,
 
        /* return RES_COUNTER_MAX(unlimited) if "-1" is specified */
        if (*buf == '-') {
-               res = simple_strtoull(buf + 1, &end, 10);
-               if (res != 1 || *end != '\0')
+               int rc = kstrtoull(buf + 1, 10, &res);
+
+               if (rc)
+                       return rc;
+               if (res != 1)
                        return -EINVAL;
                *resp = RES_COUNTER_MAX;
                return 0;