ipv6: Simplify the allocation of slab caches
authorKunwu Chan <chentao@kylinos.cn>
Tue, 20 Feb 2024 07:36:46 +0000 (15:36 +0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 21 Feb 2024 11:28:58 +0000 (11:28 +0000)
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>
Reviewed-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/ip6_fib.c

index 805bbf2..6540d87 100644 (file)
@@ -2493,10 +2493,8 @@ int __init fib6_init(void)
 {
        int ret = -ENOMEM;
 
-       fib6_node_kmem = kmem_cache_create("fib6_nodes",
-                                          sizeof(struct fib6_node), 0,
-                                          SLAB_HWCACHE_ALIGN | SLAB_ACCOUNT,
-                                          NULL);
+       fib6_node_kmem = KMEM_CACHE(fib6_node,
+                                   SLAB_HWCACHE_ALIGN | SLAB_ACCOUNT);
        if (!fib6_node_kmem)
                goto out;