diff options
author | Nathan Scott <nathans@sgi.com> | 2006-09-28 11:04:43 +1000 |
---|---|---|
committer | Tim Shimmin <tes@sgi.com> | 2006-09-28 11:04:43 +1000 |
commit | 215101c36012399cf2eaee849de54eeefc9f618c (patch) | |
tree | 02b4f4e8e312503be9515a2b064528b25ec7d8f2 /fs/xfs/quota | |
parent | e132f54ce8660bbf34723cc12cb11e6f61d6fbac (diff) | |
download | linux-3.10-215101c36012399cf2eaee849de54eeefc9f618c.tar.gz linux-3.10-215101c36012399cf2eaee849de54eeefc9f618c.tar.bz2 linux-3.10-215101c36012399cf2eaee849de54eeefc9f618c.zip |
[XFS] Fix kmem_zalloc_greedy warnings on 64 bit platforms.
SGI-PV: 955302
SGI-Modid: xfs-linux-melb:xfs-kern:26907a
Signed-off-by: Nathan Scott <nathans@sgi.com>
Signed-off-by: Tim Shimmin <tes@sgi.com>
Diffstat (limited to 'fs/xfs/quota')
-rw-r--r-- | fs/xfs/quota/xfs_qm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/xfs/quota/xfs_qm.c b/fs/xfs/quota/xfs_qm.c index 8b2c6cf2c84..7c6a3a50379 100644 --- a/fs/xfs/quota/xfs_qm.c +++ b/fs/xfs/quota/xfs_qm.c @@ -112,7 +112,8 @@ xfs_Gqm_init(void) { xfs_dqhash_t *udqhash, *gdqhash; xfs_qm_t *xqm; - uint i, hsize; + size_t hsize; + uint i; /* * Initialize the dquot hash tables. |