From: kernel test robot <lkp@intel.com>
To: Nhat Pham <nphamcs@gmail.com>, akpm@linux-foundation.org
Cc: oe-kbuild-all@lists.linux.dev, hannes@cmpxchg.org,
cerasuolodomenico@gmail.com, yosryahmed@google.com,
sjenning@redhat.com, ddstreet@ieee.org, vitaly.wool@konsulko.com,
mhocko@kernel.org, roman.gushchin@linux.dev, shakeelb@google.com,
muchun.song@linux.dev, linux-mm@kvack.org, kernel-team@meta.com,
linux-kernel@vger.kernel.org, cgroups@vger.kernel.org
Subject: Re: [PATCH 1/2] zswap: make shrinking memcg-aware
Date: Thu, 14 Sep 2023 17:34:22 +0800 [thread overview]
Message-ID: <202309141736.ABab8fuf-lkp@intel.com> (raw)
In-Reply-To: <20230911164024.2541401-2-nphamcs@gmail.com>
Hi Nhat,
kernel test robot noticed the following build errors:
[auto build test ERROR on akpm-mm/mm-everything]
[also build test ERROR on linus/master v6.6-rc1 next-20230914]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Nhat-Pham/zswap-make-shrinking-memcg-aware/20230912-004147
base: https://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm.git mm-everything
patch link: https://lore.kernel.org/r/20230911164024.2541401-2-nphamcs%40gmail.com
patch subject: [PATCH 1/2] zswap: make shrinking memcg-aware
config: loongarch-randconfig-001-20230914 (https://download.01.org/0day-ci/archive/20230914/202309141736.ABab8fuf-lkp@intel.com/config)
compiler: loongarch64-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20230914/202309141736.ABab8fuf-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202309141736.ABab8fuf-lkp@intel.com/
All error/warnings (new ones prefixed by >>):
mm/zswap.c: In function 'zswap_lru_add':
>> mm/zswap.c:320:17: error: implicit declaration of function 'get_mem_cgroup_from_objcg'; did you mean 'get_mem_cgroup_from_mm'? [-Werror=implicit-function-declaration]
320 | get_mem_cgroup_from_objcg(entry->objcg) : NULL;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
| get_mem_cgroup_from_mm
>> mm/zswap.c:320:57: warning: pointer/integer type mismatch in conditional expression
320 | get_mem_cgroup_from_objcg(entry->objcg) : NULL;
| ^
mm/zswap.c: In function 'zswap_lru_del':
mm/zswap.c:330:57: warning: pointer/integer type mismatch in conditional expression
330 | get_mem_cgroup_from_objcg(entry->objcg) : NULL;
| ^
mm/zswap.c: In function 'shrink_memcg_cb':
mm/zswap.c:694:80: warning: pointer/integer type mismatch in conditional expression
694 | memcg = entry->objcg ? get_mem_cgroup_from_objcg(entry->objcg) : NULL;
| ^
mm/zswap.c: In function 'shrink_worker':
>> mm/zswap.c:758:51: error: invalid use of undefined type 'struct mem_cgroup'
758 | css_put(&pool->next_shrink->css);
| ^~
mm/zswap.c: In function 'zswap_pool_destroy':
mm/zswap.c:906:43: error: invalid use of undefined type 'struct mem_cgroup'
906 | css_put(&pool->next_shrink->css);
| ^~
mm/zswap.c: In function 'zswap_store':
>> mm/zswap.c:1298:23: warning: assignment to 'struct mem_cgroup *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
1298 | memcg = get_mem_cgroup_from_objcg(objcg);
| ^
mm/zswap.c:1300:39: error: invalid use of undefined type 'struct mem_cgroup'
1300 | css_put(&memcg->css);
| ^~
mm/zswap.c:1303:31: error: invalid use of undefined type 'struct mem_cgroup'
1303 | css_put(&memcg->css);
| ^~
mm/zswap.c:1349:23: warning: assignment to 'struct mem_cgroup *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
1349 | memcg = get_mem_cgroup_from_objcg(objcg);
| ^
mm/zswap.c:1351:31: error: invalid use of undefined type 'struct mem_cgroup'
1351 | css_put(&memcg->css);
| ^~
cc1: some warnings being treated as errors
vim +320 mm/zswap.c
313
314 /*********************************
315 * lru functions
316 **********************************/
317 static bool zswap_lru_add(struct list_lru *list_lru, struct zswap_entry *entry)
318 {
319 struct mem_cgroup *memcg = entry->objcg ?
> 320 get_mem_cgroup_from_objcg(entry->objcg) : NULL;
321 bool added = __list_lru_add(list_lru, &entry->lru, entry->nid, memcg);
322
323 mem_cgroup_put(memcg);
324 return added;
325 }
326
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2023-09-14 9:34 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-11 16:40 [PATCH 0/2] workload-specific and memory pressure-driven zswap writeback Nhat Pham
2023-09-11 16:40 ` [PATCH 1/2] zswap: make shrinking memcg-aware Nhat Pham
2023-09-14 9:34 ` kernel test robot [this message]
2023-09-11 16:40 ` [PATCH 2/2] zswap: shrinks zswap pool based on memory pressure Nhat Pham
[not found] ` <20230911164024.2541401-3-nphamcs-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2023-09-15 12:13 ` kernel test robot
2023-09-15 12:13 ` kernel test robot
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=202309141736.ABab8fuf-lkp@intel.com \
--to=lkp@intel.com \
--cc=akpm@linux-foundation.org \
--cc=cerasuolodomenico@gmail.com \
--cc=cgroups@vger.kernel.org \
--cc=ddstreet@ieee.org \
--cc=hannes@cmpxchg.org \
--cc=kernel-team@meta.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mhocko@kernel.org \
--cc=muchun.song@linux.dev \
--cc=nphamcs@gmail.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=roman.gushchin@linux.dev \
--cc=shakeelb@google.com \
--cc=sjenning@redhat.com \
--cc=vitaly.wool@konsulko.com \
--cc=yosryahmed@google.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.