mm: clean up and kernelify shrinker registration
I can never remember what the function to register to receive VM pressure is called. I have to trace down from __alloc_pages() to find it. It's called "set_shrinker()", and it needs Your Help. 1) Don't hide struct shrinker. It contains no magic. 2) Don't allocate "struct shrinker". It's not helpful. 3) Call them "register_shrinker" and "unregister_shrinker". 4) Call the function "shrink" not "shrinker". 5) Reduce the 17 lines of waffly comments to 13, but document it properly. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Cc: David Chinner <dgc@sgi.com> Cc: Trond Myklebust <trond.myklebust@fys.uio.no> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
5ad333eb66
commit
8e1f936b73
@ -62,7 +62,6 @@ uint ndquot;
|
||||
|
||||
kmem_zone_t *qm_dqzone;
|
||||
kmem_zone_t *qm_dqtrxzone;
|
||||
static struct shrinker *xfs_qm_shaker;
|
||||
|
||||
static cred_t xfs_zerocr;
|
||||
|
||||
@ -78,6 +77,11 @@ STATIC int xfs_qm_init_quotainos(xfs_mount_t *);
|
||||
STATIC int xfs_qm_init_quotainfo(xfs_mount_t *);
|
||||
STATIC int xfs_qm_shake(int, gfp_t);
|
||||
|
||||
static struct shrinker xfs_qm_shaker = {
|
||||
.shrink = xfs_qm_shake,
|
||||
.seeks = DEFAULT_SEEKS,
|
||||
};
|
||||
|
||||
#ifdef DEBUG
|
||||
extern mutex_t qcheck_lock;
|
||||
#endif
|
||||
@ -149,7 +153,7 @@ xfs_Gqm_init(void)
|
||||
} else
|
||||
xqm->qm_dqzone = qm_dqzone;
|
||||
|
||||
xfs_qm_shaker = set_shrinker(DEFAULT_SEEKS, xfs_qm_shake);
|
||||
register_shrinker(&xfs_qm_shaker);
|
||||
|
||||
/*
|
||||
* The t_dqinfo portion of transactions.
|
||||
@ -181,7 +185,7 @@ xfs_qm_destroy(
|
||||
|
||||
ASSERT(xqm != NULL);
|
||||
ASSERT(xqm->qm_nrefs == 0);
|
||||
remove_shrinker(xfs_qm_shaker);
|
||||
unregister_shrinker(&xfs_qm_shaker);
|
||||
hsize = xqm->qm_dqhashmask + 1;
|
||||
for (i = 0; i < hsize; i++) {
|
||||
xfs_qm_list_destroy(&(xqm->qm_usr_dqhtable[i]));
|
||||
|
Reference in New Issue
Block a user