Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754541AbaGIKuH (ORCPT ); Wed, 9 Jul 2014 06:50:07 -0400 Received: from smtp02.citrix.com ([66.165.176.63]:17662 "EHLO SMTP02.CITRIX.COM" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751294AbaGIKuG (ORCPT ); Wed, 9 Jul 2014 06:50:06 -0400 X-IronPort-AV: E=Sophos;i="5.01,630,1400025600"; d="scan'208";a="151185658" Date: Wed, 9 Jul 2014 11:49:19 +0100 From: Stefano Stabellini X-X-Sender: sstabellini@kaball.uk.xensource.com To: Himangi Saraogi CC: Stefano Stabellini , Russell King , , , , , David Vrabel Subject: Re: [PATCH] xen/arm: use BUG_ON In-Reply-To: <20140708222634.GA11976@himangi-Dell> Message-ID: References: <20140708222634.GA11976@himangi-Dell> User-Agent: Alpine 2.02 (DEB 1266 2009-07-14) MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" X-DLP: MIA2 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 9 Jul 2014, Himangi Saraogi wrote: > Use BUG_ON(x) rather than if(x) BUG(); > > The semantic patch that fixes this problem is as follows: > > // > @@ identifier x; @@ > -if (x) BUG(); > +BUG_ON(x); > // > > Signed-off-by: Himangi Saraogi Acked-by: Stefano Stabellini > arch/arm/xen/enlighten.c | 6 ++---- > 1 file changed, 2 insertions(+), 4 deletions(-) > > diff --git a/arch/arm/xen/enlighten.c b/arch/arm/xen/enlighten.c > index 1e63243..98544c5 100644 > --- a/arch/arm/xen/enlighten.c > +++ b/arch/arm/xen/enlighten.c > @@ -181,8 +181,7 @@ static void xen_restart(enum reboot_mode reboot_mode, const char *cmd) > struct sched_shutdown r = { .reason = SHUTDOWN_reboot }; > int rc; > rc = HYPERVISOR_sched_op(SCHEDOP_shutdown, &r); > - if (rc) > - BUG(); > + BUG_ON(rc); > } > > static void xen_power_off(void) > @@ -190,8 +189,7 @@ static void xen_power_off(void) > struct sched_shutdown r = { .reason = SHUTDOWN_poweroff }; > int rc; > rc = HYPERVISOR_sched_op(SCHEDOP_shutdown, &r); > - if (rc) > - BUG(); > + BUG_ON(rc); > } > > static int xen_cpu_notification(struct notifier_block *self, > -- > 1.9.1 > -- 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/