From: kbuild test robot <lkp@intel.com>
To: Nikolay Borisov <nborisov@suse.com>
Cc: kbuild-all@01.org, linux-btrfs@vger.kernel.org,
Nikolay Borisov <nborisov@suse.com>
Subject: Re: [PATCH v2] btrfs: Unexport and rename btrfs_invalidate_inodes
Date: Sun, 29 Apr 2018 00:33:46 +0800 [thread overview]
Message-ID: <201804290051.8DOO5arg%fengguang.wu@intel.com> (raw)
In-Reply-To: <1524828984-2797-1-git-send-email-nborisov@suse.com>
[-- Attachment #1: Type: text/plain, Size: 3255 bytes --]
Hi Nikolay,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on next-20180424]
[cannot apply to v4.17-rc2 v4.17-rc1 v4.16 v4.17-rc2]
[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/btrfs-Unexport-and-rename-btrfs_invalidate_inodes/20180428-234332
config: x86_64-randconfig-x013-201816 (attached as .config)
compiler: gcc-7 (Debian 7.3.0-16) 7.3.0
reproduce:
# save the attached .config to linux build tree
make ARCH=x86_64
All errors (new ones prefixed by >>):
fs/btrfs/disk-io.c: In function 'btrfs_destroy_delalloc_inodes':
>> fs/btrfs/disk-io.c:4317:3: error: implicit declaration of function 'btrfs_invalidate_inodes'; did you mean 'btrfs_update_inode'? [-Werror=implicit-function-declaration]
btrfs_invalidate_inodes(btrfs_inode->root);
^~~~~~~~~~~~~~~~~~~~~~~
btrfs_update_inode
cc1: some warnings being treated as errors
vim +4317 fs/btrfs/disk-io.c
acce952b0 liubo 2011-01-06 4297
143bede52 Jeff Mahoney 2012-03-01 4298 static void btrfs_destroy_delalloc_inodes(struct btrfs_root *root)
acce952b0 liubo 2011-01-06 4299 {
acce952b0 liubo 2011-01-06 4300 struct btrfs_inode *btrfs_inode;
acce952b0 liubo 2011-01-06 4301 struct list_head splice;
acce952b0 liubo 2011-01-06 4302
acce952b0 liubo 2011-01-06 4303 INIT_LIST_HEAD(&splice);
acce952b0 liubo 2011-01-06 4304
eb73c1b7c Miao Xie 2013-05-15 4305 spin_lock(&root->delalloc_lock);
eb73c1b7c Miao Xie 2013-05-15 4306 list_splice_init(&root->delalloc_inodes, &splice);
acce952b0 liubo 2011-01-06 4307
acce952b0 liubo 2011-01-06 4308 while (!list_empty(&splice)) {
eb73c1b7c Miao Xie 2013-05-15 4309 btrfs_inode = list_first_entry(&splice, struct btrfs_inode,
acce952b0 liubo 2011-01-06 4310 delalloc_inodes);
acce952b0 liubo 2011-01-06 4311
acce952b0 liubo 2011-01-06 4312 list_del_init(&btrfs_inode->delalloc_inodes);
df0af1a57 Miao Xie 2013-01-29 4313 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
df0af1a57 Miao Xie 2013-01-29 4314 &btrfs_inode->runtime_flags);
eb73c1b7c Miao Xie 2013-05-15 4315 spin_unlock(&root->delalloc_lock);
acce952b0 liubo 2011-01-06 4316
acce952b0 liubo 2011-01-06 @4317 btrfs_invalidate_inodes(btrfs_inode->root);
b216cbfb5 Miao Xie 2013-05-15 4318
eb73c1b7c Miao Xie 2013-05-15 4319 spin_lock(&root->delalloc_lock);
acce952b0 liubo 2011-01-06 4320 }
acce952b0 liubo 2011-01-06 4321
eb73c1b7c Miao Xie 2013-05-15 4322 spin_unlock(&root->delalloc_lock);
acce952b0 liubo 2011-01-06 4323 }
acce952b0 liubo 2011-01-06 4324
:::::: The code at line 4317 was first introduced by commit
:::::: acce952b0263825da32cf10489413dec78053347 Btrfs: forced readonly mounts on errors
:::::: TO: liubo <liubo2009@cn.fujitsu.com>
:::::: CC: Chris Mason <chris.mason@oracle.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: 28542 bytes --]
next prev parent reply other threads:[~2018-04-28 16:34 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-27 9:21 [PATCH 0/5] Fix delalloc inodes leaking on btrfs unmount Nikolay Borisov
2018-04-27 9:21 ` [PATCH 1/5] btrfs: Unexport btrfs_alloc_delalloc_work Nikolay Borisov
2018-04-27 9:21 ` [PATCH 2/5] btrfs: Split btrfs_del_delalloc_inode into 2 functions Nikolay Borisov
2018-05-11 5:44 ` Anand Jain
2018-05-11 8:39 ` Nikolay Borisov
2018-05-16 15:27 ` David Sterba
2018-04-27 9:21 ` [PATCH 3/5] btrfs: Add assert in __btrfs_del_delalloc_inode Nikolay Borisov
2018-04-27 9:21 ` [PATCH 4/5] btrfs: Fix delalloc inodes invalidation during transaction abort Nikolay Borisov
2018-05-10 15:35 ` David Sterba
2018-04-27 9:21 ` [PATCH 5/5] btrfs: Unexport and rename btrfs_invalidate_inodes Nikolay Borisov
2018-04-27 11:36 ` [PATCH v2] " Nikolay Borisov
2018-04-28 16:33 ` kbuild test robot [this message]
2018-04-28 16:44 ` kbuild test robot
2018-04-28 18:04 ` kbuild test robot
2018-05-11 5:38 ` Anand Jain
2018-05-01 14:02 ` [PATCH 0/5] Fix delalloc inodes leaking on btrfs unmount David Sterba
2018-05-16 15:36 ` David Sterba
2018-05-07 22:58 ` David Sterba
2018-05-08 5:16 ` Nikolay Borisov
2018-05-08 10:41 ` 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=201804290051.8DOO5arg%fengguang.wu@intel.com \
--to=lkp@intel.com \
--cc=kbuild-all@01.org \
--cc=linux-btrfs@vger.kernel.org \
--cc=nborisov@suse.com \
/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;
as well as URLs for NNTP newsgroup(s).