[XFS] fix nasty quota hashtable allocation bug

This git mod: 77e4635ae191774526ed695482a151ac986f3806
converted to a "greedy" allocation interface, but for the quota hashtables
it switched from allocating XFS_QM_HASHSIZE (nr of elements)
xfs_dqhash_t's to allocating only XFS_QM_HASHSIZE *bytes* - quite a lot
smaller! Then when we converted hsize "back" to nr of elements (the
division line) hsize went to 0. This was leading to oopses when running
any quota tests on the Fedora 8 test kernel, but the problem has been
there for almost a year.

SGI-PV: 968837
SGI-Modid: xfs-linux-melb:xfs-kern:29354a

Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
Signed-off-by: David Chinner <dgc@sgi.com>
Signed-off-by: Tim Shimmin <tes@sgi.com>

authored by Eric Sandeen and committed by Tim Shimmin 5995cb7d 265c1fac

+2 -1
+2 -1
fs/xfs/quota/xfs_qm.c
··· 120 120 * Initialize the dquot hash tables. 121 121 */ 122 122 udqhash = kmem_zalloc_greedy(&hsize, 123 - XFS_QM_HASHSIZE_LOW, XFS_QM_HASHSIZE_HIGH, 123 + XFS_QM_HASHSIZE_LOW * sizeof(xfs_dqhash_t), 124 + XFS_QM_HASHSIZE_HIGH * sizeof(xfs_dqhash_t), 124 125 KM_SLEEP | KM_MAYFAIL | KM_LARGE); 125 126 gdqhash = kmem_zalloc(hsize, KM_SLEEP | KM_LARGE); 126 127 hsize /= sizeof(xfs_dqhash_t);