From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-io0-f196.google.com ([209.85.223.196]) by bombadil.infradead.org with esmtps (Exim 4.90_1 #2 (Red Hat Linux)) id 1exs91-00057Z-FO for kexec@lists.infradead.org; Mon, 19 Mar 2018 10:36:03 +0000 Received: by mail-io0-f196.google.com with SMTP id g14so11285684iob.13 for ; Mon, 19 Mar 2018 03:35:49 -0700 (PDT) From: Bhupesh Sharma Subject: [RESEND PATCH 2/2] kexec-arm64: Add functionality to dump 2nd dtb Date: Mon, 19 Mar 2018 16:05:39 +0530 Message-Id: <1521455739-8022-2-git-send-email-bhsharma@redhat.com> In-Reply-To: <1521455739-8022-1-git-send-email-bhsharma@redhat.com> References: <1521455739-8022-1-git-send-email-bhsharma@redhat.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "kexec" Errors-To: kexec-bounces+dwmw2=infradead.org@lists.infradead.org To: kexec@lists.infradead.org Cc: dyoung@redhat.com, takahiro.akashi@linaro.org, bhsharma@redhat.com, bhupesh.linux@gmail.com, james.morse@arm.com Since during the arm64 kexec_load()/kdump invocation, the dtb is passed to the second kernel, it is sometimes useful to dump the dtb contents (to verify the correctness of the same). This patch adds this feature which is enabled when '-d' flag is used with kexec command line invocation. Signed-off-by: Bhupesh Sharma --- kexec/arch/arm64/kexec-arm64.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kexec/arch/arm64/kexec-arm64.c b/kexec/arch/arm64/kexec-arm64.c index 62f37585b788..1b54718465b9 100644 --- a/kexec/arch/arm64/kexec-arm64.c +++ b/kexec/arch/arm64/kexec-arm64.c @@ -477,9 +477,10 @@ static int setup_2nd_dtb(struct dtb *dtb, char *command_line, int on_crash) dtb->size = fdt_totalsize(new_buf); } + dbgprintf("%s: found %s\n", __func__, dtb->path); + dump_fdt(dtb->buf); dump_reservemap(dtb); - return result; on_error: -- 2.7.4 _______________________________________________ kexec mailing list kexec@lists.infradead.org http://lists.infradead.org/mailman/listinfo/kexec