vdso.h 491 B

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