Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/rust/helpers/vmalloc.c
29266 views
1
// SPDX-License-Identifier: GPL-2.0
2
3
#include <linux/vmalloc.h>
4
5
void * __must_check __realloc_size(2)
6
rust_helper_vrealloc_node_align(const void *p, size_t size, unsigned long align,
7
gfp_t flags, int node)
8
{
9
return vrealloc_node_align(p, size, align, flags, node);
10
}
11
12