blob: 48aaf2ac0d0d15d7cd1dca3c42fa9b2f00313c9e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Dave Younga43cac02015-09-09 15:38:51 -07002#ifndef LINUX_KEXEC_INTERNAL_H
3#define LINUX_KEXEC_INTERNAL_H
4
5#include <linux/kexec.h>
6
7struct kimage *do_kimage_alloc_init(void);
8int sanity_check_segment_list(struct kimage *image);
9void kimage_free_page_list(struct list_head *list);
10void kimage_free(struct kimage *image);
11int kimage_load_segment(struct kimage *image, struct kexec_segment *segment);
12void kimage_terminate(struct kimage *image);
13int kimage_is_destination_range(struct kimage *image,
14 unsigned long start, unsigned long end);
15
16extern struct mutex kexec_mutex;
17
18#ifdef CONFIG_KEXEC_FILE
Thomas Gleixner40c50c12017-03-10 13:17:18 +010019#include <linux/purgatory.h>
Dave Younga43cac02015-09-09 15:38:51 -070020void kimage_file_post_load_cleanup(struct kimage *image);
Kees Cooke2ae8ab2017-07-12 14:35:58 -070021extern char kexec_purgatory[];
22extern size_t kexec_purgatory_size;
Dave Younga43cac02015-09-09 15:38:51 -070023#else /* CONFIG_KEXEC_FILE */
24static inline void kimage_file_post_load_cleanup(struct kimage *image) { }
25#endif /* CONFIG_KEXEC_FILE */
26#endif /* LINUX_KEXEC_INTERNAL_H */