Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
jaegeuk
/
f2fs
/
45b70947a425fa121a8b9bcbb77472d9e35def6a
/
.
/
rust
/
helpers
/
vmalloc.c
blob: 80d34501bbc0102d3e866a45f08e0e061d508658 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0
#include
<linux/vmalloc.h>
void
*
__must_check __realloc_size
(
2
)
rust_helper_vrealloc
(
const
void
*
p
,
size_t
size
,
gfp_t
flags
)
{
return
vrealloc
(
p
,
size
,
flags
);
}