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
remove unused syscall flag
[trinity.git]
/
syscalls
/
init_module.c
blob
1b7f0faa0fa0c436a0bf3e7b9bccb7d76bf091d3
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
.
arg1name
=
"umod"
,
11
.
arg1type
=
ARG_ADDRESS
,
12
.
arg2name
=
"len"
,
13
.
arg2type
=
ARG_LEN
,
14
.
arg3name
=
"uargs"
,
15
.
arg3type
=
ARG_ADDRESS
,
16
};