repo.or.cz
/
trinity.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
move_pages: just use calloc
[trinity.git]
/
syscalls
/
io_submit.c
blob
8c37c36e3fd8f6b8ffd9a129573821cd8537a7e9
1
/*
2
* SYSCALL_DEFINE3(io_submit, aio_context_t, ctx_id, long, nr,
3
struct iocb __user * __user *, iocbpp)
4
*/
5
#include
"sanitise.h"
6
7
struct
syscallentry syscall_io_submit
= {
8
.
name
=
"io_submit"
,
9
.
num_args
=
3
,
10
.
arg1name
=
"ctx_id"
,
11
.
arg2name
=
"nr"
,
12
.
arg2type
=
ARG_LEN
,
13
.
arg3name
=
"iocbpp"
,
14
.
arg3type
=
ARG_ADDRESS
,
15
.
flags
=
NEED_ALARM
,
16
};