2020-11-18 03:26:48

by Zhaoyang Huang

[permalink] [raw]
Subject: [RFC PATCH] mm: bail out from psi memstall when cond_resched

Memory reclaiming will run as several seconds in memory constraint system, which
will be deemed as heavy memstall. Have the memory reclaim be more presiced by
bailing out when cond_resched

Signed-off-by: Zhaoyang Huang <[email protected]>
---
mm/vmscan.c | 23 ++++++++++++++++-------
1 file changed, 16 insertions(+), 7 deletions(-)

diff --git a/mm/vmscan.c b/mm/vmscan.c
index a815f73..a083c85 100644
--- a/mm/vmscan.c
+++ b/mm/vmscan.c
@@ -316,6 +316,15 @@ static inline bool memcg_congested(struct pglist_data *pgdat,
}
#endif

+static inline void psi_cond_resched(void)
+{
+ unsigned long *flags;
+
+ if (current->flags & PF_MEMSTALL)
+ psi_memstall_leave(&flags);
+ cond_resched();
+ psi_memstall_enter(&flags);
+}
/*
* This misses isolated pages which are not accounted for to save counters.
* As the data only determines if reclaim or compaction continues, it is
@@ -557,7 +566,7 @@ static unsigned long do_shrink_slab(struct shrink_control *shrinkctl,
total_scan -= shrinkctl->nr_scanned;
scanned += shrinkctl->nr_scanned;

- cond_resched();
+ psi_cond_resched();
}

if (next_deferred >= scanned)
@@ -714,7 +723,7 @@ static unsigned long shrink_slab(gfp_t gfp_mask, int nid,

up_read(&shrinker_rwsem);
out:
- cond_resched();
+ psi_cond_resched();
return freed;
}

@@ -1109,7 +1118,7 @@ static unsigned long shrink_page_list(struct list_head *page_list,
unsigned nr_reclaimed = 0;

memset(stat, 0, sizeof(*stat));
- cond_resched();
+ psi_cond_resched();

while (!list_empty(page_list)) {
struct address_space *mapping;
@@ -1118,7 +1127,7 @@ static unsigned long shrink_page_list(struct list_head *page_list,
enum page_references references = PAGEREF_RECLAIM_CLEAN;
bool dirty, writeback;

- cond_resched();
+ psi_cond_resched();

page = lru_to_page(page_list);
list_del(&page->lru);
@@ -2084,7 +2093,7 @@ static void shrink_active_list(unsigned long nr_to_scan,
spin_unlock_irq(&pgdat->lru_lock);

while (!list_empty(&l_hold)) {
- cond_resched();
+ psi_cond_resched();
page = lru_to_page(&l_hold);
list_del(&page->lru);

@@ -2500,7 +2509,7 @@ static void shrink_node_memcg(struct pglist_data *pgdat, struct mem_cgroup *memc
}
}

- cond_resched();
+ psi_cond_resched();

if (nr_reclaimed < nr_to_reclaim || scan_adjusted)
continue;
@@ -4149,7 +4158,7 @@ static int __node_reclaim(struct pglist_data *pgdat, gfp_t gfp_mask, unsigned in
.reclaim_idx = gfp_zone(gfp_mask),
};

- cond_resched();
+ psi_cond_resched();
fs_reclaim_acquire(sc.gfp_mask);
/*
* We need to be able to allocate from the reserves for RECLAIM_UNMAP
--
1.9.1


2020-11-19 12:59:11

by Peter Zijlstra

[permalink] [raw]
Subject: Re: [RFC PATCH] mm: bail out from psi memstall when cond_resched

On Wed, Nov 18, 2020 at 11:22:56AM +0800, Zhaoyang Huang wrote:
> Memory reclaiming will run as several seconds in memory constraint system, which
> will be deemed as heavy memstall. Have the memory reclaim be more presiced by
> bailing out when cond_resched

How is this supposed to work on PREEMPT=y where cond_resched() is a NOP
and you can get preempted at any random point?

(leaving the rest for Johannes)

> Signed-off-by: Zhaoyang Huang <[email protected]>
> ---
> mm/vmscan.c | 23 ++++++++++++++++-------
> 1 file changed, 16 insertions(+), 7 deletions(-)
>
> diff --git a/mm/vmscan.c b/mm/vmscan.c
> index a815f73..a083c85 100644
> --- a/mm/vmscan.c
> +++ b/mm/vmscan.c
> @@ -316,6 +316,15 @@ static inline bool memcg_congested(struct pglist_data *pgdat,
> }
> #endif
>
> +static inline void psi_cond_resched(void)
> +{
> + unsigned long *flags;
> +
> + if (current->flags & PF_MEMSTALL)
> + psi_memstall_leave(&flags);
> + cond_resched();
> + psi_memstall_enter(&flags);
> +}
> /*
> * This misses isolated pages which are not accounted for to save counters.
> * As the data only determines if reclaim or compaction continues, it is
> @@ -557,7 +566,7 @@ static unsigned long do_shrink_slab(struct shrink_control *shrinkctl,
> total_scan -= shrinkctl->nr_scanned;
> scanned += shrinkctl->nr_scanned;
>
> - cond_resched();
> + psi_cond_resched();
> }
>
> if (next_deferred >= scanned)
> @@ -714,7 +723,7 @@ static unsigned long shrink_slab(gfp_t gfp_mask, int nid,
>
> up_read(&shrinker_rwsem);
> out:
> - cond_resched();
> + psi_cond_resched();
> return freed;
> }
>
> @@ -1109,7 +1118,7 @@ static unsigned long shrink_page_list(struct list_head *page_list,
> unsigned nr_reclaimed = 0;
>
> memset(stat, 0, sizeof(*stat));
> - cond_resched();
> + psi_cond_resched();
>
> while (!list_empty(page_list)) {
> struct address_space *mapping;
> @@ -1118,7 +1127,7 @@ static unsigned long shrink_page_list(struct list_head *page_list,
> enum page_references references = PAGEREF_RECLAIM_CLEAN;
> bool dirty, writeback;
>
> - cond_resched();
> + psi_cond_resched();
>
> page = lru_to_page(page_list);
> list_del(&page->lru);
> @@ -2084,7 +2093,7 @@ static void shrink_active_list(unsigned long nr_to_scan,
> spin_unlock_irq(&pgdat->lru_lock);
>
> while (!list_empty(&l_hold)) {
> - cond_resched();
> + psi_cond_resched();
> page = lru_to_page(&l_hold);
> list_del(&page->lru);
>
> @@ -2500,7 +2509,7 @@ static void shrink_node_memcg(struct pglist_data *pgdat, struct mem_cgroup *memc
> }
> }
>
> - cond_resched();
> + psi_cond_resched();
>
> if (nr_reclaimed < nr_to_reclaim || scan_adjusted)
> continue;
> @@ -4149,7 +4158,7 @@ static int __node_reclaim(struct pglist_data *pgdat, gfp_t gfp_mask, unsigned in
> .reclaim_idx = gfp_zone(gfp_mask),
> };
>
> - cond_resched();
> + psi_cond_resched();
> fs_reclaim_acquire(sc.gfp_mask);
> /*
> * We need to be able to allocate from the reserves for RECLAIM_UNMAP
> --
> 1.9.1
>

2020-11-19 18:28:47

by Johannes Weiner

[permalink] [raw]
Subject: Re: [RFC PATCH] mm: bail out from psi memstall when cond_resched

On Thu, Nov 19, 2020 at 01:55:57PM +0100, Peter Zijlstra wrote:
> On Wed, Nov 18, 2020 at 11:22:56AM +0800, Zhaoyang Huang wrote:
> > Memory reclaiming will run as several seconds in memory constraint system, which
> > will be deemed as heavy memstall. Have the memory reclaim be more presiced by
> > bailing out when cond_resched
>
> How is this supposed to work on PREEMPT=y where cond_resched() is a NOP
> and you can get preempted at any random point?
>
> (leaving the rest for Johannes)
>
> > Signed-off-by: Zhaoyang Huang <[email protected]>
> > ---
> > mm/vmscan.c | 23 ++++++++++++++++-------
> > 1 file changed, 16 insertions(+), 7 deletions(-)
> >
> > diff --git a/mm/vmscan.c b/mm/vmscan.c
> > index a815f73..a083c85 100644
> > --- a/mm/vmscan.c
> > +++ b/mm/vmscan.c
> > @@ -316,6 +316,15 @@ static inline bool memcg_congested(struct pglist_data *pgdat,
> > }
> > #endif
> >
> > +static inline void psi_cond_resched(void)
> > +{
> > + unsigned long *flags;
> > +
> > + if (current->flags & PF_MEMSTALL)
> > + psi_memstall_leave(&flags);
> > + cond_resched();
> > + psi_memstall_enter(&flags);
> > +}
> > /*
> > * This misses isolated pages which are not accounted for to save counters.
> > * As the data only determines if reclaim or compaction continues, it is
> > @@ -557,7 +566,7 @@ static unsigned long do_shrink_slab(struct shrink_control *shrinkctl,
> > total_scan -= shrinkctl->nr_scanned;
> > scanned += shrinkctl->nr_scanned;
> >
> > - cond_resched();
> > + psi_cond_resched();
> > }

I guess there is some merit to discounting that time: if you're out of
time slice, you couldn't run the workload either at this time, so the
scheduling delay is not exactly productivity lost due to memory.

But as Peter says, you'd have to handle random preemption at any time,
not just cond_resched(). I think it should be doable.

The below stops the clock on any memstalls when the task is queued but
not scheduled. This includes preemption periods, but also the schedule
delay after a wakeup. Lightly tested.

It would rely on p->psi_flags for control flow, which were previously
only used for debugging. But that simplifies cgroup moving a bit.

Thoughts?

diff --git a/kernel/sched/psi.c b/kernel/sched/psi.c
index 967732c0766c..f53823b6852b 100644
--- a/kernel/sched/psi.c
+++ b/kernel/sched/psi.c
@@ -811,26 +811,38 @@ void psi_task_switch(struct task_struct *prev, struct task_struct *next,
bool sleep)
{
struct psi_group *group, *common = NULL;
+ int set = TSK_ONCPU, clear = TSK_ONCPU;
int cpu = task_cpu(prev);
void *iter;

+ /*
+ * Preemption periods and scheduling delays after wakeup are
+ * due to a lack of CPU, not memory. We stop the clock on the
+ * memory stall in such situations (see also psi_enqueue());
+ * resume the stall when the task is actually scheduled again.
+ */
+ if (!sleep && prev->in_memstall)
+ clear |= TSK_MEMSTALL;
+ if (next->in_memstall && !(next->psi_flags & TSK_MEMSTALL))
+ set |= TSK_MEMSTALL;
+
if (next->pid) {
- psi_flags_change(next, 0, TSK_ONCPU);
- /*
- * When moving state between tasks, the group that
- * contains them both does not change: we can stop
- * updating the tree once we reach the first common
- * ancestor. Iterate @next's ancestors until we
- * encounter @prev's state.
- */
+ psi_flags_change(next, 0, set);
iter = NULL;
while ((group = iterate_groups(next, &iter))) {
- if (per_cpu_ptr(group->pcpu, cpu)->tasks[NR_ONCPU]) {
+ /*
+ * When moving ONCPU between tasks, the group
+ * that contains them both does not change: we
+ * can stop updating the tree once we reach
+ * the first common ancestor. Iterate @next's
+ * ancestors until we encounter @prev's state.
+ */
+ if ((set|clear) == TSK_ONCPU &&
+ per_cpu_ptr(group->pcpu, cpu)->tasks[NR_ONCPU]) {
common = group;
break;
}
-
- psi_group_change(group, cpu, 0, TSK_ONCPU, true);
+ psi_group_change(group, cpu, 0, set, true);
}
}

@@ -843,11 +855,10 @@ void psi_task_switch(struct task_struct *prev, struct task_struct *next,
return;

if (prev->pid) {
- psi_flags_change(prev, TSK_ONCPU, 0);
-
+ psi_flags_change(prev, clear, 0);
iter = NULL;
while ((group = iterate_groups(prev, &iter)) && group != common)
- psi_group_change(group, cpu, TSK_ONCPU, 0, true);
+ psi_group_change(group, cpu, clear, 0, true);
}
}

@@ -964,7 +975,7 @@ void psi_cgroup_free(struct cgroup *cgroup)
*/
void cgroup_move_task(struct task_struct *task, struct css_set *to)
{
- unsigned int task_flags = 0;
+ unsigned int task_flags;
struct rq_flags rf;
struct rq *rq;

@@ -978,23 +989,10 @@ void cgroup_move_task(struct task_struct *task, struct css_set *to)
}

rq = task_rq_lock(task, &rf);
-
- if (task_on_rq_queued(task)) {
- task_flags = TSK_RUNNING;
- if (task_current(rq, task))
- task_flags |= TSK_ONCPU;
- } else if (task->in_iowait)
- task_flags = TSK_IOWAIT;
-
- if (task->in_memstall)
- task_flags |= TSK_MEMSTALL;
-
+ task_flags = task->psi_flags;
if (task_flags)
psi_task_change(task, task_flags, 0);
-
- /* See comment above */
rcu_assign_pointer(task->cgroups, to);
-
if (task_flags)
psi_task_change(task, 0, task_flags);

diff --git a/kernel/sched/stats.h b/kernel/sched/stats.h
index 33d0daf83842..cb36e2e2b6c7 100644
--- a/kernel/sched/stats.h
+++ b/kernel/sched/stats.h
@@ -69,14 +69,20 @@ static inline void psi_enqueue(struct task_struct *p, bool wakeup)
if (static_branch_likely(&psi_disabled))
return;

- if (!wakeup || p->sched_psi_wake_requeue) {
- if (p->in_memstall)
- set |= TSK_MEMSTALL;
- if (p->sched_psi_wake_requeue)
- p->sched_psi_wake_requeue = 0;
- } else {
+ if (p->sched_psi_wake_requeue) {
+ /*
+ * A migration wakeup has nothing to do here but set
+ * TSK_RUNNING: TSK_IOWAIT has already been cleared on
+ * the old queue in ttwu(); TSK_MEMSTALL will be
+ * restored when the task resumes in schedule().
+ */
+ p->sched_psi_wake_requeue = 0;
+ } else if (wakeup) {
if (p->in_iowait)
clear |= TSK_IOWAIT;
+ /* Don't count queue time as memory pressure */
+ if (p->in_memstall)
+ clear |= TSK_MEMSTALL;
}

psi_task_change(p, clear, set);
@@ -89,10 +95,7 @@ static inline void psi_dequeue(struct task_struct *p, bool sleep)
if (static_branch_likely(&psi_disabled))
return;

- if (!sleep) {
- if (p->in_memstall)
- clear |= TSK_MEMSTALL;
- } else {
+ if (sleep) {
/*
* When a task sleeps, schedule() dequeues it before
* switching to the next one. Merge the clearing of