All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Jan Beulich" <jbeulich@novell.com>
To: xen-devel@lists.xensource.com
Subject: [PATCH] linux: add __exit to module_exit() handlers
Date: Tue, 11 Dec 2007 16:40:57 +0000	[thread overview]
Message-ID: <475ECBA9.76E4.0078.0@novell.com> (raw)

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);

                 reply	other threads:[~2007-12-11 16:40 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=475ECBA9.76E4.0078.0@novell.com \
    --to=jbeulich@novell.com \
    --cc=xen-devel@lists.xensource.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.