Received: by 2002:ac0:a5b6:0:0:0:0:0 with SMTP id m51-v6csp3689308imm; Mon, 18 Jun 2018 02:20:19 -0700 (PDT) X-Google-Smtp-Source: ADUXVKI01dBx/84EkgJPOH5OO3j9Kh45kSSBktRGadfD/rCDm1LR7PLmAYnP8+8IvuULjGogHygB X-Received: by 2002:a17:902:3343:: with SMTP id a61-v6mr12906703plc.241.1529313619183; Mon, 18 Jun 2018 02:20:19 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1529313619; cv=none; d=google.com; s=arc-20160816; b=Pcpb5rcuPICwSzOIoZpWLdS1PomgiS3X4PzWjITgI5/CjetgxDXTCfKVeb7/UU8Mk9 RjCdB1nlvX6taIVHNcHBK6R/lgGmu3/QRODGNDNwEBdUVc7qT83VMXdAKFioPwydu2BV mE2/n/78Gw7hrEu7/pXbqc2oAJYbYTAM4fs13meL6QGAQuNcQHNVYU+Gc3TQ1SkKAjSk vUp/4eVl7bOVHm5NXfiC/O8lmNNGVog8uLkzAeu4T+PpfaQZJbybAy7k2OeKjqqIFD2M O87sI/Hq71TTfUpnxdkbi65KlHLiposya9tfOcEocXnd+rgmCqoglNiEUGdqnsicsqDX DJbQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from:arc-authentication-results; bh=s8kGYtwqxuQjBjt50ABAKFfnnbLYJ+Tb8OFykkxbMfI=; b=imvim+qkJiPhyiW1H2UMCBGm/tvoax/ccFHzhK07SPN8VOo5GdpokOK2303qdKCiVy AqKAWpPLRt06H7xY8XZxtC81p+5jKhrkIQ7lwlWo/HQ9s8FmLPswjN9vNsuVLjxjNEEp RVHkzpKG4kK0lhKe3kIdsBeatFaJULPG3yfGSL/jsoIWnT2Y41shheWQlsU6X0+FtzYX BRbAk0XvcByyfNDdHcD4+d6i4HWr9fXaBlS+OSyx2xRFaTSHloXEuk+fTPsmSeDvXK3y BFJfAsyhR1Tk4LcxC6MGuUkJtq7/eqqnj0dZ7QGwng7kwUBLFKDq0SZ0Y+PyoPMTML/O F0MA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id o21-v6si11672892pgn.262.2018.06.18.02.20.03; Mon, 18 Jun 2018 02:20:19 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S966939AbeFRJTd (ORCPT + 99 others); Mon, 18 Jun 2018 05:19:33 -0400 Received: from mx2.suse.de ([195.135.220.15]:38508 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S935941AbeFRJS3 (ORCPT ); Mon, 18 Jun 2018 05:18:29 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay1.suse.de (charybdis-ext-too.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id CD9E6ABEA; Mon, 18 Jun 2018 09:18:27 +0000 (UTC) From: Vlastimil Babka To: Andrew Morton Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, Roman Gushchin , Michal Hocko , Johannes Weiner , linux-api@vger.kernel.org, Christoph Lameter , David Rientjes , Mel Gorman , Matthew Wilcox , Vlastimil Babka Subject: [PATCH v2 2/7] mm, slab/slub: introduce kmalloc-reclaimable caches Date: Mon, 18 Jun 2018 11:18:03 +0200 Message-Id: <20180618091808.4419-3-vbabka@suse.cz> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20180618091808.4419-1-vbabka@suse.cz> References: <20180618091808.4419-1-vbabka@suse.cz> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Kmem caches can be created with a SLAB_RECLAIM_ACCOUNT flag, which indicates they contain objects which can be reclaimed under memory pressure (typically through a shrinker). This makes the slab pages accounted as NR_SLAB_RECLAIMABLE in vmstat, which is reflected also the MemAvailable meminfo counter and in overcommit decisions. The slab pages are also allocated with __GFP_RECLAIMABLE, which is good for anti-fragmentation through grouping pages by mobility. The generic kmalloc-X caches are created without this flag, but sometimes are used also for objects that can be reclaimed, which due to varying size cannot have a dedicated kmem cache with SLAB_RECLAIM_ACCOUNT flag. A prominent example are dcache external names, which prompted the creation of a new, manually managed vmstat counter NR_INDIRECTLY_RECLAIMABLE_BYTES in commit f1782c9bc547 ("dcache: account external names as indirectly reclaimable memory"). To better handle this and any other similar cases, this patch introduces SLAB_RECLAIM_ACCOUNT variants of kmalloc caches, named kmalloc-rcl-X. They are used whenever the kmalloc() call passes __GFP_RECLAIMABLE among gfp flags. They are added to the kmalloc_caches array as a new type. Allocations with both __GFP_DMA and __GFP_RECLAIMABLE will use a dma type cache. This change only applies to SLAB and SLUB, not SLOB. This is fine, since SLOB's target are tiny system and this patch does add some overhead of kmem management objects. Signed-off-by: Vlastimil Babka --- include/linux/slab.h | 16 +++++++++++---- mm/slab_common.c | 48 ++++++++++++++++++++++++++++---------------- 2 files changed, 43 insertions(+), 21 deletions(-) diff --git a/include/linux/slab.h b/include/linux/slab.h index 4299c59353a1..d89e934e0d8b 100644 --- a/include/linux/slab.h +++ b/include/linux/slab.h @@ -296,11 +296,12 @@ static inline void __check_heap_object(const void *ptr, unsigned long n, (KMALLOC_MIN_SIZE) : 16) #define KMALLOC_NORMAL 0 +#define KMALLOC_RECLAIM 1 #ifdef CONFIG_ZONE_DMA -#define KMALLOC_DMA 1 -#define KMALLOC_TYPES 2 +#define KMALLOC_DMA 2 +#define KMALLOC_TYPES 3 #else -#define KMALLOC_TYPES 1 +#define KMALLOC_TYPES 2 #endif #ifndef CONFIG_SLOB @@ -309,12 +310,19 @@ extern struct kmem_cache *kmalloc_caches[KMALLOC_TYPES][KMALLOC_SHIFT_HIGH + 1]; static __always_inline unsigned int kmalloc_type(gfp_t flags) { int is_dma = 0; + int is_reclaimable; #ifdef CONFIG_ZONE_DMA is_dma = !!(flags & __GFP_DMA); #endif - return is_dma; + is_reclaimable = !!(flags & __GFP_RECLAIMABLE); + + /* + * If an allocation is botth __GFP_DMA and __GFP_RECLAIMABLE, return + * KMALLOC_DMA and effectively ignore __GFP_RECLAIMABLE + */ + return (is_dma * 2) + (is_reclaimable & !is_dma); } /* diff --git a/mm/slab_common.c b/mm/slab_common.c index 635f2d8d0198..8a30d6979936 100644 --- a/mm/slab_common.c +++ b/mm/slab_common.c @@ -1103,10 +1103,21 @@ void __init setup_kmalloc_cache_index_table(void) } } -static void __init new_kmalloc_cache(int idx, slab_flags_t flags) +static void __init +new_kmalloc_cache(int idx, int type, slab_flags_t flags) { - kmalloc_caches[KMALLOC_NORMAL][idx] = create_kmalloc_cache( - kmalloc_info[idx].name, + const char *name; + + if (type == KMALLOC_RECLAIM) { + flags |= SLAB_RECLAIM_ACCOUNT; + name = kasprintf(GFP_NOWAIT, "kmalloc-rcl-%u", + kmalloc_info[idx].size); + BUG_ON(!name); + } else { + name = kmalloc_info[idx].name; + } + + kmalloc_caches[type][idx] = create_kmalloc_cache(name, kmalloc_info[idx].size, flags, 0, kmalloc_info[idx].size); } @@ -1118,22 +1129,25 @@ static void __init new_kmalloc_cache(int idx, slab_flags_t flags) */ void __init create_kmalloc_caches(slab_flags_t flags) { - int i; - int type = KMALLOC_NORMAL; + int i, type; - for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++) { - if (!kmalloc_caches[type][i]) - new_kmalloc_cache(i, flags); + for (type = KMALLOC_NORMAL; type <= KMALLOC_RECLAIM; type++) { + for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++) { + if (!kmalloc_caches[type][i]) + new_kmalloc_cache(i, type, flags); - /* - * Caches that are not of the two-to-the-power-of size. - * These have to be created immediately after the - * earlier power of two caches - */ - if (KMALLOC_MIN_SIZE <= 32 && !kmalloc_caches[type][1] && i == 6) - new_kmalloc_cache(1, flags); - if (KMALLOC_MIN_SIZE <= 64 && !kmalloc_caches[type][2] && i == 7) - new_kmalloc_cache(2, flags); + /* + * Caches that are not of the two-to-the-power-of size. + * These have to be created immediately after the + * earlier power of two caches + */ + if (KMALLOC_MIN_SIZE <= 32 && i == 6 && + !kmalloc_caches[type][1]) + new_kmalloc_cache(1, type, flags); + if (KMALLOC_MIN_SIZE <= 64 && i == 7 && + !kmalloc_caches[type][2]) + new_kmalloc_cache(2, type, flags); + } } /* Kmalloc array is now usable */ -- 2.17.1