aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/filesystems/vfs.txt
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/filesystems/vfs.txt')
-rw-r--r--Documentation/filesystems/vfs.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/filesystems/vfs.txt b/Documentation/filesystems/vfs.txt
index ef19f91a0f12..efd23f481704 100644
--- a/Documentation/filesystems/vfs.txt
+++ b/Documentation/filesystems/vfs.txt
@@ -363,6 +363,7 @@ struct inode_operations {
363 ssize_t (*getxattr) (struct dentry *, const char *, void *, size_t); 363 ssize_t (*getxattr) (struct dentry *, const char *, void *, size_t);
364 ssize_t (*listxattr) (struct dentry *, char *, size_t); 364 ssize_t (*listxattr) (struct dentry *, char *, size_t);
365 int (*removexattr) (struct dentry *, const char *); 365 int (*removexattr) (struct dentry *, const char *);
366 void (*update_time)(struct inode *, struct timespec *, int);
366}; 367};
367 368
368Again, all methods are called without any locks being held, unless 369Again, all methods are called without any locks being held, unless
@@ -471,6 +472,9 @@ otherwise noted.
471 removexattr: called by the VFS to remove an extended attribute from 472 removexattr: called by the VFS to remove an extended attribute from
472 a file. This method is called by removexattr(2) system call. 473 a file. This method is called by removexattr(2) system call.
473 474
475 update_time: called by the VFS to update a specific time or the i_version of
476 an inode. If this is not defined the VFS will update the inode itself
477 and call mark_inode_dirty_sync.
474 478
475The Address Space Object 479The Address Space Object
476======================== 480========================