1 /* 2 * Copyright (c) 2017 Oracle and/or its affiliates. All rights reserved. 3 */ 4 5 #ifndef _ASM_SPARC_VDSO_H 6 #define _ASM_SPARC_VDSO_H 7 8 struct vdso_image { 9 void *data; 10 unsigned long size; /* Always a multiple of PAGE_SIZE */ 11 }; 12 13 #ifdef CONFIG_SPARC64 14 extern const struct vdso_image vdso_image_64_builtin; 15 #endif 16 #ifdef CONFIG_COMPAT 17 extern const struct vdso_image vdso_image_32_builtin; 18 #endif 19 20 #endif /* _ASM_SPARC_VDSO_H */ 21