bpf-script-test-kbuild.c 529 B

123456789101112131415161718192021
  1. /*
  2. * bpf-script-test-kbuild.c
  3. * Test include from kernel header
  4. */
  5. #ifndef LINUX_VERSION_CODE
  6. # error Need LINUX_VERSION_CODE
  7. # error Example: for 4.2 kernel, put 'clang-opt="-DLINUX_VERSION_CODE=0x40200" into llvm section of ~/.perfconfig'
  8. #endif
  9. #define SEC(NAME) __attribute__((section(NAME), used))
  10. #include <uapi/linux/fs.h>
  11. #include <uapi/asm/ptrace.h>
  12. SEC("func=vfs_llseek")
  13. int bpf_func__vfs_llseek(void *ctx)
  14. {
  15. return 0;
  16. }
  17. char _license[] SEC("license") = "GPL";
  18. int _version SEC("version") = LINUX_VERSION_CODE;