summaryrefslogtreecommitdiff
path: root/rust/helpers/vmalloc.c
diff options
context:
space:
mode:
authorSteven Rostedt <rostedt@goodmis.org>2026-06-29 11:32:44 -0400
committerSteven Rostedt <rostedt@goodmis.org>2026-06-29 11:32:44 -0400
commita13905ac604cfd28fbda0815da16127bd4069bbe (patch)
tree81c6504a0aae2c7d7ea118c7aff71ec943035ca7 /rust/helpers/vmalloc.c
parent56ece2fce5c00f577d92a376ba5dc4a2aa15925d (diff)
parentc35eb77a67515d4201bc91294f40761591f43bbd (diff)
downloadlinux-next-a13905ac604cfd28fbda0815da16127bd4069bbe.tar.gz
linux-next-a13905ac604cfd28fbda0815da16127bd4069bbe.zip
Merge tools/for-next
Diffstat (limited to 'rust/helpers/vmalloc.c')
-rw-r--r--rust/helpers/vmalloc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/rust/helpers/vmalloc.c b/rust/helpers/vmalloc.c
index 326b030487a2..6aed13292313 100644
--- a/rust/helpers/vmalloc.c
+++ b/rust/helpers/vmalloc.c
@@ -1,5 +1,6 @@
// SPDX-License-Identifier: GPL-2.0
+#include <linux/mm.h>
#include <linux/vmalloc.h>
__rust_helper void *__must_check __realloc_size(2)
@@ -8,3 +9,8 @@ rust_helper_vrealloc_node_align(const void *p, size_t size, unsigned long align,
{
return vrealloc_node_align(p, size, align, flags, node);
}
+
+__rust_helper bool rust_helper_is_vmalloc_addr(const void *x)
+{
+ return is_vmalloc_addr(x);
+}