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/rgrp.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/rgrp.h')
-rw-r--r-- | fs/gfs2/rgrp.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/gfs2/rgrp.h b/fs/gfs2/rgrp.h index f94761bf3460..3d6ae37e85df 100644 --- a/fs/gfs2/rgrp.h +++ b/fs/gfs2/rgrp.h | |||
@@ -12,7 +12,7 @@ | |||
12 | 12 | ||
13 | void gfs2_rgrp_verify(struct gfs2_rgrpd *rgd); | 13 | void gfs2_rgrp_verify(struct gfs2_rgrpd *rgd); |
14 | 14 | ||
15 | struct gfs2_rgrpd *gfs2_blk2rgrpd(struct gfs2_sbd *sdp, uint64_t blk); | 15 | struct gfs2_rgrpd *gfs2_blk2rgrpd(struct gfs2_sbd *sdp, u64 blk); |
16 | struct gfs2_rgrpd *gfs2_rgrpd_get_first(struct gfs2_sbd *sdp); | 16 | struct gfs2_rgrpd *gfs2_rgrpd_get_first(struct gfs2_sbd *sdp); |
17 | struct gfs2_rgrpd *gfs2_rgrpd_get_next(struct gfs2_rgrpd *rgd); | 17 | struct gfs2_rgrpd *gfs2_rgrpd_get_next(struct gfs2_rgrpd *rgd); |
18 | 18 | ||
@@ -35,14 +35,14 @@ gfs2_inplace_reserve_i((ip), __FILE__, __LINE__) | |||
35 | 35 | ||
36 | void gfs2_inplace_release(struct gfs2_inode *ip); | 36 | void gfs2_inplace_release(struct gfs2_inode *ip); |
37 | 37 | ||
38 | unsigned char gfs2_get_block_type(struct gfs2_rgrpd *rgd, uint64_t block); | 38 | unsigned char gfs2_get_block_type(struct gfs2_rgrpd *rgd, u64 block); |
39 | 39 | ||
40 | u64 gfs2_alloc_data(struct gfs2_inode *ip); | 40 | u64 gfs2_alloc_data(struct gfs2_inode *ip); |
41 | u64 gfs2_alloc_meta(struct gfs2_inode *ip); | 41 | u64 gfs2_alloc_meta(struct gfs2_inode *ip); |
42 | u64 gfs2_alloc_di(struct gfs2_inode *ip, u64 *generation); | 42 | u64 gfs2_alloc_di(struct gfs2_inode *ip, u64 *generation); |
43 | 43 | ||
44 | void gfs2_free_data(struct gfs2_inode *ip, uint64_t bstart, uint32_t blen); | 44 | void gfs2_free_data(struct gfs2_inode *ip, u64 bstart, u32 blen); |
45 | void gfs2_free_meta(struct gfs2_inode *ip, uint64_t bstart, uint32_t blen); | 45 | void gfs2_free_meta(struct gfs2_inode *ip, u64 bstart, u32 blen); |
46 | void gfs2_free_di(struct gfs2_rgrpd *rgd, struct gfs2_inode *ip); | 46 | void gfs2_free_di(struct gfs2_rgrpd *rgd, struct gfs2_inode *ip); |
47 | void gfs2_unlink_di(struct inode *inode); | 47 | void gfs2_unlink_di(struct inode *inode); |
48 | 48 | ||
@@ -54,7 +54,7 @@ struct gfs2_rgrp_list { | |||
54 | }; | 54 | }; |
55 | 55 | ||
56 | void gfs2_rlist_add(struct gfs2_sbd *sdp, struct gfs2_rgrp_list *rlist, | 56 | void gfs2_rlist_add(struct gfs2_sbd *sdp, struct gfs2_rgrp_list *rlist, |
57 | uint64_t block); | 57 | u64 block); |
58 | void gfs2_rlist_alloc(struct gfs2_rgrp_list *rlist, unsigned int state, | 58 | void gfs2_rlist_alloc(struct gfs2_rgrp_list *rlist, unsigned int state, |
59 | int flags); | 59 | int flags); |
60 | void gfs2_rlist_free(struct gfs2_rgrp_list *rlist); | 60 | void gfs2_rlist_free(struct gfs2_rgrp_list *rlist); |