vdso.S 444 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) 2020-2022 Loongson Technology Corporation Limited
  4. *
  5. * Derived from RISC-V:
  6. * Copyright (C) 2014 Regents of the University of California
  7. */
  8. #include <linux/init.h>
  9. #include <linux/linkage.h>
  10. #include <asm/page.h>
  11. __PAGE_ALIGNED_DATA
  12. .globl vdso_start, vdso_end
  13. .balign PAGE_SIZE
  14. vdso_start:
  15. .incbin "arch/loongarch/vdso/vdso.so"
  16. .balign PAGE_SIZE
  17. vdso_end:
  18. .previous