Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965124AbXBTT4x (ORCPT ); Tue, 20 Feb 2007 14:56:53 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S965113AbXBTT4x (ORCPT ); Tue, 20 Feb 2007 14:56:53 -0500 Received: from gate.crashing.org ([63.228.1.57]:36265 "EHLO gate.crashing.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965093AbXBTT4w (ORCPT ); Tue, 20 Feb 2007 14:56:52 -0500 Subject: Re: [PATCH 0/7] [RFC] hugetlb: pagetable_operations API From: Benjamin Herrenschmidt To: Arjan van de Ven Cc: Adam Litke , linux-mm@kvack.org, linux-kernel@vger.kernel.org In-Reply-To: <1171910581.3531.89.camel@laptopd505.fenrus.org> References: <20070219183123.27318.27319.stgit@localhost.localdomain> <1171910581.3531.89.camel@laptopd505.fenrus.org> Content-Type: text/plain Date: Wed, 21 Feb 2007 06:54:57 +1100 Message-Id: <1172001297.18571.130.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.8.1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1248 Lines: 27 On Mon, 2007-02-19 at 19:43 +0100, Arjan van de Ven wrote: > On Mon, 2007-02-19 at 10:31 -0800, Adam Litke wrote: > > The page tables for hugetlb mappings are handled differently than page tables > > for normal pages. Rather than integrating multiple page size support into the > > main VM (which would tremendously complicate the code) some hooks were created. > > This allows hugetlb special cases to be handled "out of line" by a separate > > interface. > > ok it makes sense to clean this up.. what I don't like is that there > STILL are all the double cases... for this to work and be worth it both > the common case and the hugetlb case should be using the ops structure > always! Anything else and you're just replacing bad code with bad > code ;( I don't fully agree. I think it makes sense to have the "special" case be a function pointer and the "normal" case stay where it is for performances. You don't want to pay the cost of the function pointer call in the normal case do you ? Ben. - 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/