mirror of
https://github.com/linux-msm/laptops-kernel.git
synced 2026-08-13 14:19:53 -07:00
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
17 lines
513 B
C
17 lines
513 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _LINUX_VDSO_DATASTORE_H
|
|
#define _LINUX_VDSO_DATASTORE_H
|
|
|
|
#include <linux/mm_types.h>
|
|
|
|
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_VDSO_DATASTORE
|
|
void __init vdso_setup_data_pages(void);
|
|
#else /* !CONFIG_VDSO_DATASTORE */
|
|
static inline void vdso_setup_data_pages(void) { }
|
|
#endif /* CONFIG_VDSO_DATASTORE */
|
|
|
|
#endif /* _LINUX_VDSO_DATASTORE_H */
|