vdso.S 413 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) 2014 Regents of the University of California
  4. */
  5. #include <linux/init.h>
  6. #include <linux/linkage.h>
  7. #include <asm/page.h>
  8. #ifndef __VDSO_PATH
  9. #define __VDSO_PATH "arch/riscv/kernel/vdso/vdso.so"
  10. #endif
  11. __PAGE_ALIGNED_DATA
  12. .globl vdso_start, vdso_end
  13. .balign PAGE_SIZE
  14. vdso_start:
  15. .incbin __VDSO_PATH
  16. .balign PAGE_SIZE
  17. vdso_end:
  18. .previous