Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 92a98a2b authored by AKASHI Takahiro's avatar AKASHI Takahiro Committed by Will Deacon
Browse files

kexec_file: make kexec_image_post_load_cleanup_default() global



Change this function from static to global so that arm64 can implement
its own arch_kimage_file_post_load_cleanup() later using
kexec_image_post_load_cleanup_default().

Signed-off-by: default avatarAKASHI Takahiro <takahiro.akashi@linaro.org>
Acked-by: default avatarDave Young <dyoung@redhat.com>
Cc: Vivek Goyal <vgoyal@redhat.com>
Cc: Baoquan He <bhe@redhat.com>
Signed-off-by: default avatarWill Deacon <will.deacon@arm.com>
parent 4e21565b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -143,6 +143,7 @@ extern const struct kexec_file_ops * const kexec_file_loaders[];

int kexec_image_probe_default(struct kimage *image, void *buf,
			      unsigned long buf_len);
int kexec_image_post_load_cleanup_default(struct kimage *image);

/**
 * struct kexec_buf - parameters for finding a place for a buffer in memory
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ void * __weak arch_kexec_kernel_image_load(struct kimage *image)
	return kexec_image_load_default(image);
}

static int kexec_image_post_load_cleanup_default(struct kimage *image)
int kexec_image_post_load_cleanup_default(struct kimage *image)
{
	if (!image->fops || !image->fops->cleanup)
		return 0;