diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-12-23 15:21:32 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-12-23 15:21:32 -0500 |
commit | d716f0b8a57f8577bcd869e7dcb5a0add9f6fc5e (patch) | |
tree | 53717a765b36736b7d20b8fc4aec790db5da8ed8 | |
parent | 7bd8826915989f1bd6917c11b0a4151b129e68cb (diff) | |
download | linux-3.10-d716f0b8a57f8577bcd869e7dcb5a0add9f6fc5e.tar.gz linux-3.10-d716f0b8a57f8577bcd869e7dcb5a0add9f6fc5e.tar.bz2 linux-3.10-d716f0b8a57f8577bcd869e7dcb5a0add9f6fc5e.zip |
SUNRPC: nfsacl_encode/nfsacl_decode should be exported as GPL-only
Again, this has never been intended as a public abi for out-of-tree
modules.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
-rw-r--r-- | fs/nfs_common/nfsacl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfs_common/nfsacl.c b/fs/nfs_common/nfsacl.c index c11f5375d7c..04133aacb1e 100644 --- a/fs/nfs_common/nfsacl.c +++ b/fs/nfs_common/nfsacl.c @@ -29,8 +29,8 @@ MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(nfsacl_encode); -EXPORT_SYMBOL(nfsacl_decode); +EXPORT_SYMBOL_GPL(nfsacl_encode); +EXPORT_SYMBOL_GPL(nfsacl_decode); struct nfsacl_encode_desc { struct xdr_array2_desc desc; |