diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2008-04-23 14:05:15 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2008-05-01 13:07:28 -0400 |
commit | a2dcb44c3c5a8151d2d9f6ac8ad0789efcdbe184 (patch) | |
tree | 8711fc210dc58372a859e6a6cf78dc638d768600 /fs | |
parent | bf7da7bcfb38409b4cdea34b0905bdf344f1b36d (diff) |
[PATCH] make osf_select() use core_sys_select()
... instead of open-coding it
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/select.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/select.c b/fs/select.c index 2c292146e246..80d70387e790 100644 --- a/fs/select.c +++ b/fs/select.c | |||
@@ -298,7 +298,7 @@ int do_select(int n, fd_set_bits *fds, s64 *timeout) | |||
298 | #define MAX_SELECT_SECONDS \ | 298 | #define MAX_SELECT_SECONDS \ |
299 | ((unsigned long) (MAX_SCHEDULE_TIMEOUT / HZ)-1) | 299 | ((unsigned long) (MAX_SCHEDULE_TIMEOUT / HZ)-1) |
300 | 300 | ||
301 | static int core_sys_select(int n, fd_set __user *inp, fd_set __user *outp, | 301 | int core_sys_select(int n, fd_set __user *inp, fd_set __user *outp, |
302 | fd_set __user *exp, s64 *timeout) | 302 | fd_set __user *exp, s64 *timeout) |
303 | { | 303 | { |
304 | fd_set_bits fds; | 304 | fd_set_bits fds; |