Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
2 | #ifndef _MEMREGION_H_ | ||||
3 | #define _MEMREGION_H_ | ||||
4 | #include <linux/types.h> | ||||
5 | #include <linux/errno.h> | ||||
6 | |||||
7 | struct memregion_info { | ||||
8 | int target_node; | ||||
9 | }; | ||||
10 | |||||
11 | #ifdef CONFIG_MEMREGION | ||||
12 | int memregion_alloc(gfp_t gfp); | ||||
13 | void memregion_free(int id); | ||||
14 | #else | ||||
15 | static inline int memregion_alloc(gfp_t gfp) | ||||
16 | { | ||||
17 | return -ENOMEM; | ||||
18 | } | ||||
19 | void memregion_free(int id) | ||||
20 | { | ||||
21 | } | ||||
22 | #endif | ||||
23 | #endif /* _MEMREGION_H_ */ |