aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/quota.h
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2006-09-04 12:49:07 -0400
committerSteven Whitehouse <swhiteho@redhat.com>2006-09-04 12:49:07 -0400
commitcd915493fce912f1bd838ee1250737ecf33b8fae (patch)
treee14ec6643de91f473edb26a89905e710596fe6bc /fs/gfs2/quota.h
parenta91ea69ffd3f8a0b7139bfd44042ab384461e631 (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.h14
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
15int gfs2_quota_hold(struct gfs2_inode *ip, uint32_t uid, uint32_t gid); 15int gfs2_quota_hold(struct gfs2_inode *ip, u32 uid, u32 gid);
16void gfs2_quota_unhold(struct gfs2_inode *ip); 16void gfs2_quota_unhold(struct gfs2_inode *ip);
17 17
18int gfs2_quota_lock(struct gfs2_inode *ip, uint32_t uid, uint32_t gid); 18int gfs2_quota_lock(struct gfs2_inode *ip, u32 uid, u32 gid);
19void gfs2_quota_unlock(struct gfs2_inode *ip); 19void gfs2_quota_unlock(struct gfs2_inode *ip);
20 20
21int gfs2_quota_check(struct gfs2_inode *ip, uint32_t uid, uint32_t gid); 21int gfs2_quota_check(struct gfs2_inode *ip, u32 uid, u32 gid);
22void gfs2_quota_change(struct gfs2_inode *ip, int64_t change, 22void gfs2_quota_change(struct gfs2_inode *ip, s64 change,
23 uint32_t uid, uint32_t gid); 23 u32 uid, u32 gid);
24 24
25int gfs2_quota_sync(struct gfs2_sbd *sdp); 25int gfs2_quota_sync(struct gfs2_sbd *sdp);
26int gfs2_quota_refresh(struct gfs2_sbd *sdp, int user, uint32_t id); 26int gfs2_quota_refresh(struct gfs2_sbd *sdp, int user, u32 id);
27 27
28int gfs2_quota_init(struct gfs2_sbd *sdp); 28int gfs2_quota_init(struct gfs2_sbd *sdp);
29void gfs2_quota_scan(struct gfs2_sbd *sdp); 29void gfs2_quota_scan(struct gfs2_sbd *sdp);