[PATCH v3] add u64 number parser

Linus Torvalds torvalds at linux-foundation.org
Sat Sep 24 11:31:11 PDT 2016


On Sat, Sep 24, 2016 at 8:27 AM, James Smart <james.smart at broadcom.com> wrote:
>
> add u64 number parser
>
> Prior patch revised to use kasprintf.
> Modified match_number to use kasprintf as well

Why would you do this? It's insane. kasprintf() is not the right thing
at all to use for anything like this. It appears that you want to use
strncpy() or something. Or you could just avoid the extra copy
entirely in 99% of all cases and just use simple_strtol() and check
that the end didn't overflow the substring, which it presumably never
does anyway.

Yes, the stupid code is already disgustingly bad. But let's not make
it *worse*, for chrissake!

               Linus



More information about the Linux-nvme mailing list