diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2006-09-04 12:49:07 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-09-04 12:49:07 -0400 |
commit | cd915493fce912f1bd838ee1250737ecf33b8fae (patch) | |
tree | e14ec6643de91f473edb26a89905e710596fe6bc /fs/gfs2/meta_io.h | |
parent | a91ea69ffd3f8a0b7139bfd44042ab384461e631 (diff) |
[GFS2] Change all types to uX style
This makes all fixed size types have consistent names.
Cc: Jan Engelhardt <jengelh@linux01.gwdg.de>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
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 4ddc936aae16..9a9acc940292 100644 --- a/fs/gfs2/meta_io.h +++ b/fs/gfs2/meta_io.h | |||
@@ -44,8 +44,8 @@ void gfs2_ail_empty_gl(struct gfs2_glock *gl); | |||
44 | void gfs2_meta_inval(struct gfs2_glock *gl); | 44 | void gfs2_meta_inval(struct gfs2_glock *gl); |
45 | void gfs2_meta_sync(struct gfs2_glock *gl, int flags); | 45 | void gfs2_meta_sync(struct gfs2_glock *gl, int flags); |
46 | 46 | ||
47 | struct buffer_head *gfs2_meta_new(struct gfs2_glock *gl, uint64_t blkno); | 47 | struct buffer_head *gfs2_meta_new(struct gfs2_glock *gl, u64 blkno); |
48 | int gfs2_meta_read(struct gfs2_glock *gl, uint64_t blkno, | 48 | int gfs2_meta_read(struct gfs2_glock *gl, u64 blkno, |
49 | int flags, struct buffer_head **bhp); | 49 | int flags, struct buffer_head **bhp); |
50 | int gfs2_meta_reread(struct gfs2_sbd *sdp, struct buffer_head *bh, int flags); | 50 | int gfs2_meta_reread(struct gfs2_sbd *sdp, struct buffer_head *bh, int flags); |
51 | 51 | ||
@@ -55,10 +55,10 @@ void gfs2_pin(struct gfs2_sbd *sdp, struct buffer_head *bh); | |||
55 | void gfs2_unpin(struct gfs2_sbd *sdp, struct buffer_head *bh, | 55 | void gfs2_unpin(struct gfs2_sbd *sdp, struct buffer_head *bh, |
56 | struct gfs2_ail *ai); | 56 | struct gfs2_ail *ai); |
57 | 57 | ||
58 | void gfs2_meta_wipe(struct gfs2_inode *ip, uint64_t bstart, uint32_t blen); | 58 | void gfs2_meta_wipe(struct gfs2_inode *ip, u64 bstart, u32 blen); |
59 | 59 | ||
60 | void gfs2_meta_cache_flush(struct gfs2_inode *ip); | 60 | void gfs2_meta_cache_flush(struct gfs2_inode *ip); |
61 | int gfs2_meta_indirect_buffer(struct gfs2_inode *ip, int height, uint64_t num, | 61 | int gfs2_meta_indirect_buffer(struct gfs2_inode *ip, int height, u64 num, |
62 | int new, struct buffer_head **bhp); | 62 | int new, struct buffer_head **bhp); |
63 | 63 | ||
64 | static inline int gfs2_meta_inode_buffer(struct gfs2_inode *ip, | 64 | static inline int gfs2_meta_inode_buffer(struct gfs2_inode *ip, |
@@ -67,7 +67,7 @@ static inline int gfs2_meta_inode_buffer(struct gfs2_inode *ip, | |||
67 | return gfs2_meta_indirect_buffer(ip, 0, ip->i_num.no_addr, 0, bhp); | 67 | return gfs2_meta_indirect_buffer(ip, 0, ip->i_num.no_addr, 0, bhp); |
68 | } | 68 | } |
69 | 69 | ||
70 | void gfs2_meta_ra(struct gfs2_glock *gl, uint64_t dblock, uint32_t extlen); | 70 | void gfs2_meta_ra(struct gfs2_glock *gl, u64 dblock, u32 extlen); |
71 | void gfs2_meta_syncfs(struct gfs2_sbd *sdp); | 71 | void gfs2_meta_syncfs(struct gfs2_sbd *sdp); |
72 | 72 | ||
73 | #endif /* __DIO_DOT_H__ */ | 73 | #endif /* __DIO_DOT_H__ */ |