xfs
[Top] [All Lists]

[PATCH] xfs: add __init/__exit mark to specific init/cleanup functions

To: Tim Shimmin <tes@xxxxxxxxxxxxxxxxxxxxxxx>, Tim Shimmin <xfs-masters@xxxxxxxxxxx>
Subject: [PATCH] xfs: add __init/__exit mark to specific init/cleanup functions
From: Denis Cheng <crquan@xxxxxxxxx>
Date: Sun, 3 Feb 2008 02:07:23 +0800
Cc: xfs@xxxxxxxxxxx, linux-kernel@xxxxxxxxxxxxxxx
Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:from:to:cc:subject:date:message-id:x-mailer; bh=Wu0g60u/KYOWC5JBgRvQHpt2mWsgcKEnD9/RT9q3WOw=; b=QzHmQOTLiNUslOJyKFmjJ8D7RGtXV23oj1vO+D60Gfch6RNhs2d/tGei+CgWK6I7s7uB9k0q9qMdqqnZu1JCF0ht7gSqpHbDvY98EoAbH+HsGtbW2T8hb+hxTDZsoQ/0S2tM+LBF/IRst+ervKBhXr/swkyqKjQhVALvIfieLos=
Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=L+JUWONM0WCFqZm/Y4/xHILkGaGxGPcomV6w4mKGzteuAZ/PAf7hqVeI7ZQjXgKlLhLUEARDPMxjES6t26AbVKDlBAyL93F7uSVGaFEFTcgBZf7sqZZXb/NsFmmfPQVZIE2FGX5OhiLckuBU6OZ1XzIjBZQqS0mPkRPLoqEWOBY=
Sender: xfs-bounce@xxxxxxxxxxx
Signed-off-by: Denis Cheng <crquan@xxxxxxxxx>
---
 fs/xfs/linux-2.6/xfs_super.c |    2 +-
 fs/xfs/linux-2.6/xfs_vnode.c |    2 +-
 fs/xfs/support/ktrace.c      |    4 ++--
 fs/xfs/support/uuid.c        |    2 +-
 fs/xfs/xfs_vfsops.c          |    4 ++--
 5 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c
index 8cb63c6..abacbdd 100644
--- a/fs/xfs/linux-2.6/xfs_super.c
+++ b/fs/xfs/linux-2.6/xfs_super.c
@@ -361,7 +361,7 @@ xfs_fs_inode_init_once(
        inode_init_once(vn_to_inode((bhv_vnode_t *)vnode));
 }
 
-STATIC int
+STATIC int __init
 xfs_init_zones(void)
 {
        xfs_vnode_zone = kmem_zone_init_flags(sizeof(bhv_vnode_t), "xfs_vnode",
diff --git a/fs/xfs/linux-2.6/xfs_vnode.c b/fs/xfs/linux-2.6/xfs_vnode.c
index 814169f..56e23cd 100644
--- a/fs/xfs/linux-2.6/xfs_vnode.c
+++ b/fs/xfs/linux-2.6/xfs_vnode.c
@@ -40,7 +40,7 @@
 #define vptosync(v)             (&vsync[((unsigned long)v) % NVSYNC])
 static wait_queue_head_t vsync[NVSYNC];
 
-void
+void __init
 vn_init(void)
 {
        int i;
diff --git a/fs/xfs/support/ktrace.c b/fs/xfs/support/ktrace.c
index 5cf2e86..17f2b7c 100644
--- a/fs/xfs/support/ktrace.c
+++ b/fs/xfs/support/ktrace.c
@@ -21,7 +21,7 @@ static kmem_zone_t *ktrace_hdr_zone;
 static kmem_zone_t *ktrace_ent_zone;
 static int          ktrace_zentries;
 
-void
+void __init
 ktrace_init(int zentries)
 {
        ktrace_zentries = zentries;
@@ -36,7 +36,7 @@ ktrace_init(int zentries)
        ASSERT(ktrace_ent_zone);
 }
 
-void
+void __exit
 ktrace_uninit(void)
 {
        kmem_zone_destroy(ktrace_hdr_zone);
diff --git a/fs/xfs/support/uuid.c b/fs/xfs/support/uuid.c
index e157015..493a6ec 100644
--- a/fs/xfs/support/uuid.c
+++ b/fs/xfs/support/uuid.c
@@ -133,7 +133,7 @@ uuid_table_remove(uuid_t *uuid)
        mutex_unlock(&uuid_monitor);
 }
 
-void
+void __init
 uuid_init(void)
 {
        mutex_init(&uuid_monitor);
diff --git a/fs/xfs/xfs_vfsops.c b/fs/xfs/xfs_vfsops.c
index a154459..cde337e 100644
--- a/fs/xfs/xfs_vfsops.c
+++ b/fs/xfs/xfs_vfsops.c
@@ -58,7 +58,7 @@
 #include "xfs_vfsops.h"
 
 
-int
+int __init
 xfs_init(void)
 {
        extern kmem_zone_t      *xfs_bmap_free_item_zone;
@@ -152,7 +152,7 @@ xfs_init(void)
        return 0;
 }
 
-void
+void __exit
 xfs_cleanup(void)
 {
        extern kmem_zone_t      *xfs_bmap_free_item_zone;
-- 
1.5.3.8


<Prev in Thread] Current Thread [Next in Thread>
  • [PATCH] xfs: add __init/__exit mark to specific init/cleanup functions, Denis Cheng <=