Diff for /xfs-linux/quota/xfs_qm.c between versions 1.51 and 1.52

version 1.51, 2007/08/02 16:04:40 version 1.52, 2007/08/08 13:11:21
Line 116  xfs_Gqm_init(void) Line 116  xfs_Gqm_init(void)
          * Initialize the dquot hash tables.           * Initialize the dquot hash tables.
          */           */
         udqhash = kmem_zalloc_greedy(&hsize,          udqhash = kmem_zalloc_greedy(&hsize,
                                      XFS_QM_HASHSIZE_LOW, XFS_QM_HASHSIZE_HIGH,                                       XFS_QM_HASHSIZE_LOW * sizeof(xfs_dqhash_t),
                                        XFS_QM_HASHSIZE_HIGH * sizeof(xfs_dqhash_t),
                                      KM_SLEEP | KM_MAYFAIL | KM_LARGE);                                       KM_SLEEP | KM_MAYFAIL | KM_LARGE);
         gdqhash = kmem_zalloc(hsize, KM_SLEEP | KM_LARGE);          gdqhash = kmem_zalloc(hsize, KM_SLEEP | KM_LARGE);
         hsize /= sizeof(xfs_dqhash_t);          hsize /= sizeof(xfs_dqhash_t);

Removed from v.1.51  
changed lines
  Added in v.1.52


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>