forked from Minki/linux
f94909ceb1
Replace all ret/retq instructions with RET in preparation of making RET a macro. Since AS is case insensitive it's a big no-op without RET defined. find arch/x86/ -name \*.S | while read file do sed -i 's/\<ret[q]*\>/RET/' $file done Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Signed-off-by: Borislav Petkov <bp@suse.de> Link: https://lore.kernel.org/r/20211204134907.905503893@infradead.org
37 lines
582 B
ArmAsm
37 lines
582 B
ArmAsm
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* vsyscall_emu_64.S: Vsyscall emulation page
|
|
*
|
|
* Copyright (c) 2011 Andy Lutomirski
|
|
*/
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
#include <asm/irq_vectors.h>
|
|
#include <asm/page_types.h>
|
|
#include <asm/unistd_64.h>
|
|
|
|
__PAGE_ALIGNED_DATA
|
|
.globl __vsyscall_page
|
|
.balign PAGE_SIZE, 0xcc
|
|
.type __vsyscall_page, @object
|
|
__vsyscall_page:
|
|
|
|
mov $__NR_gettimeofday, %rax
|
|
syscall
|
|
RET
|
|
|
|
.balign 1024, 0xcc
|
|
mov $__NR_time, %rax
|
|
syscall
|
|
RET
|
|
|
|
.balign 1024, 0xcc
|
|
mov $__NR_getcpu, %rax
|
|
syscall
|
|
RET
|
|
|
|
.balign 4096, 0xcc
|
|
|
|
.size __vsyscall_page, 4096
|