Re: [PATCH] driver core: Add branch prediction hints in really_probe()

From: Rafael J. Wysocki
Date: Tue Nov 06 2018 - 09:59:29 EST


On Tue, Nov 6, 2018 at 3:43 PM Muchun Song <smuchun@xxxxxxxxx> wrote:
>
> Hi Rafael,
>
> If we want the driver core to test driver remove functions, we can
> enable CONFIG_DEBUG_TEST_DRIVER_REMOVE. This option is
> just for testing it. So, in most cases, the option is disabled and the if
> condition is false. So I think we can add an unlikely() to it.

Yes, it can be added there, but does it really need to be added?

If the conditions are false all the time, the branch predictor in the
processor should be able to deal with it just fine.

And if they are false already at build time, the compiler should just
optimize them away.