diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2013-01-31 23:27:54 -0500 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2013-02-13 09:15:09 -0500 |
commit | 7c06b5d67225dc99ca81a33db3e055e08da857c3 (patch) | |
tree | 4a7f88ebfc75c5402c70bd4c5ea86f085e769dcb /fs/gfs2/quota.h | |
parent | 236c64e4b79b78059ec3e17362d8f02f6dc06f26 (diff) |
gfs2: Use kuid_t and kgid_t types where appropriate.
Cc: Steven Whitehouse <swhiteho@redhat.com>
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'fs/gfs2/quota.h')
-rw-r--r-- | fs/gfs2/quota.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/gfs2/quota.h b/fs/gfs2/quota.h index bef805de8491..4f5e6e44ed83 100644 --- a/fs/gfs2/quota.h +++ b/fs/gfs2/quota.h | |||
@@ -17,15 +17,15 @@ struct shrink_control; | |||
17 | #define NO_UID_QUOTA_CHANGE INVALID_UID | 17 | #define NO_UID_QUOTA_CHANGE INVALID_UID |
18 | #define NO_GID_QUOTA_CHANGE INVALID_GID | 18 | #define NO_GID_QUOTA_CHANGE INVALID_GID |
19 | 19 | ||
20 | extern int gfs2_quota_hold(struct gfs2_inode *ip, u32 uid, u32 gid); | 20 | extern int gfs2_quota_hold(struct gfs2_inode *ip, kuid_t uid, kgid_t gid); |
21 | extern void gfs2_quota_unhold(struct gfs2_inode *ip); | 21 | extern void gfs2_quota_unhold(struct gfs2_inode *ip); |
22 | 22 | ||
23 | extern int gfs2_quota_lock(struct gfs2_inode *ip, u32 uid, u32 gid); | 23 | extern int gfs2_quota_lock(struct gfs2_inode *ip, kuid_t uid, kgid_t gid); |
24 | extern void gfs2_quota_unlock(struct gfs2_inode *ip); | 24 | extern void gfs2_quota_unlock(struct gfs2_inode *ip); |
25 | 25 | ||
26 | extern int gfs2_quota_check(struct gfs2_inode *ip, u32 uid, u32 gid); | 26 | extern int gfs2_quota_check(struct gfs2_inode *ip, kuid_t uid, kgid_t gid); |
27 | extern void gfs2_quota_change(struct gfs2_inode *ip, s64 change, | 27 | extern void gfs2_quota_change(struct gfs2_inode *ip, s64 change, |
28 | u32 uid, u32 gid); | 28 | kuid_t uid, kgid_t gid); |
29 | 29 | ||
30 | extern int gfs2_quota_sync(struct super_block *sb, int type); | 30 | extern int gfs2_quota_sync(struct super_block *sb, int type); |
31 | extern int gfs2_quota_refresh(struct gfs2_sbd *sdp, struct kqid qid); | 31 | extern int gfs2_quota_refresh(struct gfs2_sbd *sdp, struct kqid qid); |