Contributors: 5
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Kent Overstreet |
31 |
34.44% |
1 |
16.67% |
| Unknown |
26 |
28.89% |
2 |
33.33% |
| Danilo Krummrich |
23 |
25.56% |
1 |
16.67% |
| Andreas Hindborg |
9 |
10.00% |
1 |
16.67% |
| Miguel Ojeda Sandonis |
1 |
1.11% |
1 |
16.67% |
| Total |
90 |
|
6 |
|
// SPDX-License-Identifier: GPL-2.0
#include <linux/slab.h>
void * __must_check __realloc_size(2)
rust_helper_krealloc_node_align(const void *objp, size_t new_size, unsigned long align,
gfp_t flags, int node)
{
return krealloc_node_align(objp, new_size, align, flags, node);
}
void * __must_check __realloc_size(2)
rust_helper_kvrealloc_node_align(const void *p, size_t size, unsigned long align,
gfp_t flags, int node)
{
return kvrealloc_node_align(p, size, align, flags, node);
}