projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1550d34
)
ceph: remove the useless judgement
author
Jianpeng Ma
<jianpeng.ma@intel.com>
Tue, 18 Aug 2015 02:23:50 +0000
(10:23 +0800)
committer
Ilya Dryomov
<idryomov@gmail.com>
Tue, 8 Sep 2015 20:14:29 +0000
(23:14 +0300)
err != 0 is already handled. So skip this.
Signed-off-by: Jianpeng Ma <jianpeng.ma@intel.com>
Signed-off-by: Yan, Zheng <zyan@redhat.com>
fs/ceph/file.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/ceph/file.c
b/fs/ceph/file.c
index 8b79d87eaf4675ff91cf05c10a3fc53e70d5b313..2ebcbd4c163b8fa1c36fc321bdef93f2e22c1db4 100644
(file)
--- a/
fs/ceph/file.c
+++ b/
fs/ceph/file.c
@@
-279,7
+279,7
@@
int ceph_atomic_open(struct inode *dir, struct dentry *dentry,
if (err)
goto out_req;
- if (
err == 0 &&
(flags & O_CREAT) && !req->r_reply_info.head->is_dentry)
+ if ((flags & O_CREAT) && !req->r_reply_info.head->is_dentry)
err = ceph_handle_notrace_create(dir, dentry);
if (d_unhashed(dentry)) {