From: kbuild test robot <lkp@intel.com>
To: Nikolay Borisov <nborisov@suse.com>
Cc: kbuild-all@01.org, tj@kernel.org, jbacik@fb.com, jack@suse.cz,
linux-kernel@vger.kernel.org, hannes@cmpxchg.org,
mgorman@techsingularity.net, Nikolay Borisov <nborisov@suse.com>
Subject: Re: [PATCH 2/2] writeback: Rework wb_[dec|inc]_stat family of functions
Date: Wed, 21 Jun 2017 08:05:55 +0800 [thread overview]
Message-ID: <201706210755.ZbwVae3J%fengguang.wu@intel.com> (raw)
In-Reply-To: <1497958590-6639-2-git-send-email-nborisov@suse.com>
[-- Attachment #1: Type: text/plain, Size: 2408 bytes --]
Hi Nikolay,
[auto build test ERROR on linus/master]
[also build test ERROR on v4.12-rc6 next-20170620]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
url: https://github.com/0day-ci/linux/commits/Nikolay-Borisov/percpu_counter-Rename-__percpu_counter_add-to-percpu_counter_add_batch/20170621-045738
config: alpha-allyesconfig (attached as .config)
compiler: alpha-linux-gnu-gcc (Debian 6.1.1-9) 6.1.1 20160705
reproduce:
wget https://raw.githubusercontent.com/01org/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
make.cross ARCH=alpha
All errors (new ones prefixed by >>):
fs/fs-writeback.c: In function 'inode_switch_wbs_work_fn':
>> fs/fs-writeback.c:383:4: error: implicit declaration of function '__dec_wb_stat' [-Werror=implicit-function-declaration]
__dec_wb_stat(old_wb, WB_RECLAIMABLE);
^~~~~~~~~~~~~
>> fs/fs-writeback.c:384:4: error: implicit declaration of function '__inc_wb_stat' [-Werror=implicit-function-declaration]
__inc_wb_stat(new_wb, WB_RECLAIMABLE);
^~~~~~~~~~~~~
cc1: some warnings being treated as errors
vim +/__dec_wb_stat +383 fs/fs-writeback.c
d10c8095 Tejun Heo 2015-05-28 377 */
d10c8095 Tejun Heo 2015-05-28 378 radix_tree_for_each_tagged(slot, &mapping->page_tree, &iter, 0,
d10c8095 Tejun Heo 2015-05-28 379 PAGECACHE_TAG_DIRTY) {
d10c8095 Tejun Heo 2015-05-28 380 struct page *page = radix_tree_deref_slot_protected(slot,
d10c8095 Tejun Heo 2015-05-28 381 &mapping->tree_lock);
d10c8095 Tejun Heo 2015-05-28 382 if (likely(page) && PageDirty(page)) {
d10c8095 Tejun Heo 2015-05-28 @383 __dec_wb_stat(old_wb, WB_RECLAIMABLE);
d10c8095 Tejun Heo 2015-05-28 @384 __inc_wb_stat(new_wb, WB_RECLAIMABLE);
d10c8095 Tejun Heo 2015-05-28 385 }
d10c8095 Tejun Heo 2015-05-28 386 }
d10c8095 Tejun Heo 2015-05-28 387
:::::: The code at line 383 was first introduced by commit
:::::: d10c809552659d8a0089062b9d73da6d47e84cbf writeback: implement foreign cgroup inode bdi_writeback switching
:::::: TO: Tejun Heo <tj@kernel.org>
:::::: CC: Jens Axboe <axboe@fb.com>
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 50323 bytes --]
next prev parent reply other threads:[~2017-06-21 0:06 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-20 11:36 [PATCH 1/2] percpu_counter: Rename __percpu_counter_add to percpu_counter_add_batch Nikolay Borisov
2017-06-20 11:36 ` [PATCH 2/2] writeback: Rework wb_[dec|inc]_stat family of functions Nikolay Borisov
2017-06-20 17:33 ` Tejun Heo
2017-06-20 18:02 ` [PATCH v2 " Nikolay Borisov
2017-06-20 19:37 ` Tejun Heo
2017-06-20 20:28 ` Nikolay Borisov
2017-06-20 20:30 ` Tejun Heo
2017-06-20 20:32 ` Nikolay Borisov
2017-06-21 7:25 ` [PATCH v3] " Nikolay Borisov
2017-06-21 15:59 ` Tejun Heo
2017-06-22 8:38 ` Jan Kara
2017-06-21 0:05 ` kbuild test robot [this message]
2017-06-20 17:28 ` [PATCH 1/2] percpu_counter: Rename __percpu_counter_add to percpu_counter_add_batch Tejun Heo
2017-06-20 18:01 ` [PATCH v2 " Nikolay Borisov
2017-06-20 19:47 ` [PATCH] " Tejun Heo
2017-06-20 19:55 ` David Miller
2017-06-21 1:14 ` Darrick J. Wong
2017-06-21 12:08 ` David Sterba
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=201706210755.ZbwVae3J%fengguang.wu@intel.com \
--to=lkp@intel.com \
--cc=hannes@cmpxchg.org \
--cc=jack@suse.cz \
--cc=jbacik@fb.com \
--cc=kbuild-all@01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mgorman@techsingularity.net \
--cc=nborisov@suse.com \
--cc=tj@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox