mirror of
https://github.com/xdp-project/bpf-examples.git
synced 2024-05-06 15:54:53 +00:00
32 lines
898 B
C
32 lines
898 B
C
/*
|
|
* WARNING: This file shadow vmlinux.h that you can generate yourself
|
|
*
|
|
* Cmdline to generate vmlinux.h
|
|
* bpftool btf dump file /sys/kernel/btf/vmlinux format c > vmlinux.h
|
|
*
|
|
* This vmlinux.h shadow contains kernel headers reduced to that were
|
|
* needed in this project.
|
|
*/
|
|
#ifndef __VMLINUX_H__
|
|
#define __VMLINUX_H__
|
|
/*
|
|
* Notice: Defining __VMLINUX_H__ (or __KERNEL__) cause <bpf/bpf_tracing.h>
|
|
* header file to define architecture specific PT_REGS_PARM's.
|
|
*/
|
|
|
|
#include <linux/types.h> /* Needed for __uNN in vmlinux/vmlinux_types.h */
|
|
|
|
#ifndef BPF_NO_PRESERVE_ACCESS_INDEX
|
|
#pragma clang attribute push (__attribute__((preserve_access_index)), apply_to = record)
|
|
#endif
|
|
|
|
#include "vmlinux/vmlinux_types.h"
|
|
#include "vmlinux/vmlinux_common.h"
|
|
#include "vmlinux/vmlinux_net.h"
|
|
|
|
#ifndef BPF_NO_PRESERVE_ACCESS_INDEX
|
|
#pragma clang attribute pop
|
|
#endif
|
|
|
|
#endif /* __VMLINUX_H__ */
|