VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   57 Tags
author: Al Viro <viro@ZenIV.linux.org.uk> 2015-02-02 10:07:59 -0700 committer: Jens Axboe <axboe@fb.com> 2015-02-02 10:07:59 -0700 commit: 15d0f5ea348b9c4e6d41df294dde38a56a39c7bf parent: 706a4e5a120aa40b31a22a4ad0cdd738d78a91a3
Commit Summary:
Make super_blocks and sb_lock static
Diffstat:
1 file changed, 2 insertions, 2 deletions
diff --git a/fs/super.c b/fs/super.c
index 3b4dadafdd60..05a021638b11 100644
--- a/fs/super.c
+++ b/fs/super.c
@@ -36,8 +36,8 @@
 #include "internal.h"
 
 
-LIST_HEAD(super_blocks);
-DEFINE_SPINLOCK(sb_lock);
+static LIST_HEAD(super_blocks);
+static DEFINE_SPINLOCK(sb_lock);
 
 static char *sb_writers_name[SB_FREEZE_LEVELS] = {
 	"sb_writers",