From: kernel test robot <lkp@intel.com>
To: Maximilian Pezzullo via B4 Relay
<devnull+maximilianpezzullo.gmail.com@kernel.org>,
Andrew Morton <akpm@linux-foundation.org>,
David Hildenbrand <david@kernel.org>,
Lorenzo Stoakes <lorenzo.stoakes@oracle.com>,
"Liam R. Howlett" <Liam.Howlett@oracle.com>,
Vlastimil Babka <vbabka@kernel.org>,
Mike Rapoport <rppt@kernel.org>,
Suren Baghdasaryan <surenb@google.com>,
Michal Hocko <mhocko@suse.com>
Cc: oe-kbuild-all@lists.linux.dev,
Linux Memory Management List <linux-mm@kvack.org>,
linux-kernel@vger.kernel.org,
Terry M <terrym3201@bugzilla.kernel.org>,
Maximilian Pezzullo <maximilianpezzullo@gmail.com>
Subject: Re: [PATCH] mm/vmstat: reject zero vm.stat_interval to prevent busy-loop
Date: Thu, 5 Mar 2026 08:33:54 +0800 [thread overview]
Message-ID: <202603050819.oMnaHoIC-lkp@intel.com> (raw)
In-Reply-To: <20260304-mm-vmstat-reject-zero-vm-stat_interval-to-prevent-busy-loop-v1-1-c03c9555ff15@gmail.com>
Hi Maximilian,
kernel test robot noticed the following build warnings:
[auto build test WARNING on af4e9ef3d78420feb8fe58cd9a1ab80c501b3c08]
url: https://github.com/intel-lab-lkp/linux/commits/Maximilian-Pezzullo-via-B4-Relay/mm-vmstat-reject-zero-vm-stat_interval-to-prevent-busy-loop/20260304-153052
base: af4e9ef3d78420feb8fe58cd9a1ab80c501b3c08
patch link: https://lore.kernel.org/r/20260304-mm-vmstat-reject-zero-vm-stat_interval-to-prevent-busy-loop-v1-1-c03c9555ff15%40gmail.com
patch subject: [PATCH] mm/vmstat: reject zero vm.stat_interval to prevent busy-loop
config: parisc-randconfig-002-20260305 (https://download.01.org/0day-ci/archive/20260305/202603050819.oMnaHoIC-lkp@intel.com/config)
compiler: hppa-linux-gcc (GCC) 8.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260305/202603050819.oMnaHoIC-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/202603050819.oMnaHoIC-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> mm/vmstat.c:2117:12: warning: 'vmstat_interval_handler' defined but not used [-Wunused-function]
static int vmstat_interval_handler(const struct ctl_table *table, int write,
^~~~~~~~~~~~~~~~~~~~~~~
vim +/vmstat_interval_handler +2117 mm/vmstat.c
2116
> 2117 static int vmstat_interval_handler(const struct ctl_table *table, int write,
2118 void *buffer, size_t *lenp, loff_t *ppos)
2119 {
2120 int ret = proc_dointvec_jiffies(table, write, buffer, lenp, ppos);
2121
2122 if (ret == 0 && write && sysctl_stat_interval == 0) {
2123 sysctl_stat_interval = HZ;
2124 return -EINVAL;
2125 }
2126 return ret;
2127 }
2128
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
prev parent reply other threads:[~2026-03-05 0:35 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-04 7:27 Maximilian Pezzullo via B4 Relay
2026-03-04 9:27 ` Michal Hocko
2026-03-04 12:38 ` Vlastimil Babka (SUSE)
2026-03-05 0:33 ` 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=202603050819.oMnaHoIC-lkp@intel.com \
--to=lkp@intel.com \
--cc=Liam.Howlett@oracle.com \
--cc=akpm@linux-foundation.org \
--cc=david@kernel.org \
--cc=devnull+maximilianpezzullo.gmail.com@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=lorenzo.stoakes@oracle.com \
--cc=maximilianpezzullo@gmail.com \
--cc=mhocko@suse.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=rppt@kernel.org \
--cc=surenb@google.com \
--cc=terrym3201@bugzilla.kernel.org \
--cc=vbabka@kernel.org \
/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