From: kernel test robot <lkp@intel.com>
To: Martin Kletzander <nert.pinx@gmail.com>,
Fenghua Yu <fenghua.yu@intel.com>,
Reinette Chatre <reinette.chatre@intel.com>,
Thomas Gleixner <tglx@linutronix.de>,
Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
Dave Hansen <dave.hansen@linux.intel.com>,
x86@kernel.org, "H. Peter Anvin" <hpa@zytor.com>,
linux-kernel@vger.kernel.org
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH v3] x86/resctrl: Avoid overflow in MB settings in bw_validate()
Date: Wed, 25 Sep 2024 00:49:57 +0800 [thread overview]
Message-ID: <202409250046.1Kk0NXVZ-lkp@intel.com> (raw)
In-Reply-To: <8d028c5f6f23e92fb83cbf20599366e896abc5b5.1727167989.git.nert.pinx@gmail.com>
Hi Martin,
kernel test robot noticed the following build warnings:
[auto build test WARNING on tip/x86/core]
[also build test WARNING on linus/master v6.11 next-20240924]
[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/Martin-Kletzander/x86-resctrl-Avoid-overflow-in-MB-settings-in-bw_validate/20240924-165510
base: tip/x86/core
patch link: https://lore.kernel.org/r/8d028c5f6f23e92fb83cbf20599366e896abc5b5.1727167989.git.nert.pinx%40gmail.com
patch subject: [PATCH v3] x86/resctrl: Avoid overflow in MB settings in bw_validate()
config: x86_64-buildonly-randconfig-001-20240924 (https://download.01.org/0day-ci/archive/20240925/202409250046.1Kk0NXVZ-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/20240925/202409250046.1Kk0NXVZ-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/202409250046.1Kk0NXVZ-lkp@intel.com/
All warnings (new ones prefixed by >>):
arch/x86/kernel/cpu/resctrl/ctrlmondata.c: In function 'bw_validate':
>> arch/x86/kernel/cpu/resctrl/ctrlmondata.c:58:49: warning: format '%ld' expects argument of type 'long int', but argument 2 has type 'u32' {aka 'unsigned int'} [-Wformat=]
58 | rdt_last_cmd_printf("MB value %ld out of range [%d,%d]\n", bw,
| ~~^ ~~
| | |
| long int u32 {aka unsigned int}
| %d
vim +58 arch/x86/kernel/cpu/resctrl/ctrlmondata.c
60ec2440c63dea arch/x86/kernel/cpu/intel_rdt_schemata.c Tony Luck 2016-10-28 25
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 26 /*
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 27 * Check whether MBA bandwidth percentage value is correct. The value is
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 28 * checked against the minimum and max bandwidth values specified by the
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 29 * hardware. The allocated bandwidth percentage is rounded to the next
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 30 * control step available on the hardware.
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 31 */
be99ce3b7dd7ba arch/x86/kernel/cpu/resctrl/ctrlmondata.c Martin Kletzander 2024-09-24 32 static bool bw_validate(char *buf, u32 *data, struct rdt_resource *r)
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 33 {
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 34 int ret;
be99ce3b7dd7ba arch/x86/kernel/cpu/resctrl/ctrlmondata.c Martin Kletzander 2024-09-24 35 u32 bw;
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 36
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 37 /*
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 38 * Only linear delay values is supported for current Intel SKUs.
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 39 */
41215b7947f1b1 arch/x86/kernel/cpu/resctrl/ctrlmondata.c James Morse 2020-07-08 40 if (!r->membw.delay_linear && r->membw.arch_needs_linear) {
c377dcfbee808e arch/x86/kernel/cpu/intel_rdt_ctrlmondata.c Tony Luck 2017-09-25 41 rdt_last_cmd_puts("No support for non-linear MB domains\n");
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 42 return false;
c377dcfbee808e arch/x86/kernel/cpu/intel_rdt_ctrlmondata.c Tony Luck 2017-09-25 43 }
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 44
be99ce3b7dd7ba arch/x86/kernel/cpu/resctrl/ctrlmondata.c Martin Kletzander 2024-09-24 45 ret = kstrtou32(buf, 10, &bw);
c377dcfbee808e arch/x86/kernel/cpu/intel_rdt_ctrlmondata.c Tony Luck 2017-09-25 46 if (ret) {
be99ce3b7dd7ba arch/x86/kernel/cpu/resctrl/ctrlmondata.c Martin Kletzander 2024-09-24 47 rdt_last_cmd_printf("Invalid MB value %s\n", buf);
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 48 return false;
c377dcfbee808e arch/x86/kernel/cpu/intel_rdt_ctrlmondata.c Tony Luck 2017-09-25 49 }
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 50
be99ce3b7dd7ba arch/x86/kernel/cpu/resctrl/ctrlmondata.c Martin Kletzander 2024-09-24 51 /* Nothing else to do if software controller is enabled. */
be99ce3b7dd7ba arch/x86/kernel/cpu/resctrl/ctrlmondata.c Martin Kletzander 2024-09-24 52 if (is_mba_sc(r)) {
be99ce3b7dd7ba arch/x86/kernel/cpu/resctrl/ctrlmondata.c Martin Kletzander 2024-09-24 53 *data = bw;
be99ce3b7dd7ba arch/x86/kernel/cpu/resctrl/ctrlmondata.c Martin Kletzander 2024-09-24 54 return true;
be99ce3b7dd7ba arch/x86/kernel/cpu/resctrl/ctrlmondata.c Martin Kletzander 2024-09-24 55 }
be99ce3b7dd7ba arch/x86/kernel/cpu/resctrl/ctrlmondata.c Martin Kletzander 2024-09-24 56
be99ce3b7dd7ba arch/x86/kernel/cpu/resctrl/ctrlmondata.c Martin Kletzander 2024-09-24 57 if (bw < r->membw.min_bw || bw > r->default_ctrl) {
c377dcfbee808e arch/x86/kernel/cpu/intel_rdt_ctrlmondata.c Tony Luck 2017-09-25 @58 rdt_last_cmd_printf("MB value %ld out of range [%d,%d]\n", bw,
c377dcfbee808e arch/x86/kernel/cpu/intel_rdt_ctrlmondata.c Tony Luck 2017-09-25 59 r->membw.min_bw, r->default_ctrl);
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 60 return false;
c377dcfbee808e arch/x86/kernel/cpu/intel_rdt_ctrlmondata.c Tony Luck 2017-09-25 61 }
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 62
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 63 *data = roundup(bw, (unsigned long)r->membw.bw_gran);
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 64 return true;
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 65 }
64e8ed3d4a6dcd arch/x86/kernel/cpu/intel_rdt_schemata.c Vikas Shivappa 2017-04-07 66
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2024-09-24 16:50 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-24 8:53 [PATCH v3] x86/resctrl: Avoid overflow in MB settings in bw_validate() Martin Kletzander
2024-09-24 16:49 ` kernel test robot [this message]
2024-09-24 17:46 ` Reinette Chatre
2024-09-26 12:54 ` Martin Kletzander
2024-09-26 16:01 ` Martin Kletzander
2024-09-26 16:27 ` Reinette Chatre
2024-09-24 18:01 ` kernel test robot
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=202409250046.1Kk0NXVZ-lkp@intel.com \
--to=lkp@intel.com \
--cc=bp@alien8.de \
--cc=dave.hansen@linux.intel.com \
--cc=fenghua.yu@intel.com \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=nert.pinx@gmail.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=reinette.chatre@intel.com \
--cc=tglx@linutronix.de \
--cc=x86@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 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.