diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-10-17 18:14:25 +0200 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2017-11-27 22:45:11 +0100 |
commit | ae2e408ec2e861b0e7dceea1808e4305a9381c2f (patch) | |
tree | 6ecf0041f7a6890da39d0b4fd8429d5b0e51d6cc /fs/nfsd/export.c | |
parent | sunrpc: make the function arg as const (diff) | |
download | linux-ae2e408ec2e861b0e7dceea1808e4305a9381c2f.tar.xz linux-ae2e408ec2e861b0e7dceea1808e4305a9381c2f.zip |
NFSD: make cache_detail structures const
Make these const as they are only getting passed to the function
cache_create_net having the argument as const.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Reviewed-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/export.c')
-rw-r--r-- | fs/nfsd/export.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfsd/export.c b/fs/nfsd/export.c index f9e7dd57cc12..8ceb25a10ea0 100644 --- a/fs/nfsd/export.c +++ b/fs/nfsd/export.c @@ -232,7 +232,7 @@ static struct cache_head *expkey_alloc(void) return NULL; } -static struct cache_detail svc_expkey_cache_template = { +static const struct cache_detail svc_expkey_cache_template = { .owner = THIS_MODULE, .hash_size = EXPKEY_HASHMAX, .name = "nfsd.fh", @@ -748,7 +748,7 @@ static struct cache_head *svc_export_alloc(void) return NULL; } -static struct cache_detail svc_export_cache_template = { +static const struct cache_detail svc_export_cache_template = { .owner = THIS_MODULE, .hash_size = EXPORT_HASHMAX, .name = "nfsd.export", |