mirror of
https://github.com/torvalds/linux.git
synced 2026-05-12 16:18:45 +02:00
keys, dns: Use kmalloc_flex to improve dns_resolver_preparse
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>
This commit is contained in:
parent
58e443b773
commit
a9a13c7379
|
|
@ -215,7 +215,7 @@ dns_resolver_preparse(struct key_preparsed_payload *prep)
|
|||
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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user