From: kernel test robot <lkp@intel.com>
To: Saurabh Sengar <ssengar@linux.microsoft.com>
Cc: oe-kbuild-all@lists.linux.dev, linux-kernel@vger.kernel.org,
Wei Liu <wei.liu@kernel.org>,
Michael Kelley <mikelley@microsoft.com>
Subject: drivers/hv/channel.c:597: warning: Function parameter or member 'size' not described in 'request_arr_init'
Date: Wed, 18 Oct 2023 03:18:31 +0800 [thread overview]
Message-ID: <202310180325.z51l0QSy-lkp@intel.com> (raw)
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 213f891525c222e8ed145ce1ce7ae1f47921cb9c
commit: f83705a51275ed29117d46e1d68e8b16dcb40507 Driver: VMBus: Add Devicetree support
date: 6 months ago
config: x86_64-buildonly-randconfig-003-20230823 (https://download.01.org/0day-ci/archive/20231018/202310180325.z51l0QSy-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/20231018/202310180325.z51l0QSy-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/202310180325.z51l0QSy-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> drivers/hv/channel.c:597: warning: Function parameter or member 'size' not described in 'request_arr_init'
vim +597 drivers/hv/channel.c
3e7ee4902fe699 drivers/staging/hv/Channel.c Hank Janssen 2009-07-13 588
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 589 /**
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 590 * request_arr_init - Allocates memory for the requestor array. Each slot
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 591 * keeps track of the next available slot in the array. Initially, each
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 592 * slot points to the next one (as in a Linked List). The last slot
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 593 * does not point to anything, so its value is U64_MAX by default.
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 594 * @size The size of the array
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 595 */
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 596 static u64 *request_arr_init(u32 size)
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 @597 {
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 598 int i;
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 599 u64 *req_arr;
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 600
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 601 req_arr = kcalloc(size, sizeof(u64), GFP_KERNEL);
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 602 if (!req_arr)
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 603 return NULL;
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 604
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 605 for (i = 0; i < size - 1; i++)
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 606 req_arr[i] = i + 1;
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 607
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 608 /* Last slot (no more available slots) */
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 609 req_arr[i] = U64_MAX;
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 610
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 611 return req_arr;
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 612 }
e8b7db38449ac5 drivers/hv/channel.c Andres Beltran 2020-11-09 613
:::::: The code at line 597 was first introduced by commit
:::::: e8b7db38449ac5b950a3f00519171c4be3e226ff Drivers: hv: vmbus: Add vmbus_requestor data structure for VMBus hardening
:::::: TO: Andres Beltran <lkmlabelt@gmail.com>
:::::: CC: Wei Liu <wei.liu@kernel.org>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
reply other threads:[~2023-10-17 19:19 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=202310180325.z51l0QSy-lkp@intel.com \
--to=lkp@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mikelley@microsoft.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=ssengar@linux.microsoft.com \
--cc=wei.liu@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
all inboxes | Powered by JetHome®