mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
eb9928bed0
Add missing uapi header the BPF_PROG_TYPE_PERF_EVENT programs by exporting struct user_regs_struct instead of struct pt_regs which is in-kernel only. Signed-off-by: Björn Töpel <bjorn.topel@gmail.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Link: https://lore.kernel.org/bpf/20191216091343.23260-9-bjorn.topel@gmail.com
10 lines
261 B
C
10 lines
261 B
C
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
#ifndef _UAPI__ASM_BPF_PERF_EVENT_H__
|
|
#define _UAPI__ASM_BPF_PERF_EVENT_H__
|
|
|
|
#include <asm/ptrace.h>
|
|
|
|
typedef struct user_regs_struct bpf_user_pt_regs_t;
|
|
|
|
#endif /* _UAPI__ASM_BPF_PERF_EVENT_H__ */
|