summaryrefslogtreecommitdiffstats
path: root/fs/cifs/cifsfs.c
diff options
context:
space:
mode:
authorMiklos Szeredi2012-06-05 15:10:23 +0200
committerAl Viro2012-07-14 14:33:15 +0200
commitd2c127197dfc0b2bae62a52e1e0d3e3ff493919e (patch)
tree75a30530499790ace8af09f9442f111f59564647 /fs/cifs/cifsfs.c
parentfuse: implement i_op->atomic_open() (diff)
downloadkernel-qcow2-linux-d2c127197dfc0b2bae62a52e1e0d3e3ff493919e.tar.gz
kernel-qcow2-linux-d2c127197dfc0b2bae62a52e1e0d3e3ff493919e.tar.xz
kernel-qcow2-linux-d2c127197dfc0b2bae62a52e1e0d3e3ff493919e.zip
cifs: implement i_op->atomic_open()
Add an ->atomic_open implementation which replaces the atomic lookup+open+create operation implemented via ->lookup and ->create operations. Signed-off-by: Miklos Szeredi <mszeredi@suse.cz> CC: Steve French <sfrench@samba.org> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/cifs/cifsfs.c')
-rw-r--r--fs/cifs/cifsfs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c
index bcab12c87146..c0c2751a7573 100644
--- a/fs/cifs/cifsfs.c
+++ b/fs/cifs/cifsfs.c
@@ -777,6 +777,7 @@ struct file_system_type cifs_fs_type = {
};
const struct inode_operations cifs_dir_inode_ops = {
.create = cifs_create,
+ .atomic_open = cifs_atomic_open,
.lookup = cifs_lookup,
.getattr = cifs_getattr,
.unlink = cifs_unlink,