mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 10:45:49 +00:00
ipv6: Simplify the allocation of slab caches
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>
This commit is contained in:
parent
7eb2bc2481
commit
072f88ca5c
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user