From mboxrd@z Thu Jan 1 00:00:00 1970 Received: with ECARTIS (v1.0.0; list linux-mips); Tue, 17 Jun 2014 04:24:33 +0200 (CEST) Received: from mail.active-venture.com ([67.228.131.205]:61379 "EHLO mail.active-venture.com" rhost-flags-OK-OK-OK-OK) by eddie.linux-mips.org with ESMTP id S6821742AbaFQCY1OFg2Y (ORCPT ); Tue, 17 Jun 2014 04:24:27 +0200 Received: (qmail 70139 invoked by uid 399); 17 Jun 2014 02:24:20 -0000 Received: from unknown (HELO server.roeck-us.net) (linux@roeck-us.net@108.223.40.66) by mail.active-venture.com with ESMTPAM; 17 Jun 2014 02:24:20 -0000 X-Originating-IP: 108.223.40.66 X-Sender: linux@roeck-us.net Message-ID: <539FA6CB.5050703@roeck-us.net> Date: Mon, 16 Jun 2014 19:24:11 -0700 From: Guenter Roeck User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: "linux-kernel@vger.kernel.org" CC: Linux MIPS Mailing List , Ralf Baechle , Daniel Borkmann , Alexei Starovoitov Subject: mips:allmodconfig build failure in 3.16-rc1 due to bpf_jit code Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-Path: X-Envelope-To: <"|/home/ecartis/ecartis -s linux-mips"> (uid 0) X-Orcpt: rfc822;linux-mips@linux-mips.org Original-Recipient: rfc822;linux-mips@linux-mips.org X-archive-position: 40533 X-ecartis-version: Ecartis v1.0.0 Sender: linux-mips-bounce@linux-mips.org Errors-to: linux-mips-bounce@linux-mips.org X-original-sender: linux@roeck-us.net Precedence: bulk List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: linux-mips X-List-ID: linux-mips List-subscribe: List-owner: List-post: List-archive: X-list: linux-mips mips:allmodconfig fails in 3.16-rc1 with lots of undefined symbols. arch/mips/net/bpf_jit.c: In function 'is_load_to_a': arch/mips/net/bpf_jit.c:559:7: error: 'BPF_S_LD_W_LEN' undeclared (first use in this function) arch/mips/net/bpf_jit.c:559:7: note: each undeclared identifier is reported only once for each function it appears in arch/mips/net/bpf_jit.c:560:7: error: 'BPF_S_LD_W_ABS' undeclared (first use in this function) arch/mips/net/bpf_jit.c:561:7: error: 'BPF_S_LD_H_ABS' undeclared (first use in this function) arch/mips/net/bpf_jit.c:562:7: error: 'BPF_S_LD_B_ABS' undeclared (first use in this function) arch/mips/net/bpf_jit.c:563:7: error: 'BPF_S_ANC_CPU' undeclared (first use in this function) arch/mips/net/bpf_jit.c:564:7: error: 'BPF_S_ANC_IFINDEX' undeclared (first use in this function) arch/mips/net/bpf_jit.c:565:7: error: 'BPF_S_ANC_MARK' undeclared (first use in this function) and so on. Those symbols are not defined anywhere. The problem is due to a conflict with commit 348059313 (net: filter: get rid of BPF_S_* enum), which removed those definitions. Guenter