All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] bnx2x: replace usage of found with dedicated list iterator variable
@ 2022-03-24  7:08 Jakob Koschel
  2022-03-24 10:46 ` Paolo Abeni
  0 siblings, 1 reply; 3+ messages in thread
From: Jakob Koschel @ 2022-03-24  7:08 UTC (permalink / raw)
  To: Ariel Elior
  Cc: Sudarsana Kalluru, Manish Chopra, David S. Miller,
	Jakub Kicinski, Paolo Abeni, netdev, linux-kernel, Mike Rapoport,
	Brian Johannesmeyer, Cristiano Giuffrida, Bos, H.J.,
	Jakob Koschel

To move the list iterator variable into the list_for_each_entry_*()
macro in the future it should be avoided to use the list iterator
variable after the loop body.

To *never* use the list iterator variable after the loop it was
concluded to use a separate iterator variable instead of a
found boolean [1].

This removes the need to use a found variable and simply checking if
the variable was set, can determine if the break/goto was hit.

Link: https://lore.kernel.org/all/CAHk-=wgRr_D8CB-D9Kg-c=EHreAsk5SqXPwr9Y7k9sA6cWXJ6w@mail.gmail.com/
Signed-off-by: Jakob Koschel <jakobkoschel@gmail.com>
---
 drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
index c19b072f3a23..fe985ddb35db 100644
--- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
+++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
@@ -12971,20 +12971,19 @@ static int bnx2x_vlan_rx_add_vid(struct net_device *dev, __be16 proto, u16 vid)
 
 static int bnx2x_vlan_rx_kill_vid(struct net_device *dev, __be16 proto, u16 vid)
 {
+	struct bnx2x_vlan_entry *vlan = NULL, *iter;
 	struct bnx2x *bp = netdev_priv(dev);
-	struct bnx2x_vlan_entry *vlan;
-	bool found = false;
 	int rc = 0;
 
 	DP(NETIF_MSG_IFUP, "Removing VLAN %d\n", vid);
 
-	list_for_each_entry(vlan, &bp->vlan_reg, link)
-		if (vlan->vid == vid) {
-			found = true;
+	list_for_each_entry(iter, &bp->vlan_reg, link)
+		if (iter->vid == vid) {
+			vlan = iter;
 			break;
 		}
 
-	if (!found) {
+	if (!vlan) {
 		BNX2X_ERR("Unable to kill VLAN %d - not found\n", vid);
 		return -EINVAL;
 	}

base-commit: f443e374ae131c168a065ea1748feac6b2e76613
-- 
2.25.1


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

* Re: [PATCH] bnx2x: replace usage of found with dedicated list iterator variable
  2022-03-24  7:08 [PATCH] bnx2x: replace usage of found with dedicated list iterator variable Jakob Koschel
@ 2022-03-24 10:46 ` Paolo Abeni
  2022-03-27 21:32   ` Jakob Koschel
  0 siblings, 1 reply; 3+ messages in thread
From: Paolo Abeni @ 2022-03-24 10:46 UTC (permalink / raw)
  To: Jakob Koschel, Ariel Elior
  Cc: Sudarsana Kalluru, Manish Chopra, David S. Miller,
	Jakub Kicinski, netdev, linux-kernel, Mike Rapoport,
	Brian Johannesmeyer, Cristiano Giuffrida, Bos, H.J.

Hello,

On Thu, 2022-03-24 at 08:08 +0100, Jakob Koschel wrote:
> To move the list iterator variable into the list_for_each_entry_*()
> macro in the future it should be avoided to use the list iterator
> variable after the loop body.
> 
> To *never* use the list iterator variable after the loop it was
> concluded to use a separate iterator variable instead of a
> found boolean [1].
> 
> This removes the need to use a found variable and simply checking if
> the variable was set, can determine if the break/goto was hit.
> 
> Link: https://lore.kernel.org/all/CAHk-=wgRr_D8CB-D9Kg-c=EHreAsk5SqXPwr9Y7k9sA6cWXJ6w@mail.gmail.com/
> Signed-off-by: Jakob Koschel <jakobkoschel@gmail.com>

This looks like a purely net-next change, and we are in the merge
window: net-next is closed for the time being. Could you please re-post
after net-next re-open?

Additionally, I suggest you to bundle the net-next patches in a single
series, namely:

bnx2x: replace usage of found with dedicated list iterator variable 
octeontx2-pf: replace usage of found with dedicated list iterator variable 
sctp: replace usage of found with dedicated list iterator variable 
taprio: replace usage of found with dedicated list iterator variable 

that will simplify the processing, thanks!

Paolo


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

* Re: [PATCH] bnx2x: replace usage of found with dedicated list iterator variable
  2022-03-24 10:46 ` Paolo Abeni
@ 2022-03-27 21:32   ` Jakob Koschel
  0 siblings, 0 replies; 3+ messages in thread
From: Jakob Koschel @ 2022-03-27 21:32 UTC (permalink / raw)
  To: Paolo Abeni
  Cc: Ariel Elior, Sudarsana Kalluru, Manish Chopra, David S. Miller,
	Jakub Kicinski, netdev, linux-kernel, Mike Rapoport,
	Brian Johannesmeyer, Cristiano Giuffrida, Bos, H.J.

Hello,

> On 24. Mar 2022, at 11:46, Paolo Abeni <pabeni@redhat.com> wrote:
> 
> Hello,
> 
> On Thu, 2022-03-24 at 08:08 +0100, Jakob Koschel wrote:
>> To move the list iterator variable into the list_for_each_entry_*()
>> macro in the future it should be avoided to use the list iterator
>> variable after the loop body.
>> 
>> To *never* use the list iterator variable after the loop it was
>> concluded to use a separate iterator variable instead of a
>> found boolean [1].
>> 
>> This removes the need to use a found variable and simply checking if
>> the variable was set, can determine if the break/goto was hit.
>> 
>> Link: https://lore.kernel.org/all/CAHk-=wgRr_D8CB-D9Kg-c=EHreAsk5SqXPwr9Y7k9sA6cWXJ6w@mail.gmail.com/
>> Signed-off-by: Jakob Koschel <jakobkoschel@gmail.com>
> 
> This looks like a purely net-next change, and we are in the merge
> window: net-next is closed for the time being. Could you please re-post
> after net-next re-open?

Thanks for letting me know, I'll re-post after net-next is reopened.

> 
> Additionally, I suggest you to bundle the net-next patches in a single
> series, namely:

Are you saying having a single patchset for all /net and /drivers/net
related changes? This would also simplify a lot on my end.


> 
> bnx2x: replace usage of found with dedicated list iterator variable 
> octeontx2-pf: replace usage of found with dedicated list iterator variable 
> sctp: replace usage of found with dedicated list iterator variable 
> taprio: replace usage of found with dedicated list iterator variable 
> 
> that will simplify the processing, thanks!
> 
> Paolo

Thanks,
Jakob


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

end of thread, other threads:[~2022-03-27 21:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-24  7:08 [PATCH] bnx2x: replace usage of found with dedicated list iterator variable Jakob Koschel
2022-03-24 10:46 ` Paolo Abeni
2022-03-27 21:32   ` Jakob Koschel

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.