You must log in or register to comment.
Like this crazy and pointless make_u32_from_two_u16() ‘helper’. That thing makes the world actively a worse place to live.
I love how enthusiastic he is about
make_u32_from_two_u16()
It really is kinda hard to justify wrapping
a << 16 | b
in a function.Yep, these kind of wrapper functions actually hurt kernel readability and add unecessary call overhead - in critical kernel paths every instruction counts.