From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 71FC07D for ; Fri, 11 Feb 2022 21:55:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644616512; x=1676152512; h=date:from:to:cc:subject:message-id:mime-version; bh=TopYakJWlx3R6lJuj9QEDVnZISl5WHk9gEo0i7LyijM=; b=QgB8hrjw+OOPfcF//6qQLdz7UWJ4vBXFKDr4GUtFl9B/M049XqyysKoX jXXm8gjHStn0Pa4TNbpr5PhgQHD76uCKC7yTx4hCQdGw/hTR3tQ50uc+g dlZj9w15y4ec0fjcjPkdR4YUS4jwqt1LDHxBAWZiHvmoQapXPOzHm/MMM rp/a+XHLC4umWela0lMXMAKL4SsEUIrj5AhAdZ4tlD7i2Dgw9Ir0ScryW xhwLnucWPlrvnLwSgYAojD+75AFd3/ekQjS4HMFuXYmokfvk4/RCSaM6E jbvvQkVdZDQedLxibYlMo/unRpj13747xCAPLnjDjcb+GfadrPxAHxnyA Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10255"; a="250023640" X-IronPort-AV: E=Sophos;i="5.88,361,1635231600"; d="scan'208";a="250023640" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Feb 2022 13:55:11 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,361,1635231600"; d="scan'208";a="500913149" Received: from lkp-server01.sh.intel.com (HELO d95dc2dabeb1) ([10.239.97.150]) by orsmga002.jf.intel.com with ESMTP; 11 Feb 2022 13:55:09 -0800 Received: from kbuild by d95dc2dabeb1 with local (Exim 4.92) (envelope-from ) id 1nIdsi-0005ES-RZ; Fri, 11 Feb 2022 21:55:08 +0000 Date: Sat, 12 Feb 2022 05:54:31 +0800 From: kernel test robot To: Eric Dumazet Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org, netdev@vger.kernel.org, Pablo Neira Ayuso , Florian Westphal Subject: [net:master 21/30] net/netfilter/xt_socket.c:224:3: error: implicit declaration of function 'nf_defrag_ipv6_disable' Message-ID: <202202120509.FMR7TEL1-lkp@intel.com> Precedence: bulk X-Mailing-List: llvm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) tree: https://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git master head: 85d24ad38bc4658ce9a16b85b9c8dc0577d66c71 commit: 75063c9294fb239bbe64eb72141b6871fe526d29 [21/30] netfilter: xt_socket: fix a typo in socket_mt_destroy() config: hexagon-randconfig-r045-20220211 (https://download.01.org/0day-ci/archive/20220212/202202120509.FMR7TEL1-lkp@intel.com/config) compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project f6685f774697c85d6a352dcea013f46a99f9fe31) reproduce (this is a W=1 build): wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # https://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git/commit/?id=75063c9294fb239bbe64eb72141b6871fe526d29 git remote add net https://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git git fetch --no-tags net master git checkout 75063c9294fb239bbe64eb72141b6871fe526d29 # save the config file to linux build tree mkdir build_dir COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=hexagon SHELL=/bin/bash net/netfilter/ If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot All errors (new ones prefixed by >>): >> net/netfilter/xt_socket.c:224:3: error: implicit declaration of function 'nf_defrag_ipv6_disable' [-Werror,-Wimplicit-function-declaration] nf_defrag_ipv6_disable(par->net); ^ net/netfilter/xt_socket.c:224:3: note: did you mean 'nf_defrag_ipv4_disable'? include/net/netfilter/ipv4/nf_defrag_ipv4.h:7:6: note: 'nf_defrag_ipv4_disable' declared here void nf_defrag_ipv4_disable(struct net *net); ^ 1 error generated. vim +/nf_defrag_ipv6_disable +224 net/netfilter/xt_socket.c 218 219 static void socket_mt_destroy(const struct xt_mtdtor_param *par) 220 { 221 if (par->family == NFPROTO_IPV4) 222 nf_defrag_ipv4_disable(par->net); 223 else if (par->family == NFPROTO_IPV6) > 224 nf_defrag_ipv6_disable(par->net); 225 } 226 --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org