From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexei Starovoitov Subject: Re: [PATCH 2/2] sparc64: Add eBPF JIT. Date: Sat, 22 Apr 2017 08:32:35 -0700 Message-ID: <20170422153233.GA47144@ast-mbp.thefacebook.com> References: <20170421.201711.317784995765325131.davem@davemloft.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: sparclinux@vger.kernel.org, netdev@vger.kernel.org, ast@kernel.org, daniel@iogearbox.net To: David Miller Return-path: Content-Disposition: inline In-Reply-To: <20170421.201711.317784995765325131.davem@davemloft.net> Sender: sparclinux-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On Fri, Apr 21, 2017 at 08:17:11PM -0700, David Miller wrote: > > This is an eBPF JIT for sparc64. All major features are supported. > > All tests under tools/testing/selftests/bpf/ pass. > > Signed-off-by: David S. Miller ... > + /* tail call */ > + case BPF_JMP | BPF_CALL |BPF_X: > + emit_tail_call(ctx); > + I think 'break;' is missing here. When tail_call's target program is null the current program should continue instead of aborting. Like in our current ddos+lb setup the program looks like: bpf_tail_call(ctx, &prog_array, 1); bpf_tail_call(ctx, &prog_array, 2); bpf_tail_call(ctx, &prog_array, 3); return XDP_DROP; this way it will jump into the program that is installed in slot 1. If it's empty, it will try slot 2... If no programs installed it will drop the packet. > + /* function return */ > + case BPF_JMP | BPF_EXIT: > + /* Optimization: when last instruction is EXIT, > + simply fallthrough to epilogue. */ > + if (i == ctx->prog->len - 1) > + break; > + emit_branch(BA, ctx->idx, ctx->epilogue_offset, ctx); > + emit_nop(ctx);