Re: [PATCH] net: bridge: Fix jump_label config

From: Cong Wang
Date: Thu Feb 25 2021 - 16:24:02 EST


On Wed, Feb 24, 2021 at 8:03 AM Kefeng Wang <wangkefeng.wang@xxxxxxxxxx> wrote:
>
> HAVE_JUMP_LABLE is removed by commit e9666d10a567 ("jump_label: move
> 'asm goto' support test to Kconfig"), use CONFIG_JUMP_LABLE instead
> of HAVE_JUMP_LABLE.
>
> Fixes: 971502d77faa ("bridge: netfilter: unroll NF_HOOK helper in bridge input path")
> Signed-off-by: Kefeng Wang <wangkefeng.wang@xxxxxxxxxx>

Hmm, why do we have to use a macro here? static_key_false() is defined
in both cases, CONFIG_JUMP_LABEL=y or CONFIG_JUMP_LABEL=n.

Thanks.