From: Julia Lawall <julia.lawall@inria.fr>
To: Samuel Abraham <abrahamadekunle50@gmail.com>
Cc: Julia Lawall <julia.lawall@inria.fr>,
Andy Shevchenko <andy.shevchenko@gmail.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
andy@kernel.org, dan.carpenter@linaro.org,
linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org,
outreachy@lists.linux.dev
Subject: Re: [PATCH v2] staging: rtl8723bs: Use % 4096 instead of & 0xfff
Date: Sun, 6 Apr 2025 08:59:52 -0400 (EDT) [thread overview]
Message-ID: <7f48a42-1921-77d7-1cf4-fb6ea8f6fb7e@inria.fr> (raw)
In-Reply-To: <CADYq+fYMPGFdFvNPyo_XoNdMhh6qu=h10Gb2EDc2Jw=JK9iXig@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2242 bytes --]
On Sat, 5 Apr 2025, Samuel Abraham wrote:
> On Sat, Apr 5, 2025 at 1:30 PM Julia Lawall <julia.lawall@inria.fr> wrote:
> >
> >
> >
> > On Sat, 5 Apr 2025, Andy Shevchenko wrote:
> >
> > > On Sat, Apr 5, 2025 at 11:23 AM Greg Kroah-Hartman
> > > <gregkh@linuxfoundation.org> wrote:
> > > > On Sat, Apr 05, 2025 at 12:09:59AM +0000, Abraham Samuel Adekunle wrote:
> > > > > Replace the bitwise AND operator `&` with a modulo
> > > > > operator `%` and decimal number to make the upper limit visible
> > > > > and clear what the semantic of it is.
> > > >
> > > > Eeek, no. We all "know" what & means (it's a bit mask to handle the
> > > > issues involved), and we all do NOT know that % will do the same thing
> > > > at all.
> > >
> > > And that is exactly the purpose of the change. The % 4096 makes it
> > > clearer on what's going on, i.e. we are doing indexes that are wrapped
> > > around the given number.
> >
> > Ah, OK. Samuel, indeed, the log message was going in that direction. But
> > probably it should be more clear. Why is 4096 the upper limit in this
> > case, for example.
>
> Okay thank you Julia.
> So I can add something like this to the commit message?
>
> "Replace the bitwise AND operator `&` with a modulo
> operator `%` and decimal number to make the upper limit visible
> and clear that we are doing indexes that are wrapped around the given number"?
No. First say what the upper limit is. Then explain that a module
operation is thus more appropriate than a bit mask. People need to
understand the reasoning behind the change. By saying "make the upper
limit visible" you are asking them to trust your reasoning, or more likely
requiring them to reconstruct it. You need to make explicit all the
information that is needed to understand the change, so people will know
what to look for to verify it.
> You also said I should add a patch for the white space around binary operators.
> I did it together because the changes were on the same line.
> Should I still add a second patch for that change?
It's quite a different issue. So a second patch seems reasonable. YOu
can do it before yours. Then if someone still doesn't unlike the modulo
patch, the spacing patch can still be accepted.
julia
next prev parent reply other threads:[~2025-04-06 13:00 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-05 0:09 [PATCH v2] staging: rtl8723bs: Use % 4096 instead of & 0xfff Abraham Samuel Adekunle
2025-04-05 0:33 ` Julia Lawall
2025-04-05 8:22 ` Greg Kroah-Hartman
2025-04-05 12:24 ` Andy Shevchenko
2025-04-05 12:30 ` Julia Lawall
2025-04-05 14:55 ` Samuel Abraham
2025-04-06 12:59 ` Julia Lawall [this message]
2025-04-06 19:31 ` Samuel Abraham
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=7f48a42-1921-77d7-1cf4-fb6ea8f6fb7e@inria.fr \
--to=julia.lawall@inria.fr \
--cc=abrahamadekunle50@gmail.com \
--cc=andy.shevchenko@gmail.com \
--cc=andy@kernel.org \
--cc=dan.carpenter@linaro.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-staging@lists.linux.dev \
--cc=outreachy@lists.linux.dev \
/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