In bpf.c there is an architecture check with cases for i386, x86-64 and "other". But the other case typos TRUE_ARCH, leading to a build error. --- Should this be in include/arch-foo.h ? --- net/bpf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/bpf.c b/net/bpf.c index cc748de..1643077 100644 --- a/net/bpf.c +++ b/net/bpf.c @@ -150,7 +150,7 @@ static const uint32_t bpf_seccomp_jmp_arch_vars[] = { # define TRUE_ARCH AUDIT_ARCH_X86_64 #else # define TRUE_REG_SYSCALL ((uint32_t) rand()) /* TODO later */ -# define TRUE_ARCH_NR ((uint32_t) rand()) /* TODO later */ +# define TRUE_ARCH ((uint32_t) rand()) /* TODO later */ #endif struct seccomp_data { -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe trinity" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html