From 96333403cadc3658d867c1f1d9ed143f3c91bd2c Mon Sep 17 00:00:00 2001 From: Andrii Nakryiko Date: Fri, 24 Jan 2020 13:48:53 -0800 Subject: [PATCH] sync: auto-generate latest BPF helpers Latest changes to BPF helper definitions. --- src/bpf_helper_defs.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/bpf_helper_defs.h b/src/bpf_helper_defs.h index 935b46f..8e5d473 100644 --- a/src/bpf_helper_defs.h +++ b/src/bpf_helper_defs.h @@ -2786,4 +2786,14 @@ static int (*bpf_tcp_send_ack)(void *tp, __u32 rcv_nxt) = (void *) 116; */ static int (*bpf_send_signal_thread)(__u32 sig) = (void *) 117; +/* + * bpf_jiffies64 + * + * Obtain the 64bit jiffies + * + * Returns + * The 64 bit jiffies + */ +static __u64 (*bpf_jiffies64)(void) = (void *) 118; +