Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756405Ab3D0CSs (ORCPT ); Fri, 26 Apr 2013 22:18:48 -0400 Received: from mail-qa0-f53.google.com ([209.85.216.53]:64727 "EHLO mail-qa0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751108Ab3D0CSr (ORCPT ); Fri, 26 Apr 2013 22:18:47 -0400 From: Xi Wang To: netdev@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Daniel Borkmann , Heiko Carstens , Will Drewry , Eric Dumazet , Russell King , David Laight , "David S. Miller" , Andrew Morton , Nicolas Schichan , Xi Wang Subject: [PATCH v2 net-next 0/3] seccomp filter JIT Date: Fri, 26 Apr 2013 22:17:24 -0400 Message-Id: <1367029047-14830-1-git-send-email-xi.wang@gmail.com> X-Mailer: git-send-email 1.8.1.2 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1370 Lines: 37 The first patch refactors bpf_jit_compile()/bpf_jit_free() to provide a unified interface for both packet and seccomp filters. The next two patches implement JIT for seccomp filters on x86 and ARM, respectively. Thanks to Heiko Carstens for testing the build on s390 and Eric Dumazet for the comments on x86 JIT. Changes: make better patch splitting remove arch at jit time in x86 add more comments in x86 Xi Wang (3): filter: refactor BPF JIT for seccomp filters x86: bpf_jit_comp: support BPF_S_ANC_SECCOMP_LD_W instruction ARM: net: bpf_jit_32: support BPF_S_ANC_SECCOMP_LD_W instruction arch/arm/net/bpf_jit_32.c | 64 +++++++++++++++++++++++++---------------- arch/powerpc/net/bpf_jit_comp.c | 36 +++++++++++------------ arch/s390/net/bpf_jit_comp.c | 31 ++++++++++---------- arch/sparc/net/bpf_jit_comp.c | 22 +++++++------- arch/x86/net/bpf_jit_comp.c | 32 ++++++++++++++------- include/linux/filter.h | 16 +++++++---- kernel/seccomp.c | 6 +++- net/core/filter.c | 6 ++-- 8 files changed, 122 insertions(+), 91 deletions(-) -- 1.8.1.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/