diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2016-01-01 10:01:52 +0100 |
---|---|---|
committer | Mike Marshall <hubcap@omnibond.com> | 2016-01-04 11:06:12 -0500 |
commit | acaca36dd94d1bfe381a7425984991a06ba58f53 (patch) | |
tree | db07cd576fc78e44c2e7646e3c9b427f750e0b77 /fs/orangefs/super.c | |
parent | f987f4c28a0f9a1dee44ca33a29080859b70f24b (diff) | |
download | linux-stable-acaca36dd94d1bfe381a7425984991a06ba58f53.tar.gz linux-stable-acaca36dd94d1bfe381a7425984991a06ba58f53.tar.bz2 linux-stable-acaca36dd94d1bfe381a7425984991a06ba58f53.zip |
OrangeFS: constify export_operations structures
This export_operations structure is never modified, so declare it as const.
Most other structures of this type are already const.
Done with the help of Coccinelle.
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs/orangefs/super.c')
-rw-r--r-- | fs/orangefs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/orangefs/super.c b/fs/orangefs/super.c index 52bc522ea21c..bee67b37d805 100644 --- a/fs/orangefs/super.c +++ b/fs/orangefs/super.c @@ -342,7 +342,7 @@ out: return type; } -static struct export_operations orangefs_export_ops = { +static const struct export_operations orangefs_export_ops = { .encode_fh = orangefs_encode_fh, .fh_to_dentry = orangefs_fh_to_dentry, }; |