From: Natale Patriciello <natale.patricie...@gmail.com> Date: Fri, 28 Jul 2017 21:59:19 +0200
> +static __always_inline bool test_flag(u8 value, const u8 *flags) Never, ever, declare functions as inline in foo.c files. Always let the compiler decide. No matter how brilliant you think you are, it always knows better. And when it doesn't, that's a bug that should be fixed instead of worked around in our code. Thanks.