diff options
author | Yinghai Lu <yinghai@kernel.org> | 2010-08-25 16:39:14 -0400 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2010-08-27 14:07:56 -0400 |
commit | 7950c407c0288b223a200c1bba8198941599ca37 (patch) | |
tree | 4d7ad677fa918630cc29363c197d2593198727be /include/linux/memblock.h | |
parent | 5303b68f57c227c27193a14e57dd12be27cd670f (diff) |
memblock: Add memblock_free/reserve_reserved_regions()
So we can avoid export memblock_reserved_init_regions()
Suggested by Ben.
-v2: use __init_memblock attribute
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'include/linux/memblock.h')
-rw-r--r-- | include/linux/memblock.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/memblock.h b/include/linux/memblock.h index 4df09bdcae42..7d285271130d 100644 --- a/include/linux/memblock.h +++ b/include/linux/memblock.h | |||
@@ -48,6 +48,8 @@ extern int memblock_can_resize; | |||
48 | if (memblock_debug) printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) | 48 | if (memblock_debug) printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) |
49 | 49 | ||
50 | u64 memblock_find_in_range(u64 start, u64 end, u64 size, u64 align); | 50 | u64 memblock_find_in_range(u64 start, u64 end, u64 size, u64 align); |
51 | int memblock_free_reserved_regions(void); | ||
52 | int memblock_reserve_reserved_regions(void); | ||
51 | 53 | ||
52 | extern void __init memblock_init(void); | 54 | extern void __init memblock_init(void); |
53 | extern void __init memblock_analyze(void); | 55 | extern void __init memblock_analyze(void); |