From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.2 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C311BCA9EB5 for ; Mon, 4 Nov 2019 13:33:08 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 98ED02184C for ; Mon, 4 Nov 2019 13:33:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1572874388; bh=/TUvH7WxdRqK1Hx+G/N8sjyhZKgnOcbOcjnSABQLZ48=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=CeqMfB9E8wEt5yzC43dzLoa0zq+zWM7vA5AC01Aj5SLYyohmM7WfYVUmwIXJDs/BG s0AD1yTskRBgrtNleXSX+JUeu6Y4XCSlqQPAKaduL5Na8gBRFxjBcqfitLFRN1NKa/ il4dTYsknV8t8KCgZDQBE8jCQQb9X1mBCJ4bk1j0= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728781AbfKDNdE (ORCPT ); Mon, 4 Nov 2019 08:33:04 -0500 Received: from mail.kernel.org ([198.145.29.99]:52562 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727663AbfKDNdE (ORCPT ); Mon, 4 Nov 2019 08:33:04 -0500 Received: from localhost (unknown [62.119.166.9]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id DB3D620B7C; Mon, 4 Nov 2019 13:33:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1572874383; bh=/TUvH7WxdRqK1Hx+G/N8sjyhZKgnOcbOcjnSABQLZ48=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=nNL4JsMh3/13d1kVojFuK8PITKHicXPSZepCYJIov3yDNR0t6/l89VDK6LDc83vlE Bq70otCffMI3EYgo/PHMfNm0eZMYz/IHlRdDKQ+IYBdqyYCOqyTGy+xtkwn5B2OAhY iKMuiqQ3PM4Kxna5rsGyxji4xCzGLZY5KCI/jDS4= Date: Mon, 4 Nov 2019 14:32:58 +0100 From: Greg Kroah-Hartman To: Naresh Kamboju Cc: Sasha Levin , linux- stable , kuznet@ms2.inr.ac.ru, yoshfuji@linux-ipv6.org, lkft-triage@lists.linaro.org, "David S. Miller" , open list , Netdev Subject: Re: stable-rc 4.14 : net/ipv6/addrconf.c:6593:22: error: 'blackhole_netdev' undeclared Message-ID: <20191104133258.GA2130866@kroah.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.12.2 (2019-09-21) Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Mon, Nov 04, 2019 at 06:44:39PM +0530, Naresh Kamboju wrote: > stable-rc 4.14 for architectures arm64, arm, x86_64 and i386 builds > failed due to below error, > > net/ipv6/addrconf.c: In function 'addrconf_init': > net/ipv6/addrconf.c:6593:22: error: 'blackhole_netdev' undeclared > (first use in this function); did you mean 'alloc_netdev'? > bdev = ipv6_add_dev(blackhole_netdev); > ^~~~~~~~~~~~~~~~ > alloc_netdev > net/ipv6/addrconf.c:6593:22: note: each undeclared identifier is > reported only once for each function it appears in > net/ipv6/addrconf.c: In function 'addrconf_cleanup': > net/ipv6/addrconf.c:6667:18: error: 'blackhole_netdev' undeclared > (first use in this function); did you mean 'alloc_netdev'? > addrconf_ifdown(blackhole_netdev, 2); > ^~~~~~~~~~~~~~~~ > alloc_netdev > > Build link, > https://ci.linaro.org/view/lkft/job/openembedded-lkft-linux-stable-rc-4.14/DISTRO=lkft,MACHINE=intel-corei7-64,label=docker-lkft/632/consoleText > Ick, my fault, will go fix this, sorry about that.