Re: [PATCH v2 1/2] lib/vsprintf.c: Simplify uuid_string()

From: Andy Shevchenko
Date: Sun Jun 05 2016 - 10:22:56 EST


Andy Shevchenko wrote:
> On Sat, 2016-06-04 at 01:14 -0400, George Spelvin wrote:
>> - if (uc)
>> - p = hex_byte_pack_upper(p, addr[index[i]]);
>> - else
>> - p = hex_byte_pack(p, addr[index[i]]);
>> + u8 byte = addr[index[i]];
>> +
>> + *p++ = hex[byte >> 4];
>> + *p++ = hex[byte & 0x0f];

> And what prevents you to assign hex_byte_pack()/hex_byte_pack_upper()
> and do one call here?

Because they're inline functions, so there's no compiled copy to
take the address of.

Since they're delcared "static", if you take their addresses anyway,
gcc will helpfully compile private versions for the use of this source
file, which will be bigger and slower than the simple inline expansion
I used here.

It's not even any *simpler*. Remembering what "hex_byte_pack()" means
is as much mental effort as interpreting those two very simple lines.

There's no strong reason to *avoid* using the hex_asc[] arrays directly.
It's done in several other places in the kernel, including earlier in
lib/vsprintf.c (search for "hex_asc_upper" in number()).

If they were intended to be "off limits", they would have been given
_-prefixed names.