From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760443AbcIYTS4 (ORCPT ); Sun, 25 Sep 2016 15:18:56 -0400 Received: from mail.kernel.org ([198.145.29.136]:40188 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756330AbcIYTSy (ORCPT ); Sun, 25 Sep 2016 15:18:54 -0400 Date: Sun, 25 Sep 2016 12:18:49 -0700 From: Shaohua Li To: "Huang, Ying" Cc: Rik van Riel , Andrew Morton , tim.c.chen@intel.com, dave.hansen@intel.com, andi.kleen@intel.com, aaron.lu@intel.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org, Hugh Dickins , Minchan Kim , Andrea Arcangeli , "Kirill A . Shutemov" , Vladimir Davydov , Johannes Weiner , Michal Hocko Subject: Re: [PATCH -v3 00/10] THP swap: Delay splitting THP during swapping out Message-ID: <20160925191849.GA83300@kernel.org> References: <1473266769-2155-1-git-send-email-ying.huang@intel.com> <20160922225608.GA3898@kernel.org> <1474591086.17726.1.camel@redhat.com> <87d1jvuz08.fsf@yhuang-dev.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <87d1jvuz08.fsf@yhuang-dev.intel.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Sep 23, 2016 at 10:32:39AM +0800, Huang, Ying wrote: > Rik van Riel writes: > > > On Thu, 2016-09-22 at 15:56 -0700, Shaohua Li wrote: > >> On Wed, Sep 07, 2016 at 09:45:59AM -0700, Huang, Ying wrote: > >> >  > >> > - It will help the memory fragmentation, especially when the THP is > >> >   heavily used by the applications.  The 2M continuous pages will > >> > be > >> >   free up after THP swapping out. > >> > >> So this is impossible without THP swapin. While 2M swapout makes a > >> lot of > >> sense, I doubt 2M swapin is really useful. What kind of application > >> is > >> 'optimized' to do sequential memory access? > > > > I suspect a lot of this will depend on the ratio of storage > > speed to CPU & RAM speed. > > > > When swapping to a spinning disk, it makes sense to avoid > > extra memory use on swapin, and work in 4kB blocks. > > For spinning disk, the THP swap optimization will be turned off in > current implementation. Because huge swap cluster allocation based on > swap cluster management, which is available only for non-rotating block > devices (blk_queue_nonrot()). For 2m swapin, as long as one byte is changed in the 2m, next time we must do 2m swapout. There is huge waste of memory and IO bandwidth and increases unnecessary memory pressure. 2M IO will very easily saturate a very fast SSD and makes IO the bottleneck. Not sure about NVRAM though. Thanks, Shaohua