Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> writes: > On Tue, 10 Sep 2024 09:33:48 +0800 kernel test robot <lkp@xxxxxxxxx> wrote: > >> tree: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master >> head: 100cc857359b5d731407d1038f7e76cd0e871d94 >> commit: 5f445800cbdfc4b4185d496a43dfd78df63d2265 [10352/10516] Merge branch 'mm-everything' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm >> config: m68k-allmodconfig (https://download.01.org/0day-ci/archive/20240910/202409100913.RxkfrKU6-lkp@xxxxxxxxx/config) >> compiler: m68k-linux-gcc (GCC) 14.1.0 >> reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240910/202409100913.RxkfrKU6-lkp@xxxxxxxxx/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@xxxxxxxxx> >> | Closes: https://lore.kernel.org/oe-kbuild-all/202409100913.RxkfrKU6-lkp@xxxxxxxxx/ >> >> All errors (new ones prefixed by >>): >> >> In file included from include/linux/ioport.h:15, >> from kernel/resource.c:15: >> kernel/resource.c: In function 'gfr_start': >> >> include/linux/mm.h:101:35: error: 'MAX_PHYSMEM_BITS' undeclared (first use in this function) >> 101 | # define PHYSMEM_END ((1ULL << MAX_PHYSMEM_BITS) - 1) >> | ^~~~~~~~~~~~~~~~ >> include/linux/minmax.h:93:38: note: in definition of macro '__cmp_once_unique' >> 93 | ({ type ux = (x); type uy = (y); __cmp(op, ux, uy); }) >> | ^ > > Thanks. "resource, kunit: add test case for region_intersects" is the culprit. Yes. Although the definition in include/linux/mm.h introduced in commit ea72ce5da228 ("x86/kaslr: Expose and use the end of the physical memory address space") doesn't compile on m68k. There are no users of PHYSMEM_END before patch "resource, kunit: add test case for region_intersects". This can be fixed via the following patch. ---------------------------------8<--------------------------------------