diff options
Diffstat (limited to 'arch/alpha/kernel/osf_sys.c')
-rw-r--r-- | arch/alpha/kernel/osf_sys.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/alpha/kernel/osf_sys.c b/arch/alpha/kernel/osf_sys.c index fb804043b320..be133f1f75a4 100644 --- a/arch/alpha/kernel/osf_sys.c +++ b/arch/alpha/kernel/osf_sys.c | |||
@@ -979,7 +979,7 @@ osf_select(int n, fd_set __user *inp, fd_set __user *outp, fd_set __user *exp, | |||
979 | long timeout; | 979 | long timeout; |
980 | int ret = -EINVAL; | 980 | int ret = -EINVAL; |
981 | struct fdtable *fdt; | 981 | struct fdtable *fdt; |
982 | int max_fdset; | 982 | int max_fds; |
983 | 983 | ||
984 | timeout = MAX_SCHEDULE_TIMEOUT; | 984 | timeout = MAX_SCHEDULE_TIMEOUT; |
985 | if (tvp) { | 985 | if (tvp) { |
@@ -1003,9 +1003,9 @@ osf_select(int n, fd_set __user *inp, fd_set __user *outp, fd_set __user *exp, | |||
1003 | 1003 | ||
1004 | rcu_read_lock(); | 1004 | rcu_read_lock(); |
1005 | fdt = files_fdtable(current->files); | 1005 | fdt = files_fdtable(current->files); |
1006 | max_fdset = fdt->max_fdset; | 1006 | max_fds = fdt->max_fds; |
1007 | rcu_read_unlock(); | 1007 | rcu_read_unlock(); |
1008 | if (n < 0 || n > max_fdset) | 1008 | if (n < 0 || n > max_fds) |
1009 | goto out_nofds; | 1009 | goto out_nofds; |
1010 | 1010 | ||
1011 | /* | 1011 | /* |