From mboxrd@z Thu Jan 1 00:00:00 1970 Received: with ECARTIS (v1.0.0; list linux-mips); Tue, 22 Nov 2011 00:23:56 +0100 (CET) Received: from mail3.caviumnetworks.com ([12.108.191.235]:12696 "EHLO mail3.caviumnetworks.com" rhost-flags-OK-OK-OK-OK) by eddie.linux-mips.org with ESMTP id S1903807Ab1KUXXt (ORCPT ); Tue, 22 Nov 2011 00:23:49 +0100 Received: from caexch01.caveonetworks.com (Not Verified[192.168.16.9]) by mail3.caviumnetworks.com with MailMarshal (v6,7,2,8378) id ; Mon, 21 Nov 2011 15:25:13 -0800 Received: from caexch01.caveonetworks.com ([192.168.16.9]) by caexch01.caveonetworks.com with Microsoft SMTPSVC(6.0.3790.4675); Mon, 21 Nov 2011 15:23:47 -0800 Received: from dd1.caveonetworks.com ([64.2.3.195]) by caexch01.caveonetworks.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Mon, 21 Nov 2011 15:23:47 -0800 Message-ID: <4ECADD83.3090108@caviumnetworks.com> Date: Mon, 21 Nov 2011 15:23:47 -0800 From: David Daney User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.15) Gecko/20101027 Fedora/3.0.10-1.fc12 Thunderbird/3.0.10 MIME-Version: 1.0 To: Linus Torvalds CC: David Daney , David Rientjes , Andrew Morton , "linux-mips@linux-mips.org" , "ralf@linux-mips.org" , "linux-kernel@vger.kernel.org" , David Daney , "linux-arch@vger.kernel.org" , Robin Holt Subject: Re: [patch] hugetlb: remove dummy definitions of HPAGE_MASK and HPAGE_SIZE References: <1321567050-13197-1-git-send-email-ddaney.cavm@gmail.com> <4ECACF68.3020701@gmail.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 21 Nov 2011 23:23:47.0748 (UTC) FILETIME=[9EB22640:01CCA8A4] X-archive-position: 31904 X-ecartis-version: Ecartis v1.0.0 Sender: linux-mips-bounce@linux-mips.org Errors-to: linux-mips-bounce@linux-mips.org X-original-sender: ddaney@caviumnetworks.com Precedence: bulk X-list: linux-mips Return-Path: X-Keywords: X-UID: 18006 On 11/21/2011 02:43 PM, Linus Torvalds wrote: > On Mon, Nov 21, 2011 at 2:23 PM, David Daney wrote: >> >> This whole comment strikes me as somewhat dishonest, as at the time David >> Rientjes wrote it, he knew that there were dependencies on these symbols in >> the linux-next tree. >> >> Now we can add these: >> +#define HPAGE_SHIFT ({ BUG(); 0; }) >> +#define HPAGE_SIZE ({ BUG(); 0; }) >> +#define HPAGE_MASK ({ BUG(); 0; }) > > Hell no. > > We don't do run-time BUG() things. No way, no how. > > If that #define cannot be used, then it damn well shouldn't be defined at all. > > David's patch is clearly the right thing to do. Don't try to send me > the above kind of insane crap. > Ok Linus, for you I would recommend against running this git command on your tree: git grep -E '#define.+BUG\(\);' It's not like there isn't precedence. David Daney