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.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS autolearn=ham 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 B9D94C433E0 for ; Mon, 29 Jun 2020 23:48:31 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id 8805620781 for ; Mon, 29 Jun 2020 23:48:31 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 8805620781 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=linux.intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id 005638D000F; Mon, 29 Jun 2020 19:48:31 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id EF7396B0085; Mon, 29 Jun 2020 19:48:30 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id E0CD58D000F; Mon, 29 Jun 2020 19:48:30 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0239.hostedemail.com [216.40.44.239]) by kanga.kvack.org (Postfix) with ESMTP id CC2A26B0081 for ; Mon, 29 Jun 2020 19:48:30 -0400 (EDT) Received: from smtpin10.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay02.hostedemail.com (Postfix) with ESMTP id 6C95E2DFD for ; Mon, 29 Jun 2020 23:48:30 +0000 (UTC) X-FDA: 76983891180.10.sign94_260eb1926e73 Received: from filter.hostedemail.com (10.5.16.251.rfc1918.com [10.5.16.251]) by smtpin10.hostedemail.com (Postfix) with ESMTP id 40FC116A0AE for ; Mon, 29 Jun 2020 23:48:30 +0000 (UTC) X-HE-Tag: sign94_260eb1926e73 X-Filterd-Recvd-Size: 5087 Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by imf20.hostedemail.com (Postfix) with ESMTP for ; Mon, 29 Jun 2020 23:48:29 +0000 (UTC) IronPort-SDR: PoxEYgchYi62b4rTAPAPpbbmrNFu0YafE+Gv3sn/0zTR65BHBVS1B+uQotf4adqVNhrG261lfP y+J+2wZQnQnA== X-IronPort-AV: E=McAfee;i="6000,8403,9666"; a="126231406" X-IronPort-AV: E=Sophos;i="5.75,296,1589266800"; d="scan'208";a="126231406" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Jun 2020 16:48:27 -0700 IronPort-SDR: oVTVuftkIOwxt3/rKONa/WAgktlBs5S7lFl0aeQLbZHwD22qNFzck0p3Mk/bvCrABzf7t/BLOh Nnko91nBbidg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,296,1589266800"; d="scan'208";a="480737975" Received: from viggo.jf.intel.com (HELO localhost.localdomain) ([10.54.77.144]) by fmsmga006.fm.intel.com with ESMTP; 29 Jun 2020 16:48:27 -0700 Subject: [RFC][PATCH 0/8] Migrate Pages in lieu of discard To: linux-kernel@vger.kernel.org Cc: linux-mm@kvack.org,Dave Hansen ,yang.shi@linux.alibaba.com,rientjes@google.com,ying.huang@intel.com,dan.j.williams@intel.com From: Dave Hansen Date: Mon, 29 Jun 2020 16:45:03 -0700 Message-Id: <20200629234503.749E5340@viggo.jf.intel.com> X-Rspamd-Queue-Id: 40FC116A0AE X-Spamd-Result: default: False [0.00 / 100.00] X-Rspamd-Server: rspam02 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: I've been sitting on these for too long. Tha main purpose of this post is to have a public discussion with the other folks who are interested in this functionalty and converge on a single implementation. This set directly incorporates a statictics patch from Yang Shi and also includes one to ensure good behavior with cgroup reclaim which was very closely derived from this series: https://lore.kernel.org/linux-mm/1560468577-101178-1-git-send-email-yang.shi@linux.alibaba.com/ Since the last post, the major changes are: - Added patch to skip migration when doing cgroup reclaim - Added stats patch from Yang Shi The full series is also available here: https://github.com/hansendc/linux/tree/automigrate-20200629 -- We're starting to see systems with more and more kinds of memory such as Intel's implementation of persistent memory. Let's say you have a system with some DRAM and some persistent memory. Today, once DRAM fills up, reclaim will start and some of the DRAM contents will be thrown out. Allocations will, at some point, start falling over to the slower persistent memory. That has two nasty properties. First, the newer allocations can end up in the slower persistent memory. Second, reclaimed data in DRAM are just discarded even if there are gobs of space in persistent memory that could be used. This set implements a solution to these problems. At the end of the reclaim process in shrink_page_list() just before the last page refcount is dropped, the page is migrated to persistent memory instead of being dropped. While I've talked about a DRAM/PMEM pairing, this approach would function in any environment where memory tiers exist. This is not perfect. It "strands" pages in slower memory and never brings them back to fast DRAM. Other things need to be built to promote hot pages back to DRAM. This is part of a larger patch set. If you want to apply these or play with them, I'd suggest using the tree from here. It includes autonuma-based hot page promotion back to DRAM: http://lkml.kernel.org/r/c3d6de4d-f7c3-b505-2e64-8ee5f70b2118@intel.com This is also all based on an upstream mechanism that allows persistent memory to be onlined and used as if it were volatile: http://lkml.kernel.org/r/20190124231441.37A4A305@viggo.jf.intel.com Cc: Yang Shi Cc: David Rientjes Cc: Huang Ying Cc: Dan Williams -- Dave Hansen (5): mm/numa: node demotion data structure and lookup mm/vmscan: Attempt to migrate page in lieu of discard mm/numa: automatically generate node migration order mm/vmscan: never demote for memcg reclaim mm/numa: new reclaim mode to enable reclaim-based migration Keith Busch (2): mm/migrate: Defer allocating new page until needed mm/vmscan: Consider anonymous pages without swap Yang Shi (1): mm/vmscan: add page demotion counter Documentation/admin-guide/sysctl/vm.rst | 9 include/linux/migrate.h | 6 include/linux/node.h | 9 include/linux/vm_event_item.h | 2 include/trace/events/migrate.h | 3 mm/debug.c | 1 mm/internal.h | 1 mm/migrate.c | 400 ++++++++++++++++++++++++++------ mm/page_alloc.c | 2 mm/vmscan.c | 88 ++++++- mm/vmstat.c | 2 11 files changed, 439 insertions(+), 84 deletions(-)