Release 4.17 samples/bpf/test_overhead_raw_tp_kern.c
// SPDX-License-Identifier: GPL-2.0
/* Copyright (c) 2018 Facebook */
#include <uapi/linux/bpf.h>
#include "bpf_helpers.h"
SEC("raw_tracepoint/task_rename")
int prog(struct bpf_raw_tracepoint_args *ctx)
{
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alexei Starovoitov | 13 | 100.00% | 1 | 100.00% |
Total | 13 | 100.00% | 1 | 100.00% |
SEC("raw_tracepoint/urandom_read")
int prog2(struct bpf_raw_tracepoint_args *ctx)
{
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alexei Starovoitov | 13 | 100.00% | 1 | 100.00% |
Total | 13 | 100.00% | 1 | 100.00% |
char _license[] SEC("license") = "GPL";
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alexei Starovoitov | 52 | 100.00% | 1 | 100.00% |
Total | 52 | 100.00% | 1 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.