public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 1/1] ceph: Amend checking to fix `make W=1` build breakage
@ 2025-11-10 14:44 Andy Shevchenko
  2025-11-10 19:37 ` Viacheslav Dubeyko
  2025-11-25  9:55 ` david laight
  0 siblings, 2 replies; 17+ messages in thread
From: Andy Shevchenko @ 2025-11-10 14:44 UTC (permalink / raw)
  To: Andy Shevchenko, ceph-devel, linux-kernel, llvm
  Cc: Xiubo Li, Ilya Dryomov, Nathan Chancellor, Nick Desaulniers,
	Bill Wendling, Justin Stitt

In a few cases the code compares 32-bit value to a SIZE_MAX derived
constant which is much higher than that value on 64-bit platforms,
Clang, in particular, is not happy about this

fs/ceph/snap.c:377:10: error: result of comparison of constant 2305843009213693948 with expression of type 'u32' (aka 'unsigned int') is always false [-Werror,-Wtautological-constant-out-of-range-compare]
  377 |         if (num > (SIZE_MAX - sizeof(*snapc)) / sizeof(u64))
      |             ~~~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Fix this by casting to size_t. Note, that possible replacement of SIZE_MAX
by U32_MAX may lead to the behaviour changes on the corner cases.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 fs/ceph/snap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ceph/snap.c b/fs/ceph/snap.c
index c65f2b202b2b..521507ea8260 100644
--- a/fs/ceph/snap.c
+++ b/fs/ceph/snap.c
@@ -374,7 +374,7 @@ static int build_snap_context(struct ceph_mds_client *mdsc,
 
 	/* alloc new snap context */
 	err = -ENOMEM;
-	if (num > (SIZE_MAX - sizeof(*snapc)) / sizeof(u64))
+	if ((size_t)num > (SIZE_MAX - sizeof(*snapc)) / sizeof(u64))
 		goto fail;
 	snapc = ceph_create_snap_context(num, GFP_NOFS);
 	if (!snapc)
-- 
2.50.1


^ permalink raw reply related	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2025-11-25 18:24 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-10 14:44 [PATCH v1 1/1] ceph: Amend checking to fix `make W=1` build breakage Andy Shevchenko
2025-11-10 19:37 ` Viacheslav Dubeyko
2025-11-10 19:43   ` andriy.shevchenko
2025-11-10 20:42     ` Viacheslav Dubeyko
2025-11-24 15:09       ` andriy.shevchenko
2025-11-24 17:47         ` Viacheslav Dubeyko
2025-11-24 18:43           ` andriy.shevchenko
2025-11-24 18:49             ` Viacheslav Dubeyko
2025-11-24 18:58               ` andriy.shevchenko
2025-11-10 19:48   ` Gregory Farnum
2025-11-10 19:57     ` Viacheslav Dubeyko
2025-11-10 20:00       ` Gregory Farnum
2025-11-10 20:03         ` Viacheslav Dubeyko
2025-11-25  9:55 ` david laight
2025-11-25 10:17   ` Andy Shevchenko
2025-11-25 12:05     ` david laight
2025-11-25 18:24   ` Viacheslav Dubeyko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox