summaryrefslogtreecommitdiffstats
path: root/fs/backing-file.c
diff options
context:
space:
mode:
authorKunwu Chan <chentao@kylinos.cn>2024-01-31 15:09:41 +0800
committerChristian Brauner <brauner@kernel.org>2024-02-02 13:11:50 +0100
commit617fc7775370324d0a2b888625b042221ebdcb62 (patch)
treecd670887061647821cb329613a2368a3e408532f /fs/backing-file.c
parentc67ef897fe08effad98f0c7fb9223fa1f771d09e (diff)
downloadlinux-617fc7775370324d0a2b888625b042221ebdcb62.tar.gz
linux-617fc7775370324d0a2b888625b042221ebdcb62.tar.bz2
linux-617fc7775370324d0a2b888625b042221ebdcb62.zip
fs: Use KMEM_CACHE instead of kmem_cache_create
commit 0a31bd5f2bbb ("KMEM_CACHE(): simplify slab cache creation") introduces a new macro. Use the new KMEM_CACHE() macro instead of direct kmem_cache_create to simplify the creation of SLAB caches. Signed-off-by: Kunwu Chan <chentao@kylinos.cn> Link: https://lore.kernel.org/r/20240131070941.135178-1-chentao@kylinos.cn Reviewed-by: Jan Kara <jack@suse.cz> Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/backing-file.c')
-rw-r--r--fs/backing-file.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/backing-file.c b/fs/backing-file.c
index a681f38d84d8..740185198db3 100644
--- a/fs/backing-file.c
+++ b/fs/backing-file.c
@@ -325,9 +325,7 @@ EXPORT_SYMBOL_GPL(backing_file_mmap);
static int __init backing_aio_init(void)
{
- backing_aio_cachep = kmem_cache_create("backing_aio",
- sizeof(struct backing_aio),
- 0, SLAB_HWCACHE_ALIGN, NULL);
+ backing_aio_cachep = KMEM_CACHE(backing_aio, SLAB_HWCACHE_ALIGN);
if (!backing_aio_cachep)
return -ENOMEM;