[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200213090937.9368-1-sjpark@amazon.com>
Date: Thu, 13 Feb 2020 10:09:37 +0100
From: SeongJae Park <sjpark@...zon.com>
To: kbuild test robot <lkp@...el.com>
CC: <sjpark@...zon.com>, <kbuild-all@...ts.01.org>,
<akpm@...ux-foundation.org>, SeongJae Park <sjpark@...zon.de>,
<acme@...nel.org>, <alexander.shishkin@...ux.intel.com>,
<amit@...nel.org>, <brendan.d.gregg@...il.com>,
<brendanhiggins@...gle.com>, <cai@....pw>,
<colin.king@...onical.com>, <corbet@....net>, <dwmw@...zon.com>,
<jolsa@...hat.com>, <kirill@...temov.name>, <mark.rutland@....com>,
<mgorman@...e.de>, <minchan@...nel.org>, <mingo@...hat.com>,
<namhyung@...nel.org>, <peterz@...radead.org>,
<rdunlap@...radead.org>, <rostedt@...dmis.org>,
<sj38.park@...il.com>, <vdavydov.dev@...il.com>,
<linux-mm@...ck.org>, <linux-doc@...r.kernel.org>,
<linux-kernel@...r.kernel.org>
Subject: Re: Re: [PATCH v4 05/11] mm/damon: Implement kernel space API
On Thu, 13 Feb 2020 07:21:37 +0800 kbuild test robot <lkp@...el.com> wrote:
> [-- Attachment #1: Type: text/plain, Size: 937 bytes --]
>
> Hi,
>
> Thank you for the patch! Yet something to improve:
>
> [auto build test ERROR on d5226fa6dbae0569ee43ecfc08bdcd6770fc4755]
>
> url: https://github.com/0day-ci/linux/commits/sjpark-amazon-com/Introduce-Data-Access-MONitor-DAMON/20200213-003254
> base: d5226fa6dbae0569ee43ecfc08bdcd6770fc4755
> config: m68k-allmodconfig (attached as .config)
> compiler: m68k-linux-gcc (GCC) 7.5.0
> reproduce:
> wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> chmod +x ~/bin/make.cross
> # save the attached .config to linux build tree
> GCC_VERSION=7.5.0 make.cross ARCH=m68k
>
> If you fix the issue, kindly add following tag
> Reported-by: kbuild test robot <lkp@...el.com>
>
> All errors (new ones prefixed by >>):
>
> >> ERROR: "lookup_page_ext" [mm/damon.ko] undefined!
Thank you for finding this problem, kbuild!
This problem comes when `CONFIG_DAMON=m` and `CONFIG_64BIT` unset because
`lookup_page_ext()`, which is used by `page_idle.h` if `CONFIG_64BIT` unset, is
not exported. Most simple fix would be avoiding module build of DAMON as
below::
diff --git a/mm/Kconfig b/mm/Kconfig
index b279ab9c78d0..f24dd670baad 100644
--- a/mm/Kconfig
+++ b/mm/Kconfig
@@ -740,7 +740,7 @@ config MAPPING_DIRTY_HELPERS
bool
config DAMON
- tristate "Data Access Monitor"
+ bool "Data Access Monitor"
depends on MMU
default n
help
Or, exporting the symbol as below::
diff --git a/mm/page_ext.c b/mm/page_ext.c
index 4ade843ff588..e6e6b7e625e4 100644
--- a/mm/page_ext.c
+++ b/mm/page_ext.c
@@ -131,6 +131,7 @@ struct page_ext *lookup_page_ext(const struct page *page)
MAX_ORDER_NR_PAGES);
return get_entry(base, index);
}
+EXPORT_SYMBOL(lookup_page_ext);
static int __init alloc_node_page_ext(int nid)
{
I of course prefer this fix but unsure whether exporting this symbol is ok or
not. May I ask your opinions?
Thanks,
SeongJae Park
>
> ---
> 0-DAY CI Kernel Test Service, Intel Corporation
> https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
>
> [-- Attachment #2: .config.gz --]
> [-- Type: application/gzip, Size: 51870 bytes --]
Powered by blists - more mailing lists