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

Commit 38174da9 authored by Daniel Rosenberg's avatar Daniel Rosenberg Committed by Amit Pundir
Browse files

Android: sdcardfs: Don't complain in fixup_lower_ownership



Not all filesystems support changing the owner of a file.
We shouldn't complain if it doesn't happen.

Signed-off-by: default avatarDaniel Rosenberg <drosen@google.com>
Bug: 37488099
Change-Id: I403e44ab7230f176e6df82f6adb4e5c82ce57f33
parent 28e5dea5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -252,7 +252,7 @@ void fixup_lower_ownership(struct dentry *dentry, const char *name)
				goto retry_deleg;
		}
		if (error)
			pr_err("sdcardfs: Failed to touch up lower fs gid/uid.\n");
			pr_debug("sdcardfs: Failed to touch up lower fs gid/uid for %s\n", name);
	}
	sdcardfs_put_lower_path(dentry, &path);
}