[-mm PATCH] Memory controller improve user interface (v3)

Paul Menage menage at google.com
Sun Sep 2 21:53:22 PDT 2007


On 9/2/07, Balbir Singh <balbir at linux.vnet.ibm.com> wrote:
> -       s += sprintf(s, "%lu\n", *val);
> +       if (read_strategy)
> +               s += read_strategy(*val, s);
> +       else
> +               s += sprintf(s, "%lu\n", *val);

This would be better as %llu

> +               tmp = simple_strtoul(buf, &end, 10);

and this as simple_strtoull()

Paul


More information about the Containers mailing list