2024-10-04 17:41:12 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
|
|
|
|
|
#include <linux/vmalloc.h>
|
|
|
|
|
|
2026-01-05 12:42:24 +00:00
|
|
|
__rust_helper void *__must_check __realloc_size(2)
|
2025-08-06 14:55:52 +02:00
|
|
|
rust_helper_vrealloc_node_align(const void *p, size_t size, unsigned long align,
|
|
|
|
|
gfp_t flags, int node)
|
2024-10-04 17:41:12 +02:00
|
|
|
{
|
2025-08-06 14:55:52 +02:00
|
|
|
return vrealloc_node_align(p, size, align, flags, node);
|
2024-10-04 17:41:12 +02:00
|
|
|
}
|