linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm: vmscan: fix missing psi annotation for node_reclaim()
@ 2021-08-18 15:24 Johannes Weiner
  2021-08-19 15:04 ` Shakeel Butt
  0 siblings, 1 reply; 2+ messages in thread
From: Johannes Weiner @ 2021-08-18 15:24 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Rik van Riel, linux-mm, linux-kernel, kernel-team

In a debugging session the other day, Rik noticed that node_reclaim()
was missing memstall annotations. This means we'll miss pressure and
lost productivity resulting from reclaim on an overloaded local NUMA
node when vm.zone_reclaim_mode is enabled.

There haven't been any reports, but that's likely because
vm.zone_reclaim_mode hasn't been a commonly used feature recently, and
the intersection between such setups and psi users is probably
nil. Although, secondary memory such as CXL-connected DIMMS,
persistent memory etc. and the page demotion patches that handle them
(https://lore.kernel.org/lkml/20210401183216.443C4443@viggo.jf.intel.com/)
could soon make this a more common codepath again.

Reported-by: Rik van Riel <riel@surriel.com>
Signed-off-by: Johannes Weiner <hannes@cmpxchg.org>
---
 mm/vmscan.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/mm/vmscan.c b/mm/vmscan.c
index 701106e1829c..8ec4412c6116 100644
--- a/mm/vmscan.c
+++ b/mm/vmscan.c
@@ -4424,11 +4424,13 @@ static int __node_reclaim(struct pglist_data *pgdat, gfp_t gfp_mask, unsigned in
 		.may_swap = 1,
 		.reclaim_idx = gfp_zone(gfp_mask),
 	};
+	unsigned long pflags;
 
 	trace_mm_vmscan_node_reclaim_begin(pgdat->node_id, order,
 					   sc.gfp_mask);
 
 	cond_resched();
+	psi_memstall_enter(&pflags);
 	fs_reclaim_acquire(sc.gfp_mask);
 	/*
 	 * We need to be able to allocate from the reserves for RECLAIM_UNMAP
@@ -4453,6 +4455,7 @@ static int __node_reclaim(struct pglist_data *pgdat, gfp_t gfp_mask, unsigned in
 	current->flags &= ~PF_SWAPWRITE;
 	memalloc_noreclaim_restore(noreclaim_flag);
 	fs_reclaim_release(sc.gfp_mask);
+	psi_memstall_leave(&pflags);
 
 	trace_mm_vmscan_node_reclaim_end(sc.nr_reclaimed);
 
-- 
2.32.0



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] mm: vmscan: fix missing psi annotation for node_reclaim()
  2021-08-18 15:24 [PATCH] mm: vmscan: fix missing psi annotation for node_reclaim() Johannes Weiner
@ 2021-08-19 15:04 ` Shakeel Butt
  0 siblings, 0 replies; 2+ messages in thread
From: Shakeel Butt @ 2021-08-19 15:04 UTC (permalink / raw)
  To: Johannes Weiner; +Cc: Andrew Morton, Rik van Riel, Linux MM, LKML, Kernel Team

On Wed, Aug 18, 2021 at 8:26 AM Johannes Weiner <hannes@cmpxchg.org> wrote:
>
> In a debugging session the other day, Rik noticed that node_reclaim()
> was missing memstall annotations. This means we'll miss pressure and
> lost productivity resulting from reclaim on an overloaded local NUMA
> node when vm.zone_reclaim_mode is enabled.
>
> There haven't been any reports, but that's likely because
> vm.zone_reclaim_mode hasn't been a commonly used feature recently, and
> the intersection between such setups and psi users is probably
> nil. Although, secondary memory such as CXL-connected DIMMS,
> persistent memory etc. and the page demotion patches that handle them
> (https://lore.kernel.org/lkml/20210401183216.443C4443@viggo.jf.intel.com/)
> could soon make this a more common codepath again.
>
> Reported-by: Rik van Riel <riel@surriel.com>
> Signed-off-by: Johannes Weiner <hannes@cmpxchg.org>

Reviewed-by: Shakeel Butt <shakeelb@google.com>


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-08-19 15:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-18 15:24 [PATCH] mm: vmscan: fix missing psi annotation for node_reclaim() Johannes Weiner
2021-08-19 15:04 ` Shakeel Butt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).