From: Yang Shi <yang.shi@linux.alibaba.com>
To: kbuild test robot <lkp@intel.com>
Cc: kbuild-all@lists.01.org, shakeelb@google.com, vbabka@suse.cz,
willy@infradead.org, akpm@linux-foundation.org,
linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: Re: [v2 PATCH 1/2] mm: swap: make page_evictable() inline
Date: Mon, 16 Mar 2020 20:24:51 -0700 [thread overview]
Message-ID: <1c710863-ed2e-88ec-2ea9-401c56ecc630@linux.alibaba.com> (raw)
In-Reply-To: <202003171004.Kg80NfWn%lkp@intel.com>
On 3/16/20 8:00 PM, kbuild test robot wrote:
> Hi Yang,
>
> Thank you for the patch! Yet something to improve:
>
> [auto build test ERROR on mmotm/master]
> [also build test ERROR on linus/master v5.6-rc6 next-20200316]
> [if your patch is applied to the wrong git tree, please drop us a note to help
> improve the system. BTW, we also suggest to use '--base' option to specify the
> base tree in git format-patch, please see https://stackoverflow.com/a/37406982]
>
> url: https://github.com/0day-ci/linux/commits/Yang-Shi/mm-swap-make-page_evictable-inline/20200317-094836
> base: git://git.cmpxchg.org/linux-mmotm.git master
> config: i386-tinyconfig (attached as .config)
> compiler: gcc-7 (Debian 7.5.0-5) 7.5.0
> reproduce:
> # save the attached .config to linux build tree
> make ARCH=i386
>
> If you fix the issue, kindly add following tag
> Reported-by: kbuild test robot <lkp@intel.com>
>
> All errors (new ones prefixed by >>):
>
> In file included from include/linux/suspend.h:5:0,
> from arch/x86/kernel/asm-offsets.c:13:
> include/linux/swap.h: In function 'page_evictable':
>>> include/linux/swap.h:395:9: error: implicit declaration of function 'mapping_unevictable'; did you mean 'mapping_deny_writable'? [-Werror=implicit-function-declaration]
It looks pagemap.h need to be included. The below patch should be able
to fix the build error:
diff --git a/include/linux/swap.h b/include/linux/swap.h
index d296c70..e8b8bbe 100644
--- a/include/linux/swap.h
+++ b/include/linux/swap.h
@@ -12,6 +12,7 @@
#include <linux/fs.h>
#include <linux/atomic.h>
#include <linux/page-flags.h>
+#include <linux/pagemap.h>
#include <asm/page.h>
struct notifier_block;
> ret = !mapping_unevictable(page_mapping(page)) && !PageMlocked(page);
> ^~~~~~~~~~~~~~~~~~~
> mapping_deny_writable
> cc1: some warnings being treated as errors
> make[2]: *** [scripts/Makefile.build:99: arch/x86/kernel/asm-offsets.s] Error 1
> make[2]: Target '__build' not remade because of errors.
> make[1]: *** [Makefile:1139: prepare0] Error 2
> make[1]: Target 'prepare' not remade because of errors.
> make: *** [Makefile:179: sub-make] Error 2
> 11 real 4 user 5 sys 89.51% cpu make prepare
>
> vim +395 include/linux/swap.h
>
> 376
> 377 /**
> 378 * page_evictable - test whether a page is evictable
> 379 * @page: the page to test
> 380 *
> 381 * Test whether page is evictable--i.e., should be placed on active/inactive
> 382 * lists vs unevictable list.
> 383 *
> 384 * Reasons page might not be evictable:
> 385 * (1) page's mapping marked unevictable
> 386 * (2) page is part of an mlocked VMA
> 387 *
> 388 */
> 389 static inline bool page_evictable(struct page *page)
> 390 {
> 391 bool ret;
> 392
> 393 /* Prevent address_space of inode and swap cache from being freed */
> 394 rcu_read_lock();
> > 395 ret = !mapping_unevictable(page_mapping(page)) && !PageMlocked(page);
> 396 rcu_read_unlock();
> 397 return ret;
> 398 }
> 399
>
> ---
> 0-DAY CI Kernel Test Service, Intel Corporation
> https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
next prev parent reply other threads:[~2020-03-17 3:25 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-16 22:24 [v2 PATCH 1/2] mm: swap: make page_evictable() inline Yang Shi
2020-03-16 22:24 ` [v2 PATCH 2/2] mm: swap: use smp_mb__after_atomic() to order LRU bit set Yang Shi
2020-03-16 23:47 ` Shakeel Butt
2020-03-16 23:46 ` [v2 PATCH 1/2] mm: swap: make page_evictable() inline Shakeel Butt
2020-03-17 2:05 ` Yang Shi
2020-03-17 3:00 ` kbuild test robot
2020-03-17 3:24 ` Yang Shi [this message]
2020-03-17 3:15 ` kbuild test robot
2020-03-17 8:59 ` Vlastimil Babka
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=1c710863-ed2e-88ec-2ea9-401c56ecc630@linux.alibaba.com \
--to=yang.shi@linux.alibaba.com \
--cc=akpm@linux-foundation.org \
--cc=kbuild-all@lists.01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=lkp@intel.com \
--cc=shakeelb@google.com \
--cc=vbabka@suse.cz \
--cc=willy@infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox