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.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/nilfs2/the_nilfs.h b/fs/nilfs2/the_nilfs.h
index 99f7e29a5335..be4c040fd629 100644
--- a/fs/nilfs2/the_nilfs.h
+++ b/fs/nilfs2/the_nilfs.h
@@ -201,6 +201,7 @@ void put_nilfs(struct the_nilfs *);
201int init_nilfs(struct the_nilfs *, struct nilfs_sb_info *, char *); 201int init_nilfs(struct the_nilfs *, struct nilfs_sb_info *, char *);
202int load_nilfs(struct the_nilfs *, struct nilfs_sb_info *); 202int load_nilfs(struct the_nilfs *, struct nilfs_sb_info *);
203int nilfs_count_free_blocks(struct the_nilfs *, sector_t *); 203int nilfs_count_free_blocks(struct the_nilfs *, sector_t *);
204struct nilfs_sb_info *nilfs_find_sbinfo(struct the_nilfs *, int, __u64);
204int nilfs_checkpoint_is_mounted(struct the_nilfs *, __u64, int); 205int nilfs_checkpoint_is_mounted(struct the_nilfs *, __u64, int);
205int nilfs_near_disk_full(struct the_nilfs *); 206int nilfs_near_disk_full(struct the_nilfs *);
206void nilfs_fall_back_super_block(struct the_nilfs *); 207void nilfs_fall_back_super_block(struct the_nilfs *);
@@ -243,6 +244,12 @@ nilfs_detach_writer(struct the_nilfs *nilfs, struct nilfs_sb_info *sbi)
243 mutex_unlock(&nilfs->ns_writer_mutex); 244 mutex_unlock(&nilfs->ns_writer_mutex);
244} 245}
245 246
247static inline void nilfs_put_sbinfo(struct nilfs_sb_info *sbi)
248{
249 if (!atomic_dec_and_test(&sbi->s_count))
250 kfree(sbi);
251}
252
246static inline void 253static inline void
247nilfs_get_segment_range(struct the_nilfs *nilfs, __u64 segnum, 254nilfs_get_segment_range(struct the_nilfs *nilfs, __u64 segnum,
248 sector_t *seg_start, sector_t *seg_end) 255 sector_t *seg_start, sector_t *seg_end)