Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.15 15 lines 743 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2#ifndef _ASM_POWERPC_KEXEC_RANGES_H 3#define _ASM_POWERPC_KEXEC_RANGES_H 4 5#define MEM_RANGE_CHUNK_SZ 2048 /* Memory ranges size chunk */ 6 7void sort_memory_ranges(struct crash_mem *mrngs, bool merge); 8struct crash_mem *realloc_mem_ranges(struct crash_mem **mem_ranges); 9int add_mem_range(struct crash_mem **mem_ranges, u64 base, u64 size); 10int remove_mem_range(struct crash_mem **mem_ranges, u64 base, u64 size); 11int get_exclude_memory_ranges(struct crash_mem **mem_ranges); 12int get_reserved_memory_ranges(struct crash_mem **mem_ranges); 13int get_crash_memory_ranges(struct crash_mem **mem_ranges); 14int get_usable_memory_ranges(struct crash_mem **mem_ranges); 15#endif /* _ASM_POWERPC_KEXEC_RANGES_H */