diff options
author | M. Mohan Kumar <mohan@in.ibm.com> | 2010-02-08 15:36:48 -0600 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@arly004.austin.ibm.com> | 2010-02-08 15:36:48 -0600 |
commit | 7a4439c406c21b1e900ed497cec1a79d05b38c07 (patch) | |
tree | 82f24249a7e970dc089406d334bd5d49cfecb7d1 /fs/9p/vfs_inode.c | |
parent | 9d6939dac77102b09396ee0b89392ec7639612a7 (diff) | |
download | talos-obmc-linux-7a4439c406c21b1e900ed497cec1a79d05b38c07.tar.gz talos-obmc-linux-7a4439c406c21b1e900ed497cec1a79d05b38c07.zip |
9p: Include fsync support for 9p client
Implement the fsync in the client side by marking stat field values to 'don't touch' so that server may
interpret it as a request to guarantee that the contents of the associated file are committed to stable
storage before the Rwstat message is returned.
Without this patch, calling fsync on a 9p file results in "Invalid argument" error. Please check the attached
C program.
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: M. Mohan Kumar <mohan@in.ibm.com>
Acked-by: Venkateswararao Jujjuri (JV) <jvrao@linux.vnet.ibm.com>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'fs/9p/vfs_inode.c')
-rw-r--r-- | fs/9p/vfs_inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/9p/vfs_inode.c b/fs/9p/vfs_inode.c index 9d03d1ebca6f..a407fa3388c0 100644 --- a/fs/9p/vfs_inode.c +++ b/fs/9p/vfs_inode.c @@ -176,7 +176,7 @@ int v9fs_uflags2omode(int uflags, int extended) * */ -static void +void v9fs_blank_wstat(struct p9_wstat *wstat) { wstat->type = ~0; |