Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1280934

[PATCH] fs: ramfs: mark once as __initdata

From Rasmus Villemoes <linux@rasmusvillemoes.dk>
Newsgroups linux.kernel
Subject [PATCH] fs: ramfs: mark once as __initdata
Date 2015-12-01 16:10 +0100
Message-ID <qAUJ4-2Pr-33@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


There's no reason to keep this around after init.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
---
 fs/ramfs/inode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ramfs/inode.c b/fs/ramfs/inode.c
index 889d558b4e05..74afa43cced5 100644
--- a/fs/ramfs/inode.c
+++ b/fs/ramfs/inode.c
@@ -257,7 +257,7 @@ static struct file_system_type ramfs_fs_type = {
 
 int __init init_ramfs_fs(void)
 {
-	static unsigned long once;
+	static unsigned long once __initdata;
 
 	if (test_and_set_bit(0, &once))
 		return 0;
-- 
2.6.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

[PATCH] fs: ramfs: mark once as __initdata Rasmus Villemoes <linux@rasmusvillemoes.dk> - 2015-12-01 16:10 +0100

csiph-web