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 /include/linux/vdso_datastore.h | |
| 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 'include/linux/vdso_datastore.h')
| -rw-r--r-- | include/linux/vdso_datastore.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/vdso_datastore.h b/include/linux/vdso_datastore.h index 3dfba9502d78..13b01baf3497 100644 --- a/include/linux/vdso_datastore.h +++ b/include/linux/vdso_datastore.h @@ -7,10 +7,10 @@ extern const struct vm_special_mapping vdso_vvar_mapping; struct vm_area_struct *vdso_install_vvar_mapping(struct mm_struct *mm, unsigned long addr); -#ifdef CONFIG_HAVE_GENERIC_VDSO +#ifdef CONFIG_VDSO_DATASTORE void __init vdso_setup_data_pages(void); -#else /* !CONFIG_HAVE_GENERIC_VDSO */ +#else /* !CONFIG_VDSO_DATASTORE */ static inline void vdso_setup_data_pages(void) { } -#endif /* CONFIG_HAVE_GENERIC_VDSO */ +#endif /* CONFIG_VDSO_DATASTORE */ #endif /* _LINUX_VDSO_DATASTORE_H */ |
