From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-it0-f71.google.com (mail-it0-f71.google.com [209.85.214.71]) by kanga.kvack.org (Postfix) with ESMTP id 0C91B6B000A for ; Fri, 25 May 2018 11:52:00 -0400 (EDT) Received: by mail-it0-f71.google.com with SMTP id i200-v6so4687259itb.9 for ; Fri, 25 May 2018 08:52:00 -0700 (PDT) Received: from a9-114.smtp-out.amazonses.com (a9-114.smtp-out.amazonses.com. [54.240.9.114]) by mx.google.com with ESMTPS id s1-v6si6686177itg.117.2018.05.25.08.51.58 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 25 May 2018 08:51:58 -0700 (PDT) Date: Fri, 25 May 2018 15:51:57 +0000 From: Christopher Lameter Subject: Re: [RFC PATCH 1/5] mm, slab/slub: introduce kmalloc-reclaimable caches In-Reply-To: <20180524110011.1940-2-vbabka@suse.cz> Message-ID: <0100016397ffdbf2-dc8a305f-efa8-4771-9f2a-3a7568693db4-000000@email.amazonses.com> References: <20180524110011.1940-1-vbabka@suse.cz> <20180524110011.1940-2-vbabka@suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: owner-linux-mm@kvack.org List-ID: To: Vlastimil Babka Cc: linux-mm@kvack.org, Roman Gushchin , Michal Hocko , Johannes Weiner , linux-kernel@vger.kernel.org, linux-api@vger.kernel.org, Pekka Enberg , David Rientjes , Joonsoo Kim , Mel Gorman , Vijayanand Jitta On Thu, 24 May 2018, Vlastimil Babka wrote: > diff --git a/include/linux/slab.h b/include/linux/slab.h > index 9ebe659bd4a5..5bff0571b360 100644 > --- a/include/linux/slab.h > +++ b/include/linux/slab.h > @@ -296,11 +296,16 @@ static inline void __check_heap_object(const void *ptr, unsigned long n, > (KMALLOC_MIN_SIZE) : 16) > > #ifndef CONFIG_SLOB > -extern struct kmem_cache *kmalloc_caches[KMALLOC_SHIFT_HIGH + 1]; > +extern struct kmem_cache *kmalloc_caches[2][KMALLOC_SHIFT_HIGH + 1]; > #ifdef CONFIG_ZONE_DMA > extern struct kmem_cache *kmalloc_dma_caches[KMALLOC_SHIFT_HIGH + 1]; > #endif In the existing code we used a different array name for the DMA caches. This is a similar situation. I would suggest to use kmalloc_reclaimable_caches[] or make it consistent by folding the DMA caches into the array too (but then note the issues below). > @@ -536,12 +541,13 @@ static __always_inline void *kmalloc(size_t size, gfp_t flags) > #ifndef CONFIG_SLOB > if (!(flags & GFP_DMA)) { > unsigned int index = kmalloc_index(size); > + unsigned int recl = kmalloc_reclaimable(flags); This is a hotpath reserved for regular allocations. The reclaimable slabs need to be handled like the DMA slabs. So check for GFP_DMA plus the reclaimable flags. > @@ -588,12 +594,13 @@ static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node) > if (__builtin_constant_p(size) && > size <= KMALLOC_MAX_CACHE_SIZE && !(flags & GFP_DMA)) { > unsigned int i = kmalloc_index(size); > + unsigned int recl = kmalloc_reclaimable(flags); > Same situation here and additional times below.