Commit b0c47807 authored by David S. Miller's avatar David S. Miller

bpf: Add sparc support to tools and samples.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Acked-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
parent 7a12b503
...@@ -146,11 +146,30 @@ static int (*bpf_skb_change_head)(void *, int len, int flags) = ...@@ -146,11 +146,30 @@ static int (*bpf_skb_change_head)(void *, int len, int flags) =
#define PT_REGS_SP(x) ((x)->sp) #define PT_REGS_SP(x) ((x)->sp)
#define PT_REGS_IP(x) ((x)->nip) #define PT_REGS_IP(x) ((x)->nip)
#elif defined(__sparc__)
#define PT_REGS_PARM1(x) ((x)->u_regs[UREG_I0])
#define PT_REGS_PARM2(x) ((x)->u_regs[UREG_I1])
#define PT_REGS_PARM3(x) ((x)->u_regs[UREG_I2])
#define PT_REGS_PARM4(x) ((x)->u_regs[UREG_I3])
#define PT_REGS_PARM5(x) ((x)->u_regs[UREG_I4])
#define PT_REGS_RET(x) ((x)->u_regs[UREG_I7])
#define PT_REGS_RC(x) ((x)->u_regs[UREG_I0])
#define PT_REGS_SP(x) ((x)->u_regs[UREG_FP])
#if defined(__arch64__)
#define PT_REGS_IP(x) ((x)->tpc)
#else
#define PT_REGS_IP(x) ((x)->pc)
#endif
#endif #endif
#ifdef __powerpc__ #ifdef __powerpc__
#define BPF_KPROBE_READ_RET_IP(ip, ctx) ({ (ip) = (ctx)->link; }) #define BPF_KPROBE_READ_RET_IP(ip, ctx) ({ (ip) = (ctx)->link; })
#define BPF_KRETPROBE_READ_RET_IP BPF_KPROBE_READ_RET_IP #define BPF_KRETPROBE_READ_RET_IP BPF_KPROBE_READ_RET_IP
#elif defined(__sparc__)
#define BPF_KPROBE_READ_RET_IP(ip, ctx) ({ (ip) = PT_REGS_RET(ctx); })
#define BPF_KRETPROBE_READ_RET_IP BPF_KPROBE_READ_RET_IP
#else #else
#define BPF_KPROBE_READ_RET_IP(ip, ctx) ({ \ #define BPF_KPROBE_READ_RET_IP(ip, ctx) ({ \
bpf_probe_read(&(ip), sizeof(ip), (void *)PT_REGS_RET(ctx)); }) bpf_probe_read(&(ip), sizeof(ip), (void *)PT_REGS_RET(ctx)); })
......
...@@ -9,6 +9,9 @@ ...@@ -9,6 +9,9 @@
# define __NR_bpf 321 # define __NR_bpf 321
# elif defined(__aarch64__) # elif defined(__aarch64__)
# define __NR_bpf 280 # define __NR_bpf 280
# elif defined(__sparc__)
# define __NR_bpf 349
# else
# error __NR_bpf not defined. libbpf does not support your arch. # error __NR_bpf not defined. libbpf does not support your arch.
# endif # endif
#endif #endif
......
...@@ -37,6 +37,8 @@ ...@@ -37,6 +37,8 @@
# define __NR_bpf 321 # define __NR_bpf 321
# elif defined(__aarch64__) # elif defined(__aarch64__)
# define __NR_bpf 280 # define __NR_bpf 280
# elif defined(__sparc__)
# define __NR_bpf 349
# else # else
# error __NR_bpf not defined. libbpf does not support your arch. # error __NR_bpf not defined. libbpf does not support your arch.
# endif # endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment