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

Commit b52e1c65 authored by Amit Pundir's avatar Amit Pundir
Browse files

fs: sdcardfs: build fix



fix build failure introduced by upstream commit 946e51f2bf37
"move d_rcu from overlapping d_child to overlapping d_alias".

Signed-off-by: default avatarAmit Pundir <amit.pundir@linaro.org>
parent f2f87dcf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -111,7 +111,7 @@ void get_derived_permission(struct dentry *parent, struct dentry *dentry)

void get_derive_permissions_recursive(struct dentry *parent) {
	struct dentry *dentry;
	list_for_each_entry(dentry, &parent->d_subdirs, d_u.d_child) {
	list_for_each_entry(dentry, &parent->d_subdirs, d_child) {
		if (dentry && dentry->d_inode) {
			mutex_lock(&dentry->d_inode->i_mutex);
			get_derived_permission(parent, dentry);