diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2013-01-21 15:25:54 -0500 |
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-03-03 22:58:33 -0500 |
| commit | 2cf0966683430b6468f36ca20515a33ca7f2403c (patch) | |
| tree | 902080486ebd7988d1250914c3809c4de472a22b /fs/aio.c | |
| parent | 22d1a35da0e247a006c286842a1846acb4ffed4f (diff) | |
| download | olio-linux-3.10-2cf0966683430b6468f36ca20515a33ca7f2403c.tar.xz olio-linux-3.10-2cf0966683430b6468f36ca20515a33ca7f2403c.zip | |
make SYSCALL_DEFINE<n>-generated wrappers do asmlinkage_protect
... and switch i386 to HAVE_SYSCALL_WRAPPERS, killing open-coded
uses of asmlinkage_protect() in a bunch of syscalls.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/aio.c')
| -rw-r--r-- | fs/aio.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -1790,7 +1790,5 @@ SYSCALL_DEFINE5(io_getevents, aio_context_t, ctx_id, ret = read_events(ioctx, min_nr, nr, events, timeout); put_ioctx(ioctx); } - - asmlinkage_protect(5, ret, ctx_id, min_nr, nr, events, timeout); return ret; } |