[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAHp75Vc50sMfOLSk3nfPcAqfeKeCJ7_MiTKzwksZFt078J-+DA@mail.gmail.com>
Date: Sun, 7 Feb 2021 13:50:00 +0200
From: Andy Shevchenko <andy.shevchenko@...il.com>
To: Menglong Dong <menglong8.dong@...il.com>
Cc: "axboe@...nel.dk" <axboe@...nel.dk>,
"davem@...emloft.net" <davem@...emloft.net>,
"viro@...iv.linux.org.uk" <viro@...iv.linux.org.uk>,
"herbert@...dor.apana.org.au" <herbert@...dor.apana.org.au>,
"dong.menglong@....com.cn" <dong.menglong@....com.cn>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH net-next] net: socket: use BIT_MASK for MSG_*
On Sun, Feb 7, 2021 at 5:29 AM Menglong Dong <menglong8.dong@...il.com> wrote:
> On Sat, Feb 6, 2021 at 4:20 PM Andy Shevchenko
> <andy.shevchenko@...il.com> wrote:
> > On Saturday, February 6, 2021, <menglong8.dong@...il.com> wrote:
> > It makes it more confusing if you understand the difference between BIT_MASK() and BIT(). I think you have to use the latter. And note () when referring to the function or macro.
>
> I replaced BIT_MASK() with BIT() in the patch of v2, and it looks much
> more tidy.
> I can't figure out the difference between BIT() and BIT_MASK(), seems
> the latter one more safe... isn't it?
BIT_MASK() operates on top of (long) bitmaps when you already know the
address of the certain word you would like to change. When the
parameter is constant it will be helpful only in some (rare) cases,
where you define a (long) bit mask, which has a bit, like 65, set. For
most of the cases it's not needed. It's rare that hardware operates on
bitmaps longer than data bus width.
--
With Best Regards,
Andy Shevchenko
Powered by blists - more mailing lists