Skip to content

Commit

Permalink
xdp: remove redundant argument to trace_xdp_redirect
Browse files Browse the repository at this point in the history
Supplying the action argument XDP_REDIRECT to the tracepoint xdp_redirect
is redundant as it is only called in-case this action was specified.

Remove the argument, but keep "act" member of the tracepoint struct and
populate it with XDP_REDIRECT.  This makes it easier to write a common bpf_prog
processing events.

Signed-off-by: Jesper Dangaard Brouer <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
netoptimizer authored and davem330 committed Aug 29, 2017
1 parent d0fcece commit c31e5a4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions include/trace/events/xdp.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ TRACE_EVENT(xdp_exception,
TRACE_EVENT(xdp_redirect,

TP_PROTO(const struct net_device *dev,
const struct bpf_prog *xdp, u32 act,
const struct bpf_prog *xdp,
int to_index, int err),

TP_ARGS(dev, xdp, act, to_index, err),
TP_ARGS(dev, xdp, to_index, err),

TP_STRUCT__entry(
__array(u8, prog_tag, 8)
Expand All @@ -68,7 +68,7 @@ TRACE_EVENT(xdp_redirect,
TP_fast_assign(
BUILD_BUG_ON(sizeof(__entry->prog_tag) != sizeof(xdp->tag));
memcpy(__entry->prog_tag, xdp->tag, sizeof(xdp->tag));
__entry->act = act;
__entry->act = XDP_REDIRECT;
__entry->ifindex = dev->ifindex;
__entry->to_index = to_index;
__entry->err = err;
Expand Down
6 changes: 3 additions & 3 deletions net/core/filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -2524,7 +2524,7 @@ static int xdp_do_redirect_map(struct net_device *dev, struct xdp_buff *xdp,
if (likely(!err))
ri->map_to_flush = map;
out:
trace_xdp_redirect(dev, xdp_prog, XDP_REDIRECT, index, err);
trace_xdp_redirect(dev, xdp_prog, index, err);
return err;
}

Expand All @@ -2548,7 +2548,7 @@ int xdp_do_redirect(struct net_device *dev, struct xdp_buff *xdp,

err = __bpf_tx_xdp(fwd, NULL, xdp, 0);
out:
trace_xdp_redirect(dev, xdp_prog, XDP_REDIRECT, index, err);
trace_xdp_redirect(dev, xdp_prog, index, err);
return err;
}
EXPORT_SYMBOL_GPL(xdp_do_redirect);
Expand Down Expand Up @@ -2582,7 +2582,7 @@ int xdp_do_generic_redirect(struct net_device *dev, struct sk_buff *skb,

skb->dev = fwd;
out:
trace_xdp_redirect(dev, xdp_prog, XDP_REDIRECT, index, err);
trace_xdp_redirect(dev, xdp_prog, index, err);
return err;
}
EXPORT_SYMBOL_GPL(xdp_do_generic_redirect);
Expand Down

0 comments on commit c31e5a4

Please sign in to comment.