WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [linux-2.6.18-xen] xen: add __exit to module_exit() hand

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [linux-2.6.18-xen] xen: add __exit to module_exit() handlers
From: "Xen patchbot-linux-2.6.18-xen" <patchbot-linux-2.6.18-xen@xxxxxxxxxxxxxxxxxxx>
Date: Wed, 12 Dec 2007 13:50:34 -0800
Delivery-date: Wed, 12 Dec 2007 13:52:04 -0800
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1197454458 0
# Node ID 7b2735c64dca31ff281102504ae9bcfe979e28e1
# Parent  869bfd143693761cd7f44afe374c96c70a4578a5
xen: add __exit to module_exit() handlers
Signed-off-by: Jan Beulich <jbeulich@xxxxxxxxxx>
---
 drivers/xen/balloon/balloon.c   |    2 +-
 drivers/xen/blkfront/blkfront.c |    2 +-
 drivers/xen/core/xen_sysfs.c    |    2 +-
 drivers/xen/evtchn/evtchn.c     |    2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff -r 869bfd143693 -r 7b2735c64dca drivers/xen/balloon/balloon.c
--- a/drivers/xen/balloon/balloon.c     Wed Dec 12 10:13:46 2007 +0000
+++ b/drivers/xen/balloon/balloon.c     Wed Dec 12 10:14:18 2007 +0000
@@ -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; 
diff -r 869bfd143693 -r 7b2735c64dca drivers/xen/blkfront/blkfront.c
--- a/drivers/xen/blkfront/blkfront.c   Wed Dec 12 10:13:46 2007 +0000
+++ b/drivers/xen/blkfront/blkfront.c   Wed Dec 12 10:14:18 2007 +0000
@@ -911,7 +911,7 @@ module_init(xlblk_init);
 module_init(xlblk_init);
 
 
-static void xlblk_exit(void)
+static void __exit xlblk_exit(void)
 {
        return xenbus_unregister_driver(&blkfront);
 }
diff -r 869bfd143693 -r 7b2735c64dca drivers/xen/core/xen_sysfs.c
--- a/drivers/xen/core/xen_sysfs.c      Wed Dec 12 10:13:46 2007 +0000
+++ b/drivers/xen/core/xen_sysfs.c      Wed Dec 12 10:14:18 2007 +0000
@@ -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();
diff -r 869bfd143693 -r 7b2735c64dca drivers/xen/evtchn/evtchn.c
--- a/drivers/xen/evtchn/evtchn.c       Wed Dec 12 10:13:46 2007 +0000
+++ b/drivers/xen/evtchn/evtchn.c       Wed Dec 12 10:14:18 2007 +0000
@@ -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);

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [linux-2.6.18-xen] xen: add __exit to module_exit() handlers, Xen patchbot-linux-2.6.18-xen <=