From: Zhaoyang Huang Date: Tue, 5 Jan 2021 12:48:00 +0000 (-0500) Subject: gfs2: amend SLAB_RECLAIM_ACCOUNT on gfs2 related slab cache X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=00e8e9bc3c46c95bfa191294a60beaf6d2ead01e;p=linux.git gfs2: amend SLAB_RECLAIM_ACCOUNT on gfs2 related slab cache As gfs2_quotad_cachep and gfs2_glock_cachep have registered shrinkers, amending SLAB_RECLAIM_ACCOUNT when creating them, which improves slab accounting. Signed-off-by: Zhaoyang Huang Signed-off-by: Bob Peterson Signed-off-by: Andreas Gruenbacher --- diff --git a/fs/gfs2/main.c b/fs/gfs2/main.c index c7393ee9cf683..28d0eb23e18ed 100644 --- a/fs/gfs2/main.c +++ b/fs/gfs2/main.c @@ -98,7 +98,7 @@ static int __init init_gfs2_fs(void) error = -ENOMEM; gfs2_glock_cachep = kmem_cache_create("gfs2_glock", sizeof(struct gfs2_glock), - 0, 0, + 0, SLAB_RECLAIM_ACCOUNT, gfs2_init_glock_once); if (!gfs2_glock_cachep) goto fail_cachep1; @@ -134,7 +134,7 @@ static int __init init_gfs2_fs(void) gfs2_quotad_cachep = kmem_cache_create("gfs2_quotad", sizeof(struct gfs2_quota_data), - 0, 0, NULL); + 0, SLAB_RECLAIM_ACCOUNT, NULL); if (!gfs2_quotad_cachep) goto fail_cachep6;