lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Wed, 13 Apr 2022 17:52:44 -0000
From:   "tip-bot2 for Eric DeVolder" <tip-bot2@...utronix.de>
To:     linux-tip-commits@...r.kernel.org
Cc:     Eric DeVolder <eric.devolder@...cle.com>,
        Borislav Petkov <bp@...e.de>, Baoquan He <bhe@...hat.com>,
        x86@...nel.org, linux-kernel@...r.kernel.org
Subject: [tip: x86/kdump] x86/crash: Fix minor typo/bug in debug message

The following commit has been merged into the x86/kdump branch of tip:

Commit-ID:     b57a7c9dd732ca29c4400a9a710c56c55877086d
Gitweb:        https://git.kernel.org/tip/b57a7c9dd732ca29c4400a9a710c56c55877086d
Author:        Eric DeVolder <eric.devolder@...cle.com>
AuthorDate:    Wed, 13 Apr 2022 12:42:30 -04:00
Committer:     Borislav Petkov <bp@...e.de>
CommitterDate: Wed, 13 Apr 2022 19:39:54 +02:00

x86/crash: Fix minor typo/bug in debug message

The pr_debug() intends to display the memsz member, but the
parameter is actually the bufsz member (which is already
displayed). Correct this to display memsz value.

Signed-off-by: Eric DeVolder <eric.devolder@...cle.com>
Signed-off-by: Borislav Petkov <bp@...e.de>
Acked-by: Baoquan He <bhe@...hat.com>
Link: https://lore.kernel.org/r/20220413164237.20845-2-eric.devolder@oracle.com
---
 arch/x86/kernel/crash.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/kernel/crash.c b/arch/x86/kernel/crash.c
index e8326a8..9730c88 100644
--- a/arch/x86/kernel/crash.c
+++ b/arch/x86/kernel/crash.c
@@ -407,7 +407,7 @@ int crash_load_segments(struct kimage *image)
 	}
 	image->elf_load_addr = kbuf.mem;
 	pr_debug("Loaded ELF headers at 0x%lx bufsz=0x%lx memsz=0x%lx\n",
-		 image->elf_load_addr, kbuf.bufsz, kbuf.bufsz);
+		 image->elf_load_addr, kbuf.bufsz, kbuf.memsz);
 
 	return ret;
 }

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ