diff options
author | Nathan Scott <nathans@sgi.com> | 2005-11-01 18:31:41 -0500 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2005-11-01 18:31:41 -0500 |
commit | c310ab6c071a688e5291028972d1ae8314f67536 (patch) | |
tree | 7ee30ba83f67139e5353ae45b8e18d9097198009 /fs/xfs/xfs_quota.h | |
parent | 30dab21abbca37636091a6d02e94dbcd6e07b530 (diff) |
[XFS] Fix signedness issues in dquot ID handling, allowing uids/gids above
MAXINT
SGI-PV: 942528
SGI-Modid: xfs-linux:xfs-kern:23828a
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_quota.h')
-rw-r--r-- | fs/xfs/xfs_quota.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_quota.h b/fs/xfs/xfs_quota.h index 32cb79752d5d..ed965883f702 100644 --- a/fs/xfs/xfs_quota.h +++ b/fs/xfs/xfs_quota.h | |||
@@ -42,7 +42,7 @@ | |||
42 | * uid_t and gid_t are hard-coded to 32 bits in the inode. | 42 | * uid_t and gid_t are hard-coded to 32 bits in the inode. |
43 | * Hence, an 'id' in a dquot is 32 bits.. | 43 | * Hence, an 'id' in a dquot is 32 bits.. |
44 | */ | 44 | */ |
45 | typedef __int32_t xfs_dqid_t; | 45 | typedef __uint32_t xfs_dqid_t; |
46 | 46 | ||
47 | /* | 47 | /* |
48 | * Eventhough users may not have quota limits occupying all 64-bits, | 48 | * Eventhough users may not have quota limits occupying all 64-bits, |