From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f42.google.com (mail-pa0-f42.google.com [209.85.220.42]) by kanga.kvack.org (Postfix) with ESMTP id AFA216B0038 for ; Fri, 26 Sep 2014 10:51:12 -0400 (EDT) Received: by mail-pa0-f42.google.com with SMTP id bj1so2678928pad.1 for ; Fri, 26 Sep 2014 07:51:12 -0700 (PDT) Received: from mx2.parallels.com (mx2.parallels.com. [199.115.105.18]) by mx.google.com with ESMTPS id fd3si9855657pbc.11.2014.09.26.07.51.11 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 26 Sep 2014 07:51:11 -0700 (PDT) From: Vladimir Davydov Subject: [PATCH 0/4] Simplify cpuset API and fix cpuset check in SL[AU]B Date: Fri, 26 Sep 2014 18:50:51 +0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain Sender: owner-linux-mm@kvack.org List-ID: To: linux-kernel@vger.kernel.org Cc: Li Zefan , Christoph Lameter , Pekka Enberg , David Rientjes , Joonsoo Kim , Andrew Morton , linux-mm@kvack.org Hi, SLAB and SLUB use hardwall cpuset check on fallback alloc, while the page allocator uses softwall check for all kernel allocations. This may result in falling into the page allocator even if there are free objects on other nodes. SLAB algorithm is especially affected: the number of objects allocated in vain is unlimited, so that they theoretically can eat up a whole NUMA node. For more details see comments to patches 3, 4. When I last sent a fix (https://lkml.org/lkml/2014/8/10/100), David found the whole cpuset API being cumbersome and proposed to simplify it before getting to fixing its users. So this patch set addresses both David's complain (patches 1, 2) and the SL[AU]B issues (patches 3, 4). Reviews are appreciated. Thanks, Vladimir Davydov (4): cpuset: convert callback_mutex to a spinlock cpuset: simplify cpuset_node_allowed API slab: fix cpuset check in fallback_alloc slub: fix cpuset check in get_any_partial include/linux/cpuset.h | 37 +++-------- kernel/cpuset.c | 162 +++++++++++++++++------------------------------- mm/hugetlb.c | 2 +- mm/oom_kill.c | 2 +- mm/page_alloc.c | 6 +- mm/slab.c | 2 +- mm/slub.c | 2 +- mm/vmscan.c | 5 +- 8 files changed, 74 insertions(+), 144 deletions(-) -- 1.7.10.4 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org