summaryrefslogtreecommitdiff
path: root/rust/helpers/vmalloc.c
blob: 7d7f7336b3d2f5a32e6a2b6cf8407da37775cfd9 (plain)
1
2
3
4
5
6
7
8
9
10
// SPDX-License-Identifier: GPL-2.0

#include <linux/vmalloc.h>

void * __must_check __realloc_size(2)
rust_helper_vrealloc_node_align(const void *p, size_t size, unsigned long align,
				gfp_t flags, int node)
{
	return vrealloc_node_align(p, size, align, flags, node);
}