aboutsummaryrefslogtreecommitdiffstats
path: root/fs/sync.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2009-05-05 09:41:25 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2009-06-11 21:36:06 -0400
commit5af7926ff33b68b3ba46531471c6e0564b285efc (patch)
treea25266f9db482ce9dd8e663148ffb0f1a524bd83 /fs/sync.c
parente5004753388dcf5e1b8a52ac0ab807d232340fbb (diff)
enforce ->sync_fs is only called for rw superblock
Make sure a superblock really is writeable by checking MS_RDONLY under s_umount. sync_filesystems needed some re-arragement for that, but all but one sync_filesystem caller had the correct locking already so that we could add that check there. cachefiles grew s_umount locking. I've also added a WARN_ON to sync_filesystem to assert this for future callers. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/sync.c')
-rw-r--r--fs/sync.c23
1 files changed, 16 insertions, 7 deletions
diff --git a/fs/sync.c b/fs/sync.c
index 4487b5560dc8..89c37f732afa 100644
--- a/fs/sync.c
+++ b/fs/sync.c
@@ -51,6 +51,18 @@ int sync_filesystem(struct super_block *sb)
51{ 51{
52 int ret; 52 int ret;
53 53
54 /*
55 * We need to be protected against the filesystem going from
56 * r/o to r/w or vice versa.
57 */
58 WARN_ON(!rwsem_is_locked(&sb->s_umount));
59
60 /*
61 * No point in syncing out anything if the filesystem is read-only.
62 */
63 if (sb->s_flags & MS_RDONLY)
64 return 0;
65
54 ret = __sync_filesystem(sb, 0); 66 ret = __sync_filesystem(sb, 0);
55 if (ret < 0) 67 if (ret < 0)
56 return ret; 68 return ret;
@@ -79,25 +91,22 @@ static void sync_filesystems(int wait)
79 91
80 mutex_lock(&mutex); /* Could be down_interruptible */ 92 mutex_lock(&mutex); /* Could be down_interruptible */
81 spin_lock(&sb_lock); 93 spin_lock(&sb_lock);
82 list_for_each_entry(sb, &super_blocks, s_list) { 94 list_for_each_entry(sb, &super_blocks, s_list)
83 if (sb->s_flags & MS_RDONLY)
84 continue;
85 sb->s_need_sync = 1; 95 sb->s_need_sync = 1;
86 }
87 96
88restart: 97restart:
89 list_for_each_entry(sb, &super_blocks, s_list) { 98 list_for_each_entry(sb, &super_blocks, s_list) {
90 if (!sb->s_need_sync) 99 if (!sb->s_need_sync)
91 continue; 100 continue;
92 sb->s_need_sync = 0; 101 sb->s_need_sync = 0;
93 if (sb->s_flags & MS_RDONLY)
94 continue; /* hm. Was remounted r/o meanwhile */
95 sb->s_count++; 102 sb->s_count++;
96 spin_unlock(&sb_lock); 103 spin_unlock(&sb_lock);
104
97 down_read(&sb->s_umount); 105 down_read(&sb->s_umount);
98 if (sb->s_root) 106 if (!(sb->s_flags & MS_RDONLY) && sb->s_root)
99 __sync_filesystem(sb, wait); 107 __sync_filesystem(sb, wait);
100 up_read(&sb->s_umount); 108 up_read(&sb->s_umount);
109
101 /* restart only when sb is no longer on the list */ 110 /* restart only when sb is no longer on the list */
102 spin_lock(&sb_lock); 111 spin_lock(&sb_lock);
103 if (__put_super_and_need_restart(sb)) 112 if (__put_super_and_need_restart(sb))