resource cgroups: remove bogus cast
authorDavidlohr Bueso <[email protected]>
Mon, 5 Dec 2011 21:13:41 +0000 (22:13 +0100)
committerTejun Heo <[email protected]>
Tue, 13 Dec 2011 15:43:08 +0000 (07:43 -0800)
The memparse() function already accepts const char * as the parsing string.

Signed-off-by: Davidlohr Bueso <[email protected]>
Acked-by: Pavel Emelyanov <[email protected]>
Signed-off-by: Tejun Heo <[email protected]>
kernel/res_counter.c

index 34683efa2cceee37f0a76db7531b8f5fc265a325..6d269cce7aa13c4593540f6aa80be389e3ffc720 100644 (file)
@@ -159,8 +159,7 @@ int res_counter_memparse_write_strategy(const char *buf,
                return 0;
        }
 
-       /* FIXME - make memparse() take const char* args */
-       *res = memparse((char *)buf, &end);
+       *res = memparse(buf, &end);
        if (*end != '\0')
                return -EINVAL;