]> git.baikalelectronics.ru Git - kernel.git/commit
net: ipv6: unexport __init-annotated seg6_hmac_net_init()
authorYueHaibing <yuehaibing@huawei.com>
Tue, 28 Jun 2022 03:31:34 +0000 (11:31 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 7 Jul 2022 15:53:26 +0000 (17:53 +0200)
commitf572321357c4329914a1b24bc4c64488bdef5835
treeb7423154450aba09d04d44e8aa6e8bbae0348d02
parent7badd5ecfbbfb1898d11729cada2b2f2fee7c4ef
net: ipv6: unexport __init-annotated seg6_hmac_net_init()

commit 853014f1d7cc8781db04111cb9d3556c43ab459b upstream.

As of commit 05b72c41710b ("net: ipv6: unexport __init-annotated seg6_hmac_init()"),
EXPORT_SYMBOL and __init is a bad combination because the .init.text
section is freed up after the initialization. Hence, modules cannot
use symbols annotated __init. The access to a freed symbol may end up
with kernel panic.

This remove the EXPORT_SYMBOL to fix modpost warning:

WARNING: modpost: vmlinux.o(___ksymtab+seg6_hmac_net_init+0x0): Section mismatch in reference from the variable __ksymtab_seg6_hmac_net_init to the function .init.text:seg6_hmac_net_init()
The symbol seg6_hmac_net_init is exported and annotated __init
Fix this by removing the __init annotation of seg6_hmac_net_init or drop the export.

Fixes: 72caafc2ee5b ("ipv6: sr: add core files for SR HMAC support")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Link: https://lore.kernel.org/r/20220628033134.21088-1-yuehaibing@huawei.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/ipv6/seg6_hmac.c