Skip to content

Commit 446cf56

Browse files
bpf: host: clean up duplicated send_trace_notify() code
Use a single send_trace_notify() statement, with parameters that can be trivially optimized out in the from-netdev path. Signed-off-by: Julian Wiedmann <[email protected]>
1 parent feaf6c7 commit 446cf56

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

bpf/bpf_host.c

+5-9
Original file line numberDiff line numberDiff line change
@@ -1028,6 +1028,8 @@ static __always_inline int handle_l2_announcement(struct __ctx_buff *ctx)
10281028
static __always_inline int
10291029
do_netdev(struct __ctx_buff *ctx, __u16 proto, const bool from_host)
10301030
{
1031+
enum trace_point trace = from_host ? TRACE_FROM_HOST :
1032+
TRACE_FROM_NETWORK;
10311033
__u32 __maybe_unused identity = 0;
10321034
__u32 __maybe_unused ipcache_srcid = 0;
10331035
void __maybe_unused *data, *data_end;
@@ -1042,7 +1044,6 @@ do_netdev(struct __ctx_buff *ctx, __u16 proto, const bool from_host)
10421044

10431045
if (from_host) {
10441046
__u32 magic;
1045-
enum trace_point trace = TRACE_FROM_HOST;
10461047

10471048
magic = inherit_identity_from_host(ctx, &identity);
10481049
if (magic == MARK_MAGIC_PROXY_INGRESS || magic == MARK_MAGIC_PROXY_EGRESS)
@@ -1072,16 +1073,11 @@ do_netdev(struct __ctx_buff *ctx, __u16 proto, const bool from_host)
10721073
return ret;
10731074
}
10741075
#endif /* ENABLE_IPSEC */
1075-
1076-
send_trace_notify(ctx, trace, identity, 0, 0,
1077-
ctx->ingress_ifindex,
1078-
TRACE_REASON_UNKNOWN, TRACE_PAYLOAD_LEN);
1079-
} else {
1080-
send_trace_notify(ctx, TRACE_FROM_NETWORK, 0, 0, 0,
1081-
ctx->ingress_ifindex,
1082-
TRACE_REASON_UNKNOWN, TRACE_PAYLOAD_LEN);
10831076
}
10841077

1078+
send_trace_notify(ctx, trace, identity, 0, 0, ctx->ingress_ifindex,
1079+
TRACE_REASON_UNKNOWN, TRACE_PAYLOAD_LEN);
1080+
10851081
bpf_clear_meta(ctx);
10861082

10871083
switch (proto) {

0 commit comments

Comments
 (0)