]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ceph: only link open operations to directory unsafe list if O_CREAT|O_TRUNC
authorSage Weil <sage@newdream.net>
Tue, 26 Jul 2011 18:27:59 +0000 (11:27 -0700)
committerSage Weil <sage@newdream.net>
Tue, 26 Jul 2011 18:27:59 +0000 (11:27 -0700)
We only need to put these on the directory unsafe list if they have
side effects that fsync(2) should flush out.

Reviewed-by: Yehuda Sadeh <yehuda@hq.newdream.net>
Signed-off-by: Sage Weil <sage@newdream.net>
fs/ceph/file.c

index 9b667e9abf4c8dc61c538787364e4778b02e6dba..e0115eb4e9ba581ef9bb11f24c365a4f80a2f371 100644 (file)
@@ -194,7 +194,8 @@ int ceph_open(struct inode *inode, struct file *file)
        req->r_inode = inode;
        ihold(inode);
        req->r_num_caps = 1;
-       err = ceph_mdsc_do_request(mdsc, parent_inode, req);
+       err = ceph_mdsc_do_request(mdsc, (flags & (O_CREAT|O_TRUNC)) ?
+                                  parent_inode : NULL, req);
        if (!err)
                err = ceph_init_file(inode, file, req->r_fmode);
        ceph_mdsc_put_request(req);