mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-04 16:25:34 +00:00
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>
This commit is contained in:
parent
d77be49309
commit
3e35f26d33
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue