]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
xfs: fix xfs_trans slab cache name
authorAnthony Iliopoulos <ailiop@suse.com>
Sun, 3 Jul 2022 05:04:54 +0000 (08:04 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 7 Jul 2022 15:52:19 +0000 (17:52 +0200)
commit 25dfa65f814951a33072bcbae795989d817858da upstream.

Removal of kmem_zone_init wrappers accidentally changed a slab cache
name from "xfs_trans" to "xf_trans". Fix this so that userspace
consumers of /proc/slabinfo and /sys/kernel/slab can find it again.

Fixes: b1231760e443 ("xfs: Remove slab init wrappers")
Signed-off-by: Anthony Iliopoulos <ailiop@suse.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Acked-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/xfs/xfs_super.c

index 04af5d17abc7ff6f113a719ad5bdc5802d12553d..6323974d6b3e6636d61d931a92518a54af8c1c27 100644 (file)
@@ -1934,7 +1934,7 @@ xfs_init_zones(void)
        if (!xfs_ifork_zone)
                goto out_destroy_da_state_zone;
 
-       xfs_trans_zone = kmem_cache_create("xf_trans",
+       xfs_trans_zone = kmem_cache_create("xfs_trans",
                                           sizeof(struct xfs_trans),
                                           0, 0, NULL);
        if (!xfs_trans_zone)