From: kernel test robot <lkp@intel.com>
To: Benjamin Coddington <bcodding@hammerspace.com>,
Chuck Lever <chuck.lever@oracle.com>,
Jeff Layton <jlayton@kernel.org>, NeilBrown <neil@brown.name>,
Trond Myklebust <trondmy@kernel.org>,
Anna Schumaker <anna@kernel.org>
Cc: oe-kbuild-all@lists.linux.dev, linux-nfs@vger.kernel.org
Subject: Re: [PATCH v1 4/7] NFSD: Add a per-knfsd reusable encfh_buf
Date: Mon, 29 Dec 2025 01:52:28 +0800 [thread overview]
Message-ID: <202512290151.LBKUBvUx-lkp@intel.com> (raw)
In-Reply-To: <5b7bf494b1ec816111ab34416dcde85c0bc01a0a.1766848778.git.bcodding@hammerspace.com>
Hi Benjamin,
kernel test robot noticed the following build errors:
[auto build test ERROR on brauner-vfs/vfs.all]
[also build test ERROR on trondmy-nfs/linux-next linus/master v6.19-rc2 next-20251219]
[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/Benjamin-Coddington/nfsd-Convert-export-flags-to-use-BIT-macro/20251228-010753
base: https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs.git vfs.all
patch link: https://lore.kernel.org/r/5b7bf494b1ec816111ab34416dcde85c0bc01a0a.1766848778.git.bcodding%40hammerspace.com
patch subject: [PATCH v1 4/7] NFSD: Add a per-knfsd reusable encfh_buf
config: um-allyesconfig (https://download.01.org/0day-ci/archive/20251229/202512290151.LBKUBvUx-lkp@intel.com/config)
compiler: gcc-14 (Debian 14.2.0-19) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251229/202512290151.LBKUBvUx-lkp@intel.com/reproduce)
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 <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202512290151.LBKUBvUx-lkp@intel.com/
All errors (new ones prefixed by >>):
fs/nfsd/nfsxdr.c: In function 'svcxdr_decode_fhandle':
>> fs/nfsd/nfsxdr.c:66:9: error: too few arguments to function 'fh_init'
66 | fh_init(fhp, NFS_FHSIZE);
| ^~~~~~~
In file included from fs/nfsd/vfs.h:11,
from fs/nfsd/nfsxdr.c:8:
fs/nfsd/nfsfh.h:256:1: note: declared here
256 | fh_init(struct svc_fh *fhp, int maxsize, struct svc_rqst *rqstp)
| ^~~~~~~
vim +/fh_init +66 fs/nfsd/nfsxdr.c
a887eaed2a96475 Chuck Lever 2020-10-23 48
635a45d34706400 Chuck Lever 2020-11-17 49 /**
635a45d34706400 Chuck Lever 2020-11-17 50 * svcxdr_decode_fhandle - Decode an NFSv2 file handle
635a45d34706400 Chuck Lever 2020-11-17 51 * @xdr: XDR stream positioned at an encoded NFSv2 FH
635a45d34706400 Chuck Lever 2020-11-17 52 * @fhp: OUT: filled-in server file handle
635a45d34706400 Chuck Lever 2020-11-17 53 *
635a45d34706400 Chuck Lever 2020-11-17 54 * Return values:
635a45d34706400 Chuck Lever 2020-11-17 55 * %false: The encoded file handle was not valid
635a45d34706400 Chuck Lever 2020-11-17 56 * %true: @fhp has been initialized
635a45d34706400 Chuck Lever 2020-11-17 57 */
635a45d34706400 Chuck Lever 2020-11-17 58 bool
ebcd8e8b28535b6 Chuck Lever 2020-10-21 59 svcxdr_decode_fhandle(struct xdr_stream *xdr, struct svc_fh *fhp)
ebcd8e8b28535b6 Chuck Lever 2020-10-21 60 {
ebcd8e8b28535b6 Chuck Lever 2020-10-21 61 __be32 *p;
ebcd8e8b28535b6 Chuck Lever 2020-10-21 62
ebcd8e8b28535b6 Chuck Lever 2020-10-21 63 p = xdr_inline_decode(xdr, NFS_FHSIZE);
ebcd8e8b28535b6 Chuck Lever 2020-10-21 64 if (!p)
ebcd8e8b28535b6 Chuck Lever 2020-10-21 65 return false;
ebcd8e8b28535b6 Chuck Lever 2020-10-21 @66 fh_init(fhp, NFS_FHSIZE);
d8b26071e65e80a NeilBrown 2021-09-02 67 memcpy(&fhp->fh_handle.fh_raw, p, NFS_FHSIZE);
ebcd8e8b28535b6 Chuck Lever 2020-10-21 68 fhp->fh_handle.fh_size = NFS_FHSIZE;
ebcd8e8b28535b6 Chuck Lever 2020-10-21 69
ebcd8e8b28535b6 Chuck Lever 2020-10-21 70 return true;
ebcd8e8b28535b6 Chuck Lever 2020-10-21 71 }
ebcd8e8b28535b6 Chuck Lever 2020-10-21 72
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2025-12-28 17:53 UTC|newest]
Thread overview: 47+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-27 17:00 [RFC/v1] kNFSD Encrypted Filehandles Benjamin Coddington
2025-12-27 17:03 ` [PATCH v1 0/2] nfs-utils: encrypted filehandle support Benjamin Coddington
2025-12-27 17:03 ` [PATCH v1 1/2] nfsdctl: Add support for passing encrypted filehandle key Benjamin Coddington
2025-12-27 17:03 ` [PATCH v1 2/2] exportfs: Add support for export option encrypt_fh Benjamin Coddington
2025-12-27 17:04 ` [PATCH v1 0/7] kNFSD Encrypted Filehandles Benjamin Coddington
2025-12-27 17:04 ` [PATCH v1 1/7] nfsd: Convert export flags to use BIT() macro Benjamin Coddington
2025-12-27 17:04 ` [PATCH v1 2/7] nfsd: Add a symmetric-key cipher for encrypted filehandles Benjamin Coddington
2025-12-27 17:04 ` [PATCH v1 3/7] nfsd/sunrpc: add per-thread crypto context pointer Benjamin Coddington
2025-12-27 17:04 ` [PATCH v1 4/7] NFSD: Add a per-knfsd reusable encfh_buf Benjamin Coddington
2025-12-28 17:52 ` kernel test robot [this message]
2025-12-29 0:33 ` kernel test robot
2025-12-27 17:04 ` [PATCH v1 5/7] NFSD/export: Add encrypt_fh export option Benjamin Coddington
2025-12-27 17:04 ` [PATCH v1 6/7] NFSD: Add filehandle crypto functions and helpers Benjamin Coddington
2025-12-27 17:14 ` Benjamin Coddington
2025-12-28 1:34 ` Chuck Lever
2025-12-28 20:45 ` Eric Biggers
2025-12-29 13:39 ` Benjamin Coddington
2025-12-28 5:17 ` kernel test robot
2025-12-27 17:04 ` [PATCH v1 7/7] NFSD: Enable filehandle encryption Benjamin Coddington
2025-12-27 23:06 ` [PATCH v1 0/7] kNFSD Encrypted Filehandles NeilBrown
2025-12-27 23:26 ` Benjamin Coddington
2025-12-28 5:49 ` NeilBrown
2025-12-28 17:05 ` Rick Macklem
2025-12-29 12:52 ` Benjamin Coddington
2025-12-28 5:33 ` [PATCH v1 1/7] nfsd: Convert export flags to use BIT() macro NeilBrown
2025-12-29 12:11 ` Benjamin Coddington
2025-12-28 17:09 ` [PATCH v1 0/7] kNFSD Encrypted Filehandles Chuck Lever
2025-12-29 13:23 ` Benjamin Coddington
2026-01-13 11:51 ` Benjamin Coddington
2026-01-13 12:14 ` Jeff Layton
2026-01-13 14:08 ` Chuck Lever
2026-01-13 15:07 ` Benjamin Coddington
2026-01-13 15:18 ` Chuck Lever
2026-01-13 16:05 ` Benjamin Coddington
2026-01-13 16:43 ` Chuck Lever
2026-01-13 17:02 ` Benjamin Coddington
2026-01-13 18:53 ` Chuck Lever
2026-01-13 19:54 ` Benjamin Coddington
2026-01-13 21:02 ` Chuck Lever
2026-01-13 22:33 ` Benjamin Coddington
2026-01-14 0:42 ` Eric Biggers
2026-01-14 12:39 ` Benjamin Coddington
2026-01-14 13:19 ` Jeff Layton
2026-01-14 14:19 ` Chuck Lever
2026-01-14 14:53 ` Trond Myklebust
2026-01-14 15:04 ` Chuck Lever
2026-01-14 15:35 ` Trond Myklebust
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=202512290151.LBKUBvUx-lkp@intel.com \
--to=lkp@intel.com \
--cc=anna@kernel.org \
--cc=bcodding@hammerspace.com \
--cc=chuck.lever@oracle.com \
--cc=jlayton@kernel.org \
--cc=linux-nfs@vger.kernel.org \
--cc=neil@brown.name \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=trondmy@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.