From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from kirsty.vergenet.net ([202.4.237.240]) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1S17WG-0006qB-MZ for kexec@lists.infradead.org; Sat, 25 Feb 2012 02:37:57 +0000 Date: Sat, 25 Feb 2012 11:37:49 +0900 From: Simon Horman Subject: Re: [PATCH] kexec: crash: don't save swapper_pg_dir for !CONFIG_MMU configurations Message-ID: <20120225023748.GE21429@verge.net.au> References: <1330094447-11900-1-git-send-email-will.deacon@arm.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1330094447-11900-1-git-send-email-will.deacon@arm.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: kexec-bounces@lists.infradead.org Errors-To: kexec-bounces+dwmw2=infradead.org@lists.infradead.org To: Will Deacon Cc: kexec@lists.infradead.org On Fri, Feb 24, 2012 at 02:40:47PM +0000, Will Deacon wrote: > nommu platforms don't have very interesting swapper_pg_dir pointers and > usually just #define them to NULL, meaning that we can't include them in > the vmcoreinfo on the kexec crash path. > > This patch only saves the swapper_pg_dir if we have an MMU. Hi Will, might this cover cases where swapper_pg_dir is interesting? > Signed-off-by: Will Deacon > --- > kernel/kexec.c | 2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/kernel/kexec.c b/kernel/kexec.c > index 7b08867..cb5d13c 100644 > --- a/kernel/kexec.c > +++ b/kernel/kexec.c > @@ -1462,7 +1462,9 @@ static int __init crash_save_vmcoreinfo_init(void) > > VMCOREINFO_SYMBOL(init_uts_ns); > VMCOREINFO_SYMBOL(node_online_map); > +#ifdef CONFIG_MMU > VMCOREINFO_SYMBOL(swapper_pg_dir); > +#endif > VMCOREINFO_SYMBOL(_stext); > VMCOREINFO_SYMBOL(vmlist); > > -- > 1.7.4.1 > > > _______________________________________________ > kexec mailing list > kexec@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/kexec > _______________________________________________ kexec mailing list kexec@lists.infradead.org http://lists.infradead.org/mailman/listinfo/kexec