summaryrefslogtreecommitdiffstats
path: root/kernel/audit.c
diff options
context:
space:
mode:
authorKunwu Chan <chentao@kylinos.cn>2024-01-24 14:02:24 +0800
committerPaul Moore <paul@paul-moore.com>2024-01-25 10:12:22 -0500
commitaa13b709084a0287ef250a9fbde5993e4dfc3078 (patch)
tree796789c932e433ecfdf542e3e7904a22991d45e7 /kernel/audit.c
parent3104d0e94f7169ab589919f7c4ed6197f0a826cb (diff)
downloadlinux-aa13b709084a0287ef250a9fbde5993e4dfc3078.tar.gz
linux-aa13b709084a0287ef250a9fbde5993e4dfc3078.tar.bz2
linux-aa13b709084a0287ef250a9fbde5993e4dfc3078.zip
audit: 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> [PM: subject line tweaks] Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'kernel/audit.c')
-rw-r--r--kernel/audit.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/kernel/audit.c b/kernel/audit.c
index 9c8e5f732c4c..e7a62ebbf4d1 100644
--- a/kernel/audit.c
+++ b/kernel/audit.c
@@ -1693,9 +1693,7 @@ static int __init audit_init(void)
if (audit_initialized == AUDIT_DISABLED)
return 0;
- audit_buffer_cache = kmem_cache_create("audit_buffer",
- sizeof(struct audit_buffer),
- 0, SLAB_PANIC, NULL);
+ audit_buffer_cache = KMEM_CACHE(audit_buffer, SLAB_PANIC);
skb_queue_head_init(&audit_queue);
skb_queue_head_init(&audit_retry_queue);