From: SJ Park <sj@kernel.org>
To: sashiko-bot@kernel.org
Cc: SJ Park <sj@kernel.org>, damon@lists.linux.dev
Subject: Re: [RFC PATCH v1.1 12/16] mm/damon/core: implement damon_has_probe_weight()
Date: Mon, 6 Jul 2026 17:05:09 -0700 [thread overview]
Message-ID: <20260707000511.97649-1-sj@kernel.org> (raw)
In-Reply-To: <20260706151652.866B51F000E9@smtp.kernel.org>
On Mon, 06 Jul 2026 15:16:52 +0000 sashiko-bot@kernel.org wrote:
> Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
>
> New issues:
> - [High] Setting probe weights on a DAMON context whose operations do not support `apply_probes` (e.g., `vaddr`) silently disables all monitoring.
>
> Pre-existing issues:
> - [High] The `probe_hits` array in `struct damon_region` uses `unsigned char` counters which wrap around at 256, corrupting monitoring data when the number of samples per aggregation interval exceeds 255.
> --
>
> commit 3891f362834bef45987ebcee1cdb0abcd9df6ea2
> Author: SJ Park <sj@kernel.org>
>
> mm/damon/core: implement damon_has_probe_weight()
>
> DAMON monitors only data attributes when probe weights are set.
> However, the function for detecting it is intentionally returning false
> always. The intention was to make changes for complete support of the
> mode in a safe and incremental way. Now all the building blocks are
> made. Complete the mode detection function so that the mode can really
> start working.
>
> > diff --git a/mm/damon/core.c b/mm/damon/core.c
> > index fa78d8d592aa3..6e5a029989a0c 100644
> > --- a/mm/damon/core.c
> > +++ b/mm/damon/core.c
> > @@ -211,6 +211,12 @@ static struct damon_probe *damon_nth_probe(int n, struct damon_ctx *ctx)
> >
> > static bool damon_has_probe_weights(struct damon_ctx *c)
> > {
> > + struct damon_probe *p;
> > +
> > + damon_for_each_probe(p, c) {
> > + if (p->weight)
> > + return true;
>
> [Severity: High]
> Does returning true here silently disable monitoring if the context operations
> do not support probes (e.g., vaddr)?
>
> In kdamond_fn(), if this returns true, access_check_disabled bypasses standard
> checks. However, if ctx->ops.apply_probes is NULL, the probes are skipped:
>
> mm/damon/core.c:kdamond_fn() {
> ...
> bool access_check_disabled = damon_has_probe_weights(ctx);
> ...
> if (!access_check_disabled && ctx->ops.prepare_access_checks)
> ctx->ops.prepare_access_checks(ctx);
> ...
> if (ctx->ops.apply_probes) {
> ...
> }
>
> Would it be better to ensure ctx->ops.apply_probes is also implemented before
> returning true?
I will fix this in the next revision.
>
> [Severity: High]
> This is a pre-existing issue, but since this patch enables probe weights,
> can the 8-bit probe_hits counters overflow if the number of samples per
> aggregation interval exceeds 255?
>
> Looking at struct damon_region in include/linux/damon.h, probe_hits is
> declared as an unsigned char array:
>
> include/linux/damon.h:struct damon_region {
> ...
> unsigned char probe_hits[DAMON_MAX_PROBES];
> ...
> }
>
> In damon_pa_apply_probes(), it is incremented during every sample interval
> without checking for overflow:
>
> mm/damon/paddr.c:damon_pa_apply_probes() {
> ...
> damon_for_each_probe(p, ctx) {
> if (damon_pa_filter_pass(pa, folio, p))
> r->probe_hits[i]++;
> ...
> }
>
> If a user configures an aggregation interval that is > 255 times the sample
> interval, could highly-hit regions wrap around to 0 and be falsely identified
> as cold memory?
Known low priority issue. No blocker.
>
> > + }
> > return false;
> > }
>
> --
> Sashiko AI review · https://sashiko.dev/#/patchset/20260706141912.88445-1-sj@kernel.org?part=12
Thanks,
SJ
[...]
next prev parent reply other threads:[~2026-07-07 0:05 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-06 14:18 [RFC PATCH v1.1 00/16] mm/damon: introduce data attributes only monitoring SJ Park
2026-07-06 14:18 ` [RFC PATCH v1.1 01/16] mm/damon/core: introduce damon_probe->weight SJ Park
2026-07-06 14:18 ` [RFC PATCH v1.1 02/16] mm/damon/core: ask apply_probes() ops callback to set sampling address SJ Park
2026-07-06 14:18 ` [RFC PATCH v1.1 03/16] mm/damon/paddr: set samples in apply_probes() if requested SJ Park
2026-07-06 14:18 ` [RFC PATCH v1.1 04/16] mm/damon/core: ask apply_probe() to return max probe hits weighted sum SJ Park
2026-07-06 14:39 ` sashiko-bot
2026-07-06 23:42 ` SJ Park
2026-07-06 14:18 ` [RFC PATCH v1.1 05/16] mm/damon/core: implement damon_probe_hits_wsum() SJ Park
2026-07-06 14:41 ` sashiko-bot
2026-07-06 23:46 ` SJ Park
2026-07-06 14:19 ` [RFC PATCH v1.1 06/16] mm/damon/paddr: respect return_max_wsum SJ Park
2026-07-06 14:44 ` sashiko-bot
2026-07-06 23:47 ` SJ Park
2026-07-06 14:19 ` [RFC PATCH v1.1 07/16] mm/damon/core: extend merge function to work with probe hits SJ Park
2026-07-06 14:55 ` sashiko-bot
2026-07-06 23:52 ` SJ Park
2026-07-07 3:30 ` SJ Park
2026-07-06 14:19 ` [RFC PATCH v1.1 08/16] mm/damon/core: disable access monitoring when probe weights are set SJ Park
2026-07-06 15:03 ` sashiko-bot
2026-07-06 23:54 ` SJ Park
2026-07-06 14:19 ` [RFC PATCH v1.1 09/16] mm/damon/core: set samples in apply_probes() if " SJ Park
2026-07-06 15:02 ` sashiko-bot
2026-07-06 23:56 ` SJ Park
2026-07-06 14:19 ` [RFC PATCH v1.1 10/16] mm/damon/core: s/max_nr_accesses/max_merge_score/ in kdamond_fn() SJ Park
2026-07-06 14:19 ` [RFC PATCH v1.1 11/16] mm/damon/core: get merge threshold from probe hits when weights are set SJ Park
2026-07-06 15:18 ` sashiko-bot
2026-07-07 0:03 ` SJ Park
2026-07-07 3:34 ` SJ Park
2026-07-06 14:19 ` [RFC PATCH v1.1 12/16] mm/damon/core: implement damon_has_probe_weight() SJ Park
2026-07-06 15:16 ` sashiko-bot
2026-07-07 0:05 ` SJ Park [this message]
2026-07-06 14:19 ` [RFC PATCH v1.1 13/16] mm/damon/sysfs: implement probe/weight file SJ Park
2026-07-06 15:19 ` sashiko-bot
2026-07-07 0:08 ` SJ Park
2026-07-06 14:19 ` [RFC PATCH v1.1 14/16] Docs/mm/damon/design: document attrs-only monitoring SJ Park
2026-07-06 15:34 ` sashiko-bot
2026-07-07 0:11 ` SJ Park
2026-07-06 14:19 ` [RFC PATCH v1.1 15/16] Docs/admin-guide/mm/damon/usage: document weight sysfs file SJ Park
2026-07-06 14:19 ` [RFC PATCH v1.1 16/16] Docs/ABI/damon: document probe weight file SJ Park
2026-07-07 0:13 ` [RFC PATCH v1.1 00/16] mm/damon: introduce data attributes only monitoring SJ Park
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=20260707000511.97649-1-sj@kernel.org \
--to=sj@kernel.org \
--cc=damon@lists.linux.dev \
--cc=sashiko-bot@kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.