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 2/2] zswap: shrinks zswap pool based on memory pressure
Date: Fri, 15 Sep 2023 20:13:17 +0800 [thread overview]
Message-ID: <202309152048.GDMxTtFF-lkp@intel.com> (raw)
In-Reply-To: <20230911164024.2541401-3-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-20230915]
[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-3-nphamcs%40gmail.com
patch subject: [PATCH 2/2] zswap: shrinks zswap pool based on memory pressure
config: loongarch-randconfig-001-20230914 (https://download.01.org/0day-ci/archive/20230915/202309152048.GDMxTtFF-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/20230915/202309152048.GDMxTtFF-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/202309152048.GDMxTtFF-lkp@intel.com/
All errors (new ones prefixed by >>):
mm/zswap.c: In function 'zswap_lru_add':
mm/zswap.c:341:17: error: implicit declaration of function 'get_mem_cgroup_from_objcg'; did you mean 'get_mem_cgroup_from_mm'? [-Werror=implicit-function-declaration]
341 | get_mem_cgroup_from_objcg(entry->objcg) : NULL;
| ^~~~~~~~~~~~~~~~~~~~~~~~~
| get_mem_cgroup_from_mm
mm/zswap.c:341:57: warning: pointer/integer type mismatch in conditional expression
341 | get_mem_cgroup_from_objcg(entry->objcg) : NULL;
| ^
mm/zswap.c: In function 'zswap_lru_del':
mm/zswap.c:366:57: warning: pointer/integer type mismatch in conditional expression
366 | get_mem_cgroup_from_objcg(entry->objcg) : NULL;
| ^
mm/zswap.c: In function 'zswap_shrinker_count':
>> mm/zswap.c:546:9: error: implicit declaration of function 'cgroup_rstat_flush' [-Werror=implicit-function-declaration]
546 | cgroup_rstat_flush(memcg->css.cgroup);
| ^~~~~~~~~~~~~~~~~~
mm/zswap.c:546:33: error: invalid use of undefined type 'struct mem_cgroup'
546 | cgroup_rstat_flush(memcg->css.cgroup);
| ^~
mm/zswap.c: In function 'shrink_memcg_cb':
mm/zswap.c:816:80: warning: pointer/integer type mismatch in conditional expression
816 | memcg = entry->objcg ? get_mem_cgroup_from_objcg(entry->objcg) : NULL;
| ^
mm/zswap.c: In function 'shrink_worker':
mm/zswap.c:896:51: error: invalid use of undefined type 'struct mem_cgroup'
896 | css_put(&pool->next_shrink->css);
| ^~
mm/zswap.c: In function 'zswap_pool_destroy':
mm/zswap.c:1054:43: error: invalid use of undefined type 'struct mem_cgroup'
1054 | css_put(&pool->next_shrink->css);
| ^~
mm/zswap.c: In function 'zswap_store':
mm/zswap.c:1446:23: warning: assignment to 'struct mem_cgroup *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
1446 | memcg = get_mem_cgroup_from_objcg(objcg);
| ^
mm/zswap.c:1448:39: error: invalid use of undefined type 'struct mem_cgroup'
1448 | css_put(&memcg->css);
| ^~
mm/zswap.c:1451:31: error: invalid use of undefined type 'struct mem_cgroup'
1451 | css_put(&memcg->css);
| ^~
mm/zswap.c:1497:23: warning: assignment to 'struct mem_cgroup *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
1497 | memcg = get_mem_cgroup_from_objcg(objcg);
| ^
mm/zswap.c:1499:31: error: invalid use of undefined type 'struct mem_cgroup'
1499 | css_put(&memcg->css);
| ^~
cc1: some warnings being treated as errors
vim +/cgroup_rstat_flush +546 mm/zswap.c
537
538 static unsigned long zswap_shrinker_count(struct shrinker *shrinker,
539 struct shrink_control *sc)
540 {
541 struct zswap_pool *pool = container_of(shrinker, typeof(*pool), shrinker);
542 struct mem_cgroup *memcg = sc->memcg;
543 struct lruvec *lruvec = mem_cgroup_lruvec(memcg, NODE_DATA(sc->nid));
544 unsigned long nr_backing, nr_stored, nr_freeable, flags;
545
> 546 cgroup_rstat_flush(memcg->css.cgroup);
547 nr_backing = memcg_page_state(memcg, MEMCG_ZSWAP_B) >> PAGE_SHIFT;
548 nr_stored = memcg_page_state(memcg, MEMCG_ZSWAPPED);
549
550 if (!is_shrinker_enabled(memcg) || !nr_stored)
551 return 0;
552
553 nr_freeable = list_lru_shrink_count(&pool->list_lru, sc);
554 /*
555 * Subtract the lru size by an estimate of the number of pages
556 * that should be protected.
557 */
558 spin_lock_irqsave(&lruvec->lru_lock, flags);
559 nr_freeable = nr_freeable > lruvec->nr_zswap_protected ?
560 nr_freeable - lruvec->nr_zswap_protected : 0;
561 spin_unlock_irqrestore(&lruvec->lru_lock, flags);
562
563 /*
564 * Scale the number of freeable pages by the memory saving factor.
565 * This ensures that the better zswap compresses memory, the fewer
566 * pages we will evict to swap (as it will otherwise incur IO for
567 * relatively small memory saving).
568 */
569 return mult_frac(nr_freeable, nr_backing, nr_stored);
570 }
571
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
prev parent reply other threads:[~2023-09-15 12:14 UTC|newest]
Thread overview: 5+ 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
2023-09-11 16:40 ` [PATCH 2/2] zswap: shrinks zswap pool based on memory pressure Nhat Pham
2023-09-15 12:13 ` kernel test robot [this message]
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=202309152048.GDMxTtFF-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 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).