net: bridge: remove redundant check of f->dst
authorlinke li <lilinke99@qq.com>
Tue, 23 Apr 2024 10:53:26 +0000 (18:53 +0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 25 Apr 2024 12:15:38 +0000 (13:15 +0100)
In br_fill_forward_path(), f->dst is checked not to be NULL, then
immediately read using READ_ONCE and checked again. The first check is
useless, so this patch aims to remove the redundant check of f->dst.

Signed-off-by: linke li <lilinke99@qq.com>
Acked-by: Nikolay Aleksandrov <razor@blackwall.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/bridge/br_device.c

index c366ccc8b3db7b3052faea7fc75367d6a9f052b5..ab4d33e0201424231bd11f06740a174bf8b8831d 100644 (file)
@@ -389,7 +389,7 @@ static int br_fill_forward_path(struct net_device_path_ctx *ctx,
        br_vlan_fill_forward_path_pvid(br, ctx, path);
 
        f = br_fdb_find_rcu(br, ctx->daddr, path->bridge.vlan_id);
-       if (!f || !f->dst)
+       if (!f)
                return -1;
 
        dst = READ_ONCE(f->dst);