mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-23 10:12:24 +00:00
The generic storage implementation provides the same features as the custom one. However it can be shared between architectures, making maintenance easier. Co-developed-by: Nam Cao <namcao@linutronix.de> Signed-off-by: Nam Cao <namcao@linutronix.de> Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Heiko Carstens <hca@linux.ibm.com> Link: https://lore.kernel.org/all/20250204-vdso-store-rng-v3-12-13a4669dfc8c@linutronix.de
18 lines
289 B
C
18 lines
289 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __S390_VDSO_H__
|
|
#define __S390_VDSO_H__
|
|
|
|
#include <vdso/datapage.h>
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
int vdso_getcpu_init(void);
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
#define __VDSO_PAGES 4
|
|
|
|
#define VDSO_VERSION_STRING LINUX_2.6.29
|
|
|
|
#endif /* __S390_VDSO_H__ */
|