lkml.org 
[lkml]   [2017]   [Sep]   [30]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] FS-Cache: make fscache_fsdef_netfs_def const
Date
Make fscache_fsdef_netfs_def const as it is only stored in a const field
of a fscache_cookie structure. Make the declaration const too.

Structure found using Coccinelle and changes done by hand.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
fs/fscache/fsdef.c | 2 +-
fs/fscache/internal.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/fscache/fsdef.c b/fs/fscache/fsdef.c
index 5a117df..7c86f37 100644
--- a/fs/fscache/fsdef.c
+++ b/fs/fscache/fsdef.c
@@ -68,7 +68,7 @@ struct fscache_cookie fscache_fsdef_index = {
* a specific netfs and only applicable to a particular version of the index
* structure used by that netfs.
*/
-struct fscache_cookie_def fscache_fsdef_netfs_def = {
+const struct fscache_cookie_def fscache_fsdef_netfs_def = {
.name = "FSDEF.netfs",
.type = FSCACHE_COOKIE_TYPE_INDEX,
.get_key = fscache_fsdef_netfs_get_key,
diff --git a/fs/fscache/internal.h b/fs/fscache/internal.h
index 97ec451..d485473 100644
--- a/fs/fscache/internal.h
+++ b/fs/fscache/internal.h
@@ -55,7 +55,7 @@ extern struct fscache_cache *fscache_select_cache_for_object(
* fsdef.c
*/
extern struct fscache_cookie fscache_fsdef_index;
-extern struct fscache_cookie_def fscache_fsdef_netfs_def;
+extern const struct fscache_cookie_def fscache_fsdef_netfs_def;

/*
* histogram.c
--
1.9.1
\
 
 \ /
  Last update: 2017-09-30 19:44    [W:3.492 / U:0.076 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site