diff options
| author | Thomas Weißschuh <thomas.weissschuh@linutronix.de> | 2026-07-09 09:28:42 +0200 |
|---|---|---|
| committer | Thomas Gleixner <tglx@kernel.org> | 2026-07-15 10:49:03 +0200 |
| commit | ecacc9c8d3ed0f63065f4a1e94bfd8bf65a3ffaf (patch) | |
| tree | 33a240cec2fdfdf266dc8e2fafe83ac1df7e2d88 /lib | |
| parent | 52447180f4fb095390477ba541bb08f24aeb4e92 (diff) | |
| download | linux-next-ecacc9c8d3ed0f63065f4a1e94bfd8bf65a3ffaf.tar.gz linux-next-ecacc9c8d3ed0f63065f4a1e94bfd8bf65a3ffaf.zip | |
vdso: Rename HAVE_GENERIC_VDSO to VDSO_DATASTORE
Over time the meaning of HAVE_GENERIC_VDSO has become off.
Today it only controls the availability of the vDSO datastore.
Rename the symbol to match its function.
Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@kernel.org>
Reviewed-by: Vincenzo Frascino <vincenzo.frascino@arm.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@oss.qualcomm.com>
Link: https://patch.msgid.link/20260709-vdso-have_generic_vdso-v1-6-d2e1061f268b@linutronix.de
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/vdso/Kconfig | 6 | ||||
| -rw-r--r-- | lib/vdso/Makefile | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/vdso/Kconfig b/lib/vdso/Kconfig index eedb04974fd5..597f5f0f9681 100644 --- a/lib/vdso/Kconfig +++ b/lib/vdso/Kconfig @@ -1,11 +1,11 @@ # SPDX-License-Identifier: GPL-2.0 -config HAVE_GENERIC_VDSO +config VDSO_DATASTORE bool config GENERIC_GETTIMEOFDAY bool - select HAVE_GENERIC_VDSO + select VDSO_DATASTORE help This is a generic implementation of gettimeofday vdso. Each architecture that enables this feature has to @@ -20,6 +20,6 @@ config GENERIC_VDSO_OVERFLOW_PROTECT config VDSO_GETRANDOM bool - select HAVE_GENERIC_VDSO + select VDSO_DATASTORE help Selected by architectures that support vDSO getrandom(). diff --git a/lib/vdso/Makefile b/lib/vdso/Makefile index 405f743253d7..ac304def42d6 100644 --- a/lib/vdso/Makefile +++ b/lib/vdso/Makefile @@ -1,3 +1,3 @@ # SPDX-License-Identifier: GPL-2.0-only -obj-$(CONFIG_HAVE_GENERIC_VDSO) += datastore.o +obj-$(CONFIG_VDSO_DATASTORE) += datastore.o |
