Message ID | E1axXUW-0004jy-CS@e0050434b2927.dyn.arm.linux.org.uk (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Tue, May 3, 2016 at 3:53 PM, Russell King <rmk@arm.linux.org.uk> wrote: > Clean up the physical and page offset debug prints. > > Signed-off-by: Russell King <rmk@arm.linux.org.uk> Reviewed-by: Pratyush Anand <panand@redhat.com> > --- > kexec/arch/arm/crashdump-arm.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/kexec/arch/arm/crashdump-arm.c b/kexec/arch/arm/crashdump-arm.c > index 2589582..3b71267 100644 > --- a/kexec/arch/arm/crashdump-arm.c > +++ b/kexec/arch/arm/crashdump-arm.c > @@ -136,7 +136,6 @@ static int get_kernel_page_offset(struct kexec_info *info, > user_page_offset); > } > elf_info->page_offset = stext_sym_addr & (~KVBASE_MASK); > - dbgprintf("page_offset is set to %llx\n", elf_info->page_offset); > return 0; > } > > @@ -293,11 +292,13 @@ int load_crashdump_segments(struct kexec_info *info, char *mod_cmdline) > * region as PHYS_OFFSET. > */ > phys_offset = usablemem_rgns.ranges->start; > - dbgprintf("phys_offset: %#llx\n", phys_offset); > > if (get_kernel_page_offset(info, &elf_info)) > return -1; > > + dbgprintf("phys offset = %#llx, page offset = %llx\n", > + phys_offset, elf_info.page_offset); > + > /* > * Ensure that the crash kernel memory range is sane. The crash kernel > * must be located within memory which is visible during booting. > -- > 1.9.1 >
diff --git a/kexec/arch/arm/crashdump-arm.c b/kexec/arch/arm/crashdump-arm.c index 2589582..3b71267 100644 --- a/kexec/arch/arm/crashdump-arm.c +++ b/kexec/arch/arm/crashdump-arm.c @@ -136,7 +136,6 @@ static int get_kernel_page_offset(struct kexec_info *info, user_page_offset); } elf_info->page_offset = stext_sym_addr & (~KVBASE_MASK); - dbgprintf("page_offset is set to %llx\n", elf_info->page_offset); return 0; } @@ -293,11 +292,13 @@ int load_crashdump_segments(struct kexec_info *info, char *mod_cmdline) * region as PHYS_OFFSET. */ phys_offset = usablemem_rgns.ranges->start; - dbgprintf("phys_offset: %#llx\n", phys_offset); if (get_kernel_page_offset(info, &elf_info)) return -1; + dbgprintf("phys offset = %#llx, page offset = %llx\n", + phys_offset, elf_info.page_offset); + /* * Ensure that the crash kernel memory range is sane. The crash kernel * must be located within memory which is visible during booting.
Clean up the physical and page offset debug prints. Signed-off-by: Russell King <rmk@arm.linux.org.uk> --- kexec/arch/arm/crashdump-arm.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)