From: Ido Schimmel Date: Thu, 10 Nov 2022 08:54:22 +0000 (+0200) Subject: bridge: Add missing parentheses X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3e35f26d339718e155fa7cf5993a99924124a041;p=linux.git bridge: Add missing parentheses No changes in generated code. Reported-by: Petr Machata Reviewed-by: Petr Machata Signed-off-by: Ido Schimmel Link: https://lore.kernel.org/r/20221110085422.521059-1-idosch@nvidia.com Signed-off-by: Jakub Kicinski --- diff --git a/net/bridge/br_input.c b/net/bridge/br_input.c index d04d2205ad4eb..3027e8f6be15b 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. */