Netdev List
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Manish Baing <manishbaing2789@gmail.com>,
	jk@codeconstruct.com.au, matt@codeconstruct.com.au
Cc: oe-kbuild-all@lists.linux.dev, andrew+netdev@lunn.ch,
	davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
	pabeni@redhat.com, netdev@vger.kernel.org,
	linux-kernel@vger.kernel.org, manishbaing2789@gmail.com
Subject: Re: [PATCH] mctp: serial: replace memset with zero-initialization
Date: Sun, 31 May 2026 05:41:17 +0800	[thread overview]
Message-ID: <202605310538.R9GEHEYK-lkp@intel.com> (raw)
In-Reply-To: <20260530175618.135533-1-manishbaing2789@gmail.com>

Hi Manish,

kernel test robot noticed the following build errors:

[auto build test ERROR on linus/master]
[also build test ERROR on v7.1-rc5 next-20260529]
[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/Manish-Baing/mctp-serial-replace-memset-with-zero-initialization/20260531-015807
base:   linus/master
patch link:    https://lore.kernel.org/r/20260530175618.135533-1-manishbaing2789%40gmail.com
patch subject: [PATCH] mctp: serial: replace memset with zero-initialization
config: x86_64-buildonly-randconfig-001-20260531 (https://download.01.org/0day-ci/archive/20260531/202605310538.R9GEHEYK-lkp@intel.com/config)
compiler: gcc-13 (Debian 13.3.0-16) 13.3.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260531/202605310538.R9GEHEYK-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/202605310538.R9GEHEYK-lkp@intel.com/

All errors (new ones prefixed by >>):

   drivers/net/mctp/mctp-serial.c: In function 'test_next_chunk_len':
>> drivers/net/mctp/mctp-serial.c:540:28: error: redeclaration of 'devx' with no linkage
     540 |         struct mctp_serial devx = { };
         |                            ^~~~
   drivers/net/mctp/mctp-serial.c:539:28: note: previous declaration of 'devx' with type 'struct mctp_serial'
     539 |         struct mctp_serial devx;
         |                            ^~~~

Kconfig warnings: (for reference only)
   WARNING: unmet direct dependencies detected for MFD_STMFX
   Depends on [n]: HAS_IOMEM [=y] && I2C [=y] && OF [=n]
   Selected by [y]:
   - PINCTRL_STMFX [=y] && PINCTRL [=y] && I2C [=y] && HAS_IOMEM [=y]


vim +/devx +540 drivers/net/mctp/mctp-serial.c

   536	
   537	static void test_next_chunk_len(struct kunit *test)
   538	{
   539		struct mctp_serial devx;
 > 540		struct mctp_serial devx = { };
   541		struct mctp_serial *dev = &devx;
   542		int next;
   543	
   544		const struct test_chunk_tx *params = test->param_value;
   545	
   546		memcpy(dev->txbuf, params->input, params->input_len);
   547		dev->txlen = params->input_len;
   548	
   549		for (size_t i = 0; i < MAX_CHUNKS; i++) {
   550			next = next_chunk_len(dev);
   551			dev->txpos += next;
   552			KUNIT_EXPECT_EQ(test, next, params->chunks[i]);
   553	
   554			if (next == 0) {
   555				KUNIT_EXPECT_EQ(test, dev->txpos, dev->txlen);
   556				return;
   557			}
   558		}
   559	
   560		KUNIT_FAIL_AND_ABORT(test, "Ran out of chunks");
   561	}
   562	

--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

      reply	other threads:[~2026-05-30 21:41 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-30 17:56 [PATCH] mctp: serial: replace memset with zero-initialization Manish Baing
2026-05-30 21:41 ` 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=202605310538.R9GEHEYK-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=andrew+netdev@lunn.ch \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=jk@codeconstruct.com.au \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=manishbaing2789@gmail.com \
    --cc=matt@codeconstruct.com.au \
    --cc=netdev@vger.kernel.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=pabeni@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