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

Commit 171b4c30 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

ANDROID: vfs: fix export symbol type



In commit 044366659c18 ("ANDROID: vfs: Add setattr2 for filesystems with
per mount permissions") a new symbol was exported, but it should have
been set as a _GPL symbol.

Fix this up by properly.

Bug: 35848445
Cc: Daniel Rosenberg <drosen@google.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
Change-Id: I87585ad059367aa51b784ec415a1bf7f809de769
parent efd3d77b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -345,7 +345,7 @@ int notify_change2(struct vfsmount *mnt, struct dentry * dentry, struct iattr *

	return error;
}
EXPORT_SYMBOL(notify_change2);
EXPORT_SYMBOL_GPL(notify_change2);

int notify_change(struct dentry * dentry, struct iattr * attr, struct inode **delegated_inode)
{