Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.5-rc7 13 lines 268 B view raw
1// SPDX-License-Identifier: GPL-2.0 2#include <vmlinux.h> 3#include <bpf/bpf_helpers.h> 4#include "../bpf_testmod/bpf_testmod_kfunc.h" 5 6SEC("tc") 7int kfunc_destructive_test(void) 8{ 9 bpf_kfunc_call_test_destructive(); 10 return 0; 11} 12 13char _license[] SEC("license") = "GPL";