Skip to content

Commit c9f8f94

Browse files
YueHaibinggregkh
authored andcommitted
net: ipv6: unexport __init-annotated seg6_hmac_net_init()
commit 53ad461 upstream. As of commit 5801f06 ("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: bf355b8 ("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>
1 parent 0b842b9 commit c9f8f94

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

net/ipv6/seg6_hmac.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,6 @@ int __net_init seg6_hmac_net_init(struct net *net)
408408

409409
return 0;
410410
}
411-
EXPORT_SYMBOL(seg6_hmac_net_init);
412411

413412
void seg6_hmac_exit(void)
414413
{

0 commit comments

Comments
 (0)