Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4d6a75b6 authored by Daniel Borkmann's avatar Daniel Borkmann Committed by David S. Miller
Browse files

bpf: no need to nullify ri->map in xdp_do_redirect



We are guaranteed to have a NULL ri->map in this branch since
we test for it earlier, so we don't need to reset it here.

Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
Acked-by: default avatarJohn Fastabend <john.fastabend@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1ab2de2b
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -2568,7 +2568,6 @@ int xdp_do_redirect(struct net_device *dev, struct xdp_buff *xdp,

	fwd = dev_get_by_index_rcu(dev_net(dev), index);
	ri->ifindex = 0;
	ri->map = NULL;
	if (unlikely(!fwd)) {
		bpf_warn_invalid_xdp_redirect(index);
		return -EINVAL;