From: kernel test robot <lkp@intel.com>
To: Cindy Lu <lulu@redhat.com>,
jasowang@redhat.com, mst@redhat.com, michael.christie@oracle.com,
linux-kernel@vger.kernel.org,
virtualization@lists.linux-foundation.org
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH v1 7/7] vhost: Add new UAPI to support change to task mode
Date: Wed, 11 Sep 2024 22:10:28 +0800 [thread overview]
Message-ID: <202409112119.BJdqPVTC-lkp@intel.com> (raw)
In-Reply-To: <20240909013531.1243525-8-lulu@redhat.com>
Hi Cindy,
kernel test robot noticed the following build errors:
[auto build test ERROR on mst-vhost/linux-next]
[also build test ERROR on linus/master v6.11-rc7 next-20240911]
[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/Cindy-Lu/vhost-Add-a-new-module_param-for-enable-kthread/20240909-093852
base: https://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git linux-next
patch link: https://lore.kernel.org/r/20240909013531.1243525-8-lulu%40redhat.com
patch subject: [PATCH v1 7/7] vhost: Add new UAPI to support change to task mode
config: arc-randconfig-001-20240911 (https://download.01.org/0day-ci/archive/20240911/202409112119.BJdqPVTC-lkp@intel.com/config)
compiler: arc-elf-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240911/202409112119.BJdqPVTC-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/202409112119.BJdqPVTC-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/vhost/vhost.c: In function 'vhost_worker_queue':
drivers/vhost/vhost.c:273:13: error: 'use_kthread' undeclared (first use in this function)
273 | if (use_kthread) {
| ^~~~~~~~~~~
drivers/vhost/vhost.c:273:13: note: each undeclared identifier is reported only once for each function it appears in
drivers/vhost/vhost.c: In function 'vhost_workers_free':
drivers/vhost/vhost.c:805:13: error: 'use_kthread' undeclared (first use in this function)
805 | if (use_kthread)
| ^~~~~~~~~~~
drivers/vhost/vhost.c: In function 'vhost_worker_create':
drivers/vhost/vhost.c:986:13: error: 'use_kthread' undeclared (first use in this function)
986 | if (use_kthread)
| ^~~~~~~~~~~
drivers/vhost/vhost.c: In function 'vhost_free_worker':
drivers/vhost/vhost.c:1030:13: error: 'use_kthread' undeclared (first use in this function)
1030 | if (use_kthread)
| ^~~~~~~~~~~
drivers/vhost/vhost.c: In function 'vhost_dev_ioctl':
>> drivers/vhost/vhost.c:2358:37: error: 'kthread' undeclared (first use in this function); did you mean 'kthreadd'?
2358 | if (copy_from_user(&kthread, argp, sizeof(enforce_task))) {
| ^~~~~~~
| kthreadd
drivers/vhost/vhost.c:2362:17: error: 'use_kthread' undeclared (first use in this function)
2362 | use_kthread = enforce_task;
| ^~~~~~~~~~~
drivers/vhost/vhost.c: In function 'vhost_worker_create':
drivers/vhost/vhost.c:990:1: warning: control reaches end of non-void function [-Wreturn-type]
990 | }
| ^
vim +2358 drivers/vhost/vhost.c
2337
2338 /* Caller must have device mutex */
2339 long vhost_dev_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
2340 {
2341 struct eventfd_ctx *ctx;
2342 u64 p;
2343 long r = 0;
2344 int i, fd;
2345 bool enforce_task;
2346
2347 /* If you are not the owner, you can become one */
2348 if (ioctl == VHOST_SET_OWNER) {
2349 r = vhost_dev_set_owner(d);
2350 goto done;
2351 }
2352 if (ioctl == VHOST_SET_ENFORCE_TASK) {
2353 /* Is there an owner already? */
2354 if (vhost_dev_has_owner(d)) {
2355 r = -EBUSY;
2356 goto done;
2357 }
> 2358 if (copy_from_user(&kthread, argp, sizeof(enforce_task))) {
2359 r = -EFAULT;
2360 goto done;
2361 }
2362 use_kthread = enforce_task;
2363 goto done;
2364 }
2365
2366 /* You must be the owner to do anything else */
2367 r = vhost_dev_check_owner(d);
2368 if (r)
2369 goto done;
2370
2371 switch (ioctl) {
2372 case VHOST_SET_MEM_TABLE:
2373 r = vhost_set_memory(d, argp);
2374 break;
2375 case VHOST_SET_LOG_BASE:
2376 if (copy_from_user(&p, argp, sizeof p)) {
2377 r = -EFAULT;
2378 break;
2379 }
2380 if ((u64)(unsigned long)p != p) {
2381 r = -EFAULT;
2382 break;
2383 }
2384 for (i = 0; i < d->nvqs; ++i) {
2385 struct vhost_virtqueue *vq;
2386 void __user *base = (void __user *)(unsigned long)p;
2387 vq = d->vqs[i];
2388 mutex_lock(&vq->mutex);
2389 /* If ring is inactive, will check when it's enabled. */
2390 if (vq->private_data && !vq_log_access_ok(vq, base))
2391 r = -EFAULT;
2392 else
2393 vq->log_base = base;
2394 mutex_unlock(&vq->mutex);
2395 }
2396 break;
2397 case VHOST_SET_LOG_FD:
2398 r = get_user(fd, (int __user *)argp);
2399 if (r < 0)
2400 break;
2401 ctx = fd == VHOST_FILE_UNBIND ? NULL : eventfd_ctx_fdget(fd);
2402 if (IS_ERR(ctx)) {
2403 r = PTR_ERR(ctx);
2404 break;
2405 }
2406 swap(ctx, d->log_ctx);
2407 for (i = 0; i < d->nvqs; ++i) {
2408 mutex_lock(&d->vqs[i]->mutex);
2409 d->vqs[i]->log_ctx = d->log_ctx;
2410 mutex_unlock(&d->vqs[i]->mutex);
2411 }
2412 if (ctx)
2413 eventfd_ctx_put(ctx);
2414 break;
2415 default:
2416 r = -ENOIOCTLCMD;
2417 break;
2418 }
2419 done:
2420 return r;
2421 }
2422 EXPORT_SYMBOL_GPL(vhost_dev_ioctl);
2423
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
prev parent reply other threads:[~2024-09-11 14:11 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-09 1:33 [PATCH v1 0/7] vhost: Add support of kthread API Cindy Lu
2024-09-09 1:33 ` [PATCH v1 1/7] vhost: Add a new module_param for enable kthread Cindy Lu
2024-09-09 1:33 ` [PATCH v1 2/7] vhost: Add kthread support in function vhost_worker_queue() Cindy Lu
2024-09-11 11:13 ` kernel test robot
2024-09-09 1:33 ` [PATCH v1 3/7] vhost: Add kthread support in function vhost_workers_free() Cindy Lu
2024-09-09 1:33 ` [PATCH v1 4/7] vhost: Add the vhost_worker to support kthread Cindy Lu
2024-09-09 1:33 ` [PATCH v1 5/7] vhost: Add the cgroup related function Cindy Lu
2024-09-09 1:33 ` [PATCH v1 6/7] vhost: Add kthread support in function vhost_worker_create Cindy Lu
2024-09-11 12:46 ` kernel test robot
2024-09-09 1:33 ` [PATCH v1 7/7] vhost: Add new UAPI to support change to task mode Cindy Lu
2024-09-11 14:10 ` 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=202409112119.BJdqPVTC-lkp@intel.com \
--to=lkp@intel.com \
--cc=jasowang@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lulu@redhat.com \
--cc=michael.christie@oracle.com \
--cc=mst@redhat.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=virtualization@lists.linux-foundation.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).