diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-06-29 21:19:47 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-06-29 21:19:47 +0200 |
commit | 788695385933ff2dedaef0c3e5cb07659cc44018 (patch) | |
tree | ec5301c6be56eae217be8305b76ee86d54e78760 /fs | |
parent | Merge tag 'pci-v4.18-fixes-1' of git://git.kernel.org/pub/scm/linux/kernel/gi... (diff) | |
parent | ceph: fix dentry leak in splice_dentry() (diff) | |
download | linux-788695385933ff2dedaef0c3e5cb07659cc44018.tar.xz linux-788695385933ff2dedaef0c3e5cb07659cc44018.zip |
Merge tag 'ceph-for-4.18-rc3' of git://github.com/ceph/ceph-client
Pull ceph fix from Ilya Dryomov:
"A trivial dentry leak fix from Zheng"
* tag 'ceph-for-4.18-rc3' of git://github.com/ceph/ceph-client:
ceph: fix dentry leak in splice_dentry()
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ceph/inode.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ceph/inode.c b/fs/ceph/inode.c index ee764ac352ab..a866be999216 100644 --- a/fs/ceph/inode.c +++ b/fs/ceph/inode.c @@ -1135,6 +1135,7 @@ static struct dentry *splice_dentry(struct dentry *dn, struct inode *in) if (IS_ERR(realdn)) { pr_err("splice_dentry error %ld %p inode %p ino %llx.%llx\n", PTR_ERR(realdn), dn, in, ceph_vinop(in)); + dput(dn); dn = realdn; /* note realdn contains the error */ goto out; } else if (realdn) { |