diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-09 18:42:34 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-09 18:42:34 -0400 |
commit | ac5b8b6f22118620cd1133d9943b1f31dc40a913 (patch) | |
tree | f38aa7461c85861ae74f72c33d1556686e1909cb /fs/compat.c | |
parent | f0eca9626c6becb6fc56106b2e4287c6c784af3d (diff) |
Preempt-safe RCU file usage
Fix up fs/compat.c fixes.
Diffstat (limited to 'fs/compat.c')
-rw-r--r-- | fs/compat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/compat.c b/fs/compat.c index c2e0813164b4..ac3fb9ed8eea 100644 --- a/fs/compat.c +++ b/fs/compat.c | |||
@@ -1645,8 +1645,10 @@ compat_sys_select(int n, compat_ulong_t __user *inp, compat_ulong_t __user *outp | |||
1645 | goto out_nofds; | 1645 | goto out_nofds; |
1646 | 1646 | ||
1647 | /* max_fdset can increase, so grab it once to avoid race */ | 1647 | /* max_fdset can increase, so grab it once to avoid race */ |
1648 | rcu_read_lock(); | ||
1648 | fdt = files_fdtable(current->files); | 1649 | fdt = files_fdtable(current->files); |
1649 | max_fdset = fdt->max_fdset; | 1650 | max_fdset = fdt->max_fdset; |
1651 | rcu_read_unlock(); | ||
1650 | if (n > max_fdset) | 1652 | if (n > max_fdset) |
1651 | n = max_fdset; | 1653 | n = max_fdset; |
1652 | 1654 | ||