From: J. Bruce Fields Date: Thu, 19 Mar 2020 15:30:38 +0000 (-0400) Subject: nfsd: fsnotify on rmdir under nfsd/clients/ X-Git-Tag: v5.6.5~47 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8af7a3035045dca1d06f3c326ad3d390c24fcaed;p=thirdparty%2Fkernel%2Fstable.git nfsd: fsnotify on rmdir under nfsd/clients/ commit 69afd267982e733a555fede4e85fe30329ed0588 upstream. 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 Signed-off-by: Greg Kroah-Hartman --- 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); }