From: kbuild test robot <lkp@intel.com>
To: Xiongchun Duan <duanxiongchun@bytedance.com>
Cc: kbuild-all@01.org, cgroups@vger.kernel.org, linux-mm@kvack.org,
shy828301@gmail.com, mhocko@kernel.org, tj@kernel.org,
hannes@cmpxchg.org, zhangyongsu@bytedance.com,
liuxiaozhou@bytedance.com, zhengfeiran@bytedance.com,
wangdongdong.6@bytedance.com
Subject: Re: [PATCH 3/5] Memcgroup:add a global work
Date: Tue, 22 Jan 2019 02:38:37 +0800 [thread overview]
Message-ID: <201901220233.hjDQK3Jt%fengguang.wu@intel.com> (raw)
In-Reply-To: <1547955021-11520-4-git-send-email-duanxiongchun@bytedance.com>
[-- Attachment #1: Type: text/plain, Size: 1714 bytes --]
Hi Xiongchun,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on linus/master]
[also build test ERROR on v5.0-rc2 next-20190116]
[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/Xiongchun-Duan/Memcgroup-force-empty-after-memcgroup-offline/20190122-014721
config: i386-randconfig-x010-201903 (attached as .config)
compiler: gcc-8 (Debian 8.2.0-14) 8.2.0
reproduce:
# save the attached .config to linux build tree
make ARCH=i386
All errors (new ones prefixed by >>):
mm/memcontrol.c: In function 'empty_timer_trigger':
>> mm/memcontrol.c:4585:13: error: 'memcg_force_empty_wq' undeclared (first use in this function); did you mean 'mem_cgroup_force_empty'?
queue_work(memcg_force_empty_wq, &timer_poll_work);
^~~~~~~~~~~~~~~~~~~~
mem_cgroup_force_empty
mm/memcontrol.c:4585:13: note: each undeclared identifier is reported only once for each function it appears in
mm/memcontrol.c: In function 'mem_cgroup_init':
mm/memcontrol.c:6400:2: error: 'memcg_force_empty_wq' undeclared (first use in this function); did you mean 'mem_cgroup_force_empty'?
memcg_force_empty_wq = alloc_workqueue("memcg_force_empty_wq", 0, 1);
^~~~~~~~~~~~~~~~~~~~
mem_cgroup_force_empty
vim +4585 mm/memcontrol.c
4582
4583 static void empty_timer_trigger(struct timer_list *t)
4584 {
> 4585 queue_work(memcg_force_empty_wq, &timer_poll_work);
4586 }
4587
---
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: 26860 bytes --]
WARNING: multiple messages have this Message-ID
From: kbuild test robot <lkp@intel.com>
To: Xiongchun Duan <duanxiongchun@bytedance.com>
Cc: kbuild-all@01.org, cgroups@vger.kernel.org, linux-mm@kvack.org,
shy828301@gmail.com, mhocko@kernel.org, tj@kernel.org,
hannes@cmpxchg.org, zhangyongsu@bytedance.com,
liuxiaozhou@bytedance.com, zhengfeiran@bytedance.com,
wangdongdong.6@bytedance.com,
Xiongchun Duan <duanxiongchun@bytedance.com>
Subject: Re: [PATCH 3/5] Memcgroup:add a global work
Date: Tue, 22 Jan 2019 02:38:37 +0800 [thread overview]
Message-ID: <201901220233.hjDQK3Jt%fengguang.wu@intel.com> (raw)
Message-ID: <20190121183837.513EUISVwdmRDrSUtPLjFXYKz4LZ_qveAMO98ZFdoX0@z> (raw)
In-Reply-To: <1547955021-11520-4-git-send-email-duanxiongchun@bytedance.com>
[-- Attachment #1: Type: text/plain, Size: 1714 bytes --]
Hi Xiongchun,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on linus/master]
[also build test ERROR on v5.0-rc2 next-20190116]
[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/Xiongchun-Duan/Memcgroup-force-empty-after-memcgroup-offline/20190122-014721
config: i386-randconfig-x010-201903 (attached as .config)
compiler: gcc-8 (Debian 8.2.0-14) 8.2.0
reproduce:
# save the attached .config to linux build tree
make ARCH=i386
All errors (new ones prefixed by >>):
mm/memcontrol.c: In function 'empty_timer_trigger':
>> mm/memcontrol.c:4585:13: error: 'memcg_force_empty_wq' undeclared (first use in this function); did you mean 'mem_cgroup_force_empty'?
queue_work(memcg_force_empty_wq, &timer_poll_work);
^~~~~~~~~~~~~~~~~~~~
mem_cgroup_force_empty
mm/memcontrol.c:4585:13: note: each undeclared identifier is reported only once for each function it appears in
mm/memcontrol.c: In function 'mem_cgroup_init':
mm/memcontrol.c:6400:2: error: 'memcg_force_empty_wq' undeclared (first use in this function); did you mean 'mem_cgroup_force_empty'?
memcg_force_empty_wq = alloc_workqueue("memcg_force_empty_wq", 0, 1);
^~~~~~~~~~~~~~~~~~~~
mem_cgroup_force_empty
vim +4585 mm/memcontrol.c
4582
4583 static void empty_timer_trigger(struct timer_list *t)
4584 {
> 4585 queue_work(memcg_force_empty_wq, &timer_poll_work);
4586 }
4587
---
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: 26860 bytes --]
next prev parent reply other threads:[~2019-01-21 18:39 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-20 3:30 [PATCH 0/5] fix offline memcgroup still hold in memory Xiongchun Duan
2019-01-20 3:30 ` [PATCH 1/5] Memcgroup: force empty after memcgroup offline Xiongchun Duan
2019-01-21 18:52 ` kbuild test robot
2019-01-21 18:52 ` kbuild test robot
2019-01-21 19:09 ` kbuild test robot
2019-01-21 19:09 ` kbuild test robot
2019-01-20 3:30 ` [PATCH 2/5] Memcgroup: Add timer to trigger workqueue Xiongchun Duan
2019-01-20 18:05 ` Michal Hocko
2019-01-20 3:30 ` [PATCH 3/5] Memcgroup:add a global work Xiongchun Duan
2019-01-21 18:38 ` kbuild test robot [this message]
2019-01-21 18:38 ` kbuild test robot
2019-01-21 22:35 ` kbuild test robot
2019-01-21 22:35 ` kbuild test robot
2019-01-20 3:30 ` [PATCH 4/5] Memcgroup:Implement force empty work function Xiongchun Duan
2019-01-20 3:30 ` [PATCH 5/5] Memcgroup:add cgroup fs to show offline memcgroup status Xiongchun Duan
2019-01-20 18:12 ` [PATCH 0/5] fix offline memcgroup still hold in memory Michal Hocko
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=201901220233.hjDQK3Jt%fengguang.wu@intel.com \
--to=lkp@intel.com \
--cc=cgroups@vger.kernel.org \
--cc=duanxiongchun@bytedance.com \
--cc=hannes@cmpxchg.org \
--cc=kbuild-all@01.org \
--cc=linux-mm@kvack.org \
--cc=liuxiaozhou@bytedance.com \
--cc=mhocko@kernel.org \
--cc=shy828301@gmail.com \
--cc=tj@kernel.org \
--cc=wangdongdong.6@bytedance.com \
--cc=zhangyongsu@bytedance.com \
--cc=zhengfeiran@bytedance.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