From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753307AbaE0R3l (ORCPT ); Tue, 27 May 2014 13:29:41 -0400 Received: from bombadil.infradead.org ([198.137.202.9]:49382 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752186AbaE0R3i (ORCPT ); Tue, 27 May 2014 13:29:38 -0400 Date: Tue, 27 May 2014 19:29:30 +0200 From: Peter Zijlstra To: Christoph Lameter Cc: Konstantin Khlebnikov , "linux-mm@kvack.org" , Linux Kernel Mailing List , Thomas Gleixner , Andrew Morton , Hugh Dickins , Mel Gorman , Roland Dreier , Sean Hefty , Hal Rosenstock , Mike Marciniszyn Subject: Re: [RFC][PATCH 0/5] VM_PINNED Message-ID: <20140527172930.GE11074@laptop.programming.kicks-ass.net> References: <20140526203232.GC5444@laptop.programming.kicks-ass.net> <20140527102909.GO30445@twins.programming.kicks-ass.net> <20140527144655.GC19143@laptop.programming.kicks-ass.net> <20140527153143.GD19143@laptop.programming.kicks-ass.net> <20140527164341.GD11074@laptop.programming.kicks-ass.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2012-12-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, May 27, 2014 at 11:56:44AM -0500, Christoph Lameter wrote: > On Tue, 27 May 2014, Peter Zijlstra wrote: > > > > Code could be easily added to alloc_pages_vma() to consider the pinned > > > status on allocation. Remove GFP_MOVABLE if the vma is pinned. > > > > Yes, but alloc_pages_vma() isn't used for shared pages (with exception > > of shmem and hugetlbfs). > > alloc_pages_vma() is used for all paths where we populate address ranges > with pages. This is what we are doing when pinning. Pages are not > allocated outside of a vma context. > > What do you mean by shared pages that are not shmem pages? AnonPages that > are referenced from multiple processes? Regular files.. they get allocated through __page_cache_alloc(). AFAIK there is nothing stopping people from pinning file pages for RDMA or other purposes. Unusual maybe, but certainly not impossible, and therefore we must be able to handle it. > > So whichever way around we have to do the mm_populate() + eviction hook > > + migration code, and since that equally covers the anon case, why > > bother? > > Migration is expensive and the memory registration overhead already > causes lots of complaints. Sure, but first to the simple thing, then if its a problem do something else.