aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/super.c4
-rw-r--r--include/linux/fs.h2
2 files changed, 2 insertions, 4 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 @@
36#include "internal.h" 36#include "internal.h"
37 37
38 38
39LIST_HEAD(super_blocks); 39static LIST_HEAD(super_blocks);
40DEFINE_SPINLOCK(sb_lock); 40static DEFINE_SPINLOCK(sb_lock);
41 41
42static char *sb_writers_name[SB_FREEZE_LEVELS] = { 42static char *sb_writers_name[SB_FREEZE_LEVELS] = {
43 "sb_writers", 43 "sb_writers",
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 65d02de342e1..2f717baefdf8 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -1183,8 +1183,6 @@ struct mm_struct;
1183#define UMOUNT_NOFOLLOW 0x00000008 /* Don't follow symlink on umount */ 1183#define UMOUNT_NOFOLLOW 0x00000008 /* Don't follow symlink on umount */
1184#define UMOUNT_UNUSED 0x80000000 /* Flag guaranteed to be unused */ 1184#define UMOUNT_UNUSED 0x80000000 /* Flag guaranteed to be unused */
1185 1185
1186extern struct list_head super_blocks;
1187extern spinlock_t sb_lock;
1188 1186
1189/* Possible states of 'frozen' field */ 1187/* Possible states of 'frozen' field */
1190enum { 1188enum {