|
@@ -923,33 +923,29 @@ static int fuse_do_getattr(struct inode *inode, struct kstat *stat,
|
|
|
return err;
|
|
|
}
|
|
|
|
|
|
-int fuse_update_attributes(struct inode *inode, struct kstat *stat,
|
|
|
- struct file *file, bool *refreshed)
|
|
|
+static int fuse_update_get_attr(struct inode *inode, struct file *file,
|
|
|
+ struct kstat *stat)
|
|
|
{
|
|
|
struct fuse_inode *fi = get_fuse_inode(inode);
|
|
|
- int err;
|
|
|
- bool r;
|
|
|
+ int err = 0;
|
|
|
|
|
|
if (time_before64(fi->i_time, get_jiffies_64())) {
|
|
|
- r = true;
|
|
|
forget_all_cached_acls(inode);
|
|
|
err = fuse_do_getattr(inode, stat, file);
|
|
|
- } else {
|
|
|
- r = false;
|
|
|
- err = 0;
|
|
|
- if (stat) {
|
|
|
- generic_fillattr(inode, stat);
|
|
|
- stat->mode = fi->orig_i_mode;
|
|
|
- stat->ino = fi->orig_ino;
|
|
|
- }
|
|
|
+ } else if (stat) {
|
|
|
+ generic_fillattr(inode, stat);
|
|
|
+ stat->mode = fi->orig_i_mode;
|
|
|
+ stat->ino = fi->orig_ino;
|
|
|
}
|
|
|
|
|
|
- if (refreshed != NULL)
|
|
|
- *refreshed = r;
|
|
|
-
|
|
|
return err;
|
|
|
}
|
|
|
|
|
|
+int fuse_update_attributes(struct inode *inode, struct file *file)
|
|
|
+{
|
|
|
+ return fuse_update_get_attr(inode, file, NULL);
|
|
|
+}
|
|
|
+
|
|
|
int fuse_reverse_inval_entry(struct super_block *sb, u64 parent_nodeid,
|
|
|
u64 child_nodeid, struct qstr *name)
|
|
|
{
|
|
@@ -1786,7 +1782,7 @@ static int fuse_getattr(const struct path *path, struct kstat *stat,
|
|
|
if (!fuse_allow_current_process(fc))
|
|
|
return -EACCES;
|
|
|
|
|
|
- return fuse_update_attributes(inode, stat, NULL, NULL);
|
|
|
+ return fuse_update_get_attr(inode, NULL, stat);
|
|
|
}
|
|
|
|
|
|
static const struct inode_operations fuse_dir_inode_operations = {
|