diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-03-07 15:11:43 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-03-14 00:16:06 -0400 |
commit | f8b31710e46c852b2af1635d1b6fab8e69bf7799 (patch) | |
tree | f2e6b46ea8d99e05951f5691841913cc1aa2f67a /fs/ceph | |
parent | de4acda16e11110bbba5195061789f93a6c0d29d (diff) | |
download | op-kernel-dev-f8b31710e46c852b2af1635d1b6fab8e69bf7799.zip op-kernel-dev-f8b31710e46c852b2af1635d1b6fab8e69bf7799.tar.gz |
ceph_fill_trace(): don't bother with d_instantiate(dn, NULL)
... and use d_add(dn, NULL) in case we need to hash a negative
unhashed rather than using d_rehash() directly.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ceph')
-rw-r--r-- | fs/ceph/inode.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/ceph/inode.c b/fs/ceph/inode.c index 05dd66f..be2d87f 100644 --- a/fs/ceph/inode.c +++ b/fs/ceph/inode.c @@ -1236,10 +1236,8 @@ retry_lookup: dout("d_delete %p\n", dn); d_delete(dn); } else { - dout("d_instantiate %p NULL\n", dn); - d_instantiate(dn, NULL); if (have_lease && d_unhashed(dn)) - d_rehash(dn); + d_add(dn, NULL); update_dentry_lease(dn, rinfo->dlease, session, req->r_request_started); |