The patch titled fuse: minor cleanup in fuse_dentry_revalidate has been added to the -mm tree. Its filename is fuse-minor-cleanup-in-fuse_dentry_revalidate.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: fuse: minor cleanup in fuse_dentry_revalidate From: Miklos Szeredi <miklos@xxxxxxxxxx> Remove unneeded code from fuse_dentry_revalidate(). This made some sense while the validity time could wrap around, but now it's a very obvious no-op. Signed-off-by: Miklos Szeredi <miklos@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/fuse/dir.c | 3 --- 1 files changed, 3 deletions(-) diff -puN fs/fuse/dir.c~fuse-minor-cleanup-in-fuse_dentry_revalidate fs/fuse/dir.c --- a/fs/fuse/dir.c~fuse-minor-cleanup-in-fuse_dentry_revalidate +++ a/fs/fuse/dir.c @@ -140,9 +140,6 @@ static int fuse_dentry_revalidate(struct struct fuse_req *req; struct dentry *parent; - /* Doesn't hurt to "reset" the validity timeout */ - fuse_invalidate_entry_cache(entry); - /* For negative dentries, always do a fresh lookup */ if (!inode) return 0; _ Patches currently in -mm which might be from miklos@xxxxxxxxxx are fuse-fix-hang-on-smp.patch document-i_size_write-locking-rules.patch fuse-locking-fix-for-nlookup.patch fuse-fix-spurious-bug.patch fuse-fix-handling-of-moved-directory.patch fuse-fix-dereferencing-dentry-parent.patch fuse-update-userspace-interface-to-version-78.patch fuse-minor-cleanup-in-fuse_dentry_revalidate.patch fuse-add-support-for-block-device-based-filesystems.patch fuse-add-blksize-option.patch fuse-add-bmap-support.patch fuse-add-destroy-operation.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html