mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
After the adoption of the generic vDSO library this symbol does not exist. The alignment invariant is now guaranteed by the generic code. Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de> Signed-off-by: Thomas Gleixner <tglx@kernel.org> Tested-by: Andreas Larsson <andreas@gaisler.com> Reviewed-by: Andreas Larsson <andreas@gaisler.com> Acked-by: Andreas Larsson <andreas@gaisler.com> Link: https://patch.msgid.link/20260304-vdso-sparc64-generic-2-v6-11-d8eb3b0e1410@linutronix.de
21 lines
428 B
C
21 lines
428 B
C
/*
|
|
* Copyright (c) 2017 Oracle and/or its affiliates. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _ASM_SPARC_VDSO_H
|
|
#define _ASM_SPARC_VDSO_H
|
|
|
|
struct vdso_image {
|
|
void *data;
|
|
unsigned long size; /* Always a multiple of PAGE_SIZE */
|
|
};
|
|
|
|
#ifdef CONFIG_SPARC64
|
|
extern const struct vdso_image vdso_image_64_builtin;
|
|
#endif
|
|
#ifdef CONFIG_COMPAT
|
|
extern const struct vdso_image vdso_image_32_builtin;
|
|
#endif
|
|
|
|
#endif /* _ASM_SPARC_VDSO_H */
|