repo.or.cz
/
drm
/
drm-misc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git]
/
rust
/
helpers
/
vmalloc.c
blob
80d34501bbc0102d3e866a45f08e0e061d508658
1
// SPDX-License-Identifier: GPL-2.0
2
3
#include <linux/vmalloc.h>
4
5
void
*
__must_check
__realloc_size
(
2
)
6
rust_helper_vrealloc
(
const void
*
p
,
size_t
size
,
gfp_t flags
)
7
{
8
return
vrealloc
(
p
,
size
,
flags
);
9
}