From patchwork Mon Apr 16 23:28:59 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Rothwell X-Patchwork-Id: 898992 X-Patchwork-Delegate: pablo@netfilter.org Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=netfilter-devel-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=canb.auug.org.au Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=canb.auug.org.au header.i=@canb.auug.org.au header.b="d4R7v44H"; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 40Q4PK6Vt8z9s15 for ; Tue, 17 Apr 2018 09:30:29 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751172AbeDPXaQ (ORCPT ); Mon, 16 Apr 2018 19:30:16 -0400 Received: from ozlabs.org ([203.11.71.1]:41085 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751059AbeDPXaP (ORCPT ); Mon, 16 Apr 2018 19:30:15 -0400 Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPSA id 40Q4P14F2cz9s15; Tue, 17 Apr 2018 09:30:13 +1000 (AEST) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=canb.auug.org.au DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=canb.auug.org.au; s=201702; t=1523921413; bh=6t9y8gIxSdcW73GtHjvfbjJ+kgIbeZdcSIWc2Yg034M=; h=Date:From:To:Cc:Subject:From; b=d4R7v44HcbFKxVspgA5Y5MD+RRkpqAz3QDzcDQ5NK/w+CWg+o9yPZlMfNZ141Ny6k RcIrdndSoyvU7V6HxJ/RVCqodz14mMA4EM5GcCHOxLfz+Bj18CTV11iHdeEGdotPlB S3KBsQeDmJfYJNgnlPKvhlgacagdORyQridmW593iPGoaDB/sdoOqeBcihhXa2/FXP qP/g+rzmtp3j0kxmqg7YC3+tKYIRKrL1qsCSxC8NwsCdY5t1fm/DqZRIPqbkS8TnoV rXrTUWgYrhpuEzEnvRC8s2Kfry8DtLDq6avtGWzneGr2RTgScs/CwJbKTLcat2pDRl 0Sk4MuPH53zfw== Date: Tue, 17 Apr 2018 09:28:59 +1000 From: Stephen Rothwell To: Pablo Neira Ayuso , NetFilter Cc: Linux-Next Mailing List , Linux Kernel Mailing List , Cong Wang Subject: linux-next: build failure after merge of the netfilter tree Message-ID: <20180417092859.358573be@canb.auug.org.au> MIME-Version: 1.0 Sender: netfilter-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org Hi all, After merging the netfilter tree, today's linux-next build (powerpc ppc64_defconfig) failed like this: net/netfilter/nf_conntrack_extend.c: In function 'nf_ct_ext_ add': net/netfilter/nf_conntrack_extend.c:74:2: error: implicit declaration of function 'kmemleak_not_leak' [-Werror=implicit-function-declaration] kmemleak_not_leak(old); ^~~~~~~~~~~~~~~~~ cc1: some warnings being treated as errors Caused by commit 114aa35d06d4 ("netfilter: conntrack: silent a memory leak warning") I have added this patch for today: From: Stephen Rothwell Date: Tue, 17 Apr 2018 09:26:49 +1000 Subject: [PATCH] netfilter: conntrack: include kmemleak.h for kmemleak_not_leak() Signed-off-by: Stephen Rothwell --- net/netfilter/nf_conntrack_extend.c | 1 + 1 file changed, 1 insertion(+) diff --git a/net/netfilter/nf_conntrack_extend.c b/net/netfilter/nf_conntrack_extend.c index bd71a828ebde..277bbfe26478 100644 --- a/net/netfilter/nf_conntrack_extend.c +++ b/net/netfilter/nf_conntrack_extend.c @@ -9,6 +9,7 @@ * 2 of the License, or (at your option) any later version. */ #include +#include #include #include #include