* Re: [RFC PATCH v2 1/8] certs: Introduce ability to link to a system key
[not found] <20240531003945.44594-2-eric.snowberg@oracle.com>
@ 2024-05-31 5:37 ` kernel test robot
0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2024-05-31 5:37 UTC (permalink / raw)
To: Eric Snowberg; +Cc: llvm, oe-kbuild-all
Hi Eric,
[This is a private test report for your RFC patch.]
kernel test robot noticed the following build errors:
[auto build test ERROR on 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0]
url: https://github.com/intel-lab-lkp/linux/commits/Eric-Snowberg/certs-Introduce-ability-to-link-to-a-system-key/20240531-084602
base: 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0
patch link: https://lore.kernel.org/r/20240531003945.44594-2-eric.snowberg%40oracle.com
patch subject: [RFC PATCH v2 1/8] certs: Introduce ability to link to a system key
config: arm-defconfig (https://download.01.org/0day-ci/archive/20240531/202405311344.nMjBNBi4-lkp@intel.com/config)
compiler: clang version 14.0.6 (https://github.com/llvm/llvm-project f28c006a5895fc0e329fe15fead81e37457cb1d1)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240531/202405311344.nMjBNBi4-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/202405311344.nMjBNBi4-lkp@intel.com/
All errors (new ones prefixed by >>):
>> certs/system_keyring.c:450:28: error: use of undeclared identifier 'platform_trusted_keys'; did you mean 'set_platform_trusted_keys'?
key = find_asymmetric_key(platform_trusted_keys, id, NULL, NULL, false);
^~~~~~~~~~~~~~~~~~~~~
set_platform_trusted_keys
include/keys/system_keyring.h:133:20: note: 'set_platform_trusted_keys' declared here
static inline void set_platform_trusted_keys(struct key *keyring)
^
1 error generated.
vim +450 certs/system_keyring.c
445
446 key = find_asymmetric_key(system_keyring, id, NULL, NULL, false);
447 if (!IS_ERR(key))
448 goto found;
449
> 450 key = find_asymmetric_key(platform_trusted_keys, id, NULL, NULL, false);
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] only message in thread