The patch titled fuse: fix zero timeout has been removed from the -mm tree. Its filename is fuse-fix-zero-timeout.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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 origin.patch 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-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