vdso64_wrapper.S 289 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #include <linux/init.h>
  3. #include <linux/linkage.h>
  4. #include <asm/page.h>
  5. __PAGE_ALIGNED_DATA
  6. .globl vdso64_start, vdso64_end
  7. .balign PAGE_SIZE
  8. vdso64_start:
  9. .incbin "arch/s390/kernel/vdso64/vdso64.so"
  10. .balign PAGE_SIZE
  11. vdso64_end:
  12. .previous