* [PATCH] net/handshake: Fix section mismatch in handshake_exit
@ 2023-04-20 17:37 Geert Uytterhoeven
2023-04-21 0:36 ` Chuck Lever
2023-04-22 3:30 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Geert Uytterhoeven @ 2023-04-20 17:37 UTC (permalink / raw)
To: Chuck Lever, David S . Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni
Cc: kernel-tls-handshake, netdev, linux-kernel
If CONFIG_NET_NS=n (e.g. m68k/defconfig):
WARNING: modpost: vmlinux.o: section mismatch in reference: handshake_exit (section: .exit.text) -> handshake_genl_net_ops (section: .init.data)
ERROR: modpost: Section mismatches detected.
Fix this by dropping the __net_initdata tag from handshake_genl_net_ops.
Fixes: 3b3009ea8abb713b ("net/handshake: Create a NETLINK service for handling handshake requests")
Reported-by: noreply@ellerman.id.au
Closes: http://kisskb.ellerman.id.au/kisskb/buildresult/14912987
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
---
net/handshake/netlink.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/handshake/netlink.c b/net/handshake/netlink.c
index 8ea0ff993f9fba50..35c9c445e0b850d8 100644
--- a/net/handshake/netlink.c
+++ b/net/handshake/netlink.c
@@ -249,7 +249,7 @@ static void __net_exit handshake_net_exit(struct net *net)
}
}
-static struct pernet_operations __net_initdata handshake_genl_net_ops = {
+static struct pernet_operations handshake_genl_net_ops = {
.init = handshake_net_init,
.exit = handshake_net_exit,
.id = &handshake_net_id,
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] net/handshake: Fix section mismatch in handshake_exit
2023-04-20 17:37 [PATCH] net/handshake: Fix section mismatch in handshake_exit Geert Uytterhoeven
@ 2023-04-21 0:36 ` Chuck Lever
2023-04-22 3:30 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Chuck Lever @ 2023-04-21 0:36 UTC (permalink / raw)
To: Geert Uytterhoeven
Cc: Chuck Lever, David S . Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, kernel-tls-handshake, netdev, linux-kernel
On Thu, Apr 20, 2023 at 07:37:23PM +0200, Geert Uytterhoeven wrote:
> If CONFIG_NET_NS=n (e.g. m68k/defconfig):
>
> WARNING: modpost: vmlinux.o: section mismatch in reference: handshake_exit (section: .exit.text) -> handshake_genl_net_ops (section: .init.data)
> ERROR: modpost: Section mismatches detected.
>
> Fix this by dropping the __net_initdata tag from handshake_genl_net_ops.
>
> Fixes: 3b3009ea8abb713b ("net/handshake: Create a NETLINK service for handling handshake requests")
> Reported-by: noreply@ellerman.id.au
> Closes: http://kisskb.ellerman.id.au/kisskb/buildresult/14912987
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Reviewed-by: Chuck Lever <chuck.lever@oracle.com>
> ---
> net/handshake/netlink.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/net/handshake/netlink.c b/net/handshake/netlink.c
> index 8ea0ff993f9fba50..35c9c445e0b850d8 100644
> --- a/net/handshake/netlink.c
> +++ b/net/handshake/netlink.c
> @@ -249,7 +249,7 @@ static void __net_exit handshake_net_exit(struct net *net)
> }
> }
>
> -static struct pernet_operations __net_initdata handshake_genl_net_ops = {
> +static struct pernet_operations handshake_genl_net_ops = {
> .init = handshake_net_init,
> .exit = handshake_net_exit,
> .id = &handshake_net_id,
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] net/handshake: Fix section mismatch in handshake_exit
2023-04-20 17:37 [PATCH] net/handshake: Fix section mismatch in handshake_exit Geert Uytterhoeven
2023-04-21 0:36 ` Chuck Lever
@ 2023-04-22 3:30 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-04-22 3:30 UTC (permalink / raw)
To: Geert Uytterhoeven
Cc: chuck.lever, davem, edumazet, kuba, pabeni, kernel-tls-handshake,
netdev, linux-kernel
Hello:
This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Thu, 20 Apr 2023 19:37:23 +0200 you wrote:
> If CONFIG_NET_NS=n (e.g. m68k/defconfig):
>
> WARNING: modpost: vmlinux.o: section mismatch in reference: handshake_exit (section: .exit.text) -> handshake_genl_net_ops (section: .init.data)
> ERROR: modpost: Section mismatches detected.
>
> Fix this by dropping the __net_initdata tag from handshake_genl_net_ops.
>
> [...]
Here is the summary with links:
- net/handshake: Fix section mismatch in handshake_exit
https://git.kernel.org/netdev/net-next/c/6aa445e39693
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-04-22 3:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-20 17:37 [PATCH] net/handshake: Fix section mismatch in handshake_exit Geert Uytterhoeven
2023-04-21 0:36 ` Chuck Lever
2023-04-22 3:30 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox