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
split up constants.h some
[trinity.git]
/
syscalls
/
readahead.c
blob
879cbaadd2f4dc68f00cacb77b4646be0e63e80a
1
/*
2
* SYSCALL_DEFINE(readahead)(int fd, loff_t offset, size_t count)
3
*/
4
#include
"sanitise.h"
5
6
struct
syscallentry syscall_readahead
= {
7
.
name
=
"readahead"
,
8
.
num_args
=
3
,
9
.
arg1name
=
"fd"
,
10
.
arg1type
=
ARG_FD
,
11
.
arg2name
=
"offset"
,
12
.
arg3name
=
"count"
,
13
.
arg3type
=
ARG_LEN
,
14
.
flags
=
NEED_ALARM
,
15
.
group
=
GROUP_VFS
,
16
};