1 // SPDX-License-Identifier: GPL-2.0 1 // SPDX-License-Identifier: GPL-2.0 2 2 3 #include <linux/slab.h> 3 #include <linux/slab.h> 4 4 5 void * __must_check __realloc_size(2) 5 void * __must_check __realloc_size(2) 6 rust_helper_krealloc(const void *objp, size_t 6 rust_helper_krealloc(const void *objp, size_t new_size, gfp_t flags) 7 { 7 { 8 return krealloc(objp, new_size, flags) 8 return krealloc(objp, new_size, flags); 9 } 9 } 10 10
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.