aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nilfs2/the_nilfs.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/nilfs2/the_nilfs.h')
-rw-r--r--fs/nilfs2/the_nilfs.h27
1 files changed, 6 insertions, 21 deletions
diff --git a/fs/nilfs2/the_nilfs.h b/fs/nilfs2/the_nilfs.h
index 1b9caafb8662..fa3a1dfe4053 100644
--- a/fs/nilfs2/the_nilfs.h
+++ b/fs/nilfs2/the_nilfs.h
@@ -50,8 +50,7 @@ enum {
50 * @ns_sem: semaphore for shared states 50 * @ns_sem: semaphore for shared states
51 * @ns_super_sem: semaphore for global operations across super block instances 51 * @ns_super_sem: semaphore for global operations across super block instances
52 * @ns_mount_mutex: mutex protecting mount process of nilfs 52 * @ns_mount_mutex: mutex protecting mount process of nilfs
53 * @ns_writer_mutex: mutex protecting ns_writer attach/detach 53 * @ns_writer_sem: semaphore protecting ns_writer attach/detach
54 * @ns_writer_refcount: number of referrers on ns_writer
55 * @ns_current: back pointer to current mount 54 * @ns_current: back pointer to current mount
56 * @ns_sbh: buffer heads of on-disk super blocks 55 * @ns_sbh: buffer heads of on-disk super blocks
57 * @ns_sbp: pointers to super block data 56 * @ns_sbp: pointers to super block data
@@ -100,8 +99,7 @@ struct the_nilfs {
100 struct rw_semaphore ns_sem; 99 struct rw_semaphore ns_sem;
101 struct rw_semaphore ns_super_sem; 100 struct rw_semaphore ns_super_sem;
102 struct mutex ns_mount_mutex; 101 struct mutex ns_mount_mutex;
103 struct mutex ns_writer_mutex; 102 struct rw_semaphore ns_writer_sem;
104 atomic_t ns_writer_refcount;
105 103
106 /* 104 /*
107 * components protected by ns_super_sem 105 * components protected by ns_super_sem
@@ -221,34 +219,21 @@ static inline void get_nilfs(struct the_nilfs *nilfs)
221 atomic_inc(&nilfs->ns_count); 219 atomic_inc(&nilfs->ns_count);
222} 220}
223 221
224static inline struct nilfs_sb_info *nilfs_get_writer(struct the_nilfs *nilfs)
225{
226 if (atomic_inc_and_test(&nilfs->ns_writer_refcount))
227 mutex_lock(&nilfs->ns_writer_mutex);
228 return nilfs->ns_writer;
229}
230
231static inline void nilfs_put_writer(struct the_nilfs *nilfs)
232{
233 if (atomic_add_negative(-1, &nilfs->ns_writer_refcount))
234 mutex_unlock(&nilfs->ns_writer_mutex);
235}
236
237static inline void 222static inline void
238nilfs_attach_writer(struct the_nilfs *nilfs, struct nilfs_sb_info *sbi) 223nilfs_attach_writer(struct the_nilfs *nilfs, struct nilfs_sb_info *sbi)
239{ 224{
240 mutex_lock(&nilfs->ns_writer_mutex); 225 down_write(&nilfs->ns_writer_sem);
241 nilfs->ns_writer = sbi; 226 nilfs->ns_writer = sbi;
242 mutex_unlock(&nilfs->ns_writer_mutex); 227 up_write(&nilfs->ns_writer_sem);
243} 228}
244 229
245static inline void 230static inline void
246nilfs_detach_writer(struct the_nilfs *nilfs, struct nilfs_sb_info *sbi) 231nilfs_detach_writer(struct the_nilfs *nilfs, struct nilfs_sb_info *sbi)
247{ 232{
248 mutex_lock(&nilfs->ns_writer_mutex); 233 down_write(&nilfs->ns_writer_sem);
249 if (sbi == nilfs->ns_writer) 234 if (sbi == nilfs->ns_writer)
250 nilfs->ns_writer = NULL; 235 nilfs->ns_writer = NULL;
251 mutex_unlock(&nilfs->ns_writer_mutex); 236 up_write(&nilfs->ns_writer_sem);
252} 237}
253 238
254static inline void nilfs_put_sbinfo(struct nilfs_sb_info *sbi) 239static inline void nilfs_put_sbinfo(struct nilfs_sb_info *sbi)