Message ID | 20230330191801.1967435-7-yosryahmed@google.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | memcg: avoid flushing stats atomically where possible | expand |
On Thu, Mar 30, 2023 at 07:17:59PM +0000, Yosry Ahmed <yosryahmed@google.com> wrote: > In workingset_refault(), we call > mem_cgroup_flush_stats_atomic_ratelimited() to read accurate stats > within an RCU read section and with sleeping disallowed. Move the > call above the RCU read section to make it non-atomic. > > Flushing is an expensive operation that scales with the number of cpus > and the number of cgroups in the system, so avoid doing it atomically > where possible. I understand why one does not process the whole flushing load in one go in general. However, I remember there were reports of workingset_refault() being sensitive to latencies (hence the ratelimited call was created). Is there any consideration on impact of this here? (Or are there other cond_resched() precendents on this path? Should it be mentioned like in the vmscan (7/8) commit?) Thanks, Michal
On Tue, Apr 4, 2023 at 9:53 AM Michal Koutný <mkoutny@suse.com> wrote: > > On Thu, Mar 30, 2023 at 07:17:59PM +0000, Yosry Ahmed <yosryahmed@google.com> wrote: > > In workingset_refault(), we call > > mem_cgroup_flush_stats_atomic_ratelimited() to read accurate stats > > within an RCU read section and with sleeping disallowed. Move the > > call above the RCU read section to make it non-atomic. > > > > Flushing is an expensive operation that scales with the number of cpus > > and the number of cgroups in the system, so avoid doing it atomically > > where possible. > > I understand why one does not process the whole flushing load in one go > in general. > However, I remember there were reports of workingset_refault() being > sensitive to latencies (hence the ratelimited call was created). > > Is there any consideration on impact of this here? > (Or are there other cond_resched() precendents on this path? Should it > be mentioned like in the vmscan (7/8) commit?) IIUC there are multiple places where we can sleep in this path, we can sleep waiting for a page to be read from disk, we can sleep during allocating the page to read into, and IIUC the allocations on the fault path can even run into reclaim, going into the vmscan code. So there are precedents, but I am not sure if that's enough argument. I did some light performance testing and I did not notice any regressions (i.e concurrent processes faulting memory with a lot of cgroups/cpus), but this change is done intentionally in a separate patch so that it's easy to revert if regressions are reported. > > Thanks, > Michal
On Tue, Apr 04, 2023 at 11:09:02AM -0700, Yosry Ahmed <yosryahmed@google.com> wrote: > IIUC there are multiple places where we can sleep in this path, we can > sleep waiting for a page to be read from disk, we can sleep during > allocating the page to read into, and IIUC the allocations on the > fault path can even run into reclaim, going into the vmscan code. So > there are precedents, but I am not sure if that's enough argument. I expect it'd depend on the proportion of the slow/fast paths. OK, let's see how it turns out in wider population. Thanks, Michal
On Wed, Apr 5, 2023 at 1:00 AM Michal Koutný <mkoutny@suse.com> wrote: > > On Tue, Apr 04, 2023 at 11:09:02AM -0700, Yosry Ahmed <yosryahmed@google.com> wrote: > > IIUC there are multiple places where we can sleep in this path, we can > > sleep waiting for a page to be read from disk, we can sleep during > > allocating the page to read into, and IIUC the allocations on the > > fault path can even run into reclaim, going into the vmscan code. So > > there are precedents, but I am not sure if that's enough argument. > > I expect it'd depend on the proportion of the slow/fast paths. > OK, let's see how it turns out in wider population. Agreed. It also depends on the number of memcgs and how much the periodic flusher is keeping up. I think no amount of testing will cover all or even most workloads. > > Thanks, > Michal
diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h index b424ba3ebd09..a4bc3910a2eb 100644 --- a/include/linux/memcontrol.h +++ b/include/linux/memcontrol.h @@ -1038,7 +1038,7 @@ static inline unsigned long lruvec_page_state_local(struct lruvec *lruvec, void mem_cgroup_flush_stats(void); void mem_cgroup_flush_stats_atomic(void); -void mem_cgroup_flush_stats_atomic_ratelimited(void); +void mem_cgroup_flush_stats_ratelimited(void); void __mod_memcg_lruvec_state(struct lruvec *lruvec, enum node_stat_item idx, int val); @@ -1540,7 +1540,7 @@ static inline void mem_cgroup_flush_stats_atomic(void) { } -static inline void mem_cgroup_flush_stats_atomic_ratelimited(void) +static inline void mem_cgroup_flush_stats_ratelimited(void) { } diff --git a/mm/memcontrol.c b/mm/memcontrol.c index a2ce3aa10d94..361c0bbf7283 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c @@ -673,10 +673,10 @@ void mem_cgroup_flush_stats_atomic(void) do_flush_stats(true); } -void mem_cgroup_flush_stats_atomic_ratelimited(void) +void mem_cgroup_flush_stats_ratelimited(void) { if (time_after64(jiffies_64, READ_ONCE(flush_next_time))) - mem_cgroup_flush_stats_atomic(); + mem_cgroup_flush_stats(); } static void flush_memcg_stats_dwork(struct work_struct *w) diff --git a/mm/workingset.c b/mm/workingset.c index dab0c362b9e3..3025beee9b34 100644 --- a/mm/workingset.c +++ b/mm/workingset.c @@ -406,6 +406,9 @@ void workingset_refault(struct folio *folio, void *shadow) unpack_shadow(shadow, &memcgid, &pgdat, &eviction, &workingset); eviction <<= bucket_order; + /* Flush stats (and potentially sleep) before holding RCU read lock */ + mem_cgroup_flush_stats_ratelimited(); + rcu_read_lock(); /* * Look up the memcg associated with the stored ID. It might @@ -461,8 +464,6 @@ void workingset_refault(struct folio *folio, void *shadow) lruvec = mem_cgroup_lruvec(memcg, pgdat); mod_lruvec_state(lruvec, WORKINGSET_REFAULT_BASE + file, nr); - - mem_cgroup_flush_stats_atomic_ratelimited(); /* * Compare the distance to the existing workingset size. We * don't activate pages that couldn't stay resident even if