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

From: Ilya Dryomov
Date: Mon Apr 13 2020 - 05:29:43 EST


On Fri, Apr 10, 2020 at 11:40 AM David Laight <David.Laight@xxxxxxxxxx> wrote:
>
> From: Linus Torvalds
> > Sent: 08 April 2020 17:23
> > On Wed, Apr 8, 2020 at 8:08 AM Andy Shevchenko
> > <andy.shevchenko@xxxxxxxxx> wrote:
> > >
> > > For the better understanding the current state of affairs I suggest to respin
> > > new version after rc1 and we will see again.
>
> If the hash of a pointer ends up being one of the values that
> wouldn't be hashed, perhaps it should be hashed again.
> That will remove any possible confusion.

Hi David,

That seems sensible, but out of scope of this patch IMO.

My goal was to fix a 5.2 regression for NULL pointers. I tacked on
IS_ERR pointers because they aren't actual addresses either and hashing
them makes zero sense. Although simple to implement, I'm afraid that
introducing additional rounds of hashing would drag this patch further
(it's already got bogged down in the test suite structure discussion).

Thanks,

Ilya