diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2016-08-28 16:36:55 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2016-11-14 15:24:19 -0500 |
commit | 7ba630f54ca6404351cebea03fbd3c95760b9b02 (patch) | |
tree | 7550c1cfbc5ef5cf19169cde001b132669dac704 | |
parent | 88382036674770173128417e4c09e9e549f82d54 (diff) |
nfsd: constify reply_cache_stats_operations structure
reply_cache_stats_operations, of type struct file_operations, is never
modified, so declare it as const.
Done with the help of Coccinelle.
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Reviewed-by: Jeff Layton <jlayton@poochiereds.net>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
-rw-r--r-- | fs/nfsd/nfsctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfsctl.c b/fs/nfsd/nfsctl.c index 36b2af931e06..be13063bcd66 100644 --- a/fs/nfsd/nfsctl.c +++ b/fs/nfsd/nfsctl.c | |||
@@ -217,7 +217,7 @@ static const struct file_operations pool_stats_operations = { | |||
217 | .release = nfsd_pool_stats_release, | 217 | .release = nfsd_pool_stats_release, |
218 | }; | 218 | }; |
219 | 219 | ||
220 | static struct file_operations reply_cache_stats_operations = { | 220 | static const struct file_operations reply_cache_stats_operations = { |
221 | .open = nfsd_reply_cache_stats_open, | 221 | .open = nfsd_reply_cache_stats_open, |
222 | .read = seq_read, | 222 | .read = seq_read, |
223 | .llseek = seq_lseek, | 223 | .llseek = seq_lseek, |