Merge branch 'fix/rt5645' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie...
[deliverable/linux.git] / arch / x86 / um / stub_64.S
CommitLineData
37185b33 1#include <as-layout.h>
d67b569f 2
276c974a 3.section .__syscall_stub, "ax"
c5600490
JD
4 .globl batch_syscall_stub
5batch_syscall_stub:
1b2411c2 6 mov $(STUB_DATA), %rbx
07bf731e
BS
7 /* load pointer to first operation */
8 mov %rbx, %rsp
9 add $0x10, %rsp
10again:
11 /* load length of additional data */
12 mov 0x0(%rsp), %rax
13
14 /* if(length == 0) : end of list */
15 /* write possible 0 to header */
16 mov %rax, 8(%rbx)
17 cmp $0, %rax
18 jz done
19
20 /* save current pointer */
21 mov %rsp, 8(%rbx)
22
23 /* skip additional data */
24 add %rax, %rsp
25
26 /* load syscall-# */
27 pop %rax
28
29 /* load syscall params */
c5600490
JD
30 pop %rdi
31 pop %rsi
32 pop %rdx
33 pop %r10
34 pop %r8
35 pop %r9
07bf731e
BS
36
37 /* execute syscall */
c5600490 38 syscall
07bf731e
BS
39
40 /* check return value */
41 pop %rcx
42 cmp %rcx, %rax
43 je again
44
45done:
46 /* save return value */
c5600490 47 mov %rax, (%rbx)
07bf731e
BS
48
49 /* stop */
50 int3
This page took 0.695725 seconds and 5 git commands to generate.