]> git.baikalelectronics.ru Git - kernel.git/commit
autofs: use dentry info count instead of simple_empty()
authorIan Kent <raven@themaw.net>
Fri, 8 Jul 2022 01:43:12 +0000 (09:43 +0800)
committerakpm <akpm@linux-foundation.org>
Mon, 18 Jul 2022 00:31:42 +0000 (17:31 -0700)
commit95729943b10e223d1e1b39110f220c27c5e031cd
tree5e8cfd0542d3ac231095d07b392f656c71b604c7
parentf5d4ed580585c66e2299ec8a3e11eb608900c166
autofs: use dentry info count instead of simple_empty()

The dentry info.  field count is used to check if a dentry is in use
during expire.  But, to be used for this the count field must account for
the presence of child dentries in a directory dentry.

Therefore it can also be used to check for an empty directory dentry which
can be done without having to to take an additional lock or account for
the presence of a readdir cursor dentry as is done by simple_empty().

Link: https://lkml.kernel.org/r/165724459238.30914.1504611159945950108.stgit@donald.themaw.net
Signed-off-by: Ian Kent <raven@themaw.net>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: David Howells <dhowells@redhat.com>
Cc: Miklos Szeredi <miklos@szeredi.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/autofs/autofs_i.h
fs/autofs/expire.c
fs/autofs/root.c