diff options
Diffstat (limited to 'fs/proc/proc_sysctl.c')
-rw-r--r-- | fs/proc/proc_sysctl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c index 35efd85a4d32..c9097f43b425 100644 --- a/fs/proc/proc_sysctl.c +++ b/fs/proc/proc_sysctl.c | |||
@@ -5,6 +5,7 @@ | |||
5 | #include <linux/sysctl.h> | 5 | #include <linux/sysctl.h> |
6 | #include <linux/proc_fs.h> | 6 | #include <linux/proc_fs.h> |
7 | #include <linux/security.h> | 7 | #include <linux/security.h> |
8 | #include <linux/namei.h> | ||
8 | #include "internal.h" | 9 | #include "internal.h" |
9 | 10 | ||
10 | static const struct dentry_operations proc_sys_dentry_operations; | 11 | static const struct dentry_operations proc_sys_dentry_operations; |
@@ -389,6 +390,8 @@ static const struct inode_operations proc_sys_dir_operations = { | |||
389 | 390 | ||
390 | static int proc_sys_revalidate(struct dentry *dentry, struct nameidata *nd) | 391 | static int proc_sys_revalidate(struct dentry *dentry, struct nameidata *nd) |
391 | { | 392 | { |
393 | if (nd->flags & LOOKUP_RCU) | ||
394 | return -ECHILD; | ||
392 | return !PROC_I(dentry->d_inode)->sysctl->unregistering; | 395 | return !PROC_I(dentry->d_inode)->sysctl->unregistering; |
393 | } | 396 | } |
394 | 397 | ||