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
var scope reduction
[trinity.git]
/
syscalls
/
init_module.c
blob
3a2d7cdf10d38241159159c756da810f22a528e7
1
/*
2
* SYSCALL_DEFINE3(init_module, void __user *, umod,
3
unsigned long, len, const char __user *, uargs)
4
*/
5
#include
"sanitise.h"
6
7
struct
syscallentry syscall_init_module
= {
8
.
name
=
"init_module"
,
9
.
num_args
=
3
,
10
.
flags
=
CAPABILITY_CHECK
,
11
.
arg1name
=
"umod"
,
12
.
arg1type
=
ARG_ADDRESS
,
13
.
arg2name
=
"len"
,
14
.
arg2type
=
ARG_LEN
,
15
.
arg3name
=
"uargs"
,
16
.
arg3type
=
ARG_ADDRESS
,
17
};