From: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org,
"Paul E. McKenney" <paulmck@kernel.org>,
Steven Rostedt <rostedt@goodmis.org>,
Masami Hiramatsu <mhiramat@kernel.org>,
Dennis Zhou <dennis@kernel.org>, Tejun Heo <tj@kernel.org>,
Christoph Lameter <cl@linux.com>,
Martin Liu <liumartin@google.com>,
David Rientjes <rientjes@google.com>,
christian.koenig@amd.com, Shakeel Butt <shakeel.butt@linux.dev>,
SeongJae Park <sj@kernel.org>, Michal Hocko <mhocko@suse.com>,
Johannes Weiner <hannes@cmpxchg.org>,
Sweet Tea Dorminy <sweettea-kernel@dorminy.me>,
Lorenzo Stoakes <lorenzo.stoakes@oracle.com>,
"Liam R . Howlett" <liam.howlett@oracle.com>,
Mike Rapoport <rppt@kernel.org>,
Suren Baghdasaryan <surenb@google.com>,
Vlastimil Babka <vbabka@suse.cz>,
Christian Brauner <brauner@kernel.org>
Subject: Re: [PATCH v10 0/3] mm: Fix OOM killer inaccuracy on large many-core systems
Date: Mon, 15 Dec 2025 09:21:34 -0500 [thread overview]
Message-ID: <24ed69ca-7914-455e-ae8c-5f24f52aa377@efficios.com> (raw)
In-Reply-To: <3d3f1675-7081-4744-bebd-2eb91c031d42@efficios.com>
On 2025-12-15 09:08, Mathieu Desnoyers wrote:
> On 2025-12-14 18:35, Andrew Morton wrote:
>> On Sat, 13 Dec 2025 13:56:05 -0500 Mathieu Desnoyers
>> <mathieu.desnoyers@efficios.com> wrote:
> [...]
>>>
>>> Andrew, are you interested to try this out in mm-new ?
>>
>> Yes. We have to start somewhere.
>
> Cool !
>
>>
>> As you kind of mention, it's going to be difficult to determine when
>> this is ready to go upstream. I assume that to really know this will
>> required detailed and lengthy fleet-wide operation and observation.
>
> For that kind of feature, yes, this is my expectation as well.
>
>> What sort of drawbacks do you think people miht encounter with this
>> change?
>
> Let's see, here are some possible drawbacks to keep an eye out for:
>
> - Taking for instance a machine with 256 logical CPUs topology,
> although allocation for small amount of memory is typically handled
> with a this_cpu_add_return, when doing large memory allocations, this
> will trickle up the carry over 3 levels, each of which require an
> atomic_add_return.
>
> The upstream implementation would instead go straight for a global
> spinlock, which may or may not be better than 3 atomics.
>
> - 2-pass OOM killer task selection: with a large number of tasks, and
> small number of CPUs, the upstream algorithm would be adequately
> precise, and faster because it does a single iteration pass. So the
> open question here is do we care about overhead of the OOM killer task
> selection ?
>
> - I understanding that some people implement their own OOM killer in
> userspace based on RSS values exposed through /proc. Because those
> RSS values are the precise counts (split-counter sums), there should
> be no difference there compared to the upstream implementation, but
> there would be no performance gain as well. It may be interesting
> to eventually expose the counter approximations (and the accuracy
> intervals) to userspace so it could speed up its task selection
> eventually. Not really a drawback, more something to keep in mind as
> future improvement.
>
> - I took care not to add additional memory allocation to the mm
> allocation/free code because it regresses some benchmarks.
> Still it's good to keep an eye out for bot reports about those
> regressions.
>
> - The intermediate tree levels counters use extra memory. This is
> a tradeoff between compactness and cache locality of the counters.
> I currently used cache-aligned integers (thus favored cache locality
> and eliminating false-sharing), but I have other prototypes which
> use packed bytes for the intermediate levels. For instance, on a
> 256 core machine, we have 37 intermediate levels nodes, for a total
> of 2368 bytes (that's in addition to the 1024 bytes of per-cpu memory
> for the per-cpu counters). If we choose to instead go for the packed
> bytes approach, the 37 intermediate levels nodes will use 37 bytes
> of memory, but there will be false-sharing across those counters.
>
> An alternative approach there is to use a strided allocator [1] with a
> byte counter set allocator on top [2]. This way we can benefit from the
> memory savings of byte counters without the false-sharing.
One more point:
- The choice of constants is an educated guess at best and would require
testing/feedback on real-world workloads:
- The batch size (32),
- The n-arity of the counter tree for each power-of-two number of CPUs
(per_nr_cpu_order_config).
- The choice of making the number of intermediate level counter bits
match the n-arity of the counters aggregated into that level is also
arbitrary.
- The precise badness sums limit (16) for an OOM killer task selection.
This is perhaps something that could become a sysctl tunable.
Thanks,
Mathieu
--
Mathieu Desnoyers
EfficiOS Inc.
https://www.efficios.com
prev parent reply other threads:[~2025-12-15 14:21 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-13 18:56 Mathieu Desnoyers
2025-12-13 18:56 ` [PATCH v10 1/3] lib: Introduce hierarchical per-cpu counters Mathieu Desnoyers
2025-12-13 18:56 ` [PATCH v10 2/3] mm: Fix OOM killer inaccuracy on large many-core systems Mathieu Desnoyers
2025-12-18 18:00 ` Mark Brown
2025-12-18 22:18 ` Mathieu Desnoyers
2025-12-19 9:31 ` Mark Brown
2025-12-19 16:01 ` Mathieu Desnoyers
2025-12-13 18:56 ` [PATCH v10 3/3] mm: Implement precise OOM killer task selection Mathieu Desnoyers
2025-12-14 23:35 ` [PATCH v10 0/3] mm: Fix OOM killer inaccuracy on large many-core systems Andrew Morton
2025-12-15 14:08 ` Mathieu Desnoyers
2025-12-15 14:21 ` Mathieu Desnoyers [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=24ed69ca-7914-455e-ae8c-5f24f52aa377@efficios.com \
--to=mathieu.desnoyers@efficios.com \
--cc=akpm@linux-foundation.org \
--cc=brauner@kernel.org \
--cc=christian.koenig@amd.com \
--cc=cl@linux.com \
--cc=dennis@kernel.org \
--cc=hannes@cmpxchg.org \
--cc=liam.howlett@oracle.com \
--cc=linux-kernel@vger.kernel.org \
--cc=liumartin@google.com \
--cc=lorenzo.stoakes@oracle.com \
--cc=mhiramat@kernel.org \
--cc=mhocko@suse.com \
--cc=paulmck@kernel.org \
--cc=rientjes@google.com \
--cc=rostedt@goodmis.org \
--cc=rppt@kernel.org \
--cc=shakeel.butt@linux.dev \
--cc=sj@kernel.org \
--cc=surenb@google.com \
--cc=sweettea-kernel@dorminy.me \
--cc=tj@kernel.org \
--cc=vbabka@suse.cz \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®