Commit 625c1e06 authored by Kunwu Chan's avatar Kunwu Chan Committed by David Sterba
Browse files

btrfs: use KMEM_CACHE() to create btrfs_delayed_node cache



Use the KMEM_CACHE() macro instead of kmem_cache_create() to simplify
the creation of SLAB caches when the default values are used.

Signed-off-by: default avatarKunwu Chan <chentao@kylinos.cn>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent d57dd52a
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -28,11 +28,7 @@ static struct kmem_cache *delayed_node_cache;

int __init btrfs_delayed_inode_init(void)
{
	delayed_node_cache = kmem_cache_create("btrfs_delayed_node",
					sizeof(struct btrfs_delayed_node),
					0,
					SLAB_MEM_SPREAD,
					NULL);
	delayed_node_cache = KMEM_CACHE(btrfs_delayed_node, SLAB_MEM_SPREAD);
	if (!delayed_node_cache)
		return -ENOMEM;
	return 0;