From: kernel test robot <lkp@intel.com>
To: "Thomas Weißschuh " <linux@weissschuh.net>
Cc: oe-kbuild-all@lists.linux.dev
Subject: [thomas-weissschuh:b4/vdso-have_generic_vdso 3/5] lib/vdso/Kconfig:27: unexpected 'if' within menu block
Date: Wed, 08 Jul 2026 01:10:36 +0200 [thread overview]
Message-ID: <202607080112.WNMfZGvC-lkp@intel.com> (raw)
tree: https://git.kernel.org/pub/scm/linux/kernel/git/thomas.weissschuh/linux.git b4/vdso-have_generic_vdso
head: e7bbb5fec675b89cb1e2ff5ccf7bb9651491d888
commit: 0653329d39fdbb29480a2e1d996b1385e3d8beef [3/5] HAVE_GENERIC_VDSO
config: x86_64-rhel-9.4-rust (attached as .config)
compiler: clang version 22.1.8 (https://github.com/llvm/llvm-project ca7933e47d3a3451d81e72ac174dcb5aa28b59d1)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260708/202607080112.WNMfZGvC-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/202607080112.WNMfZGvC-lkp@intel.com/
All errors (new ones prefixed by >>):
WARN /zdci/src/lkp/lib/log.sh:131:in `log_warn': /opt/cross/rustc-1.96.0-bindgen-0.72.1 doesn't exist
from /zdci/src/kernel-tests/lib/debug.sh:164: kbuild_log_warn
from /zdci/src/kernel-tests/lib/kbuild.sh:3371: export_rust_path
from /zdci/src/kernel-tests/lib/kbuild.sh:3361: export_compiler_path
from /zdci/src/kernel-tests/lib/kbuild.sh:3840: invoke_make
from /zdci/src/kernel-tests/lib/kbuild.sh:4022: make
from /zdci/src/kernel-tests/lib/kbuild.sh:5520: make_config_allyes
from /zdci/src/kernel-tests/common.sh:202: redirect_error_to_screen
from /zdci/src/kernel-tests/common.sh:210: redirect_command_errors
from /zdci/src/kernel-tests/lib/kbuild.sh:5527: make_config
from /zdci/src/kernel-tests/lib/kbuild.sh:6386: compile_one_config
from /zdci/src/kernel-tests/lib/builder/base.sh:88: builder_compile
from /zdci/src/kernel-tests/bisect-test-build-error.sh:101: main
>> lib/vdso/Kconfig:27: unexpected 'if' within menu block
>> lib/Kconfig:597: syntax error
lib/Kconfig:597: invalid statement
make[3]: *** [scripts/kconfig/Makefile:85: oldconfig] Error 1
make[2]: *** [Makefile:763: oldconfig] Error 2
make[1]: *** [Makefile:248: __sub-make] Error 2
make[1]: Target 'oldconfig' not remade because of errors.
make: *** [Makefile:248: __sub-make] Error 2
make: Target 'oldconfig' not remade because of errors.
--
WARN /zdci/src/lkp/lib/log.sh:131:in `log_warn': /opt/cross/rustc-1.96.0-bindgen-0.72.1 doesn't exist
from /zdci/src/kernel-tests/lib/debug.sh:164: kbuild_log_warn
from /zdci/src/kernel-tests/lib/kbuild.sh:3371: export_rust_path
from /zdci/src/kernel-tests/lib/kbuild.sh:3361: export_compiler_path
from /zdci/src/kernel-tests/lib/kbuild.sh:3840: invoke_make
from /zdci/src/kernel-tests/lib/kbuild.sh:4022: make
from /zdci/src/kernel-tests/lib/kbuild.sh:5520: make_config_allyes
from /zdci/src/kernel-tests/common.sh:202: redirect_error_to_screen
from /zdci/src/kernel-tests/common.sh:210: redirect_command_errors
from /zdci/src/kernel-tests/lib/kbuild.sh:5527: make_config
from /zdci/src/kernel-tests/lib/kbuild.sh:6382: compile_one_config
from /zdci/src/kernel-tests/lib/builder/base.sh:88: builder_compile
from /zdci/src/kernel-tests/bisect-test-build-error.sh:101: main
>> lib/vdso/Kconfig:27: unexpected 'if' within menu block
>> lib/Kconfig:597: syntax error
lib/Kconfig:597: invalid statement
make[3]: *** [scripts/kconfig/Makefile:85: olddefconfig] Error 1
make[2]: *** [Makefile:763: olddefconfig] Error 2
make[1]: *** [Makefile:248: __sub-make] Error 2
make[1]: Target 'olddefconfig' not remade because of errors.
make: *** [Makefile:248: __sub-make] Error 2
make: Target 'olddefconfig' not remade because of errors.
vim +/if +27 lib/vdso/Kconfig
00b26474c2f161 Vincenzo Frascino 2019-06-21 2
00b26474c2f161 Vincenzo Frascino 2019-06-21 3 config HAVE_GENERIC_VDSO
00b26474c2f161 Vincenzo Frascino 2019-06-21 4 bool
00b26474c2f161 Vincenzo Frascino 2019-06-21 5
00b26474c2f161 Vincenzo Frascino 2019-06-21 6 config GENERIC_GETTIMEOFDAY
00b26474c2f161 Vincenzo Frascino 2019-06-21 7 bool
0653329d39fdbb Thomas Weißschuh 2026-07-08 8 select HAVE_GENERIC_VDSO
00b26474c2f161 Vincenzo Frascino 2019-06-21 9 help
00b26474c2f161 Vincenzo Frascino 2019-06-21 10 This is a generic implementation of gettimeofday vdso.
00b26474c2f161 Vincenzo Frascino 2019-06-21 11 Each architecture that enables this feature has to
00b26474c2f161 Vincenzo Frascino 2019-06-21 12 provide the fallback implementation.
00b26474c2f161 Vincenzo Frascino 2019-06-21 13
0c68458b0a5878 Adrian Hunter 2024-03-25 14 config GENERIC_VDSO_OVERFLOW_PROTECT
0c68458b0a5878 Adrian Hunter 2024-03-25 15 bool
0c68458b0a5878 Adrian Hunter 2024-03-25 16 help
0c68458b0a5878 Adrian Hunter 2024-03-25 17 Select to add multiplication overflow protection to the VDSO
0c68458b0a5878 Adrian Hunter 2024-03-25 18 time getter functions for the price of an extra conditional
0c68458b0a5878 Adrian Hunter 2024-03-25 19 in the hotpath.
0c68458b0a5878 Adrian Hunter 2024-03-25 20
4ad10a5f5f78a5 Jason A. Donenfeld 2022-11-18 21 config VDSO_GETRANDOM
4ad10a5f5f78a5 Jason A. Donenfeld 2022-11-18 22 bool
0653329d39fdbb Thomas Weißschuh 2026-07-08 23 select HAVE_GENERIC_VDSO
4ad10a5f5f78a5 Jason A. Donenfeld 2022-11-18 24 help
4ad10a5f5f78a5 Jason A. Donenfeld 2022-11-18 25 Selected by architectures that support vDSO getrandom().
258b37c6e62662 Thomas Weißschuh 2025-08-26 26
258b37c6e62662 Thomas Weißschuh 2025-08-26 @27 endif
:::::: The code at line 27 was first introduced by commit
:::::: 258b37c6e626625fe441e16ab90e6a542a66eaee vdso: Gate VDSO_GETRANDOM behind HAVE_GENERIC_VDSO
:::::: TO: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
:::::: CC: Thomas Gleixner <tglx@linutronix.de>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
reply other threads:[~2026-07-07 23:10 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=202607080112.WNMfZGvC-lkp@intel.com \
--to=lkp@intel.com \
--cc=linux@weissschuh.net \
--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.