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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id D0D3EEB64DB for ; Thu, 15 Jun 2023 02:46:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S242352AbjFOCqg (ORCPT ); Wed, 14 Jun 2023 22:46:36 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37640 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S241782AbjFOCqe (ORCPT ); Wed, 14 Jun 2023 22:46:34 -0400 Received: from out-13.mta0.migadu.com (out-13.mta0.migadu.com [IPv6:2001:41d0:1004:224b::d]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 996F6212A for ; Wed, 14 Jun 2023 19:46:31 -0700 (PDT) Message-ID: <0d70dc6c-3f7e-b899-adcb-5b71c1aa298e@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1686797188; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=y0GLUQ1UnO+552Jxj5qXSKEt050MqlSFN7YUE1XZExg=; b=ckqRwCReb+YhVMvbIJ6+LmkbLPTucmKwFPl/YSAn3/pnmPpMpFWesyjzWj7Xtffa5oDQtK 9i4K6gH81yNOO4s2SfaJIQ9XmKl+muy2z7DgnJ4A+QbQeKX+OIfNB28sl1IJ/fCNFc2LNU hUIh4P2AAl+WR0btOBMVKS6ux9KhkGQ= Date: Thu, 15 Jun 2023 10:46:21 +0800 MIME-Version: 1.0 Subject: Re: [PATCH] NFSv4.2: fix wrong shrinker_id To: kernel test robot , Qi Zheng , trond.myklebust@hammerspace.com, anna@kernel.org, fllinden@amazon.com Cc: oe-kbuild-all@lists.linux.dev, linux-nfs@vger.kernel.org, linux-kernel@vger.kernel.org, Qi Zheng References: <20230614072443.3264264-1-qi.zheng@linux.dev> <202306150121.cN9iKnvx-lkp@intel.com> Content-Language: en-US X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Qi Zheng In-Reply-To: <202306150121.cN9iKnvx-lkp@intel.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2023/6/15 02:06, kernel test robot wrote: > Hi Qi, > > kernel test robot noticed the following build errors: > > [auto build test ERROR on linus/master] > [also build test ERROR on trondmy-nfs/linux-next v6.4-rc6 next-20230614] > [If your patch is applied to the wrong git tree, kindly drop us a note. > And when submitting patch, we suggest to use '--base' as documented in > https://git-scm.com/docs/git-format-patch#_base_tree_information] > > url: https://github.com/intel-lab-lkp/linux/commits/Qi-Zheng/NFSv4-2-fix-wrong-shrinker_id/20230614-152853 > base: linus/master > patch link: https://lore.kernel.org/r/20230614072443.3264264-1-qi.zheng%40linux.dev > patch subject: [PATCH] NFSv4.2: fix wrong shrinker_id > config: i386-debian-10.3 (https://download.01.org/0day-ci/archive/20230615/202306150121.cN9iKnvx-lkp@intel.com/config) > compiler: gcc-12 (Debian 12.2.0-14) 12.2.0 > reproduce (this is a W=1 build): > git checkout linus/master > b4 shazam https://lore.kernel.org/r/20230614072443.3264264-1-qi.zheng@linux.dev > # save the config file > mkdir build_dir && cp config build_dir/.config > make W=1 O=build_dir ARCH=i386 olddefconfig > make W=1 O=build_dir ARCH=i386 SHELL=/bin/bash > > If you fix the issue in a separate patch/commit (i.e. not just a new version of > the same patch/commit), kindly add following tags > | Reported-by: kernel test robot > | Closes: https://lore.kernel.org/oe-kbuild-all/202306150121.cN9iKnvx-lkp@intel.com/ > > All errors (new ones prefixed by >>, old ones prefixed by <<): > >>> ERROR: modpost: "free_prealloced_shrinker" [fs/nfs/nfsv4.ko] undefined! >>> ERROR: modpost: "register_shrinker_prepared" [fs/nfs/nfsv4.ko] undefined! >>> ERROR: modpost: "prealloc_shrinker" [fs/nfs/nfsv4.ko] undefined! Ah, these three functions need to be exported. Will fix it in the v2. >