From patchwork Thu Dec 10 17:28:18 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Daney X-Patchwork-Id: 66311 X-Patchwork-Delegate: kyle@mcmartin.ca Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id nBAHU7BJ024492 for ; Thu, 10 Dec 2009 17:30:07 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761249AbZLJR3U (ORCPT ); Thu, 10 Dec 2009 12:29:20 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1761247AbZLJR3T (ORCPT ); Thu, 10 Dec 2009 12:29:19 -0500 Received: from mail3.caviumnetworks.com ([12.108.191.235]:3894 "EHLO mail3.caviumnetworks.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1761240AbZLJR3P (ORCPT ); Thu, 10 Dec 2009 12:29:15 -0500 Received: from caexch01.caveonetworks.com (Not Verified[192.168.16.9]) by mail3.caviumnetworks.com with MailMarshal (v6, 5, 4, 7535) id ; Thu, 10 Dec 2009 09:29:20 -0800 Received: from caexch01.caveonetworks.com ([192.168.16.9]) by caexch01.caveonetworks.com with Microsoft SMTPSVC(6.0.3790.3959); Thu, 10 Dec 2009 09:28:28 -0800 Received: from dd1.caveonetworks.com ([12.108.191.236]) by caexch01.caveonetworks.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Thu, 10 Dec 2009 09:28:28 -0800 Received: from dd1.caveonetworks.com (localhost.localdomain [127.0.0.1]) by dd1.caveonetworks.com (8.14.2/8.14.2) with ESMTP id nBAHSOsT017574; Thu, 10 Dec 2009 09:28:24 -0800 Received: (from ddaney@localhost) by dd1.caveonetworks.com (8.14.2/8.14.2/Submit) id nBAHSN2F017573; Thu, 10 Dec 2009 09:28:23 -0800 From: David Daney To: linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org Cc: akpm@linux-foundation.org, torvalds@linux-foundation.org, David Daney , Kyle McMartin , Helge Deller , linux-parisc@vger.kernel.org Subject: [PATCH 2/5] parisc: Convert BUG() to use unreachable() Date: Thu, 10 Dec 2009 09:28:18 -0800 Message-Id: <1260466101-17545-2-git-send-email-ddaney@caviumnetworks.com> X-Mailer: git-send-email 1.6.0.6 In-Reply-To: <4B212EEC.3060808@caviumnetworks.com> References: <4B212EEC.3060808@caviumnetworks.com> X-OriginalArrivalTime: 10 Dec 2009 17:28:28.0826 (UTC) FILETIME=[2FEC8FA0:01CA79BE] Sender: linux-parisc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-parisc@vger.kernel.org diff --git a/arch/parisc/include/asm/bug.h b/arch/parisc/include/asm/bug.h index 8cfc553..75e46c5 100644 --- a/arch/parisc/include/asm/bug.h +++ b/arch/parisc/include/asm/bug.h @@ -32,14 +32,14 @@ "\t.popsection" \ : : "i" (__FILE__), "i" (__LINE__), \ "i" (0), "i" (sizeof(struct bug_entry)) ); \ - for(;;) ; \ + unreachable(); \ } while(0) #else #define BUG() \ do { \ asm volatile(PARISC_BUG_BREAK_ASM : : ); \ - for(;;) ; \ + unreachable(); \ } while(0) #endif