[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <200805111915.34911.lpotenza@inwind.it>
Date: Sun, 11 May 2008 19:15:34 +0200
From: Leonardo Potenza <lpotenza@...ind.it>
To: kernel-janitors@...r.kernel.org
Cc: ccaulfie@...hat.com, teigland@...hat.com,
linux-kernel@...r.kernel.org
Subject: [PATCH] fs/dlm: section mismatch warning fix
From: Leonardo Potenza <lpotenza@...ind.it>
Removed the section mismatch message:
WARNING: fs/dlm/dlm.o(.init.text+0x132): Section mismatch in reference from the function init_module() to the function .exit.text:dlm_netlink_exit()
Since dlm_netlink_exit() is called in the init_dlm() error handling,
the __exit annotation has been removed.
Signed-off-by: Leonardo Potenza <lpotenza@...ind.it>
---
netlink.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: linux-2.6/fs/dlm/netlink.c
===================================================================
--- linux-2.6.orig/fs/dlm/netlink.c
+++ linux-2.6/fs/dlm/netlink.c
@@ -95,7 +95,7 @@ int __init dlm_netlink_init(void)
return rv;
}
-void __exit dlm_netlink_exit(void)
+void dlm_netlink_exit(void)
{
genl_unregister_ops(&family, &dlm_nl_ops);
genl_unregister_family(&family);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists