diff options
author | J. Bruce Fields <bfields@redhat.com> | 2012-04-25 16:56:22 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2012-05-31 20:29:35 -0400 |
commit | 2355c59644def5950f982fc1509dd45037e79ded (patch) | |
tree | 8e0fe0a1cc32fc808e8451cfa3b054b15dc05ffd /fs/nfsd/export.c | |
parent | bfa4b36525577dfe2b52c7e52e03525aba1b74d3 (diff) | |
download | blackbird-op-linux-2355c59644def5950f982fc1509dd45037e79ded.tar.gz blackbird-op-linux-2355c59644def5950f982fc1509dd45037e79ded.zip |
nfsd4: fix missing "static"
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/export.c')
-rw-r--r-- | fs/nfsd/export.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/export.c b/fs/nfsd/export.c index dcb52b884519..ec16364f782e 100644 --- a/fs/nfsd/export.c +++ b/fs/nfsd/export.c @@ -706,7 +706,7 @@ static struct cache_head *svc_export_alloc(void) return NULL; } -struct cache_detail svc_export_cache_template = { +static struct cache_detail svc_export_cache_template = { .owner = THIS_MODULE, .hash_size = EXPORT_HASHMAX, .name = "nfsd.export", |