projects
/
platform
/
adaptation
/
renesas_rcar
/
renesas_kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
36e2168
)
ceph: ceph_get_inode() returns an ERR_PTR
author
Dan Carpenter
<error27@gmail.com>
Wed, 25 Aug 2010 07:11:35 +0000
(09:11 +0200)
committer
Sage Weil
<sage@newdream.net>
Wed, 25 Aug 2010 19:01:54 +0000
(12:01 -0700)
ceph_get_inode() returns an ERR_PTR and it doesn't return a NULL.
Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Sage Weil <sage@newdream.net>
fs/ceph/inode.c
patch
|
blob
|
history
diff --git
a/fs/ceph/inode.c
b/fs/ceph/inode.c
index
3e6b52c
..
e7cca41
100644
(file)
--- a/
fs/ceph/inode.c
+++ b/
fs/ceph/inode.c
@@
-1230,11
+1230,11
@@
retry_lookup:
in = dn->d_inode;
} else {
in = ceph_get_inode(parent->d_sb, vino);
- if (
in == NULL
) {
+ if (
IS_ERR(in)
) {
dout("new_inode badness\n");
d_delete(dn);
dput(dn);
- err =
-ENOMEM
;
+ err =
PTR_ERR(in)
;
goto out;
}
dn = splice_dentry(dn, in, NULL);