Re: [PATCHv2 0/7] eBPF JIT for PPC64

2016-06-30 Thread Naveen N. Rao
On 2016/06/30 12:34PM, Denis Kirjanov wrote: > On 6/30/16, Andreas Ziegler wrote: > > Hi Naveen, > > > > this patchset makes a change to arch/powerpc/net/Makefile in order to only > > compile the previously existing bpf_jit_comp.c if !CONFIG_PPC64, and use > >

Re: [PATCHv2 0/7] eBPF JIT for PPC64

2016-06-30 Thread Denis Kirjanov
On 6/30/16, Andreas Ziegler wrote: > Hi Naveen, > > this patchset makes a change to arch/powerpc/net/Makefile in order to only > compile the previously existing bpf_jit_comp.c if !CONFIG_PPC64, and use > bpf_jit_comp64.c if CONFIG_PPC64 is enabled. > > Inside

Re: [PATCHv2 0/7] eBPF JIT for PPC64

2016-06-30 Thread Andreas Ziegler
Hi Naveen, this patchset makes a change to arch/powerpc/net/Makefile in order to only compile the previously existing bpf_jit_comp.c if !CONFIG_PPC64, and use bpf_jit_comp64.c if CONFIG_PPC64 is enabled. Inside arch/powerpc/net/bpf_jit_comp.c, however, there is still an #ifdef CONFIG_PPC64 block

[PATCHv2 0/7] eBPF JIT for PPC64

2016-06-22 Thread Naveen N. Rao
v2 changes: - Patch 1 is new and is cc'ed -stable - Patch 7 has 3 changes: - Include asm/kprobes.h to resolve a build error reported by Michael Ellerman - Remove check for fp in bpf_int_jit_compile() as suggested by Daniel Borkmann - Fix a crash on Cell processor reported