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

Commit 3f1ccda1 authored by Paul Lawrence's avatar Paul Lawrence
Browse files

Fix compilation error



Cherry-picking 2282bcb4 caused sdcardfs not to
compile. This fixes the issue.

Change-Id: I1e9f6a022137b4da9377fa455d67194134899b95
Signed-off-by: default avatarPaul Lawrence <paullawrence@google.com>
parent dc3f797f
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->d_inode) {
			mutex_lock(&dentry->d_inode->i_mutex);
			get_derived_permission(parent, dentry);