brintos

brintos / linux-shallow public Read only

0
0
Text · 274 B · d532af0 Raw
14 lines · c
1// SPDX-License-Identifier: GPL-2.02#include <vmlinux.h>3#include <bpf/bpf_helpers.h>4#include "../bpf_testmod/bpf_testmod_kfunc.h"5 6SEC("tc")7int kfunc_call_fail(struct __sk_buff *ctx)8{9	bpf_testmod_test_mod_kfunc(0);10	return 0;11}12 13char _license[] SEC("license") = "GPL";14