From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751395AbcBKUvH (ORCPT ); Thu, 11 Feb 2016 15:51:07 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:33044 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751104AbcBKUvE (ORCPT ); Thu, 11 Feb 2016 15:51:04 -0500 Date: Thu, 11 Feb 2016 12:51:03 -0800 From: Andrew Morton To: Tim Chen Cc: Andrey Ryabinin , linux-mm@kvack.org, linux-kernel@vger.kernel.org, Andi Kleen , Mel Gorman , Vladimir Davydov , Konstantin Khlebnikov Subject: Re: [RFC PATCH 3/3] mm: increase scalability of global memory commitment accounting Message-Id: <20160211125103.8a4fb0ffed593938321755d2@linux-foundation.org> In-Reply-To: <1455150256.715.60.camel@schen9-desk2.jf.intel.com> References: <1455115941-8261-1-git-send-email-aryabinin@virtuozzo.com> <1455115941-8261-3-git-send-email-aryabinin@virtuozzo.com> <1455127253.715.36.camel@schen9-desk2.jf.intel.com> <20160210132818.589451dbb5eafae3fdb4a7ec@linux-foundation.org> <1455150256.715.60.camel@schen9-desk2.jf.intel.com> X-Mailer: Sylpheed 3.4.1 (GTK+ 2.24.23; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 10 Feb 2016 16:24:16 -0800 Tim Chen wrote: > On Wed, 2016-02-10 at 13:28 -0800, Andrew Morton wrote: > > > > > If a process is unmapping 4MB then it's pretty crazy for us to be > > hitting the percpu_counter 32 separate times for that single operation. > > > > Is there some way in which we can batch up the modifications within the > > caller and update the counter less frequently? Perhaps even in a > > single hit? > > I think the problem is the batch size is too small and we overflow > the local counter into the global counter for 4M allocations. That's one way of looking at the issue. The other way (which I point out above) is that we're calling vm_[un]_acct_memory too frequently when mapping/unmapping 4M segments. Exactly which mmap.c callsite is causing this issue?