vdso.S 432 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Adapted from arm64 version.
  4. *
  5. * Copyright (C) 2012 ARM Limited
  6. *
  7. * Author: Will Deacon <[email protected]>
  8. */
  9. #include <linux/init.h>
  10. #include <linux/linkage.h>
  11. #include <linux/const.h>
  12. #include <asm/page.h>
  13. .globl vdso_start, vdso_end
  14. .section .data..ro_after_init
  15. .balign PAGE_SIZE
  16. vdso_start:
  17. .incbin "arch/arm/vdso/vdso.so"
  18. .balign PAGE_SIZE
  19. vdso_end:
  20. .previous