From: kernel test robot <lkp@intel.com>
To: "Mario Limonciello (AMD)" <superm1@kernel.org>,
Yazen Ghannam <yazen.ghannam@amd.com>,
"(maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT))"
<x86@kernel.org>, Jean Delvare <jdelvare@suse.com>
Cc: oe-kbuild-all@lists.linux.dev,
Thomas Gleixner <tglx@linutronix.de>,
Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
Dave Hansen <dave.hansen@linux.intel.com>,
"H . Peter Anvin" <hpa@zytor.com>,
linux-kernel@vger.kernel.org,
"Mario Limonciello (AMD)" <superm1@kernel.org>
Subject: Re: [PATCH 3/5] firmware: dmi: Read additional information when decoding DMI table
Date: Mon, 15 Dec 2025 12:31:26 +0800 [thread overview]
Message-ID: <202512151248.aV3iuNkX-lkp@intel.com> (raw)
In-Reply-To: <20251214185309.152614-4-superm1@kernel.org>
Hi Mario,
kernel test robot noticed the following build warnings:
[auto build test WARNING on tip/master]
[also build test WARNING on linus/master tip/auto-latest v6.19-rc1 next-20251215]
[cannot apply to tip/x86/core]
[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/Mario-Limonciello-AMD/firmware-dmi-Correct-an-indexing-error-in-dmi-h/20251215-025606
base: tip/master
patch link: https://lore.kernel.org/r/20251214185309.152614-4-superm1%40kernel.org
patch subject: [PATCH 3/5] firmware: dmi: Read additional information when decoding DMI table
config: i386-allnoconfig (https://download.01.org/0day-ci/archive/20251215/202512151248.aV3iuNkX-lkp@intel.com/config)
compiler: gcc-14 (Debian 14.2.0-19) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251215/202512151248.aV3iuNkX-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/202512151248.aV3iuNkX-lkp@intel.com/
All warnings (new ones prefixed by >>):
drivers/firmware/dmi_scan.c: In function 'dmi_save_additional':
>> drivers/firmware/dmi_scan.c:398:21: warning: variable 'strings' set but not used [-Wunused-but-set-variable]
398 | const char *strings;
| ^~~~~~~
vim +/strings +398 drivers/firmware/dmi_scan.c
395
396 static void __init dmi_save_additional(const struct dmi_additional_info *info)
397 {
> 398 const char *strings;
399 const u8 *data;
400 int count = 0;
401 int i;
402
403 if (!info || info->header.length < 5 + info->count * 5)
404 return;
405
406 data = info->entries;
407 strings = (const char *)(data + info->count * 5);
408
409 for (i = 0; i < info->count; i++) {
410 u8 entry_length = data[i * 5];
411 u8 string_num = data[i * 5 + 4];
412 const char *string_ptr;
413 char *value;
414 int len;
415
416 if (entry_length < 5 || string_num == 0)
417 continue;
418
419 string_ptr = dmi_string_nosave(&info->header, string_num);
420 if (!string_ptr || !*string_ptr)
421 continue;
422
423 len = strlen(string_ptr);
424 if (len == 0)
425 continue;
426
427 value = dmi_alloc(len + 1);
428 if (!value)
429 continue;
430
431 strscpy(value, string_ptr, len + 1);
432
433 dmi_save_one_device(DMI_DEV_TYPE_ADDITIONAL, value);
434 count++;
435 }
436 }
437
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2025-12-15 4:32 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-14 18:53 [PATCH 0/5] Parse SMBIOS additional entries Mario Limonciello (AMD)
2025-12-14 18:53 ` [PATCH 1/5] firmware: dmi: Correct an indexing error in dmi.h Mario Limonciello (AMD)
2025-12-15 21:11 ` Yazen Ghannam
2025-12-15 21:24 ` Mario Limonciello
2025-12-14 18:53 ` [PATCH 2/5] firmware: dmi: Adjust dmi_decode() to use enums Mario Limonciello (AMD)
2025-12-15 21:12 ` Yazen Ghannam
2025-12-14 18:53 ` [PATCH 3/5] firmware: dmi: Read additional information when decoding DMI table Mario Limonciello (AMD)
2025-12-15 4:31 ` kernel test robot [this message]
2025-12-15 5:06 ` kernel test robot
2025-12-15 12:47 ` kernel test robot
2025-12-14 18:53 ` [PATCH 4/5] firmware: dmi: Add debugfs for additional information entries Mario Limonciello (AMD)
2025-12-14 18:53 ` [PATCH 5/5] x86/amd_node: Output the AGESA version to the logs Mario Limonciello (AMD)
2025-12-15 21:23 ` Yazen Ghannam
2025-12-15 21:25 ` Mario Limonciello
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=202512151248.aV3iuNkX-lkp@intel.com \
--to=lkp@intel.com \
--cc=bp@alien8.de \
--cc=dave.hansen@linux.intel.com \
--cc=hpa@zytor.com \
--cc=jdelvare@suse.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=superm1@kernel.org \
--cc=tglx@linutronix.de \
--cc=x86@kernel.org \
--cc=yazen.ghannam@amd.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