Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758237AbbEELNk (ORCPT ); Tue, 5 May 2015 07:13:40 -0400 Received: from ozlabs.org ([103.22.144.67]:38231 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758156AbbEELMv (ORCPT ); Tue, 5 May 2015 07:12:51 -0400 From: Michael Ellerman To: Cc: , Anton Blanchard , tj@kernel.org, Andrew Morton Subject: [PATCH 4/6] powerpc: Add ppc_md.name to dump stack arch description Date: Tue, 5 May 2015 21:12:15 +1000 Message-Id: <1430824337-15339-4-git-send-email-mpe@ellerman.id.au> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1430824337-15339-1-git-send-email-mpe@ellerman.id.au> References: <1430824337-15339-1-git-send-email-mpe@ellerman.id.au> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1144 Lines: 38 As soon as we know the name of the machine description we're using, add it to the dump stack arch description, which is printed in case of an oops. Signed-off-by: Michael Ellerman --- arch/powerpc/kernel/setup-common.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/powerpc/kernel/setup-common.c b/arch/powerpc/kernel/setup-common.c index 44c8d03558ac..922115cd4714 100644 --- a/arch/powerpc/kernel/setup-common.c +++ b/arch/powerpc/kernel/setup-common.c @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include @@ -605,6 +606,8 @@ void probe_machine(void) for (;;); } + dump_stack_add_arch_desc(ppc_md.name); + printk(KERN_INFO "Using %s machine description\n", ppc_md.name); } -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/