From: kernel test robot <lkp@intel.com>
To: Vincent Mailhol <mailhol@kernel.org>,
Nathan Chancellor <nathan@kernel.org>,
Nicolas Schier <nsc@kernel.org>,
Nick Desaulniers <nick.desaulniers+lkml@gmail.com>,
Bill Wendling <morbo@google.com>,
Justin Stitt <justinstitt@google.com>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>,
Thomas Zimmermann <tzimmermann@suse.de>,
David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
Chris Mason <chris.mason@fusionio.com>,
David Sterba <dsterba@suse.com>, Kees Cook <kees@kernel.org>,
"Gustavo A. R. Silva" <gustavoars@kernel.org>
Cc: oe-kbuild-all@lists.linux.dev, linux-kbuild@vger.kernel.org,
linux-sparse@vger.kernel.org, linux-kernel@vger.kernel.org,
llvm@lists.linux.dev, dri-devel@lists.freedesktop.org,
linux-btrfs@vger.kernel.org, linux-hardening@vger.kernel.org,
Vincent Mailhol <mailhol@kernel.org>
Subject: Re: [PATCH v3 3/3] overflow: Remove is_non_negative() and is_negative()
Date: Sat, 27 Dec 2025 16:49:41 +0800 [thread overview]
Message-ID: <202512271618.33YepxDC-lkp@intel.com> (raw)
In-Reply-To: <20251220-remove_wtype-limits-v3-3-24b170af700e@kernel.org>
Hi Vincent,
kernel test robot noticed the following build warnings:
[auto build test WARNING on 3e7f562e20ee87a25e104ef4fce557d39d62fa85]
url: https://github.com/intel-lab-lkp/linux/commits/Vincent-Mailhol/kbuild-remove-gcc-s-Wtype-limits/20251220-190509
base: 3e7f562e20ee87a25e104ef4fce557d39d62fa85
patch link: https://lore.kernel.org/r/20251220-remove_wtype-limits-v3-3-24b170af700e%40kernel.org
patch subject: [PATCH v3 3/3] overflow: Remove is_non_negative() and is_negative()
config: sparc-randconfig-r072-20251227 (https://download.01.org/0day-ci/archive/20251227/202512271618.33YepxDC-lkp@intel.com/config)
compiler: sparc64-linux-gcc (GCC) 15.1.0
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/202512271618.33YepxDC-lkp@intel.com/
smatch warnings:
drivers/block/nbd.c:1612 __nbd_ioctl() warn: unsigned '_a' is never less than zero.
vim +/_a +1612 drivers/block/nbd.c
55313e92bd17a87 Mike Christie 2019-08-13 1591
9442b739207aab6 Josef Bacik 2017-02-07 1592 /* Must be called with config_lock held */
9442b739207aab6 Josef Bacik 2017-02-07 1593 static int __nbd_ioctl(struct block_device *bdev, struct nbd_device *nbd,
9442b739207aab6 Josef Bacik 2017-02-07 1594 unsigned int cmd, unsigned long arg)
9442b739207aab6 Josef Bacik 2017-02-07 1595 {
5ea8d10802ec4c1 Josef Bacik 2017-04-06 1596 struct nbd_config *config = nbd->config;
fad7cd3310db309 Baokun Li 2021-08-04 1597 loff_t bytesize;
5ea8d10802ec4c1 Josef Bacik 2017-04-06 1598
9442b739207aab6 Josef Bacik 2017-02-07 1599 switch (cmd) {
9442b739207aab6 Josef Bacik 2017-02-07 1600 case NBD_DISCONNECT:
29eaadc0364943b Josef Bacik 2017-04-06 1601 return nbd_disconnect(nbd);
9442b739207aab6 Josef Bacik 2017-02-07 1602 case NBD_CLEAR_SOCK:
0c1c9a27ce909e3 Christoph Hellwig 2023-08-11 1603 nbd_clear_sock_ioctl(nbd);
29eaadc0364943b Josef Bacik 2017-04-06 1604 return 0;
9442b739207aab6 Josef Bacik 2017-02-07 1605 case NBD_SET_SOCK:
e46c7287b1c2768 Josef Bacik 2017-04-06 1606 return nbd_add_socket(nbd, arg, false);
9442b739207aab6 Josef Bacik 2017-02-07 1607 case NBD_SET_BLKSIZE:
dcbddf541f18e36 Christoph Hellwig 2020-11-16 1608 return nbd_set_size(nbd, config->bytesize, arg);
9442b739207aab6 Josef Bacik 2017-02-07 1609 case NBD_SET_SIZE:
41e76c6a3c83c85 Nick Desaulniers 2021-09-20 1610 return nbd_set_size(nbd, arg, nbd_blksize(config));
9442b739207aab6 Josef Bacik 2017-02-07 1611 case NBD_SET_SIZE_BLOCKS:
41e76c6a3c83c85 Nick Desaulniers 2021-09-20 @1612 if (check_shl_overflow(arg, config->blksize_bits, &bytesize))
fad7cd3310db309 Baokun Li 2021-08-04 1613 return -EINVAL;
41e76c6a3c83c85 Nick Desaulniers 2021-09-20 1614 return nbd_set_size(nbd, bytesize, nbd_blksize(config));
9442b739207aab6 Josef Bacik 2017-02-07 1615 case NBD_SET_TIMEOUT:
55313e92bd17a87 Mike Christie 2019-08-13 1616 nbd_set_cmd_timeout(nbd, arg);
9442b739207aab6 Josef Bacik 2017-02-07 1617 return 0;
9442b739207aab6 Josef Bacik 2017-02-07 1618
9442b739207aab6 Josef Bacik 2017-02-07 1619 case NBD_SET_FLAGS:
5ea8d10802ec4c1 Josef Bacik 2017-04-06 1620 config->flags = arg;
9442b739207aab6 Josef Bacik 2017-02-07 1621 return 0;
9442b739207aab6 Josef Bacik 2017-02-07 1622 case NBD_DO_IT:
2a852a693f8839b Christoph Hellwig 2022-03-30 1623 return nbd_start_device_ioctl(nbd);
^1da177e4c3f415 Linus Torvalds 2005-04-16 1624 case NBD_CLEAR_QUE:
4b2f0260c74324a Herbert Xu 2006-01-06 1625 /*
4b2f0260c74324a Herbert Xu 2006-01-06 1626 * This is for compatibility only. The queue is always cleared
4b2f0260c74324a Herbert Xu 2006-01-06 1627 * by NBD_DO_IT or NBD_CLEAR_SOCK.
4b2f0260c74324a Herbert Xu 2006-01-06 1628 */
^1da177e4c3f415 Linus Torvalds 2005-04-16 1629 return 0;
^1da177e4c3f415 Linus Torvalds 2005-04-16 1630 case NBD_PRINT_DEBUG:
fd8383fd88a2fd8 Josef Bacik 2016-09-08 1631 /*
fd8383fd88a2fd8 Josef Bacik 2016-09-08 1632 * For compatibility only, we no longer keep a list of
fd8383fd88a2fd8 Josef Bacik 2016-09-08 1633 * outstanding requests.
fd8383fd88a2fd8 Josef Bacik 2016-09-08 1634 */
^1da177e4c3f415 Linus Torvalds 2005-04-16 1635 return 0;
^1da177e4c3f415 Linus Torvalds 2005-04-16 1636 }
1a2ad21128bb4eb Pavel Machek 2009-04-02 1637 return -ENOTTY;
1a2ad21128bb4eb Pavel Machek 2009-04-02 1638 }
1a2ad21128bb4eb Pavel Machek 2009-04-02 1639
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2025-12-27 8:50 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-20 11:02 [PATCH v3 0/3] kbuild: remove gcc's -Wtype-limits Vincent Mailhol
2025-12-20 11:02 ` [PATCH v3 1/3] " Vincent Mailhol
2025-12-20 11:02 ` [PATCH v3 2/3] kbuild: cleanup local -Wno-type-limits exceptions Vincent Mailhol
2025-12-20 12:53 ` Nicolas Schier
2025-12-20 11:02 ` [PATCH v3 3/3] overflow: Remove is_non_negative() and is_negative() Vincent Mailhol
2025-12-20 12:52 ` Nicolas Schier
2025-12-22 10:03 ` kernel test robot
2025-12-22 18:39 ` Vincent Mailhol
2025-12-22 19:55 ` kernel test robot
2025-12-25 6:04 ` kernel test robot
2025-12-27 8:49 ` kernel test robot [this message]
2025-12-28 1:41 ` kernel test robot
2026-01-01 15:10 ` Vincent Mailhol
2026-01-01 19:39 ` Nicolas Schier
2026-01-02 11:04 ` Miguel Ojeda
2026-01-02 22:26 ` Vincent Mailhol
2026-01-02 22:29 ` [PATCH] overflow: Update is_non_negative() and is_negative() comment Vincent Mailhol
2026-01-03 10:02 ` Dan Carpenter
2026-01-03 11:10 ` Vincent Mailhol
2026-01-03 16:56 ` Dan Carpenter
2026-01-03 19:40 ` Vincent Mailhol
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=202512271618.33YepxDC-lkp@intel.com \
--to=lkp@intel.com \
--cc=airlied@gmail.com \
--cc=chris.mason@fusionio.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=dsterba@suse.com \
--cc=gustavoars@kernel.org \
--cc=justinstitt@google.com \
--cc=kees@kernel.org \
--cc=linux-btrfs@vger.kernel.org \
--cc=linux-hardening@vger.kernel.org \
--cc=linux-kbuild@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sparse@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mailhol@kernel.org \
--cc=morbo@google.com \
--cc=mripard@kernel.org \
--cc=nathan@kernel.org \
--cc=nick.desaulniers+lkml@gmail.com \
--cc=nsc@kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=simona@ffwll.ch \
--cc=tzimmermann@suse.de \
/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).