| From: Baoquan He <bhe@redhat.com> |
| Subject: kexec_file, parisc: print out debugging message if required |
| Date: Wed, 13 Dec 2023 13:57:47 +0800 |
| |
| Then when specifying '-d' for kexec_file_load interface, loaded locations |
| of kernel/initrd/cmdline etc can be printed out to help debug. |
| |
| Here replace pr_debug() with the newly added kexec_dprintk() in kexec_file |
| loading related codes. |
| |
| Link: https://lkml.kernel.org/r/20231213055747.61826-8-bhe@redhat.com |
| Signed-off-by: Baoquan He <bhe@redhat.com> |
| Cc: Conor Dooley <conor@kernel.org> |
| Cc: Joe Perches <joe@perches.com> |
| Cc: Nathan Chancellor <nathan@kernel.org> |
| Signed-off-by: Andrew Morton <akpm@linux-foundation.org> |
| --- |
| |
| arch/parisc/kernel/kexec_file.c | 8 ++++---- |
| 1 file changed, 4 insertions(+), 4 deletions(-) |
| |
| --- a/arch/parisc/kernel/kexec_file.c~kexec_file-parisc-print-out-debugging-message-if-required |
| +++ a/arch/parisc/kernel/kexec_file.c |
| @@ -38,8 +38,8 @@ static void *elf_load(struct kimage *ima |
| for (i = 0; i < image->nr_segments; i++) |
| image->segment[i].mem = __pa(image->segment[i].mem); |
| |
| - pr_debug("Loaded the kernel at 0x%lx, entry at 0x%lx\n", |
| - kernel_load_addr, image->start); |
| + kexec_dprintk("Loaded the kernel at 0x%lx, entry at 0x%lx\n", |
| + kernel_load_addr, image->start); |
| |
| if (initrd != NULL) { |
| kbuf.buffer = initrd; |
| @@ -51,7 +51,7 @@ static void *elf_load(struct kimage *ima |
| if (ret) |
| goto out; |
| |
| - pr_debug("Loaded initrd at 0x%lx\n", kbuf.mem); |
| + kexec_dprintk("Loaded initrd at 0x%lx\n", kbuf.mem); |
| image->arch.initrd_start = kbuf.mem; |
| image->arch.initrd_end = kbuf.mem + initrd_len; |
| } |
| @@ -68,7 +68,7 @@ static void *elf_load(struct kimage *ima |
| if (ret) |
| goto out; |
| |
| - pr_debug("Loaded cmdline at 0x%lx\n", kbuf.mem); |
| + kexec_dprintk("Loaded cmdline at 0x%lx\n", kbuf.mem); |
| image->arch.cmdline = kbuf.mem; |
| } |
| out: |
| _ |