From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 822F8C56202 for ; Thu, 26 Nov 2020 05:32:53 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id C4A65207BC for ; Thu, 26 Nov 2020 05:32:52 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org C4A65207BC Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id C22836B006E; Thu, 26 Nov 2020 00:32:51 -0500 (EST) Received: by kanga.kvack.org (Postfix, from userid 40) id BD4576B0070; Thu, 26 Nov 2020 00:32:51 -0500 (EST) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id AEA306B0071; Thu, 26 Nov 2020 00:32:51 -0500 (EST) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0097.hostedemail.com [216.40.44.97]) by kanga.kvack.org (Postfix) with ESMTP id 9A67A6B006E for ; Thu, 26 Nov 2020 00:32:51 -0500 (EST) Received: from smtpin22.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay05.hostedemail.com (Postfix) with ESMTP id 4D1B7181AEF09 for ; Thu, 26 Nov 2020 05:32:51 +0000 (UTC) X-FDA: 77525450142.22.prose27_261686f2737c Received: from filter.hostedemail.com (10.5.16.251.rfc1918.com [10.5.16.251]) by smtpin22.hostedemail.com (Postfix) with ESMTP id 2783518038E67 for ; Thu, 26 Nov 2020 05:32:51 +0000 (UTC) X-HE-Tag: prose27_261686f2737c X-Filterd-Recvd-Size: 2786 Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by imf21.hostedemail.com (Postfix) with ESMTP for ; Thu, 26 Nov 2020 05:32:49 +0000 (UTC) IronPort-SDR: oEUyMdBrftqzxijlp0DpgbD/mtcf4Tnv4GHP+qv68ziSlwOwP8egiPloN4nopJSTqpjpdIVUZ2 6rFIrl+g05yA== X-IronPort-AV: E=McAfee;i="6000,8403,9816"; a="172338526" X-IronPort-AV: E=Sophos;i="5.78,371,1599548400"; d="scan'208";a="172338526" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Nov 2020 21:32:47 -0800 IronPort-SDR: xgqke7dAppScMuIsvRo6UmwSkkY/2FFD0yGGDrsMYGekEWwPnKUXm8mDxaINLG9wbIPV9e1A4l fZ1jjjqxr7pg== X-IronPort-AV: E=Sophos;i="5.78,371,1599548400"; d="scan'208";a="537179253" Received: from yhuang-mobile.sh.intel.com ([10.238.5.184]) by fmsmga005-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Nov 2020 21:32:44 -0800 From: Huang Ying To: Peter Zijlstra Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, Huang Ying , "Matthew Wilcox (Oracle)" , Rafael Aquini , Andrew Morton , Ingo Molnar , Mel Gorman , Rik van Riel , Johannes Weiner , Dave Hansen , Andi Kleen , Michal Hocko , David Rientjes , linux-api@vger.kernel.org Subject: [PATCH -V6 0/3] autonuma: Migrate on fault among multiple bound nodes Date: Thu, 26 Nov 2020 13:32:16 +0800 Message-Id: <20201126053219.234793-1-ying.huang@intel.com> X-Mailer: git-send-email 2.29.2 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: To make it possible to optimize cross-socket memory accessing with AutoNUMA even if the memory of the application is bound to multiple NUMA nodes. Patch [2/3] and [3/3] are NOT kernel patches. Instead, they are patches for man-pages and numactl respectively. They are sent together to make it easy to review the newly added kernel API. Changes: v6: - Rebased on latest upstream kernel 5.10-rc5 - Added some benchmark data and example in patch description of [1/3] - Rename AutoNUMA to NUMA Balancing - Add patches to man-pages [2/3] and numactl [3/3] v5: - Remove mbind() support, because it's not clear that it's necessary. v4: - Use new flags instead of reuse MPOL_MF_LAZY. v3: - Rebased on latest upstream (v5.10-rc3) - Revised the change log. v2: - Rebased on latest upstream (v5.10-rc1) Best Regards, Huang, Ying