ANDROID: vfs: fix export symbol type

In commit 044366659c ("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: Greg Kroah-Hartman <gregkh@google.com>
Change-Id: I87585ad059367aa51b784ec415a1bf7f809de769
This commit is contained in:
Greg Kroah-Hartman
2020-04-29 15:35:30 +02:00
parent 391397729f
commit 36a70a33e1

View File

@@ -347,7 +347,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)
{