提交 7fccf032 编写于 作者: W WANG Cong 提交者: Linus Torvalds

kernel/kexec.c: make 'kimage_terminate' void

Since kimage_terminate() always returns 0, make it void.
Signed-off-by: NWANG Cong <wangcong@zeuux.org>
Signed-off-by: N"Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 f1d82698
......@@ -589,14 +589,12 @@ static void kimage_free_extra_pages(struct kimage *image)
kimage_free_page_list(&image->unuseable_pages);
}
static int kimage_terminate(struct kimage *image)
static void kimage_terminate(struct kimage *image)
{
if (*image->entry != 0)
image->entry++;
*image->entry = IND_DONE;
return 0;
}
#define for_each_kimage_entry(image, ptr, entry) \
......@@ -997,9 +995,7 @@ asmlinkage long sys_kexec_load(unsigned long entry, unsigned long nr_segments,
if (result)
goto out;
}
result = kimage_terminate(image);
if (result)
goto out;
kimage_terminate(image);
}
/* Install the new kernel, and Uninstall the old */
image = xchg(dest_image, image);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册