ANDROID: sdcardfs: Add missing path_put
authorDaniel Rosenberg <drosen@google.com>
Fri, 17 Feb 2017 01:55:22 +0000 (17:55 -0800)
committerStricted <info@stricted.net>
Thu, 11 Oct 2018 16:03:24 +0000 (18:03 +0200)
"ANDROID: sdcardfs: Add GID Derivation to sdcardfs" introduced
an unbalanced pat_get, leading to storage space not being freed
after deleting a file until rebooting. This adds the missing path_put.

Signed-off-by: Daniel Rosenberg <drosen@google.com>
Bug: 34691169
Change-Id: Ia7ef97ec2eca2c555cc06b235715635afc87940e

fs/sdcardfs/derived_perm.c

index 35101ed01ebfa085af3ed495b92d03e124a16803..5ad69e6f6c3395d3a10aa22200d2a90c0d908f2c 100644 (file)
@@ -236,6 +236,7 @@ void fixup_lower_ownership(struct dentry* dentry, const char *name) {
                if (error)
                        pr_err("sdcardfs: Failed to touch up lower fs gid/uid.\n");
        }
+       sdcardfs_put_lower_path(dentry, &path);
 }
 
 static int descendant_may_need_fixup(struct sdcardfs_inode_info *info, struct limit_search *limit) {