Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753835AbaBYShz (ORCPT ); Tue, 25 Feb 2014 13:37:55 -0500 Received: from g2t1383g.austin.hp.com ([15.217.136.92]:37531 "EHLO g2t1383g.austin.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753796AbaBYShy (ORCPT ); Tue, 25 Feb 2014 13:37:54 -0500 Message-ID: <1393353454.2577.42.camel@buesod1.americas.hpqcorp.net> Subject: Re: [PATCH v2] mm: per-thread vma caching From: Davidlohr Bueso To: Peter Zijlstra Cc: Andrew Morton , Ingo Molnar , Linus Torvalds , Michel Lespinasse , Mel Gorman , Rik van Riel , KOSAKI Motohiro , aswin@hp.com, scott.norton@hp.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org Date: Tue, 25 Feb 2014 10:37:34 -0800 In-Reply-To: <20140225183522.GU6835@laptop.programming.kicks-ass.net> References: <1393352206.2577.36.camel@buesod1.americas.hpqcorp.net> <20140225183522.GU6835@laptop.programming.kicks-ass.net> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.6.4 (3.6.4-3.fc18) Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 2014-02-25 at 19:35 +0100, Peter Zijlstra wrote: > On Tue, Feb 25, 2014 at 10:16:46AM -0800, Davidlohr Bueso wrote: > > +void vmacache_update(struct mm_struct *mm, unsigned long addr, > > + struct vm_area_struct *newvma) > > +{ > > + /* > > + * Hash based on the page number. Provides a good > > + * hit rate for workloads with good locality and > > + * those with random accesses as well. > > + */ > > + int idx = (addr >> PAGE_SHIFT) & 3; > > % VMACACHE_SIZE > > perhaps? GCC should turn that into a mask for all sensible values I > would think. > > Barring that I think something like: > > #define VMACACHE_BITS 2 > #define VMACACHE_SIZE (1U << VMACACHE_BITS) > #define VMACACHE_MASK (VMACACHE_SIZE - 1) Hmm all that seems like an overkill. -- 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/