Skip to content

Commit 3e35f26

Browse files
idoschkuba-moo
authored andcommitted
bridge: Add missing parentheses
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> Link: https://lore.kernel.org/r/20221110085422.521059-1-idosch@nvidia.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
1 parent d77be49 commit 3e35f26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

net/bridge/br_input.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ int br_handle_frame_finish(struct net *net, struct sock *sk, struct sk_buff *skb
121121
test_bit(BR_FDB_LOCAL, &fdb_src->flags)) {
122122
/* FDB mismatch. Drop the packet without roaming. */
123123
goto drop;
124-
} else if test_bit(BR_FDB_LOCKED, &fdb_src->flags) {
124+
} else if (test_bit(BR_FDB_LOCKED, &fdb_src->flags)) {
125125
/* FDB match, but entry is locked. Refresh it and drop
126126
* the packet.
127127
*/

0 commit comments

Comments
 (0)