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

Commit e6229a2e authored by Daniel Rosenberg's avatar Daniel Rosenberg
Browse files

ANDROID: sdcardfs: Add support for d_canonical_path



Change-Id: I5d6f0e71b8ca99aec4b0894412f1dfd1cfe12add
Signed-off-by: default avatarDaniel Rosenberg <drosen@google.com>
parent 7fc95a91
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -172,10 +172,15 @@ static int sdcardfs_cmp_ci(const struct dentry *parent,
	return 1;
}

static void sdcardfs_canonical_path(const struct path *path, struct path *actual_path) {
	sdcardfs_get_real_lower(path->dentry, actual_path);
}

const struct dentry_operations sdcardfs_ci_dops = {
	.d_revalidate	= sdcardfs_d_revalidate,
	.d_release	= sdcardfs_d_release,
	.d_hash 	= sdcardfs_hash_ci,
	.d_compare	= sdcardfs_cmp_ci,
	.d_canonical_path = sdcardfs_canonical_path,
};