hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// SPDX-License-Identifier: GPL-2.0
// Copyright (c) 2020 Facebook
 
#include <linux/bpf.h>
#include <stdint.h>
#include <bpf/bpf_helpers.h>
 
char _license[] SEC("license") = "GPL";
 
struct {
   __uint(type, BPF_MAP_TYPE_RINGBUF);
} ringbuf SEC(".maps");
 
const volatile int batch_cnt = 0;
const volatile long use_output = 0;
 
long sample_val = 42;
long dropped __attribute__((aligned(128))) = 0;
 
const volatile long wakeup_data_size = 0;
 
static __always_inline long get_flags()
{
   long sz;
 
   if (!wakeup_data_size)
       return 0;
 
   sz = bpf_ringbuf_query(&ringbuf, BPF_RB_AVAIL_DATA);
   return sz >= wakeup_data_size ? BPF_RB_FORCE_WAKEUP : BPF_RB_NO_WAKEUP;
}
 
SEC("fentry/__x64_sys_getpgid")
int bench_ringbuf(void *ctx)
{
   long *sample, flags;
   int i;
 
   if (!use_output) {
       for (i = 0; i < batch_cnt; i++) {
           sample = bpf_ringbuf_reserve(&ringbuf,
                                sizeof(sample_val), 0);
           if (!sample) {
               __sync_add_and_fetch(&dropped, 1);
           } else {
               *sample = sample_val;
               flags = get_flags();
               bpf_ringbuf_submit(sample, flags);
           }
       }
   } else {
       for (i = 0; i < batch_cnt; i++) {
           flags = get_flags();
           if (bpf_ringbuf_output(&ringbuf, &sample_val,
                          sizeof(sample_val), flags))
               __sync_add_and_fetch(&dropped, 1);
       }
   }
   return 0;
}