diff options
author | Miklos Szeredi <mszeredi@suse.cz> | 2008-02-06 01:38:38 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-06 10:41:13 -0800 |
commit | 0952b2a4a82b2deb76463dbcf1355b806dc81134 (patch) | |
tree | 3daa0df6383263a80ef7ebbd96f721250c40a7ed /fs/fuse | |
parent | af440f52927e4b6941aa94e3cfc698adb0f22663 (diff) | |
download | linux-3.10-0952b2a4a82b2deb76463dbcf1355b806dc81134.tar.gz linux-3.10-0952b2a4a82b2deb76463dbcf1355b806dc81134.tar.bz2 linux-3.10-0952b2a4a82b2deb76463dbcf1355b806dc81134.zip |
fuse: fix attribute caching after create
Invalidate attributes on create, since st_ctime is updated. Reported by
Szabolcs Szakacsits.
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/fuse')
-rw-r--r-- | fs/fuse/dir.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/fuse/dir.c b/fs/fuse/dir.c index 80d2f5292cf..f56f91bd38b 100644 --- a/fs/fuse/dir.c +++ b/fs/fuse/dir.c @@ -416,6 +416,7 @@ static int fuse_create_open(struct inode *dir, struct dentry *entry, int mode, fuse_put_request(fc, forget_req); d_instantiate(entry, inode); fuse_change_entry_timeout(entry, &outentry); + fuse_invalidate_attr(dir); file = lookup_instantiate_filp(nd, entry, generic_file_open); if (IS_ERR(file)) { ff->fh = outopen.fh; |