Re: [PATCH] vsprintf: don't obfuscate NULL and error pointers

From: Linus Torvalds
Date: Tue Feb 18 2020 - 13:49:51 EST


On Mon, Feb 17, 2020 at 4:07 PM Ilya Dryomov <idryomov@xxxxxxxxx> wrote:
>
> I'm not sure what you mean by efault string. Are you referring to what
> %pe is doing? If so, no -- I would keep %p and %pe separate.

Right.

But bringing up %pe makes me realize that we do odd things for NULL
for that. We print errors in a nice legible form, but we show NULL as
a zero value, I think.

So maybe %pe should show NULL as "(null)"? Or even as just "0" to go
with the error names that just look like the integer error syntax (eg
"-EINVAL")

Linus