From: Alexandra Winter <wintera@linux.ibm.com>
To: Yury Norov <yury.norov@gmail.com>
Cc: linux-kernel@vger.kernel.org,
Karsten Graul <kgraul@linux.ibm.com>,
Wenjia Zhang <wenjia@linux.ibm.com>,
Jan Karcher <jaka@linux.ibm.com>,
"D. Wythe" <alibuda@linux.alibaba.com>,
Tony Lu <tonylu@linux.alibaba.com>,
Wen Gu <guwen@linux.alibaba.com>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
linux-s390@vger.kernel.org, netdev@vger.kernel.org,
Jan Kara <jack@suse.cz>,
Mirsad Todorovac <mirsad.todorovac@alu.unizg.hr>,
Matthew Wilcox <willy@infradead.org>,
Rasmus Villemoes <linux@rasmusvillemoes.dk>,
Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>,
Alexey Klimov <klimov.linux@gmail.com>
Subject: Re: [PATCH 29/34] net: smc: fix opencoded find_and_set_bit() in smc_wr_tx_get_free_slot_index()
Date: Tue, 21 Nov 2023 16:39:40 +0100 [thread overview]
Message-ID: <64198545-c405-4933-ab85-8d28caef1b27@linux.ibm.com> (raw)
In-Reply-To: <ZVyzgmb/+oUJ1xcR@yury-ThinkPad>
On 21.11.23 14:41, Yury Norov wrote:
> On Mon, Nov 20, 2023 at 09:43:54AM +0100, Alexandra Winter wrote:
>>
>>
>> On 18.11.23 16:51, Yury Norov wrote:
>>> The function opencodes find_and_set_bit() with a for_each() loop. Fix
>>> it, and make the whole function a simple almost one-liner.
>>>
>>> Signed-off-by: Yury Norov <yury.norov@gmail.com>
>>> ---
>>> net/smc/smc_wr.c | 10 +++-------
>>> 1 file changed, 3 insertions(+), 7 deletions(-)
>>>
>>> diff --git a/net/smc/smc_wr.c b/net/smc/smc_wr.c
>>> index 0021065a600a..b6f0cfc52788 100644
>>> --- a/net/smc/smc_wr.c
>>> +++ b/net/smc/smc_wr.c
>>> @@ -170,15 +170,11 @@ void smc_wr_tx_cq_handler(struct ib_cq *ib_cq, void *cq_context)
>>>
>>> static inline int smc_wr_tx_get_free_slot_index(struct smc_link *link, u32 *idx)
>>> {
>>> - *idx = link->wr_tx_cnt;
>>> if (!smc_link_sendable(link))
>>> return -ENOLINK;
>>> - for_each_clear_bit(*idx, link->wr_tx_mask, link->wr_tx_cnt) {
>>> - if (!test_and_set_bit(*idx, link->wr_tx_mask))
>>> - return 0;
>>> - }
>>> - *idx = link->wr_tx_cnt;
>>> - return -EBUSY;
>>> +
>>> + *idx = find_and_set_bit(link->wr_tx_mask, link->wr_tx_cnt);
>>> + return *idx < link->wr_tx_cnt ? 0 : -EBUSY;
>>> }
>>>
>>> /**
>>
>>
>> My understanding is that you can omit the lines with
>>> - *idx = link->wr_tx_cnt;
>> because they only apply to the error paths and you checked that the calling function
>> does not use the idx variable in the error cases. Do I understand this correct?
>>
>> If so the removal of these 2 lines is not related to your change of using find_and_set_bit(),
>> do I understand that correctly?
>>
>> If so, it may be worth mentioning that in the commit message.
>
> I'll add:
>
> If find_and_set_bit() doesn't acquire a bit, it returns
> ->wr_tx_cnt, and so explicit initialization of *idx with
> the same value is unneeded.
>
> Makes sense?
>
Makes sense for the -EBUSY case, thank you.
It does not explain that you also removed the line for the -ENOLINK case
(which is ok, because the caller has also initialized it to link->wr_tx_cnt)
next prev parent reply other threads:[~2023-11-21 15:40 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-18 15:50 [PATCH 00/34] biops: add atomig find_bit() operations Yury Norov
2023-11-18 15:50 ` [PATCH 01/34] lib/find: add atomic find_bit() primitives Yury Norov
2023-11-18 16:23 ` Bart Van Assche
2023-11-18 15:51 ` [PATCH 29/34] net: smc: fix opencoded find_and_set_bit() in smc_wr_tx_get_free_slot_index() Yury Norov
2023-11-20 8:43 ` Alexandra Winter
2023-11-21 13:41 ` Yury Norov
2023-11-21 15:39 ` Alexandra Winter [this message]
2023-11-20 9:56 ` Tony Lu
2023-11-18 16:18 ` [PATCH 00/34] biops: add atomig find_bit() operations Bart Van Assche
2023-11-18 19:06 ` Sergey Shtylyov
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=64198545-c405-4933-ab85-8d28caef1b27@linux.ibm.com \
--to=wintera@linux.ibm.com \
--cc=alibuda@linux.alibaba.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=guwen@linux.alibaba.com \
--cc=jack@suse.cz \
--cc=jaka@linux.ibm.com \
--cc=kgraul@linux.ibm.com \
--cc=klimov.linux@gmail.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-s390@vger.kernel.org \
--cc=linux@rasmusvillemoes.dk \
--cc=maxim.kuvyrkov@linaro.org \
--cc=mirsad.todorovac@alu.unizg.hr \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=tonylu@linux.alibaba.com \
--cc=wenjia@linux.ibm.com \
--cc=willy@infradead.org \
--cc=yury.norov@gmail.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