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/glock.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/glock.h')
-rw-r--r-- | fs/gfs2/glock.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/gfs2/glock.h b/fs/gfs2/glock.h index 1a90a1983beb..4762cdb04f64 100644 --- a/fs/gfs2/glock.h +++ b/fs/gfs2/glock.h | |||
@@ -74,7 +74,7 @@ static inline int gfs2_glock_is_blocking(struct gfs2_glock *gl) | |||
74 | } | 74 | } |
75 | 75 | ||
76 | int gfs2_glock_get(struct gfs2_sbd *sdp, | 76 | int gfs2_glock_get(struct gfs2_sbd *sdp, |
77 | uint64_t number, const struct gfs2_glock_operations *glops, | 77 | u64 number, const struct gfs2_glock_operations *glops, |
78 | int create, struct gfs2_glock **glp); | 78 | int create, struct gfs2_glock **glp); |
79 | void gfs2_glock_hold(struct gfs2_glock *gl); | 79 | void gfs2_glock_hold(struct gfs2_glock *gl); |
80 | int gfs2_glock_put(struct gfs2_glock *gl); | 80 | int gfs2_glock_put(struct gfs2_glock *gl); |
@@ -96,14 +96,14 @@ int gfs2_glock_be_greedy(struct gfs2_glock *gl, unsigned int time); | |||
96 | 96 | ||
97 | void gfs2_glock_dq_uninit(struct gfs2_holder *gh); | 97 | void gfs2_glock_dq_uninit(struct gfs2_holder *gh); |
98 | int gfs2_glock_nq_num(struct gfs2_sbd *sdp, | 98 | int gfs2_glock_nq_num(struct gfs2_sbd *sdp, |
99 | uint64_t number, const struct gfs2_glock_operations *glops, | 99 | u64 number, const struct gfs2_glock_operations *glops, |
100 | unsigned int state, int flags, struct gfs2_holder *gh); | 100 | unsigned int state, int flags, struct gfs2_holder *gh); |
101 | 101 | ||
102 | int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs); | 102 | int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs); |
103 | void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs); | 103 | void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs); |
104 | void gfs2_glock_dq_uninit_m(unsigned int num_gh, struct gfs2_holder *ghs); | 104 | void gfs2_glock_dq_uninit_m(unsigned int num_gh, struct gfs2_holder *ghs); |
105 | 105 | ||
106 | void gfs2_glock_prefetch_num(struct gfs2_sbd *sdp, uint64_t number, | 106 | void gfs2_glock_prefetch_num(struct gfs2_sbd *sdp, u64 number, |
107 | const struct gfs2_glock_operations *glops, | 107 | const struct gfs2_glock_operations *glops, |
108 | unsigned int state, int flags); | 108 | unsigned int state, int flags); |
109 | void gfs2_glock_inode_squish(struct inode *inode); | 109 | void gfs2_glock_inode_squish(struct inode *inode); |