aboutsummaryrefslogtreecommitdiffstats
path: root/fs/proc/root.c
diff options
context:
space:
mode:
authorAlexey Dobriyan <[email protected]>2018-04-10 23:32:14 +0000
committerLinus Torvalds <[email protected]>2018-04-11 17:28:34 +0000
commit9cdd83e3100651af41631fb66838adcd24032f2a (patch)
tree181ee45b29c4a312ea23bf88b45a8e65890fc29e /fs/proc/root.c
parentproc: reject "." and ".." as filenames (diff)
downloadkernel-9cdd83e3100651af41631fb66838adcd24032f2a.tar.gz
kernel-9cdd83e3100651af41631fb66838adcd24032f2a.zip
proc: switch struct proc_dir_entry::count to refcount
->count is honest reference count unlike ->in_use. Link: http://lkml.kernel.org/r/20180313174550.GA4332@avx2 Signed-off-by: Alexey Dobriyan <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'fs/proc/root.c')
-rw-r--r--fs/proc/root.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/root.c b/fs/proc/root.c
index 9e99204a0704..76c996457ff9 100644
--- a/fs/proc/root.c
+++ b/fs/proc/root.c
@@ -199,7 +199,7 @@ struct proc_dir_entry proc_root = {
.namelen = 5,
.mode = S_IFDIR | S_IRUGO | S_IXUGO,
.nlink = 2,
- .count = ATOMIC_INIT(1),
+ .refcnt = REFCOUNT_INIT(1),
.proc_iops = &proc_root_inode_operations,
.proc_fops = &proc_root_operations,
.parent = &proc_root,