From: Viacheslav Dubeyko <Slava.Dubeyko@ibm.com>
To: Gregory Farnum <gfarnum@redhat.com>
Cc: Xiubo Li <xiubli@redhat.com>,
"justinstitt@google.com" <justinstitt@google.com>,
"andriy.shevchenko@linux.intel.com"
<andriy.shevchenko@linux.intel.com>,
"llvm@lists.linux.dev" <llvm@lists.linux.dev>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"nathan@kernel.org" <nathan@kernel.org>,
"morbo@google.com" <morbo@google.com>,
"idryomov@gmail.com" <idryomov@gmail.com>,
"nick.desaulniers+lkml@gmail.com"
<nick.desaulniers+lkml@gmail.com>,
"ceph-devel@vger.kernel.org" <ceph-devel@vger.kernel.org>
Subject: RE: [PATCH v1 1/1] ceph: Amend checking to fix `make W=1` build breakage
Date: Mon, 10 Nov 2025 20:03:26 +0000 [thread overview]
Message-ID: <8de7721da35000ff0f41b0b024a998dfecf9ef90.camel@ibm.com> (raw)
In-Reply-To: <CAJ4mKGbrXjC=kX5YDsX=RZUw6mK0PVPiinVsujhp+XfPVsrVVg@mail.gmail.com>
On Mon, 2025-11-10 at 12:00 -0800, Gregory Farnum wrote:
> On Mon, Nov 10, 2025 at 11:57 AM Viacheslav Dubeyko
> <Slava.Dubeyko@ibm.com> wrote:
> >
> > On Mon, 2025-11-10 at 11:48 -0800, Gregory Farnum wrote:
> > > On Mon, Nov 10, 2025 at 11:42 AM Viacheslav Dubeyko
> > > <Slava.Dubeyko@ibm.com> wrote:
> > > >
> > > > On Mon, 2025-11-10 at 15:44 +0100, Andy Shevchenko wrote:
> > > > > 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))
> > > >
> > > > The same question is here. Does it makes sense to declare num as size_t? Could
> > > > it be more clean solution? Or could it introduce another warnings/errors?
> > >
> > > Given that the number of snaps is constrained over the wire as a
> > > 32-bit integer, you probably want to keep that mapping...(Though I
> > > guess it's the sum of two 32-bit integers which technically could
> > > overflow, and I'm not sure what happens if you actually hit those
> > > boundaries on the server — but nobody generates snapshots on the same
> > > file in that quantity).
> > >
> > > All that said, it'd be kind of nice if we could just annotate for
> > > clang that we are perfectly happy for the evaluation to always be true
> > > on a 64-bit architecture (as snapids are 64 bits, we will always be
> > > able to count them).
> >
> > So, are you suggesting to declare num as u64 here? Am I correct?
>
> What? No, the whole point of this block is checking that it can track
> all the snapshots and allocate them (on a <32-bit architecture, which
> are the only ones at risk), isn't it?
OK. So, what is your point? Are we taking the patch as it is? Or do we need to
make some modifications?
Thanks,
Slava.
next prev parent reply other threads:[~2025-11-10 20:03 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
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 [this message]
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
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=8de7721da35000ff0f41b0b024a998dfecf9ef90.camel@ibm.com \
--to=slava.dubeyko@ibm.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=ceph-devel@vger.kernel.org \
--cc=gfarnum@redhat.com \
--cc=idryomov@gmail.com \
--cc=justinstitt@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=morbo@google.com \
--cc=nathan@kernel.org \
--cc=nick.desaulniers+lkml@gmail.com \
--cc=xiubli@redhat.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox