From: kernel test robot <lkp@intel.com>
To: Aleksa Sarai <cyphar@cyphar.com>, Ian Kent <raven@themaw.net>,
Bill O'Donnell <bodonnel@redhat.com>,
Christian Brauner <brauner@kernel.org>,
Jan Harkes <jaharkes@cs.cmu.edu>,
coda@cs.cmu.edu, Eric Sandeen <sandeen@redhat.com>,
David Howells <dhowells@redhat.com>
Cc: oe-kbuild-all@lists.linux.dev, autofs@vger.kernel.org,
linux-kernel@vger.kernel.org, codalist@coda.cs.cmu.edu,
Aleksa Sarai <cyphar@cyphar.com>
Subject: Re: [PATCH 2/2] coda: support FSCONFIG_SET_FD for fd mount flag
Date: Fri, 19 Jul 2024 08:59:48 +0800 [thread overview]
Message-ID: <202407190808.l4rcfRij-lkp@intel.com> (raw)
In-Reply-To: <20240719-fsconfig-fsparam_fd-fixes-v1-2-7ccd315c2ad4@cyphar.com>
Hi Aleksa,
kernel test robot noticed the following build errors:
[auto build test ERROR on b80cc4df1124702c600fd43b784e423a30919204]
url: https://github.com/intel-lab-lkp/linux/commits/Aleksa-Sarai/autofs-fix-missing-fput-for-FSCONFIG_SET_FD/20240718-230056
base: b80cc4df1124702c600fd43b784e423a30919204
patch link: https://lore.kernel.org/r/20240719-fsconfig-fsparam_fd-fixes-v1-2-7ccd315c2ad4%40cyphar.com
patch subject: [PATCH 2/2] coda: support FSCONFIG_SET_FD for fd mount flag
config: x86_64-randconfig-161-20240719 (https://download.01.org/0day-ci/archive/20240719/202407190808.l4rcfRij-lkp@intel.com/config)
compiler: clang version 18.1.5 (https://github.com/llvm/llvm-project 617a15a9eac96088ae5e9134248d8236e34b91b1)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240719/202407190808.l4rcfRij-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/202407190808.l4rcfRij-lkp@intel.com/
All errors (new ones prefixed by >>):
>> fs/coda/inode.c:129:6: error: use of undeclared identifier 'param'
129 | if (param->type == fs_value_is_file) {
| ^
fs/coda/inode.c:130:10: error: use of undeclared identifier 'param'
130 | file = param->file;
| ^
fs/coda/inode.c:131:3: error: use of undeclared identifier 'param'
131 | param->file = NULL;
| ^
>> fs/coda/inode.c:133:15: error: use of undeclared identifier 'result'
133 | file = fget(result->uint_32);
| ^
4 errors generated.
vim +/param +129 fs/coda/inode.c
121
122 static int coda_parse_fd(struct fs_context *fc, int fd)
123 {
124 struct coda_fs_context *ctx = fc->fs_private;
125 struct file *file;
126 struct inode *inode;
127 int idx;
128
> 129 if (param->type == fs_value_is_file) {
130 file = param->file;
131 param->file = NULL;
132 } else {
> 133 file = fget(result->uint_32);
134 }
135 if (!file)
136 return -EBADF;
137
138 inode = file_inode(file);
139 if (!S_ISCHR(inode->i_mode) || imajor(inode) != CODA_PSDEV_MAJOR) {
140 fput(file);
141 return invalf(fc, "code: Not coda psdev");
142 }
143
144 idx = iminor(inode);
145 fput(file);
146
147 if (idx < 0 || idx >= MAX_CODADEVS)
148 return invalf(fc, "coda: Bad minor number");
149 ctx->idx = idx;
150 return 0;
151 }
152
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
prev parent reply other threads:[~2024-07-19 1:00 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-18 14:34 [PATCH 0/2] fsconfig: minor fsparam_fd fixes Aleksa Sarai
2024-07-18 14:34 ` [PATCH 1/2] autofs: fix missing fput for FSCONFIG_SET_FD Aleksa Sarai
2024-07-18 14:34 ` [PATCH 2/2] coda: support FSCONFIG_SET_FD for fd mount flag Aleksa Sarai
2024-07-18 23:36 ` kernel test robot
2024-07-19 1:21 ` Aleksa Sarai
2024-07-19 0:59 ` 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=202407190808.l4rcfRij-lkp@intel.com \
--to=lkp@intel.com \
--cc=autofs@vger.kernel.org \
--cc=bodonnel@redhat.com \
--cc=brauner@kernel.org \
--cc=coda@cs.cmu.edu \
--cc=codalist@coda.cs.cmu.edu \
--cc=cyphar@cyphar.com \
--cc=dhowells@redhat.com \
--cc=jaharkes@cs.cmu.edu \
--cc=linux-kernel@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=raven@themaw.net \
--cc=sandeen@redhat.com \
/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