From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753810AbYJAAo3 (ORCPT ); Tue, 30 Sep 2008 20:44:29 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753215AbYJAAoU (ORCPT ); Tue, 30 Sep 2008 20:44:20 -0400 Received: from ozlabs.org ([203.10.76.45]:43450 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752965AbYJAAoT (ORCPT ); Tue, 30 Sep 2008 20:44:19 -0400 From: Rusty Russell To: Linus Torvalds Subject: Re: [Bug #11342] Linux 2.6.27-rc3: kernel BUG at mm/vmalloc.c - bisected Date: Wed, 1 Oct 2008 10:44:13 +1000 User-Agent: KMail/1.9.9 Cc: Mike Travis , Ingo Molnar , Yinghai Lu , David Miller , Alan.Brunelle@hp.com, tglx@linutronix.de, rjw@sisk.pl, Linux Kernel Mailing List , kernel-testers@vger.kernel.org, Andrew Morton , arjan@linux.intel.com, Jack Steiner References: <48E2506C.7000406@sgi.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200810011044.14148.rusty@rustcorp.com.au> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wednesday 01 October 2008 02:46:59 Linus Torvalds wrote: > Quite frankly, I personally do hate typedefs that end up being pointers, > and used as pointers, without showing that in the source code. ... > I'm now a bit more leery about this whole thing just > because the typedef ends up hiding so much - it doesn't just hide the > basic type, it hides a very basic *code* issue. Yes, this is why my version of the rework moved away from typedefs, except for the special case of "cpumask_var_t" for stack vars where this trick is really desired. Everywhere else, the code becomes nice and clear: struct cpumask *. Cheers, Rusty.