From: J. Bruce Fields Date: Thu, 19 Mar 2020 15:30:38 +0000 (-0400) Subject: nfsd: fsnotify on rmdir under nfsd/clients/ X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=69afd267982e733a555fede4e85fe30329ed0588;p=linux.git nfsd: fsnotify on rmdir under nfsd/clients/ Userspace should be able to monitor nfsd/clients/ to see when clients come and go, but we're failing to send fsnotify events. Cc: stable@kernel.org Signed-off-by: J. Bruce Fields Signed-off-by: Chuck Lever --- diff --git a/fs/nfsd/nfsctl.c b/fs/nfsd/nfsctl.c index e109a10077042..3bb2db947d291 100644 --- a/fs/nfsd/nfsctl.c +++ b/fs/nfsd/nfsctl.c @@ -1333,6 +1333,7 @@ void nfsd_client_rmdir(struct dentry *dentry) dget(dentry); ret = simple_rmdir(dir, dentry); WARN_ON_ONCE(ret); + fsnotify_rmdir(dir, dentry); d_delete(dentry); inode_unlock(dir); }