xfs: use a normal shrinker for the dquot freelist
authorChristoph Hellwig <hch@infradead.org>
Wed, 1 Feb 2012 13:57:20 +0000 (13:57 +0000)
committerBen Myers <bpm@sgi.com>
Fri, 10 Feb 2012 18:02:05 +0000 (12:02 -0600)
commit04da0c8196ac0b12fb6b84f4b7a51ad2fa56d869
tree1348207af6e7824a9baa268236768b857db00712
parent4505360376637832f79f84f352588b0a045ad113
xfs: use a normal shrinker for the dquot freelist

Stop reusing dquots from the freelist when allocating new ones directly, and
implement a shrinker that actually follows the specifications for the
interface.  The shrinker implementation is still highly suboptimal at this
point, but we can gradually work on it.

This also fixes an bug in the previous lock ordering, where we would take
the hash and dqlist locks inside of the freelist lock against the normal
lock ordering.  This is only solvable by introducing the dispose list,
and thus not when using direct reclaim of unused dquots for new allocations.

As a side-effect the quota upper bound and used to free ratio values in
/proc/fs/xfs/xqm are set to 0 as these values don't make any sense in the
new world order.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Ben Myers <bpm@sgi.com>
fs/xfs/kmem.h
fs/xfs/xfs_dquot.c
fs/xfs/xfs_qm.c
fs/xfs/xfs_qm.h
fs/xfs/xfs_qm_stats.c
fs/xfs/xfs_trace.h