vmalloc.c 286 B

12345678910
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/vmalloc.h>
  3. __rust_helper void *__must_check __realloc_size(2)
  4. rust_helper_vrealloc_node_align(const void *p, size_t size, unsigned long align,
  5. gfp_t flags, int node)
  6. {
  7. return vrealloc_node_align(p, size, align, flags, node);
  8. }