mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 13:41:51 +00:00
netfilter: nf_conncount: Use KMEM_CACHE instead of kmem_cache_create()
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> Signed-off-by: Florian Westphal <fw@strlen.de>
This commit is contained in:
parent
a128885ace
commit
2ae6e9a03d
@ -605,15 +605,11 @@ static int __init nf_conncount_modinit(void)
|
||||
for (i = 0; i < CONNCOUNT_SLOTS; ++i)
|
||||
spin_lock_init(&nf_conncount_locks[i]);
|
||||
|
||||
conncount_conn_cachep = kmem_cache_create("nf_conncount_tuple",
|
||||
sizeof(struct nf_conncount_tuple),
|
||||
0, 0, NULL);
|
||||
conncount_conn_cachep = KMEM_CACHE(nf_conncount_tuple, 0);
|
||||
if (!conncount_conn_cachep)
|
||||
return -ENOMEM;
|
||||
|
||||
conncount_rb_cachep = kmem_cache_create("nf_conncount_rb",
|
||||
sizeof(struct nf_conncount_rb),
|
||||
0, 0, NULL);
|
||||
conncount_rb_cachep = KMEM_CACHE(nf_conncount_rb, 0);
|
||||
if (!conncount_rb_cachep) {
|
||||
kmem_cache_destroy(conncount_conn_cachep);
|
||||
return -ENOMEM;
|
||||
|
Loading…
Reference in New Issue
Block a user