diff options
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 (patch) | |
tree | 7a34ec11676096b88811843e03464ba7a4de2179 /fs | |
parent | 706a4e5a120aa40b31a22a4ad0cdd738d78a91a3 (diff) | |
download | linux-15d0f5ea348b9c4e6d41df294dde38a56a39c7bf.tar.gz linux-15d0f5ea348b9c4e6d41df294dde38a56a39c7bf.tar.bz2 linux-15d0f5ea348b9c4e6d41df294dde38a56a39c7bf.zip |
Make super_blocks and sb_lock static
The only user outside of fs/super.c is gone now
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Acked-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/super.c | 4 |
1 files 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", |