linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Dai Ngo <dai.ngo@oracle.com>, bfields@fieldses.org
Cc: kbuild-all@lists.01.org, linux-nfs@vger.kernel.org
Subject: Re: [PATCH] NFSv4_2: SSC helper should use its own config.
Date: Wed, 27 Jan 2021 18:33:31 +0800	[thread overview]
Message-ID: <202101271830.7488d4Vm-lkp@intel.com> (raw)
In-Reply-To: <20210123015013.34609-1-dai.ngo@oracle.com>

[-- Attachment #1: Type: text/plain, Size: 3803 bytes --]

Hi Dai,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on nfs/linux-next]
[also build test ERROR on linus/master nfsd/nfsd-next v5.11-rc5 next-20210125]
[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]

url:    https://github.com/0day-ci/linux/commits/Dai-Ngo/NFSv4_2-SSC-helper-should-use-its-own-config/20210124-141002
base:   git://git.linux-nfs.org/projects/trondmy/linux-nfs.git linux-next
config: x86_64-kexec (attached as .config)
compiler: gcc-9 (Debian 9.3.0-15) 9.3.0
reproduce (this is a W=1 build):
        # https://github.com/0day-ci/linux/commit/39c41233a1cdc4dc2d2a690293049510d384a2b2
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Dai-Ngo/NFSv4_2-SSC-helper-should-use-its-own-config/20210124-141002
        git checkout 39c41233a1cdc4dc2d2a690293049510d384a2b2
        # save the attached .config to linux build tree
        make W=1 ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   ld: fs/nfs/super.o: in function `nfs_ssc_register_ops':
   fs/nfs/super.c:120: undefined reference to `nfs_ssc_register'
   ld: fs/nfs/super.o: in function `nfs_ssc_unregister_ops':
   fs/nfs/super.c:127: undefined reference to `nfs_ssc_unregister'
   ld: fs/nfs/nfs4file.o: in function `nfs42_ssc_register_ops':
>> fs/nfs/nfs4file.c:424: undefined reference to `nfs42_ssc_register'
   ld: fs/nfs/nfs4file.o: in function `nfs42_ssc_unregister_ops':
>> fs/nfs/nfs4file.c:437: undefined reference to `nfs42_ssc_unregister'


vim +424 fs/nfs/nfs4file.c

0cfcd405e758ba Dai Ngo           2020-10-18  414  
0cfcd405e758ba Dai Ngo           2020-10-18  415  /**
0cfcd405e758ba Dai Ngo           2020-10-18  416   * nfs42_ssc_register_ops - Wrapper to register NFS_V4 ops in nfs_common
0cfcd405e758ba Dai Ngo           2020-10-18  417   *
0cfcd405e758ba Dai Ngo           2020-10-18  418   * Return values:
0cfcd405e758ba Dai Ngo           2020-10-18  419   *   None
0cfcd405e758ba Dai Ngo           2020-10-18  420   */
0cfcd405e758ba Dai Ngo           2020-10-18  421  void nfs42_ssc_register_ops(void)
0cfcd405e758ba Dai Ngo           2020-10-18  422  {
39c41233a1cdc4 Dai Ngo           2021-01-22  423  #ifdef CONFIG_NFSD_V4
0cfcd405e758ba Dai Ngo           2020-10-18 @424  	nfs42_ssc_register(&nfs4_ssc_clnt_ops_tbl);
39c41233a1cdc4 Dai Ngo           2021-01-22  425  #endif
0cfcd405e758ba Dai Ngo           2020-10-18  426  }
0cfcd405e758ba Dai Ngo           2020-10-18  427  
0cfcd405e758ba Dai Ngo           2020-10-18  428  /**
0cfcd405e758ba Dai Ngo           2020-10-18  429   * nfs42_ssc_unregister_ops - wrapper to un-register NFS_V4 ops in nfs_common
0cfcd405e758ba Dai Ngo           2020-10-18  430   *
0cfcd405e758ba Dai Ngo           2020-10-18  431   * Return values:
0cfcd405e758ba Dai Ngo           2020-10-18  432   *   None.
0cfcd405e758ba Dai Ngo           2020-10-18  433   */
0cfcd405e758ba Dai Ngo           2020-10-18  434  void nfs42_ssc_unregister_ops(void)
0cfcd405e758ba Dai Ngo           2020-10-18  435  {
39c41233a1cdc4 Dai Ngo           2021-01-22  436  #ifdef CONFIG_NFSD_V4
0cfcd405e758ba Dai Ngo           2020-10-18 @437  	nfs42_ssc_unregister(&nfs4_ssc_clnt_ops_tbl);
39c41233a1cdc4 Dai Ngo           2021-01-22  438  #endif
0cfcd405e758ba Dai Ngo           2020-10-18  439  }
6b7153da2c1a58 Christoph Hellwig 2015-11-13  440  #endif /* CONFIG_NFS_V4_2 */
bea51b30b28103 Peng Tao          2015-09-26  441  

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 28386 bytes --]

      parent reply	other threads:[~2021-01-27 10:36 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-23  1:50 [PATCH] NFSv4_2: SSC helper should use its own config Dai Ngo
2021-01-25 14:32 ` Chuck Lever
2021-01-25 17:01   ` dai.ngo
2021-01-25 16:52 ` J. Bruce Fields
2021-01-26 20:06 ` Chuck Lever
2021-01-27 10:33 ` kernel test robot [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202101271830.7488d4Vm-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=bfields@fieldses.org \
    --cc=dai.ngo@oracle.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-nfs@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).