From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pg1-f197.google.com (mail-pg1-f197.google.com [209.85.215.197]) by kanga.kvack.org (Postfix) with ESMTP id 827316B0269 for ; Tue, 10 Jul 2018 09:54:50 -0400 (EDT) Received: by mail-pg1-f197.google.com with SMTP id a3-v6so877335pgv.10 for ; Tue, 10 Jul 2018 06:54:50 -0700 (PDT) Received: from mga06.intel.com (mga06.intel.com. [134.134.136.31]) by mx.google.com with ESMTPS id j1-v6si3007681pgh.160.2018.07.10.06.54.49 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 10 Jul 2018 06:54:49 -0700 (PDT) Subject: Re: [PATCH -mm -v4 04/21] mm, THP, swap: Support PMD swap mapping in swapcache_free_cluster() References: <20180622035151.6676-1-ying.huang@intel.com> <20180622035151.6676-5-ying.huang@intel.com> <874lh7intc.fsf@yhuang-dev.intel.com> From: Dave Hansen Message-ID: <444d0718-8b89-5ef1-15c8-1bbbc6cb1bf3@linux.intel.com> Date: Tue, 10 Jul 2018 06:54:21 -0700 MIME-Version: 1.0 In-Reply-To: <874lh7intc.fsf@yhuang-dev.intel.com> Content-Type: text/plain; charset=windows-1252 Content-Language: en-US Content-Transfer-Encoding: 8bit Sender: owner-linux-mm@kvack.org List-ID: To: "Huang, Ying" Cc: Andrew Morton , linux-mm@kvack.org, linux-kernel@vger.kernel.org, "Kirill A. Shutemov" , Andrea Arcangeli , Michal Hocko , Johannes Weiner , Shaohua Li , Hugh Dickins , Minchan Kim , Rik van Riel , Naoya Horiguchi , Zi Yan , Daniel Jordan On 07/09/2018 11:53 PM, Huang, Ying wrote: > Dave Hansen writes: >>> +#ifdef CONFIG_THP_SWAP >>> +static inline int cluster_swapcount(struct swap_cluster_info *ci) >>> +{ >>> + if (!ci || !cluster_is_huge(ci)) >>> + return 0; >>> + >>> + return cluster_count(ci) - SWAPFILE_CLUSTER; >>> +} >>> +#else >>> +#define cluster_swapcount(ci) 0 >>> +#endif >> >> Dumb questions, round 2: On a CONFIG_THP_SWAP=n build, presumably, >> cluster_is_huge()=0 always, so cluster_swapout() always returns 0. Right? >> >> So, why the #ifdef? > > #ifdef here is to reduce the code size for !CONFIG_THP_SWAP. I'd just remove the !CONFIG_THP_SWAP version entirely. >>> @@ -1288,24 +1301,30 @@ static void swapcache_free_cluster(swp_entry_t entry) >>> >>> ci = lock_cluster(si, offset); >>> VM_BUG_ON(!cluster_is_huge(ci)); >>> + VM_BUG_ON(!is_cluster_offset(offset)); >>> + VM_BUG_ON(cluster_count(ci) < SWAPFILE_CLUSTER); >>> map = si->swap_map + offset; >>> - for (i = 0; i < SWAPFILE_CLUSTER; i++) { >>> - val = map[i]; >>> - VM_BUG_ON(!(val & SWAP_HAS_CACHE)); >>> - if (val == SWAP_HAS_CACHE) >>> - free_entries++; >>> + if (!cluster_swapcount(ci)) { >>> + for (i = 0; i < SWAPFILE_CLUSTER; i++) { >>> + val = map[i]; >>> + VM_BUG_ON(!(val & SWAP_HAS_CACHE)); >>> + if (val == SWAP_HAS_CACHE) >>> + free_entries++; >>> + } >>> + if (free_entries != SWAPFILE_CLUSTER) >>> + cluster_clear_huge(ci); >>> } >> >> Also, I'll point out that cluster_swapcount() continues the horrific >> naming of cluster_couunt(), not saying what the count is *of*. The >> return value doesn't help much: >> >> return cluster_count(ci) - SWAPFILE_CLUSTER; > > We have page_swapcount() for page, swp_swapcount() for swap entry. > cluster_swapcount() tries to mimic them for swap cluster. But I am not > good at naming in general. What's your suggestion? I don't have a suggestion because I haven't the foggiest idea what it is doing. :) Is it the number of instantiated swap cache pages that are referring to this cluster? Is it just huge pages? Huge and small? One refcount per huge page, or 512?