From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756543AbYERTNU (ORCPT ); Sun, 18 May 2008 15:13:20 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754058AbYERTNL (ORCPT ); Sun, 18 May 2008 15:13:11 -0400 Received: from one.firstfloor.org ([213.235.205.2]:52587 "EHLO one.firstfloor.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753887AbYERTNK (ORCPT ); Sun, 18 May 2008 15:13:10 -0400 Message-ID: <48307FC0.8010704@firstfloor.org> Date: Sun, 18 May 2008 21:13:04 +0200 From: Andi Kleen User-Agent: Thunderbird 1.5.0.12 (X11/20060911) MIME-Version: 1.0 To: Jeremy Fitzhardinge CC: Adrian Bunk , Thomas Gleixner , "Maciej W. Rozycki" , Tom Spink , Cyrill Gorcunov , Ingo Molnar , "H. Peter Anvin" , LKML , Jiri Slaby , Sam Ravnborg Subject: Re: [RFC] x86: merge nmi_32-64 to nmi.c References: <20080517192200.GA6914@cvg> <7b9198260805171328u555eec17t3597f3378edbda88@mail.gmail.com> <482FD9F2.8080204@goop.org> <20080518180811.GI8140@cs181133002.pp.htv.fi> <483071DE.6010404@firstfloor.org> <483076FA.9040605@goop.org> In-Reply-To: <483076FA.9040605@goop.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Jeremy Fitzhardinge wrote: > Andi Kleen wrote: >> The whole idea was pretty bad. Ifdefs are not ugly because the syntax >> looks ugly, but because it's a semantically ugly construct with bad >> maintainability impact. >> >> Trying to put syntactical sugar around that is a doomed exercise. It >> will be still ugly, no matter what you do. > > Not true. Using C rather than CPP to control the compilation of config > options has the big win that all code paths are still visible to the > compiler. A small win. Still lots of other problems, including testing. In some cases that's not what you want, but it often is, and > it would avoid some degree if inadvertent breakage of options. It can > also be syntactically a lot more pleasant. Well it's still an unnecessary different code path and making it look nicer is just an excuse from properly cleaning it up. -Andi