diff options
Diffstat (limited to 'fs/gfs2/meta_io.h')
-rw-r--r-- | fs/gfs2/meta_io.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/gfs2/meta_io.h b/fs/gfs2/meta_io.h index 3323e6d0ed8f..3ec939e20dff 100644 --- a/fs/gfs2/meta_io.h +++ b/fs/gfs2/meta_io.h | |||
@@ -40,11 +40,6 @@ static inline void gfs2_buffer_copy_tail(struct buffer_head *to_bh, | |||
40 | struct inode *gfs2_aspace_get(struct gfs2_sbd *sdp); | 40 | struct inode *gfs2_aspace_get(struct gfs2_sbd *sdp); |
41 | void gfs2_aspace_put(struct inode *aspace); | 41 | void gfs2_aspace_put(struct inode *aspace); |
42 | 42 | ||
43 | void gfs2_ail1_start_one(struct gfs2_sbd *sdp, struct gfs2_ail *ai); | ||
44 | int gfs2_ail1_empty_one(struct gfs2_sbd *sdp, struct gfs2_ail *ai, int flags); | ||
45 | void gfs2_ail2_empty_one(struct gfs2_sbd *sdp, struct gfs2_ail *ai); | ||
46 | void gfs2_ail_empty_gl(struct gfs2_glock *gl); | ||
47 | |||
48 | void gfs2_meta_inval(struct gfs2_glock *gl); | 43 | void gfs2_meta_inval(struct gfs2_glock *gl); |
49 | void gfs2_meta_sync(struct gfs2_glock *gl); | 44 | void gfs2_meta_sync(struct gfs2_glock *gl); |
50 | 45 | ||
@@ -74,5 +69,10 @@ static inline int gfs2_meta_inode_buffer(struct gfs2_inode *ip, | |||
74 | struct buffer_head *gfs2_meta_ra(struct gfs2_glock *gl, u64 dblock, u32 extlen); | 69 | struct buffer_head *gfs2_meta_ra(struct gfs2_glock *gl, u64 dblock, u32 extlen); |
75 | void gfs2_meta_syncfs(struct gfs2_sbd *sdp); | 70 | void gfs2_meta_syncfs(struct gfs2_sbd *sdp); |
76 | 71 | ||
72 | #define buffer_busy(bh) \ | ||
73 | ((bh)->b_state & ((1ul << BH_Dirty) | (1ul << BH_Lock) | (1ul << BH_Pinned))) | ||
74 | #define buffer_in_io(bh) \ | ||
75 | ((bh)->b_state & ((1ul << BH_Dirty) | (1ul << BH_Lock))) | ||
76 | |||
77 | #endif /* __DIO_DOT_H__ */ | 77 | #endif /* __DIO_DOT_H__ */ |
78 | 78 | ||