diff options
Diffstat (limited to 'tools/testing/selftests/bpf/progs/tcp_rtt.c')
| -rw-r--r-- | tools/testing/selftests/bpf/progs/tcp_rtt.c | 13 | 
1 files changed, 6 insertions, 7 deletions
diff --git a/tools/testing/selftests/bpf/progs/tcp_rtt.c b/tools/testing/selftests/bpf/progs/tcp_rtt.c index 233bdcb1659e..2cf813a06b83 100644 --- a/tools/testing/selftests/bpf/progs/tcp_rtt.c +++ b/tools/testing/selftests/bpf/progs/tcp_rtt.c @@ -13,13 +13,12 @@ struct tcp_rtt_storage {  	__u32 icsk_retransmits;  }; -struct bpf_map_def SEC("maps") socket_storage_map = { -	.type = BPF_MAP_TYPE_SK_STORAGE, -	.key_size = sizeof(int), -	.value_size = sizeof(struct tcp_rtt_storage), -	.map_flags = BPF_F_NO_PREALLOC, -}; -BPF_ANNOTATE_KV_PAIR(socket_storage_map, int, struct tcp_rtt_storage); +struct { +	__uint(type, BPF_MAP_TYPE_SK_STORAGE); +	__uint(map_flags, BPF_F_NO_PREALLOC); +	__type(key, int); +	__type(value, struct tcp_rtt_storage); +} socket_storage_map SEC(".maps");  SEC("sockops")  int _sockops(struct bpf_sock_ops *ctx)  | 
