The patch titled fuse: fix zero timeout has been added to the -mm tree. Its filename is fuse-fix-zero-timeout.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: fix zero timeout From: Miklos Szeredi <miklos@xxxxxxxxxx> An attribute and entry timeout of zero should mean, that the entity is invalidated immediately after the operation. Previously invalidation only happened at the next clock tick. Reported and tested by Craig Davies. Signed-off-by: Miklos Szeredi <miklos@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/fuse/dir.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff -puN fs/fuse/dir.c~fuse-fix-zero-timeout fs/fuse/dir.c --- a/fs/fuse/dir.c~fuse-fix-zero-timeout +++ a/fs/fuse/dir.c @@ -25,8 +25,11 @@ */ static unsigned long time_to_jiffies(unsigned long sec, unsigned long nsec) { - struct timespec ts = {sec, nsec}; - return jiffies + timespec_to_jiffies(&ts); + if (sec || nsec) { + struct timespec ts = {sec, nsec}; + return jiffies + timespec_to_jiffies(&ts); + } else + return jiffies - 1; } /* _ Patches currently in -mm which might be from miklos@xxxxxxxxxx are add-address_space_operationsbatch_write.patch add-address_space_operationsbatch_write-fix.patch pass-io-size-to-batch_write-address-space-operation.patch fuse-add-lock-annotations-to-request_end-and-fuse_read_interrupt.patch fuse-fix-zero-timeout.patch fuse-use-jiffies_64.patch fuse-fix-typo.patch fuse-use-dentry-in-statfs.patch vfs-define-new-lookup-flag-for-chdir.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