Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 78869538 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

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()
parents cd993fc4 8b8f53af
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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) {