From: kernel test robot <lkp@intel.com>
To: Kairui Song via B4 Relay <devnull+kasong.tencent.com@kernel.org>,
linux-mm@kvack.org
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
Andrew Morton <akpm@linux-foundation.org>,
Linux Memory Management List <linux-mm@kvack.org>,
Kemeng Shi <shikemeng@huaweicloud.com>,
Nhat Pham <nphamcs@gmail.com>, Baoquan He <bhe@redhat.com>,
Barry Song <baohua@kernel.org>,
Johannes Weiner <hannes@cmpxchg.org>,
David Hildenbrand <david@kernel.org>,
Lorenzo Stoakes <lorenzo.stoakes@oracle.com>,
Youngjun Park <youngjun.park@lge.com>,
linux-kernel@vger.kernel.org, Chris Li <chrisl@kernel.org>,
Kairui Song <kasong@tencent.com>
Subject: Re: [PATCH v3 09/12] mm, swap: use the swap table to track the swap count
Date: Wed, 18 Feb 2026 18:40:16 +0800 [thread overview]
Message-ID: <202602181835.58TEynxc-lkp@intel.com> (raw)
In-Reply-To: <20260218-swap-table-p3-v3-9-f4e34be021a7@tencent.com>
Hi Kairui,
kernel test robot noticed the following build warnings:
[auto build test WARNING on d9982f38eb6e9a0cb6bdd1116cc87f75a1084aad]
url: https://github.com/intel-lab-lkp/linux/commits/Kairui-Song-via-B4-Relay/mm-swap-protect-si-swap_file-properly-and-use-as-a-mount-indicator/20260218-040852
base: d9982f38eb6e9a0cb6bdd1116cc87f75a1084aad
patch link: https://lore.kernel.org/r/20260218-swap-table-p3-v3-9-f4e34be021a7%40tencent.com
patch subject: [PATCH v3 09/12] mm, swap: use the swap table to track the swap count
config: i386-buildonly-randconfig-001-20260218 (https://download.01.org/0day-ci/archive/20260218/202602181835.58TEynxc-lkp@intel.com/config)
compiler: clang version 20.1.8 (https://github.com/llvm/llvm-project 87f0227cb60147a26a1eeb4fb06e3b505e9c7261)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260218/202602181835.58TEynxc-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/202602181835.58TEynxc-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> mm/swapfile.c:1627:6: warning: shift count >= width of type [-Wshift-count-overflow]
1626 | VM_WARN_ON_ONCE(ci->extend_table[ci_off] >=
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1627 | (BIT(BITS_PER_TYPE(ci->extend_table[0]))) - 1);
| ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
include/vdso/bits.h:7:26: note: expanded from macro 'BIT'
7 | #define BIT(nr) (UL(1) << (nr))
| ^
include/linux/mmdebug.h:123:50: note: expanded from macro 'VM_WARN_ON_ONCE'
123 | #define VM_WARN_ON_ONCE(cond) (void)WARN_ON_ONCE(cond)
| ~~~~~~~~~~~~~^~~~~
include/asm-generic/bug.h:120:25: note: expanded from macro 'WARN_ON_ONCE'
120 | int __ret_warn_on = !!(condition); \
| ^~~~~~~~~
1 warning generated.
vim +1627 mm/swapfile.c
1596
1597 /* Increase the swap count of one slot. */
1598 static int __swap_cluster_dup_entry(struct swap_cluster_info *ci,
1599 unsigned int ci_off)
1600 {
1601 int count;
1602 unsigned long swp_tb;
1603
1604 lockdep_assert_held(&ci->lock);
1605 swp_tb = __swap_table_get(ci, ci_off);
1606 /* Bad or special slots can't be handled */
1607 if (WARN_ON_ONCE(swp_tb_is_bad(swp_tb)))
1608 return -EINVAL;
1609 count = __swp_tb_get_count(swp_tb);
1610 /* Must be either cached or have a count already */
1611 if (WARN_ON_ONCE(!count && !swp_tb_is_folio(swp_tb)))
1612 return -ENOENT;
1613
1614 if (likely(count < (SWP_TB_COUNT_MAX - 1))) {
1615 __swap_table_set(ci, ci_off, __swp_tb_mk_count(swp_tb, count + 1));
1616 VM_WARN_ON_ONCE(ci->extend_table && ci->extend_table[ci_off]);
1617 } else if (count == (SWP_TB_COUNT_MAX - 1)) {
1618 if (ci->extend_table) {
1619 VM_WARN_ON_ONCE(ci->extend_table[ci_off]);
1620 ci->extend_table[ci_off] = SWP_TB_COUNT_MAX;
1621 __swap_table_set(ci, ci_off, __swp_tb_mk_count(swp_tb, SWP_TB_COUNT_MAX));
1622 } else {
1623 return -ENOMEM;
1624 }
1625 } else if (count == SWP_TB_COUNT_MAX) {
1626 VM_WARN_ON_ONCE(ci->extend_table[ci_off] >=
> 1627 (BIT(BITS_PER_TYPE(ci->extend_table[0]))) - 1);
1628 ++ci->extend_table[ci_off];
1629 } else {
1630 /* Never happens unless counting went wrong */
1631 WARN_ON_ONCE(1);
1632 }
1633
1634 return 0;
1635 }
1636
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2026-02-18 10:40 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-17 20:06 [PATCH v3 00/12] mm, swap: swap table phase III: remove swap_map Kairui Song
2026-02-17 20:06 ` Kairui Song via B4 Relay
2026-02-17 20:06 ` [PATCH v3 01/12] mm, swap: protect si->swap_file properly and use as a mount indicator Kairui Song
2026-02-17 20:06 ` Kairui Song via B4 Relay
2026-02-19 6:36 ` Chris Li
2026-02-17 20:06 ` [PATCH v3 02/12] mm, swap: clean up swapon process and locking Kairui Song
2026-02-17 20:06 ` Kairui Song via B4 Relay
2026-02-19 6:45 ` Chris Li
2026-02-17 20:06 ` [PATCH v3 03/12] mm, swap: remove redundant arguments and locking for enabling a device Kairui Song
2026-02-17 20:06 ` Kairui Song via B4 Relay
2026-02-19 6:48 ` Chris Li
2026-02-17 20:06 ` [PATCH v3 04/12] mm, swap: consolidate bad slots setup and make it more robust Kairui Song
2026-02-17 20:06 ` Kairui Song via B4 Relay
2026-02-19 6:51 ` Chris Li
2026-02-17 20:06 ` [PATCH v3 05/12] mm/workingset: leave highest bits empty for anon shadow Kairui Song
2026-02-17 20:06 ` Kairui Song via B4 Relay
2026-02-19 6:56 ` Chris Li
2026-02-17 20:06 ` [PATCH v3 06/12] mm, swap: implement helpers for reserving data in the swap table Kairui Song
2026-02-17 20:06 ` Kairui Song via B4 Relay
2026-02-19 7:00 ` Chris Li
2026-02-17 20:06 ` [PATCH v3 07/12] mm, swap: mark bad slots in swap table directly Kairui Song
2026-02-17 20:06 ` Kairui Song via B4 Relay
2026-02-19 7:01 ` Chris Li
2026-02-17 20:06 ` [PATCH v3 08/12] mm, swap: simplify swap table sanity range check Kairui Song
2026-02-17 20:06 ` Kairui Song via B4 Relay
2026-02-19 7:02 ` Chris Li
2026-02-17 20:06 ` [PATCH v3 09/12] mm, swap: use the swap table to track the swap count Kairui Song
2026-02-17 20:06 ` Kairui Song via B4 Relay
2026-02-18 10:40 ` kernel test robot [this message]
2026-02-18 12:22 ` Kairui Song
2026-02-19 7:06 ` Chris Li
2026-05-11 11:19 ` Breno Leitao
2026-05-11 14:00 ` Kairui Song
2026-02-17 20:06 ` [PATCH v3 10/12] mm, swap: no need to truncate the scan border Kairui Song
2026-02-17 20:06 ` Kairui Song via B4 Relay
2026-02-19 7:10 ` Chris Li
2026-02-17 20:06 ` [PATCH v3 11/12] mm, swap: simplify checking if a folio is swapped Kairui Song
2026-02-17 20:06 ` Kairui Song via B4 Relay
2026-02-19 7:18 ` Chris Li
2026-02-17 20:06 ` [PATCH v3 12/12] mm, swap: no need to clear the shadow explicitly Kairui Song
2026-02-17 20:06 ` Kairui Song via B4 Relay
2026-02-19 7:19 ` Chris Li
2026-02-17 20:10 ` [PATCH v3 00/12] mm, swap: swap table phase III: remove swap_map Kairui Song
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=202602181835.58TEynxc-lkp@intel.com \
--to=lkp@intel.com \
--cc=akpm@linux-foundation.org \
--cc=baohua@kernel.org \
--cc=bhe@redhat.com \
--cc=chrisl@kernel.org \
--cc=david@kernel.org \
--cc=devnull+kasong.tencent.com@kernel.org \
--cc=hannes@cmpxchg.org \
--cc=kasong@tencent.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=llvm@lists.linux.dev \
--cc=lorenzo.stoakes@oracle.com \
--cc=nphamcs@gmail.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=shikemeng@huaweicloud.com \
--cc=youngjun.park@lge.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.