public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Ratheesh Kannoth <rkannoth@marvell.com>,
	netdev@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: oe-kbuild-all@lists.linux.dev, sgoutham@marvell.com,
	davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
	pabeni@redhat.com, horms@kernel.org, donald.hunter@gmail.com,
	jiri@resnulli.us, chuck.lever@oracle.com, matttbe@kernel.org,
	cjubran@nvidia.com, shshitrit@nvidia.com,
	Saeed Mahameed <saeedm@nvidia.com>,
	Ratheesh Kannoth <rkannoth@marvell.com>
Subject: Re: [PATCH v6 net-next 2/5] devlink: Implement devlink param multi attribute nested data values
Date: Sat, 21 Mar 2026 15:05:18 +0800	[thread overview]
Message-ID: <202603211533.2z2Lepl1-lkp@intel.com> (raw)
In-Reply-To: <20260319055533.1720093-3-rkannoth@marvell.com>

Hi Ratheesh,

kernel test robot noticed the following build warnings:

[auto build test WARNING on net-next/main]

url:    https://github.com/intel-lab-lkp/linux/commits/Ratheesh-Kannoth/octeontx2-af-npc-cn20k-debugfs-enhancements/20260320-133513
base:   net-next/main
patch link:    https://lore.kernel.org/r/20260319055533.1720093-3-rkannoth%40marvell.com
patch subject: [PATCH v6 net-next 2/5] devlink: Implement devlink param multi attribute nested data values
config: arm-allyesconfig (https://download.01.org/0day-ci/archive/20260321/202603211533.2z2Lepl1-lkp@intel.com/config)
compiler: arm-linux-gnueabi-gcc (GCC) 15.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260321/202603211533.2z2Lepl1-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/202603211533.2z2Lepl1-lkp@intel.com/

All warnings (new ones prefixed by >>):

   drivers/net/ethernet/mellanox/mlx5/core/en/pcie_cong_event.c: In function 'mlx5e_pcie_cong_get_thresh_config':
>> drivers/net/ethernet/mellanox/mlx5/core/en/pcie_cong_event.c:279:1: warning: the frame size of 1320 bytes is larger than 1280 bytes [-Wframe-larger-than=]
     279 | }
         | ^


vim +279 drivers/net/ethernet/mellanox/mlx5/core/en/pcie_cong_event.c

8890ee6dcf6e3d Dragos Tatulea 2025-07-15  250  
f4053490a6f651 Dragos Tatulea 2025-09-07  251  static int
f4053490a6f651 Dragos Tatulea 2025-09-07  252  mlx5e_pcie_cong_get_thresh_config(struct mlx5_core_dev *dev,
f4053490a6f651 Dragos Tatulea 2025-09-07  253  				  struct mlx5e_pcie_cong_thresh *config)
f4053490a6f651 Dragos Tatulea 2025-09-07  254  {
f4053490a6f651 Dragos Tatulea 2025-09-07  255  	u32 ids[4] = {
f4053490a6f651 Dragos Tatulea 2025-09-07  256  		MLX5_DEVLINK_PARAM_ID_PCIE_CONG_IN_LOW,
f4053490a6f651 Dragos Tatulea 2025-09-07  257  		MLX5_DEVLINK_PARAM_ID_PCIE_CONG_IN_HIGH,
f4053490a6f651 Dragos Tatulea 2025-09-07  258  		MLX5_DEVLINK_PARAM_ID_PCIE_CONG_OUT_LOW,
f4053490a6f651 Dragos Tatulea 2025-09-07  259  		MLX5_DEVLINK_PARAM_ID_PCIE_CONG_OUT_HIGH,
f4053490a6f651 Dragos Tatulea 2025-09-07  260  	};
f4053490a6f651 Dragos Tatulea 2025-09-07  261  	struct devlink *devlink = priv_to_devlink(dev);
f4053490a6f651 Dragos Tatulea 2025-09-07  262  	union devlink_param_value val[4];
f4053490a6f651 Dragos Tatulea 2025-09-07  263  
f4053490a6f651 Dragos Tatulea 2025-09-07  264  	for (int i = 0; i < 4; i++) {
f4053490a6f651 Dragos Tatulea 2025-09-07  265  		u32 id = ids[i];
f4053490a6f651 Dragos Tatulea 2025-09-07  266  		int err;
f4053490a6f651 Dragos Tatulea 2025-09-07  267  
f4053490a6f651 Dragos Tatulea 2025-09-07  268  		err = devl_param_driverinit_value_get(devlink, id, &val[i]);
f4053490a6f651 Dragos Tatulea 2025-09-07  269  		if (err)
f4053490a6f651 Dragos Tatulea 2025-09-07  270  			return err;
f4053490a6f651 Dragos Tatulea 2025-09-07  271  	}
f4053490a6f651 Dragos Tatulea 2025-09-07  272  
f4053490a6f651 Dragos Tatulea 2025-09-07  273  	config->inbound_low = val[0].vu16;
f4053490a6f651 Dragos Tatulea 2025-09-07  274  	config->inbound_high = val[1].vu16;
f4053490a6f651 Dragos Tatulea 2025-09-07  275  	config->outbound_low = val[2].vu16;
f4053490a6f651 Dragos Tatulea 2025-09-07  276  	config->outbound_high = val[3].vu16;
f4053490a6f651 Dragos Tatulea 2025-09-07  277  
f4053490a6f651 Dragos Tatulea 2025-09-07  278  	return 0;
f4053490a6f651 Dragos Tatulea 2025-09-07 @279  }
f4053490a6f651 Dragos Tatulea 2025-09-07  280  

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

  reply	other threads:[~2026-03-21  7:05 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-19  5:55 [PATCH v6 net-next 0/5] octeontx2-af: npc: Enhancements Ratheesh Kannoth
2026-03-19  5:55 ` [PATCH v6 net-next 1/5] octeontx2-af: npc: cn20k: debugfs enhancements Ratheesh Kannoth
2026-03-19  5:55 ` [PATCH v6 net-next 2/5] devlink: Implement devlink param multi attribute nested data values Ratheesh Kannoth
2026-03-21  7:05   ` kernel test robot [this message]
2026-03-19  5:55 ` [PATCH v6 net-next 3/5] octeontx2-af: npc: cn20k: add subbank search order control Ratheesh Kannoth
2026-03-19  5:55 ` [PATCH v6 net-next 4/5] octeontx2-af: npc: cn20k: dynamically allocate and free default MCAM entries Ratheesh Kannoth
2026-03-19  5:55 ` [PATCH v6 net-next 5/5] octeontx2-af: npc: Support for custom KPU profile from filesystem Ratheesh Kannoth
2026-03-20 16:54   ` Simon Horman
2026-03-23  1:47     ` Ratheesh Kannoth
2026-03-24  4:09       ` Ratheesh Kannoth

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=202603211533.2z2Lepl1-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=chuck.lever@oracle.com \
    --cc=cjubran@nvidia.com \
    --cc=davem@davemloft.net \
    --cc=donald.hunter@gmail.com \
    --cc=edumazet@google.com \
    --cc=horms@kernel.org \
    --cc=jiri@resnulli.us \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=matttbe@kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=pabeni@redhat.com \
    --cc=rkannoth@marvell.com \
    --cc=saeedm@nvidia.com \
    --cc=sgoutham@marvell.com \
    --cc=shshitrit@nvidia.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