From: kernel test robot <lkp@intel.com>
To: Josh Law <objecting@objecting.org>, SeongJae Park <sj@kernel.org>,
Andrew Morton <akpm@linux-foundation.org>
Cc: oe-kbuild-all@lists.linux.dev,
Linux Memory Management List <linux-mm@kvack.org>,
damon@lists.linux.dev, linux-kernel@vger.kernel.org,
Josh Law <objecting@objecting.org>
Subject: Re: [PATCH] mm/damon: introduce DAMON-based NUMA memory tiering module
Date: Sat, 28 Mar 2026 01:45:29 +0800 [thread overview]
Message-ID: <202603280122.ldJtc5AT-lkp@intel.com> (raw)
In-Reply-To: <20260326072737.341964-1-objecting@objecting.org>
Hi Josh,
kernel test robot noticed the following build errors:
[auto build test ERROR on akpm-mm/mm-everything]
url: https://github.com/intel-lab-lkp/linux/commits/Josh-Law/mm-damon-introduce-DAMON-based-NUMA-memory-tiering-module/20260327-033827
base: https://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm.git mm-everything
patch link: https://lore.kernel.org/r/20260326072737.341964-1-objecting%40objecting.org
patch subject: [PATCH] mm/damon: introduce DAMON-based NUMA memory tiering module
config: s390-allyesconfig (https://download.01.org/0day-ci/archive/20260328/202603280122.ldJtc5AT-lkp@intel.com/config)
compiler: s390-linux-gcc (GCC) 15.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260328/202603280122.ldJtc5AT-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202603280122.ldJtc5AT-lkp@intel.com/
All errors (new ones prefixed by >>):
mm/damon/tier.c: In function 'damon_tier_apply_parameters':
>> mm/damon/tier.c:280:15: error: too few arguments to function 'damon_set_region_biggest_system_ram_default'; expected 5, have 4
280 | err = damon_set_region_biggest_system_ram_default(param_target,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from mm/damon/tier.c:13:
include/linux/damon.h:995:5: note: declared here
995 | int damon_set_region_biggest_system_ram_default(struct damon_target *t,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
vim +/damon_set_region_biggest_system_ram_default +280 mm/damon/tier.c
243
244 static int damon_tier_apply_parameters(void)
245 {
246 struct damon_ctx *param_ctx;
247 struct damon_target *param_target;
248 struct damos *promote_scheme, *demote_scheme;
249 int err;
250
251 err = damon_modules_new_paddr_ctx_target(¶m_ctx, ¶m_target);
252 if (err)
253 return err;
254
255 err = damon_set_attrs(param_ctx, &damon_tier_mon_attrs);
256 if (err)
257 goto out;
258
259 err = -ENOMEM;
260 promote_scheme = damon_tier_new_promote_scheme();
261 if (!promote_scheme)
262 goto out;
263
264 demote_scheme = damon_tier_new_demote_scheme();
265 if (!demote_scheme) {
266 damon_destroy_scheme(promote_scheme);
267 goto out;
268 }
269
270 damon_set_schemes(param_ctx, &promote_scheme, 1);
271 damon_add_scheme(param_ctx, demote_scheme);
272
273 err = damon_tier_add_quota_goals(promote_scheme, demote_scheme);
274 if (err)
275 goto out;
276 err = damon_tier_add_filters(promote_scheme, demote_scheme);
277 if (err)
278 goto out;
279
> 280 err = damon_set_region_biggest_system_ram_default(param_target,
281 &monitor_region_start,
282 &monitor_region_end,
283 param_ctx->min_region_sz);
284 if (err)
285 goto out;
286 err = damon_commit_ctx(ctx, param_ctx);
287 out:
288 damon_destroy_ctx(param_ctx);
289 return err;
290 }
291
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
prev parent reply other threads:[~2026-03-27 17:46 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-26 7:27 [PATCH] mm/damon: introduce DAMON-based NUMA memory tiering module Josh Law
2026-03-26 10:34 ` Lorenzo Stoakes (Oracle)
2026-03-26 12:12 ` Krzysztof Kozlowski
2026-03-26 12:29 ` Lorenzo Stoakes (Oracle)
2026-03-26 12:40 ` Krzysztof Kozlowski
2026-03-26 12:50 ` Lorenzo Stoakes (Oracle)
2026-03-26 15:14 ` Josh Law
2026-03-26 15:43 ` Krzysztof Kozlowski
2026-03-26 16:10 ` Josh Law
2026-03-26 16:33 ` Lorenzo Stoakes (Oracle)
2026-03-26 16:39 ` Josh Law
2026-03-27 4:09 ` SeongJae Park
2026-03-27 8:37 ` David Hildenbrand (Arm)
2026-03-27 15:22 ` Josh Law
2026-03-30 6:27 ` David Hildenbrand (Arm)
2026-03-30 7:50 ` Krzysztof Kozlowski
2026-03-30 8:16 ` David Hildenbrand (Arm)
2026-03-30 10:14 ` Herbert
2026-03-30 10:36 ` David Hildenbrand (Arm)
2026-03-30 10:41 ` Herbert
2026-03-30 10:43 ` Herbert
2026-03-30 11:56 ` Vlastimil Babka
2026-03-30 10:40 ` Herbert
2026-03-27 12:50 ` kernel test robot
2026-03-27 17:45 ` kernel test robot [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=202603280122.ldJtc5AT-lkp@intel.com \
--to=lkp@intel.com \
--cc=akpm@linux-foundation.org \
--cc=damon@lists.linux.dev \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=objecting@objecting.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=sj@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.