All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Cristian Marussi <cristian.marussi@arm.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [RFC PATCH 4/7] firmware: arm_scmi: Add System Telemetry driver
Date: Sun, 22 Jun 2025 00:50:03 +0800	[thread overview]
Message-ID: <202506220004.bYJ3ODLq-lkp@intel.com> (raw)
In-Reply-To: <20250620192813.2463367-5-cristian.marussi@arm.com>

Hi Cristian,

[This is a private test report for your RFC patch.]
kernel test robot noticed the following build warnings:

[auto build test WARNING on soc/for-next]
[also build test WARNING on trace/for-next linus/master v6.16-rc2 next-20250620]
[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/Cristian-Marussi/firmware-arm_scmi-Define-a-common-SCMI_MAX_PROTOCOLS-value/20250621-033227
base:   https://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git for-next
patch link:    https://lore.kernel.org/r/20250620192813.2463367-5-cristian.marussi%40arm.com
patch subject: [RFC PATCH 4/7] firmware: arm_scmi: Add System Telemetry driver
config: sh-allmodconfig (https://download.01.org/0day-ci/archive/20250622/202506220004.bYJ3ODLq-lkp@intel.com/config)
compiler: sh4-linux-gcc (GCC) 15.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250622/202506220004.bYJ3ODLq-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/202506220004.bYJ3ODLq-lkp@intel.com/

All warnings (new ones prefixed by >>):

   drivers/firmware/arm_scmi/scmi_system_telemetry.c: In function '__available_update_show':
>> drivers/firmware/arm_scmi/scmi_system_telemetry.c:346:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
     346 | }
         | ^


vim +346 drivers/firmware/arm_scmi/scmi_system_telemetry.c

   328	
   329	//TODO Review available interval show
   330	#define BUF_SZ	1024
   331	static inline ssize_t
   332	__available_update_show(char *buf,
   333				const struct scmi_telemetry_update_interval *intervals)
   334	{
   335		int len = 0, num_intervals = intervals->num;
   336		char available[BUF_SZ];
   337	
   338		for (int i = 0; i < num_intervals; i++) {
   339			len += scnprintf(available + len, BUF_SZ - len, "%u ",
   340					 intervals->update_intervals[i]);
   341		}
   342	
   343		available[len - 1] = '\0';
   344	
   345		return sysfs_emit(buf, "%s\n", available);
 > 346	}
   347	

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

  parent reply	other threads:[~2025-06-21 16:50 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-20 19:28 [RFC PATCH 0/7] Introduce SCMI Telemetry support Cristian Marussi
2025-06-20 19:28 ` [RFC PATCH 1/7] firmware: arm_scmi: Define a common SCMI_MAX_PROTOCOLS value Cristian Marussi
2025-06-24  3:13   ` Peng Fan
2025-06-25 13:59     ` Cristian Marussi
2025-06-20 19:28 ` [RFC PATCH 2/7] firmware: arm_scmi: Allow protocols to register for notifications Cristian Marussi
2025-06-20 19:28 ` [RFC PATCH 3/7] firmware: arm_scmi: Add Telemetry protocol support Cristian Marussi
2025-06-20 20:46   ` Dan Carpenter
2025-06-25 14:02     ` Cristian Marussi
2025-06-25 14:04     ` Cristian Marussi
2025-06-20 21:01   ` Dan Carpenter
2025-06-25 14:04     ` Cristian Marussi
2025-06-20 19:28 ` [RFC PATCH 4/7] firmware: arm_scmi: Add System Telemetry driver Cristian Marussi
2025-06-20 21:27   ` Dan Carpenter
2025-06-25 14:11     ` Cristian Marussi
2025-06-21 16:50   ` kernel test robot [this message]
2025-06-20 19:28 ` [RFC PATCH 5/7] firmware: arm_scmi: Add System Telemetry chardev/ioctls API Cristian Marussi
2025-06-20 21:51   ` Dan Carpenter
2025-06-25 14:14     ` Cristian Marussi
2025-06-23  9:27   ` kernel test robot
2025-06-20 19:28 ` [RFC PATCH 6/7] include: trace: Add Telemetry trace events Cristian Marussi
2025-06-20 19:28 ` [RFC PATCH 7/7] firmware: arm_scmi: Use new Telemetry traces Cristian Marussi
2025-06-24 10:22 ` [RFC PATCH 0/7] Introduce SCMI Telemetry support Dhruva Gole
2025-06-25 14:53   ` Cristian Marussi

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=202506220004.bYJ3ODLq-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=cristian.marussi@arm.com \
    --cc=oe-kbuild-all@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.