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/quota.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/quota.h')
-rw-r--r-- | fs/gfs2/quota.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/fs/gfs2/quota.h b/fs/gfs2/quota.h index 6702a56d49b5..d93c61c99365 100644 --- a/fs/gfs2/quota.h +++ b/fs/gfs2/quota.h | |||
@@ -10,20 +10,20 @@ | |||
10 | #ifndef __QUOTA_DOT_H__ | 10 | #ifndef __QUOTA_DOT_H__ |
11 | #define __QUOTA_DOT_H__ | 11 | #define __QUOTA_DOT_H__ |
12 | 12 | ||
13 | #define NO_QUOTA_CHANGE ((uint32_t)-1) | 13 | #define NO_QUOTA_CHANGE ((u32)-1) |
14 | 14 | ||
15 | int gfs2_quota_hold(struct gfs2_inode *ip, uint32_t uid, uint32_t gid); | 15 | int gfs2_quota_hold(struct gfs2_inode *ip, u32 uid, u32 gid); |
16 | void gfs2_quota_unhold(struct gfs2_inode *ip); | 16 | void gfs2_quota_unhold(struct gfs2_inode *ip); |
17 | 17 | ||
18 | int gfs2_quota_lock(struct gfs2_inode *ip, uint32_t uid, uint32_t gid); | 18 | int gfs2_quota_lock(struct gfs2_inode *ip, u32 uid, u32 gid); |
19 | void gfs2_quota_unlock(struct gfs2_inode *ip); | 19 | void gfs2_quota_unlock(struct gfs2_inode *ip); |
20 | 20 | ||
21 | int gfs2_quota_check(struct gfs2_inode *ip, uint32_t uid, uint32_t gid); | 21 | int gfs2_quota_check(struct gfs2_inode *ip, u32 uid, u32 gid); |
22 | void gfs2_quota_change(struct gfs2_inode *ip, int64_t change, | 22 | void gfs2_quota_change(struct gfs2_inode *ip, s64 change, |
23 | uint32_t uid, uint32_t gid); | 23 | u32 uid, u32 gid); |
24 | 24 | ||
25 | int gfs2_quota_sync(struct gfs2_sbd *sdp); | 25 | int gfs2_quota_sync(struct gfs2_sbd *sdp); |
26 | int gfs2_quota_refresh(struct gfs2_sbd *sdp, int user, uint32_t id); | 26 | int gfs2_quota_refresh(struct gfs2_sbd *sdp, int user, u32 id); |
27 | 27 | ||
28 | int gfs2_quota_init(struct gfs2_sbd *sdp); | 28 | int gfs2_quota_init(struct gfs2_sbd *sdp); |
29 | void gfs2_quota_scan(struct gfs2_sbd *sdp); | 29 | void gfs2_quota_scan(struct gfs2_sbd *sdp); |