Linux Audio

Check our new training course

Linux debugging, profiling, tracing and performance analysis training

Mar 24-27, 2025, special US time zones
Register
Loading...
Note: File does not exist in v4.17.
 1// SPDX-License-Identifier: GPL-2.0
 2
 3#include <linux/slab.h>
 4
 5void * __must_check __realloc_size(2)
 6rust_helper_krealloc(const void *objp, size_t new_size, gfp_t flags)
 7{
 8	return krealloc(objp, new_size, flags);
 9}
10
11void * __must_check __realloc_size(2)
12rust_helper_kvrealloc(const void *p, size_t size, gfp_t flags)
13{
14	return kvrealloc(p, size, flags);
15}