From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752088AbbKJJ3B (ORCPT ); Tue, 10 Nov 2015 04:29:01 -0500 Received: from ozlabs.org ([103.22.144.67]:34799 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751393AbbKJJ27 (ORCPT ); Tue, 10 Nov 2015 04:28:59 -0500 Message-ID: <1447147735.1314.1.camel@ellerman.id.au> Subject: Re: [PATCH] of: Print rather than WARN'ing when overlap check fails From: Michael Ellerman To: robh+dt@kernel.org Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linuxppc-dev@ozlabs.org, mitchelh@codeaurora.org, frowand.list@gmail.com, grant.likely@linaro.org Date: Tue, 10 Nov 2015 20:28:55 +1100 In-Reply-To: <1447132113-31434-1-git-send-email-mpe@ellerman.id.au> References: <1447132113-31434-1-git-send-email-mpe@ellerman.id.au> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.16.5-1ubuntu3 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 2015-11-10 at 16:08 +1100, Michael Ellerman wrote: > __rmem_check_for_overlap() is called very early in boot, and on some > powerpc systems it's not safe to call WARN that early in boot. > > If the overlap check fails the system will oops instead of printing a > warning. Furthermore because it's so early in boot the console is not up > and the user doesn't see the oops, they just get a dead system. > > Fix it by printing an error instead of calling WARN. > > Fixes: ae1add247bf8 ("of: Check for overlap in reserved memory regions") > Signed-off-by: Michael Ellerman > --- > drivers/of/of_reserved_mem.c | 7 +++---- > 1 file changed, 3 insertions(+), 4 deletions(-) I forgot to say, I assume you're OK to merge this and get it to Linus soonish? Otherwise I can stuff it in a fix branch and ask Linus to pull that. Let me know which you'd prefer. cheers