diff options
Diffstat (limited to 'fs/proc/inode.c')
-rw-r--r-- | fs/proc/inode.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/proc/inode.c b/fs/proc/inode.c index 43b703c6cd3b..a212996e0987 100644 --- a/fs/proc/inode.c +++ b/fs/proc/inode.c | |||
@@ -32,7 +32,6 @@ static void proc_evict_inode(struct inode *inode) | |||
32 | { | 32 | { |
33 | struct proc_dir_entry *de; | 33 | struct proc_dir_entry *de; |
34 | struct ctl_table_header *head; | 34 | struct ctl_table_header *head; |
35 | const struct proc_ns_operations *ns_ops; | ||
36 | struct ns_common *ns; | 35 | struct ns_common *ns; |
37 | 36 | ||
38 | truncate_inode_pages_final(&inode->i_data); | 37 | truncate_inode_pages_final(&inode->i_data); |
@@ -51,10 +50,9 @@ static void proc_evict_inode(struct inode *inode) | |||
51 | sysctl_head_put(head); | 50 | sysctl_head_put(head); |
52 | } | 51 | } |
53 | /* Release any associated namespace */ | 52 | /* Release any associated namespace */ |
54 | ns_ops = PROC_I(inode)->ns.ns_ops; | ||
55 | ns = PROC_I(inode)->ns.ns; | 53 | ns = PROC_I(inode)->ns.ns; |
56 | if (ns_ops && ns) | 54 | if (ns && ns->ops) |
57 | ns_ops->put(ns); | 55 | ns->ops->put(ns); |
58 | } | 56 | } |
59 | 57 | ||
60 | static struct kmem_cache * proc_inode_cachep; | 58 | static struct kmem_cache * proc_inode_cachep; |