diff options
Diffstat (limited to 'fs/fuse/dir.c')
-rw-r--r-- | fs/fuse/dir.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/fuse/dir.c b/fs/fuse/dir.c index cf5d1faed7af..9b43fd46aaad 100644 --- a/fs/fuse/dir.c +++ b/fs/fuse/dir.c | |||
@@ -552,6 +552,7 @@ static int fuse_readdir(struct file *file, void *dstbuf, filldir_t filldir) | |||
552 | filldir); | 552 | filldir); |
553 | 553 | ||
554 | __free_page(page); | 554 | __free_page(page); |
555 | fuse_invalidate_attr(inode); /* atime changed */ | ||
555 | return err; | 556 | return err; |
556 | } | 557 | } |
557 | 558 | ||
@@ -585,6 +586,7 @@ static char *read_link(struct dentry *dentry) | |||
585 | link[req->out.args[0].size] = '\0'; | 586 | link[req->out.args[0].size] = '\0'; |
586 | out: | 587 | out: |
587 | fuse_put_request(fc, req); | 588 | fuse_put_request(fc, req); |
589 | fuse_invalidate_attr(inode); /* atime changed */ | ||
588 | return link; | 590 | return link; |
589 | } | 591 | } |
590 | 592 | ||