From: kernel test robot <lkp@intel.com>
To: Michael Grzeschik <m.grzeschik@pengutronix.de>,
Eric Van Hensbergen <ericvh@kernel.org>,
Latchesar Ionkov <lucho@ionkov.net>,
Dominique Martinet <asmadeus@codewreck.org>,
Christian Schoenebeck <linux_oss@crudebyte.com>,
Jonathan Corbet <corbet@lwn.net>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: oe-kbuild-all@lists.linux.dev,
Andrzej Pietrasiewicz <andrzej.p@collabora.com>,
v9fs@lists.linux.dev, linux-doc@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org,
kernel@pengutronix.de,
Michael Grzeschik <m.grzeschik@pengutronix.de>
Subject: Re: [PATCH v10 2/3] net/9p/usbg: Add new usb gadget function transport
Date: Fri, 30 Aug 2024 23:15:40 +0800 [thread overview]
Message-ID: <202408302200.rlcB6d6K-lkp@intel.com> (raw)
In-Reply-To: <20240116-ml-topic-u9p-v10-2-a85fdeac2c52@pengutronix.de>
Hi Michael,
kernel test robot noticed the following build warnings:
[auto build test WARNING on usb/usb-linus]
[also build test WARNING on linus/master v6.11-rc5]
[cannot apply to usb/usb-testing usb/usb-next ericvh-v9fs/for-next next-20240830]
[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/Michael-Grzeschik/net-9p-usbg-Add-new-usb-gadget-function-transport/20240827-064810
base: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git usb-linus
patch link: https://lore.kernel.org/r/20240116-ml-topic-u9p-v10-2-a85fdeac2c52%40pengutronix.de
patch subject: [PATCH v10 2/3] net/9p/usbg: Add new usb gadget function transport
config: i386-allyesconfig (https://download.01.org/0day-ci/archive/20240830/202408302200.rlcB6d6K-lkp@intel.com/config)
compiler: gcc-12 (Debian 12.2.0-14) 12.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240830/202408302200.rlcB6d6K-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/202408302200.rlcB6d6K-lkp@intel.com/
All warnings (new ones prefixed by >>):
net/9p/trans_usbg.c: In function 'p9_usbg_create':
>> net/9p/trans_usbg.c:373:30: warning: variable 'f' set but not used [-Wunused-but-set-variable]
373 | struct usb_function *f;
| ^
vim +/f +373 net/9p/trans_usbg.c
368
369 static int p9_usbg_create(struct p9_client *client, const char *devname, char *args)
370 {
371 struct f_usb9pfs_dev *dev;
372 struct f_usb9pfs *usb9pfs;
> 373 struct usb_function *f;
374 int ret = -ENOENT;
375 int found = 0;
376
377 if (!devname)
378 return -EINVAL;
379
380 guard(mutex)(&usb9pfs_lock);
381
382 list_for_each_entry(dev, &usbg_instance_list, usb9pfs_instance) {
383 if (!strncmp(devname, dev->tag, strlen(devname))) {
384 if (!dev->inuse) {
385 dev->inuse = true;
386 found = 1;
387 break;
388 }
389 ret = -EBUSY;
390 break;
391 }
392 }
393
394 if (!found) {
395 pr_err("no channels available for device %s\n", devname);
396 return ret;
397 }
398
399 usb9pfs = dev->usb9pfs;
400 if (!usb9pfs)
401 return -EINVAL;
402
403 f = &usb9pfs->function;
404
405 client->trans = (void *)usb9pfs;
406 if (!usb9pfs->in_req)
407 client->status = Disconnected;
408 else
409 client->status = Connected;
410 usb9pfs->client = client;
411
412 client->trans_mod->maxsize = usb9pfs->buflen;
413
414 complete(&usb9pfs->received);
415
416 return 0;
417 }
418
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2024-08-30 15:16 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-26 21:47 [PATCH v10 0/3] usb: gadget: 9pfs transport Michael Grzeschik
2024-08-26 21:47 ` [PATCH v10 1/3] usb: gadget: function: move u_f.h to include/linux/usb/func_utils.h Michael Grzeschik
2024-08-27 16:46 ` Christophe JAILLET
2024-08-27 17:13 ` Michael Grzeschik
2024-08-26 21:47 ` [PATCH v10 2/3] net/9p/usbg: Add new usb gadget function transport Michael Grzeschik
2024-08-30 15:15 ` kernel test robot [this message]
2024-08-26 21:47 ` [PATCH v10 3/3] tools: usb: p9_fwd: add usb gadget packet forwarder script Michael Grzeschik
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=202408302200.rlcB6d6K-lkp@intel.com \
--to=lkp@intel.com \
--cc=andrzej.p@collabora.com \
--cc=asmadeus@codewreck.org \
--cc=corbet@lwn.net \
--cc=ericvh@kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=kernel@pengutronix.de \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=linux_oss@crudebyte.com \
--cc=lucho@ionkov.net \
--cc=m.grzeschik@pengutronix.de \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=v9fs@lists.linux.dev \
/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