]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
keys, dns: Use kmalloc_flex to improve dns_resolver_preparse
authorThorsten Blum <thorsten.blum@linux.dev>
Thu, 26 Feb 2026 21:49:29 +0000 (22:49 +0100)
committerJakub Kicinski <kuba@kernel.org>
Sat, 28 Feb 2026 16:48:21 +0000 (08:48 -0800)
Use kmalloc_flex() when allocating a new 'struct user_key_payload' in
dns_resolver_preparse() to replace the open-coded size arithmetic.

Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
Link: https://patch.msgid.link/20260226214930.785423-3-thorsten.blum@linux.dev
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/dns_resolver/dns_key.c

index c42ddd85ff1f9c3613b015c576b0ef458075d28e..891287a869796dc148526d3aa1838fd2b9a95ab7 100644 (file)
@@ -215,7 +215,7 @@ store_result:
        kdebug("store result");
        prep->quotalen = result_len;
 
-       upayload = kmalloc(sizeof(*upayload) + result_len + 1, GFP_KERNEL);
+       upayload = kmalloc_flex(*upayload, data, result_len + 1);
        if (!upayload) {
                kleave(" = -ENOMEM");
                return -ENOMEM;