From: Qi Zheng <qi.zheng@linux.dev>
To: kernel test robot <lkp@intel.com>
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH v3 24/30] mm: memcontrol: prepare for reparenting LRU pages for lruvec lock
Date: Fri, 16 Jan 2026 16:16:31 +0800 [thread overview]
Message-ID: <a8128951-326d-454e-84e2-8b7cdf797b8d@linux.dev> (raw)
In-Reply-To: <202601152057.xgusZpKm-lkp@intel.com>
Hi,
The compilation problem I see in the report occurs under the following
configuration:
1. enable CONFIG_WARN_CONTEXT_ANALYSIS_ALL
2. make CC=clang bzImage
Could you please test whether the following fixes can resolve the
compilation issue?
Thanks!
```
diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h
index e0b84b109b7ac..f28c5ef9bf604 100644
--- a/include/linux/memcontrol.h
+++ b/include/linux/memcontrol.h
@@ -742,15 +742,9 @@ struct mem_cgroup *get_mem_cgroup_from_current(void);
struct mem_cgroup *get_mem_cgroup_from_folio(struct folio *folio);
struct lruvec *folio_lruvec_lock(struct folio *folio);
- __acquires(&lruvec->lru_lock)
- __acquires(rcu)
struct lruvec *folio_lruvec_lock_irq(struct folio *folio);
- __acquires(&lruvec->lru_lock)
- __acquires(rcu)
struct lruvec *folio_lruvec_lock_irqsave(struct folio *folio,
unsigned long *flags);
- __acquires(&lruvec->lru_lock)
- __acquires(rcu)
static inline
struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *css){
@@ -1477,38 +1471,10 @@ static inline struct lruvec
*parent_lruvec(struct lruvec *lruvec)
return mem_cgroup_lruvec(memcg, lruvec_pgdat(lruvec));
}
-static inline void lruvec_lock_irq(struct lruvec *lruvec)
- __acquires(&lruvec->lru_lock)
- __acquires(rcu)
-{
- rcu_read_lock();
- spin_lock_irq(&lruvec->lru_lock);
-}
-
-static inline void lruvec_unlock(struct lruvec *lruvec)
- __releases(&lruvec->lru_lock)
- __releases(rcu)
-{
- spin_unlock(&lruvec->lru_lock);
- rcu_read_unlock();
-}
-
-static inline void lruvec_unlock_irq(struct lruvec *lruvec)
- __releases(&lruvec->lru_lock)
- __releases(rcu)
-{
- spin_unlock_irq(&lruvec->lru_lock);
- rcu_read_unlock();
-}
-
-static inline void lruvec_unlock_irqrestore(struct lruvec *lruvec,
- unsigned long flags)
- __releases(&lruvec->lru_lock)
- __releases(rcu)
-{
- spin_unlock_irqrestore(&lruvec->lru_lock, flags);
- rcu_read_unlock();
-}
+void lruvec_lock_irq(struct lruvec *lruvec);
+void lruvec_unlock(struct lruvec *lruvec);
+void lruvec_unlock_irq(struct lruvec *lruvec);
+void lruvec_unlock_irqrestore(struct lruvec *lruvec, unsigned long flags);
/* Test requires a stable folio->memcg binding, see folio_memcg() */
static inline bool folio_matches_lruvec(struct folio *folio,
diff --git a/include/linux/swap.h b/include/linux/swap.h
index 4449d1f371a56..77a6a9fa11981 100644
--- a/include/linux/swap.h
+++ b/include/linux/swap.h
@@ -328,9 +328,7 @@ extern unsigned long totalreserve_pages;
/* linux/mm/swap.c */
void lru_note_cost_unlock_irq(struct lruvec *lruvec, bool file,
- unsigned int nr_io, unsigned int nr_rotated)
- __releases(lruvec->lru_lock);
- __releases(rcu)
+ unsigned int nr_io, unsigned int nr_rotated);
void lru_note_cost_refault(struct folio *);
void folio_add_lru(struct folio *);
void folio_add_lru_vma(struct folio *, struct vm_area_struct *);
diff --git a/mm/memcontrol.c b/mm/memcontrol.c
index c303c483f55a4..8907c9ea33bbc 100644
--- a/mm/memcontrol.c
+++ b/mm/memcontrol.c
@@ -1313,6 +1313,39 @@ void mem_cgroup_scan_tasks(struct mem_cgroup *memcg,
}
}
+void lruvec_lock_irq(struct lruvec *lruvec)
+ __acquires(&lruvec->lru_lock)
+ __acquires(rcu)
+{
+ rcu_read_lock();
+ spin_lock_irq(&lruvec->lru_lock);
+}
+
+void lruvec_unlock(struct lruvec *lruvec)
+ __releases(&lruvec->lru_lock)
+ __releases(rcu)
+{
+ spin_unlock(&lruvec->lru_lock);
+ rcu_read_unlock();
+}
+
+void lruvec_unlock_irq(struct lruvec *lruvec)
+ __releases(&lruvec->lru_lock)
+ __releases(rcu)
+{
+ spin_unlock_irq(&lruvec->lru_lock);
+ rcu_read_unlock();
+}
+
+void lruvec_unlock_irqrestore(struct lruvec *lruvec,
+ unsigned long flags)
+ __releases(&lruvec->lru_lock)
+ __releases(rcu)
+{
+ spin_unlock_irqrestore(&lruvec->lru_lock, flags);
+ rcu_read_unlock();
+}
+
/**
* folio_lruvec_lock - Lock the lruvec for a folio.
* @folio: Pointer to the folio.
```
On 1/15/26 8:34 PM, kernel test robot wrote:
> Hi Qi,
>
> kernel test robot noticed the following build errors:
>
> [auto build test ERROR on next-20260114]
> [cannot apply to akpm-mm/mm-everything brauner-vfs/vfs.all trace/for-next linus/master dennis-percpu/for-next v6.19-rc5 v6.19-rc4 v6.19-rc3 v6.19-rc5]
> [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/Qi-Zheng/mm-memcontrol-remove-dead-code-of-checking-parent-memory-cgroup/20260114-193921
> base: next-20260114
> patch link: https://lore.kernel.org/r/0252f9acc29d4b1e9b8252dc003aff065c8ac1f6.1768389889.git.zhengqi.arch%40bytedance.com
> patch subject: [PATCH v3 24/30] mm: memcontrol: prepare for reparenting LRU pages for lruvec lock
> config: powerpc64-randconfig-002-20260115 (https://download.01.org/0day-ci/archive/20260115/202601152057.xgusZpKm-lkp@intel.com/config)
> compiler: clang version 22.0.0git (https://github.com/llvm/llvm-project 9b8addffa70cee5b2acc5454712d9cf78ce45710)
> reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260115/202601152057.xgusZpKm-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/202601152057.xgusZpKm-lkp@intel.com/
>
> All errors (new ones prefixed by >>):
>
> In file included from crypto/ahash.c:26:
> In file included from include/net/netlink.h:6:
> In file included from include/linux/netlink.h:9:
> In file included from include/net/scm.h:9:
> In file included from include/linux/security.h:35:
> In file included from include/linux/bpf.h:32:
>>> include/linux/memcontrol.h:772:14: error: use of undeclared identifier 'lruvec'
> 772 | __acquires(&lruvec->lru_lock)
> | ^~~~~~
> include/linux/memcontrol.h:773:13: error: use of undeclared identifier 'rcu'
> 773 | __acquires(rcu)
> | ^~~
> include/linux/memcontrol.h:775:14: error: use of undeclared identifier 'lruvec'
> 775 | __acquires(&lruvec->lru_lock)
> | ^~~~~~
> include/linux/memcontrol.h:776:13: error: use of undeclared identifier 'rcu'
> 776 | __acquires(rcu)
> | ^~~
> include/linux/memcontrol.h:779:14: error: use of undeclared identifier 'lruvec'
> 779 | __acquires(&lruvec->lru_lock)
> | ^~~~~~
> include/linux/memcontrol.h:780:13: error: use of undeclared identifier 'rcu'
> 780 | __acquires(rcu)
> | ^~~
> include/linux/memcontrol.h:1507:13: error: use of undeclared identifier 'rcu'
> 1507 | __acquires(rcu)
> | ^~~
> include/linux/memcontrol.h:1515:13: error: use of undeclared identifier 'rcu'
> 1515 | __releases(rcu)
> | ^~~
> include/linux/memcontrol.h:1523:13: error: use of undeclared identifier 'rcu'
> 1523 | __releases(rcu)
> | ^~~
> include/linux/memcontrol.h:1532:13: error: use of undeclared identifier 'rcu'
> 1532 | __releases(rcu)
> | ^~~
> In file included from crypto/ahash.c:26:
> In file included from include/net/netlink.h:6:
> In file included from include/linux/netlink.h:9:
> In file included from include/net/scm.h:13:
> In file included from include/net/compat.h:8:
> include/linux/compat.h:454:22: warning: array index 3 is past the end of the array (that has type 'const unsigned long[1]') [-Warray-bounds]
> 454 | case 4: v.sig[7] = (set->sig[3] >> 32); v.sig[6] = set->sig[3];
> | ^ ~
> arch/powerpc/include/uapi/asm/signal.h:18:2: note: array 'sig' declared here
> 18 | unsigned long sig[_NSIG_WORDS];
> | ^
> In file included from crypto/ahash.c:26:
> In file included from include/net/netlink.h:6:
> In file included from include/linux/netlink.h:9:
> In file included from include/net/scm.h:13:
> In file included from include/net/compat.h:8:
> include/linux/compat.h:454:10: warning: array index 7 is past the end of the array (that has type 'compat_sigset_word[2]' (aka 'unsigned int[2]')) [-Warray-bounds]
> 454 | case 4: v.sig[7] = (set->sig[3] >> 32); v.sig[6] = set->sig[3];
> | ^ ~
> include/linux/compat.h:130:2: note: array 'sig' declared here
> 130 | compat_sigset_word sig[_COMPAT_NSIG_WORDS];
> | ^
> include/linux/compat.h:454:42: warning: array index 6 is past the end of the array (that has type 'compat_sigset_word[2]' (aka 'unsigned int[2]')) [-Warray-bounds]
> 454 | case 4: v.sig[7] = (set->sig[3] >> 32); v.sig[6] = set->sig[3];
> | ^ ~
> include/linux/compat.h:130:2: note: array 'sig' declared here
> 130 | compat_sigset_word sig[_COMPAT_NSIG_WORDS];
> | ^
> include/linux/compat.h:454:53: warning: array index 3 is past the end of the array (that has type 'const unsigned long[1]') [-Warray-bounds]
> 454 | case 4: v.sig[7] = (set->sig[3] >> 32); v.sig[6] = set->sig[3];
> | ^ ~
> arch/powerpc/include/uapi/asm/signal.h:18:2: note: array 'sig' declared here
> 18 | unsigned long sig[_NSIG_WORDS];
> | ^
> In file included from crypto/ahash.c:26:
> In file included from include/net/netlink.h:6:
> In file included from include/linux/netlink.h:9:
> In file included from include/net/scm.h:13:
> In file included from include/net/compat.h:8:
> include/linux/compat.h:456:22: warning: array index 2 is past the end of the array (that has type 'const unsigned long[1]') [-Warray-bounds]
> 456 | case 3: v.sig[5] = (set->sig[2] >> 32); v.sig[4] = set->sig[2];
> | ^ ~
> arch/powerpc/include/uapi/asm/signal.h:18:2: note: array 'sig' declared here
> 18 | unsigned long sig[_NSIG_WORDS];
> | ^
> In file included from crypto/ahash.c:26:
> In file included from include/net/netlink.h:6:
> In file included from include/linux/netlink.h:9:
> In file included from include/net/scm.h:13:
> In file included from include/net/compat.h:8:
> include/linux/compat.h:456:10: warning: array index 5 is past the end of the array (that has type 'compat_sigset_word[2]' (aka 'unsigned int[2]')) [-Warray-bounds]
> 456 | case 3: v.sig[5] = (set->sig[2] >> 32); v.sig[4] = set->sig[2];
> | ^ ~
> include/linux/compat.h:130:2: note: array 'sig' declared here
> 130 | compat_sigset_word sig[_COMPAT_NSIG_WORDS];
> | ^
> include/linux/compat.h:456:42: warning: array index 4 is past the end of the array (that has type 'compat_sigset_word[2]' (aka 'unsigned int[2]')) [-Warray-bounds]
> 456 | case 3: v.sig[5] = (set->sig[2] >> 32); v.sig[4] = set->sig[2];
> | ^ ~
> include/linux/compat.h:130:2: note: array 'sig' declared here
> 130 | compat_sigset_word sig[_COMPAT_NSIG_WORDS];
> | ^
> include/linux/compat.h:456:53: warning: array index 2 is past the end of the array (that has type 'const unsigned long[1]') [-Warray-bounds]
> 456 | case 3: v.sig[5] = (set->sig[2] >> 32); v.sig[4] = set->sig[2];
> | ^ ~
> arch/powerpc/include/uapi/asm/signal.h:18:2: note: array 'sig' declared here
> 18 | unsigned long sig[_NSIG_WORDS];
> | ^
> In file included from crypto/ahash.c:26:
> In file included from include/net/netlink.h:6:
> In file included from include/linux/netlink.h:9:
>
>
> vim +/lruvec +772 include/linux/memcontrol.h
>
> 770
> 771 struct lruvec *folio_lruvec_lock(struct folio *folio);
> > 772 __acquires(&lruvec->lru_lock)
> 773 __acquires(rcu)
> 774 struct lruvec *folio_lruvec_lock_irq(struct folio *folio);
> 775 __acquires(&lruvec->lru_lock)
> 776 __acquires(rcu)
> 777 struct lruvec *folio_lruvec_lock_irqsave(struct folio *folio,
> 778 unsigned long *flags);
> 779 __acquires(&lruvec->lru_lock)
> 780 __acquires(rcu)
> 781
>
next prev parent reply other threads:[~2026-01-16 8:16 UTC|newest]
Thread overview: 107+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-14 11:26 [PATCH v3 00/30] Eliminate Dying Memory Cgroup Qi Zheng
2026-01-14 11:26 ` [PATCH v3 01/30] mm: memcontrol: remove dead code of checking parent memory cgroup Qi Zheng
2026-01-14 11:26 ` [PATCH v3 02/30] mm: workingset: use folio_lruvec() in workingset_refault() Qi Zheng
2026-01-14 11:26 ` [PATCH v3 03/30] mm: rename unlock_page_lruvec_irq and its variants Qi Zheng
2026-01-14 11:26 ` [PATCH v3 04/30] mm: vmscan: prepare for the refactoring the move_folios_to_lru() Qi Zheng
2026-01-16 9:10 ` Harry Yoo
2026-01-16 9:14 ` Muchun Song
2026-01-14 11:26 ` [PATCH v3 05/30] mm: vmscan: refactor move_folios_to_lru() Qi Zheng
2026-01-16 11:31 ` Harry Yoo
2026-01-14 11:26 ` [PATCH v3 06/30] mm: memcontrol: allocate object cgroup for non-kmem case Qi Zheng
2026-01-14 11:32 ` [PATCH v3 07/30] mm: memcontrol: return root object cgroup for root memory cgroup Qi Zheng
2026-01-16 12:53 ` Harry Yoo
2026-01-14 11:32 ` [PATCH v3 08/30] mm: memcontrol: prevent memory cgroup release in get_mem_cgroup_from_folio() Qi Zheng
2026-01-17 20:00 ` Shakeel Butt
2026-01-18 0:31 ` Shakeel Butt
2026-01-19 3:20 ` Qi Zheng
2026-01-19 8:53 ` Harry Yoo
2026-01-14 11:32 ` [PATCH v3 09/30] buffer: prevent memory cgroup release in folio_alloc_buffers() Qi Zheng
2026-01-14 11:32 ` [PATCH v3 10/30] writeback: prevent memory cgroup release in writeback module Qi Zheng
2026-01-14 11:32 ` [PATCH v3 11/30] mm: memcontrol: prevent memory cgroup release in count_memcg_folio_events() Qi Zheng
2026-01-14 11:32 ` [PATCH v3 12/30] mm: page_io: prevent memory cgroup release in page_io module Qi Zheng
2026-01-14 11:32 ` [PATCH v3 13/30] mm: migrate: prevent memory cgroup release in folio_migrate_mapping() Qi Zheng
2026-01-14 11:32 ` [PATCH v3 14/30] mm: mglru: prevent memory cgroup release in mglru Qi Zheng
2026-01-17 22:46 ` Shakeel Butt
2026-01-19 9:25 ` Harry Yoo
2026-01-14 11:32 ` [PATCH v3 15/30] mm: memcontrol: prevent memory cgroup release in mem_cgroup_swap_full() Qi Zheng
2026-01-14 11:32 ` [PATCH v3 16/30] mm: workingset: prevent memory cgroup release in lru_gen_eviction() Qi Zheng
2026-01-14 11:32 ` [PATCH v3 17/30] mm: thp: prevent memory cgroup release in folio_split_queue_lock{_irqsave}() Qi Zheng
2026-01-16 9:15 ` Muchun Song
2026-01-14 11:32 ` [PATCH v3 18/30] mm: zswap: prevent memory cgroup release in zswap_compress() Qi Zheng
2026-01-16 9:18 ` Muchun Song
2026-01-20 7:47 ` Harry Yoo
2026-01-14 11:32 ` [PATCH v3 19/30] mm: workingset: prevent lruvec release in workingset_refault() Qi Zheng
2026-01-17 23:02 ` Shakeel Butt
2026-01-14 11:32 ` [PATCH v3 20/30] mm: zswap: prevent lruvec release in zswap_folio_swapin() Qi Zheng
2026-01-14 11:32 ` [PATCH v3 21/30] mm: swap: prevent lruvec release in lru_gen_clear_refs() Qi Zheng
2026-01-14 11:32 ` [PATCH v3 22/30] mm: workingset: prevent lruvec release in workingset_activation() Qi Zheng
2026-01-14 11:32 ` [PATCH v3 23/30] mm: do not open-code lruvec lock Qi Zheng
2026-01-15 9:26 ` Baoquan He
2026-01-15 9:31 ` Qi Zheng
2026-01-16 9:20 ` Muchun Song
2026-01-17 23:08 ` Shakeel Butt
2026-01-20 7:58 ` Harry Yoo
2026-01-14 11:32 ` [PATCH v3 24/30] mm: memcontrol: prepare for reparenting LRU pages for " Qi Zheng
2026-01-15 12:34 ` kernel test robot
2026-01-16 8:16 ` Qi Zheng [this message]
2026-01-16 10:41 ` Philip Li
2026-01-16 11:06 ` Qi Zheng
2026-01-15 12:44 ` kernel test robot
2026-01-16 6:29 ` kernel test robot
2026-01-16 9:43 ` Muchun Song
2026-01-16 9:50 ` Qi Zheng
2026-01-18 0:44 ` Shakeel Butt
2026-01-19 3:44 ` Qi Zheng
2026-01-20 15:54 ` Shakeel Butt
2026-01-18 0:46 ` Shakeel Butt
2026-01-20 8:21 ` Harry Yoo
2026-01-20 11:51 ` Qi Zheng
2026-01-20 12:50 ` Harry Yoo
2026-01-14 11:32 ` [PATCH v3 25/30] mm: vmscan: prepare for reparenting traditional LRU folios Qi Zheng
2026-01-16 9:49 ` Muchun Song
2026-01-18 1:11 ` Shakeel Butt
2026-01-19 3:24 ` Qi Zheng
2026-01-14 11:32 ` [PATCH v3 26/30] mm: vmscan: prepare for reparenting MGLRU folios Qi Zheng
2026-01-15 10:44 ` [PATCH v3 26/30 fix] mm: mglru: do not call update_lru_size() during reparenting Qi Zheng
2026-01-15 17:46 ` Andrew Morton
2026-01-21 3:53 ` Harry Yoo
2026-01-21 4:19 ` Harry Yoo
2026-01-21 11:21 ` Qi Zheng
2026-01-18 3:25 ` [PATCH v3 26/30] mm: vmscan: prepare for reparenting MGLRU folios Shakeel Butt
2026-01-18 3:29 ` Shakeel Butt
2026-01-19 3:39 ` Qi Zheng
2026-01-14 11:32 ` [PATCH v3 27/30] mm: memcontrol: refactor memcg_reparent_objcgs() Qi Zheng
2026-01-18 2:31 ` Shakeel Butt
2026-01-22 9:04 ` Harry Yoo
2026-01-22 9:13 ` Muchun Song
2026-01-14 11:32 ` [PATCH v3 28/30] mm: memcontrol: prepare for reparenting state_local Qi Zheng
2026-01-15 10:41 ` [PATCH v3 28/30 fix 1/2] mm: memcontrol: fix lruvec_stats->state_local reparenting Qi Zheng
2026-01-15 10:41 ` [PATCH v3 28/30 fix 2/2] mm: memcontrol: change state_locals to atomic_long_t type Qi Zheng
2026-01-15 17:47 ` [PATCH v3 28/30 fix 1/2] mm: memcontrol: fix lruvec_stats->state_local reparenting Andrew Morton
2026-01-16 3:27 ` Qi Zheng
2026-01-18 3:22 ` Shakeel Butt
2026-01-19 3:36 ` Qi Zheng
2026-01-20 7:19 ` Muchun Song
2026-01-20 18:47 ` Shakeel Butt
2026-01-21 3:43 ` Qi Zheng
2026-01-21 8:20 ` Shakeel Butt
2026-01-21 11:25 ` Qi Zheng
2026-01-18 3:20 ` [PATCH v3 28/30] mm: memcontrol: prepare for reparenting state_local Shakeel Butt
2026-01-19 3:34 ` Qi Zheng
2026-01-29 2:10 ` Harry Yoo
2026-01-29 8:50 ` Qi Zheng
2026-01-29 12:23 ` Harry Yoo
2026-01-30 7:22 ` Qi Zheng
2026-02-02 3:15 ` Harry Yoo
2026-01-14 11:32 ` [PATCH v3 29/30] mm: memcontrol: eliminate the problem of dying memory cgroup for LRU folios Qi Zheng
2026-01-14 11:32 ` [PATCH v3 30/30] mm: lru: add VM_WARN_ON_ONCE_FOLIO to lru maintenance helpers Qi Zheng
2026-01-14 17:07 ` [syzbot ci] Re: Eliminate Dying Memory Cgroup syzbot ci
2026-01-15 3:47 ` Qi Zheng
2026-01-14 17:58 ` [PATCH v3 00/30] " Andrew Morton
2026-01-15 3:52 ` Qi Zheng
2026-01-15 5:59 ` Andrew Morton
2026-01-15 6:05 ` Qi Zheng
2026-01-15 12:40 ` Lorenzo Stoakes
2026-01-16 0:43 ` Andrew Morton
2026-01-16 8:33 ` Lorenzo Stoakes
2026-01-16 12:25 ` 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=a8128951-326d-454e-84e2-8b7cdf797b8d@linux.dev \
--to=qi.zheng@linux.dev \
--cc=lkp@intel.com \
--cc=llvm@lists.linux.dev \
--cc=oe-kbuild-all@lists.linux.dev \
/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.