diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2010-03-22 19:56:42 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2010-05-21 18:31:15 -0400 |
commit | 8edd64bd6089e21f47dcdebb14b598b713213ddc (patch) | |
tree | c356a358c7b823433728869ff430ad205c4b8a5d /fs/super.c | |
parent | 551de6f34dfeefbeeadb32909c387d393114ecc8 (diff) |
get rid of restarts in sync_filesystems()
At the same time we can kill s_need_restart and local mutex in there.
__put_super() made public for a while; will be gone later.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/super.c')
-rw-r--r-- | fs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/super.c b/fs/super.c index 0390461dfca0..ba99524998f7 100644 --- a/fs/super.c +++ b/fs/super.c | |||
@@ -130,7 +130,7 @@ static inline void destroy_super(struct super_block *s) | |||
130 | * Drop a superblock's refcount. Returns non-zero if the superblock was | 130 | * Drop a superblock's refcount. Returns non-zero if the superblock was |
131 | * destroyed. The caller must hold sb_lock. | 131 | * destroyed. The caller must hold sb_lock. |
132 | */ | 132 | */ |
133 | static int __put_super(struct super_block *sb) | 133 | int __put_super(struct super_block *sb) |
134 | { | 134 | { |
135 | int ret = 0; | 135 | int ret = 0; |
136 | 136 | ||