[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20140423180539.0ddfc2477204f890c09f199d@skynet.be>
Date: Wed, 23 Apr 2014 18:05:39 +0200
From: Fabian Frederick <fabf@...net.be>
To: linux-kernel <linux-kernel@...r.kernel.org>
Cc: Tytso <tytso@....edu>, akpm <akpm@...ux-foundation.org>
Subject: [PATCH 1/1] fs/ext4/super.c: add __exit to
ext4_destroy_lazyinit_thread
ext4_destroy_lazyinit_thread is only called by __exit ext4_exit_fs
Cc: "Theodore Ts'o" <tytso@....edu>
Cc: Andrew Morton <akpm@...ux-foundation.org>
Signed-off-by: Fabian Frederick <fabf@...net.be>
---
fs/ext4/super.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index f3c6670..a2b097a 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -80,7 +80,7 @@ static struct dentry *ext4_mount(struct file_system_type *fs_type, int flags,
static inline int ext2_feature_set_ok(struct super_block *sb);
static inline int ext3_feature_set_ok(struct super_block *sb);
static int ext4_feature_set_ok(struct super_block *sb, int readonly);
-static void ext4_destroy_lazyinit_thread(void);
+static void __exit ext4_destroy_lazyinit_thread(void);
static void ext4_unregister_li_request(struct super_block *sb);
static void ext4_clear_request_list(void);
static int ext4_reserve_clusters(struct ext4_sb_info *, ext4_fsblk_t);
@@ -3155,7 +3155,7 @@ out:
* We do not need to lock anything since this is called on
* module unload.
*/
-static void ext4_destroy_lazyinit_thread(void)
+static void __exit ext4_destroy_lazyinit_thread(void)
{
/*
* If thread exited earlier
--
1.9.1
--
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