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 <adobriyan@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:

committed by
Linus Torvalds

parent
b77d70db65
commit
9cdd83e310
@@ -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,
|
||||
|
Reference in New Issue
Block a user