All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] linux: add __exit to module_exit() handlers
@ 2007-12-11 16:40 Jan Beulich
  0 siblings, 0 replies; only message in thread
From: Jan Beulich @ 2007-12-11 16:40 UTC (permalink / raw)
  To: xen-devel

As usual, written and tested on 2.6.24-rc4 and made apply to the 2.6.18
tree without further testing.

Signed-off-by: Jan Beulich <jbeulich@novell.com>

Index: head-2007-12-11/drivers/xen/balloon/balloon.c
===================================================================
--- head-2007-12-11.orig/drivers/xen/balloon/balloon.c	2007-10-23 08:59:39.000000000 +0200
+++ head-2007-12-11/drivers/xen/balloon/balloon.c	2007-12-11 13:17:53.000000000 +0100
@@ -527,7 +527,7 @@ static int __init balloon_init(void)
 
 subsys_initcall(balloon_init);
 
-static void balloon_exit(void) 
+static void __exit balloon_exit(void)
 {
     /* XXX - release balloon here */
     return; 
Index: head-2007-12-11/drivers/xen/blkfront/blkfront.c
===================================================================
--- head-2007-12-11.orig/drivers/xen/blkfront/blkfront.c	2007-12-11 11:21:54.000000000 +0100
+++ head-2007-12-11/drivers/xen/blkfront/blkfront.c	2007-12-11 13:12:17.000000000 +0100
@@ -911,7 +911,7 @@ static int __init xlblk_init(void)
 module_init(xlblk_init);
 
 
-static void xlblk_exit(void)
+static void __exit xlblk_exit(void)
 {
 	return xenbus_unregister_driver(&blkfront);
 }
Index: head-2007-12-11/drivers/xen/core/xen_sysfs.c
===================================================================
--- head-2007-12-11.orig/drivers/xen/core/xen_sysfs.c	2007-12-11 11:13:33.000000000 +0100
+++ head-2007-12-11/drivers/xen/core/xen_sysfs.c	2007-12-11 13:12:49.000000000 +0100
@@ -364,7 +364,7 @@ out:
 	return ret;
 }
 
-static void hyper_sysfs_exit(void)
+static void __exit hyper_sysfs_exit(void)
 {
 	xen_properties_destroy();
 	xen_compilation_destroy();
Index: head-2007-12-11/drivers/xen/evtchn/evtchn.c
===================================================================
--- head-2007-12-11.orig/drivers/xen/evtchn/evtchn.c	2007-12-11 13:10:58.000000000 +0100
+++ head-2007-12-11/drivers/xen/evtchn/evtchn.c	2007-12-11 11:45:10.000000000 +0100
@@ -544,7 +544,7 @@ static int __init evtchn_init(void)
 	return 0;
 }
 
-static void evtchn_cleanup(void)
+static void __exit evtchn_cleanup(void)
 {
 	misc_deregister(&evtchn_miscdev);
 	unregister_cpu_notifier(&evtchn_cpu_nfb);

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-12-11 16:40 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-11 16:40 [PATCH] linux: add __exit to module_exit() handlers Jan Beulich

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.