Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1// SPDX-License-Identifier: GPL-2.0
2
3#include <linux/slab.h>
4
5void * __must_check __realloc_size(2)
6rust_helper_krealloc_node_align(const void *objp, size_t new_size, unsigned long align,
7 gfp_t flags, int node)
8{
9 return krealloc_node_align(objp, new_size, align, flags, node);
10}
11
12void * __must_check __realloc_size(2)
13rust_helper_kvrealloc_node_align(const void *p, size_t size, unsigned long align,
14 gfp_t flags, int node)
15{
16 return kvrealloc_node_align(p, size, align, flags, node);
17}