public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH rdma-next] RDMA/nldev: Fix section mismatch warning for nldev
@ 2022-10-28  6:58 Leon Romanovsky
  2022-10-28  7:12 ` Leon Romanovsky
  2022-10-28 16:00 ` Jason Gunthorpe
  0 siblings, 2 replies; 9+ messages in thread
From: Leon Romanovsky @ 2022-10-28  6:58 UTC (permalink / raw)
  To: Jason Gunthorpe; +Cc: linux-rdma, Stephen Rothwell

ppc64_defconfig) produced this warning:

WARNING: modpost: drivers/infiniband/core/ib_core.o: section mismatch in reference: .init_module (section: .init.text) -> .nldev_exit (section: .exit.text)

Fix it by removing __init/__exit markers as nldev is part of ib_core.ko
and as such doesn't require any special notations for entry/exit functions.

Fixes: 6c80b41abe22 ("RDMA/netlink: Add nldev initialization flows")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
---
 drivers/infiniband/core/nldev.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/infiniband/core/nldev.c b/drivers/infiniband/core/nldev.c
index b92358f606d0..4b6815dcd261 100644
--- a/drivers/infiniband/core/nldev.c
+++ b/drivers/infiniband/core/nldev.c
@@ -2532,12 +2532,12 @@ static const struct rdma_nl_cbs nldev_cb_table[RDMA_NLDEV_NUM_OPS] = {
 	},
 };
 
-void __init nldev_init(void)
+void nldev_init(void)
 {
 	rdma_nl_register(RDMA_NL_NLDEV, nldev_cb_table);
 }
 
-void __exit nldev_exit(void)
+void nldev_exit(void)
 {
 	rdma_nl_unregister(RDMA_NL_NLDEV);
 }
-- 
2.37.3


^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2022-10-28 16:49 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-28  6:58 [PATCH rdma-next] RDMA/nldev: Fix section mismatch warning for nldev Leon Romanovsky
2022-10-28  7:12 ` Leon Romanovsky
2022-10-28 16:00 ` Jason Gunthorpe
2022-10-28 16:14   ` Leon Romanovsky
2022-10-28 16:15     ` Jason Gunthorpe
2022-10-28 16:19       ` Leon Romanovsky
2022-10-28 16:34         ` Jason Gunthorpe
2022-10-28 16:47           ` Leon Romanovsky
2022-10-28 16:48             ` Jason Gunthorpe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox