ANDROID: fscrypt: fix export symbol type

In commit d16d9c0046eb ("FROMLIST: fscrypt: Have filesystems handle their d_ops")
a new symbol was exported, but it should have been set as a _GPL symbol.

Fix this up by properly.

Bug: 138322712
Cc: Daniel Rosenberg <drosen@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Change-Id: I51e23761d3c898a0bf612048c8febd98a0817ae3
This commit is contained in:
Greg Kroah-Hartman
2020-04-29 15:25:25 +02:00
parent c1ed22a5d9
commit 74ad240535

View File

@@ -582,4 +582,4 @@ int fscrypt_d_revalidate(struct dentry *dentry, unsigned int flags)
return valid;
}
EXPORT_SYMBOL(fscrypt_d_revalidate);
EXPORT_SYMBOL_GPL(fscrypt_d_revalidate);