* [Bridge] [PATCH net-next] bridge: Add missing parentheses
@ 2022-11-10 8:54 ` Ido Schimmel
0 siblings, 0 replies; 4+ messages in thread
From: Ido Schimmel @ 2022-11-10 8:54 UTC (permalink / raw)
To: netdev, bridge
Cc: petrm, mlxsw, razor, Ido Schimmel, edumazet, roopa, kuba, pabeni,
davem
No changes in generated code.
Reported-by: Petr Machata <petrm@nvidia.com>
Reviewed-by: Petr Machata <petrm@nvidia.com>
Signed-off-by: Ido Schimmel <idosch@nvidia.com>
---
net/bridge/br_input.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/bridge/br_input.c b/net/bridge/br_input.c
index d04d2205ad4e..3027e8f6be15 100644
--- a/net/bridge/br_input.c
+++ b/net/bridge/br_input.c
@@ -121,7 +121,7 @@ int br_handle_frame_finish(struct net *net, struct sock *sk, struct sk_buff *skb
test_bit(BR_FDB_LOCAL, &fdb_src->flags)) {
/* FDB mismatch. Drop the packet without roaming. */
goto drop;
- } else if test_bit(BR_FDB_LOCKED, &fdb_src->flags) {
+ } else if (test_bit(BR_FDB_LOCKED, &fdb_src->flags)) {
/* FDB match, but entry is locked. Refresh it and drop
* the packet.
*/
--
2.37.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH net-next] bridge: Add missing parentheses
@ 2022-11-10 8:54 ` Ido Schimmel
0 siblings, 0 replies; 4+ messages in thread
From: Ido Schimmel @ 2022-11-10 8:54 UTC (permalink / raw)
To: netdev, bridge
Cc: davem, kuba, pabeni, edumazet, roopa, razor, petrm, mlxsw,
Ido Schimmel
No changes in generated code.
Reported-by: Petr Machata <petrm@nvidia.com>
Reviewed-by: Petr Machata <petrm@nvidia.com>
Signed-off-by: Ido Schimmel <idosch@nvidia.com>
---
net/bridge/br_input.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/bridge/br_input.c b/net/bridge/br_input.c
index d04d2205ad4e..3027e8f6be15 100644
--- a/net/bridge/br_input.c
+++ b/net/bridge/br_input.c
@@ -121,7 +121,7 @@ int br_handle_frame_finish(struct net *net, struct sock *sk, struct sk_buff *skb
test_bit(BR_FDB_LOCAL, &fdb_src->flags)) {
/* FDB mismatch. Drop the packet without roaming. */
goto drop;
- } else if test_bit(BR_FDB_LOCKED, &fdb_src->flags) {
+ } else if (test_bit(BR_FDB_LOCKED, &fdb_src->flags)) {
/* FDB match, but entry is locked. Refresh it and drop
* the packet.
*/
--
2.37.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Bridge] [PATCH net-next] bridge: Add missing parentheses
2022-11-10 8:54 ` Ido Schimmel
@ 2022-11-12 6:00 ` patchwork-bot+netdevbpf
-1 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2022-11-12 6:00 UTC (permalink / raw)
To: Ido Schimmel
Cc: petrm, netdev, razor, bridge, edumazet, mlxsw, roopa, kuba,
pabeni, davem
Hello:
This patch was applied to netdev/net-next.git (master)
by Jakub Kicinski <kuba@kernel.org>:
On Thu, 10 Nov 2022 10:54:22 +0200 you wrote:
> No changes in generated code.
>
> Reported-by: Petr Machata <petrm@nvidia.com>
> Reviewed-by: Petr Machata <petrm@nvidia.com>
> Signed-off-by: Ido Schimmel <idosch@nvidia.com>
> ---
> net/bridge/br_input.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Here is the summary with links:
- [net-next] bridge: Add missing parentheses
https://git.kernel.org/netdev/net-next/c/3e35f26d3397
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net-next] bridge: Add missing parentheses
@ 2022-11-12 6:00 ` patchwork-bot+netdevbpf
0 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2022-11-12 6:00 UTC (permalink / raw)
To: Ido Schimmel
Cc: netdev, bridge, davem, kuba, pabeni, edumazet, roopa, razor,
petrm, mlxsw
Hello:
This patch was applied to netdev/net-next.git (master)
by Jakub Kicinski <kuba@kernel.org>:
On Thu, 10 Nov 2022 10:54:22 +0200 you wrote:
> No changes in generated code.
>
> Reported-by: Petr Machata <petrm@nvidia.com>
> Reviewed-by: Petr Machata <petrm@nvidia.com>
> Signed-off-by: Ido Schimmel <idosch@nvidia.com>
> ---
> net/bridge/br_input.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Here is the summary with links:
- [net-next] bridge: Add missing parentheses
https://git.kernel.org/netdev/net-next/c/3e35f26d3397
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-11-12 6:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-10 8:54 [Bridge] [PATCH net-next] bridge: Add missing parentheses Ido Schimmel
2022-11-10 8:54 ` Ido Schimmel
2022-11-12 6:00 ` [Bridge] " patchwork-bot+netdevbpf
2022-11-12 6:00 ` patchwork-bot+netdevbpf
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.