diff options
-rw-r--r-- | fs/ceph/dir.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/ceph/dir.c b/fs/ceph/dir.c index 652619950fa9..fcfd0abc8c38 100644 --- a/fs/ceph/dir.c +++ b/fs/ceph/dir.c | |||
@@ -812,7 +812,9 @@ static int ceph_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode) | |||
812 | acls.pagelist = NULL; | 812 | acls.pagelist = NULL; |
813 | } | 813 | } |
814 | err = ceph_mdsc_do_request(mdsc, dir, req); | 814 | err = ceph_mdsc_do_request(mdsc, dir, req); |
815 | if (!err && !req->r_reply_info.head->is_dentry) | 815 | if (!err && |
816 | !req->r_reply_info.head->is_target && | ||
817 | !req->r_reply_info.head->is_dentry) | ||
816 | err = ceph_handle_notrace_create(dir, dentry); | 818 | err = ceph_handle_notrace_create(dir, dentry); |
817 | ceph_mdsc_put_request(req); | 819 | ceph_mdsc_put_request(req); |
818 | out: | 820 | out: |