Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755613Ab2FYSSw (ORCPT ); Mon, 25 Jun 2012 14:18:52 -0400 Received: from mail.windriver.com ([147.11.1.11]:50230 "EHLO mail.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754093Ab2FYSSu (ORCPT ); Mon, 25 Jun 2012 14:18:50 -0400 Message-ID: <4FE8AAFC.1080306@windriver.com> Date: Mon, 25 Jun 2012 14:16:28 -0400 From: Paul Gortmaker User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20120430 Thunderbird/12.0.1 MIME-Version: 1.0 To: Daniel Santos CC: Andrew Morton , Christopher Li , David Daney , David Howells , David Rientjes , Hidetoshi Seto , "H. Peter Anvin" , Ingo Molnar , Ingo Molnar , Joe Perches , Konstantin Khlebnikov , , , LKML , Paul Turner , Pavel Pisa , Peter Zijlstra , Richard Weinberger , Rob Landley , Steven Rostedt , Suresh Siddha Subject: Re: [PATCH v4 6/13] bug.h: Replace __linktime_error with __compiletime_error References: <1340424048-7759-1-git-send-email-daniel.santos@pobox.com> <1340424048-7759-7-git-send-email-daniel.santos@pobox.com> In-Reply-To: <1340424048-7759-7-git-send-email-daniel.santos@pobox.com> Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit X-Originating-IP: [128.224.146.65] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1270 Lines: 34 On 12-06-23 12:00 AM, Daniel Santos wrote: > Signed-off-by: Daniel Santos > --- > include/linux/bug.h | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/include/linux/bug.h b/include/linux/bug.h > index aaac4bb..298a916 100644 > --- a/include/linux/bug.h > +++ b/include/linux/bug.h > @@ -73,7 +73,7 @@ extern int __build_bug_on_failed; > #define BUILD_BUG() \ > do { \ > extern void __build_bug_failed(void) \ > - __linktime_error("BUILD_BUG failed"); \ > + __compiletime_error("BUILD_BUG failed");\ At a quick glance of the bug.h parts, I would think you need this commit _before_ #5 (that deleted __linktime_error) otherwise you'll have introduced a bisection build failure. Or, alternatively you could combine #5 and #6 since they are clearly related, and their separation is more of a per-file CVS mentality than it is of any existence of distinct and separate/unrelated changesets. P. > __build_bug_failed(); \ > } while (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/