lkml.org 
[lkml]   [2021]   [Dec]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[RFC PATCH 4/4] mm: Update the speculative pages' accessing time
Date
On some systems with different memory types, including fast memory (DRAM)
and slow memory (persistent memory), which will rely on the numa balancing
to promote slow and hot memory to fast memory to improve performance.
After supporting the speculative numa fault, we can update the next pages'
accessing time to help to promote it to fast memory node easily to
improve the performance.

Signed-off-by: Baolin Wang <baolin.wang@linux.alibaba.com>
---
mm/memory.c | 15 +++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/mm/memory.c b/mm/memory.c
index 91122beb6e53..e19b10299913 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -4556,10 +4556,21 @@ static vm_fault_t do_numa_page(struct vm_fault *vmf)
* to record page access time. So use default value.
*/
if ((sysctl_numa_balancing_mode & NUMA_BALANCING_MEMORY_TIERING) &&
- !node_is_toptier(page_nid))
+ !node_is_toptier(page_nid)) {
last_cpupid = (-1 & LAST_CPUPID_MASK);
- else
+ /*
+ * According to the data locality for some workloads, the
+ * probability of accessing some data soon after some nearby
+ * data has been accessed. So for tiered memory systems, we
+ * can update the sequential page's age located on slow memory
+ * type, to try to promote it to fast memory in advance to
+ * improve the performance.
+ */
+ if (vmf->address != fault_address)
+ xchg_page_access_time(page, jiffies_to_msecs(jiffies));
+ } else {
last_cpupid = page_cpupid_last(page);
+ }
target_nid = numa_migrate_prep(page, vma, fault_address, page_nid,
&flags);
if (target_nid == NUMA_NO_NODE) {
--
2.27.0
\
 
 \ /
  Last update: 2021-12-12 12:33    [W:0.042 / U:0.064 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site