vdso32_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 vdso32_start, vdso32_end
  7. .balign PAGE_SIZE
  8. vdso32_start:
  9. .incbin "arch/s390/kernel/vdso32/vdso32.so"
  10. .balign PAGE_SIZE
  11. vdso32_end:
  12. .previous