summaryrefslogtreecommitdiffstats
path: root/fs/orangefs/inode.c
diff options
context:
space:
mode:
authorMartin Brandenburg2018-04-03 18:27:13 +0200
committerMike Marshall2018-04-04 03:55:27 +0200
commitbdd6f083586ff17eb3959cca88212fdb60ca53d1 (patch)
tree9c9722d051c9134b5d7be813b985c675c06aca19 /fs/orangefs/inode.c
parentorangefs: implement vm_ops->fault (diff)
downloadkernel-qcow2-linux-bdd6f083586ff17eb3959cca88212fdb60ca53d1.tar.gz
kernel-qcow2-linux-bdd6f083586ff17eb3959cca88212fdb60ca53d1.tar.xz
kernel-qcow2-linux-bdd6f083586ff17eb3959cca88212fdb60ca53d1.zip
orangefs: make several *_operations structs static
Signed-off-by: Martin Brandenburg <martin@omnibond.com> Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs/orangefs/inode.c')
-rw-r--r--fs/orangefs/inode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/orangefs/inode.c b/fs/orangefs/inode.c
index fe1d705ad91f..79c61da8b1bc 100644
--- a/fs/orangefs/inode.c
+++ b/fs/orangefs/inode.c
@@ -138,7 +138,7 @@ static ssize_t orangefs_direct_IO(struct kiocb *iocb,
}
/** ORANGEFS2 implementation of address space operations */
-const struct address_space_operations orangefs_address_operations = {
+static const struct address_space_operations orangefs_address_operations = {
.readpage = orangefs_readpage,
.readpages = orangefs_readpages,
.invalidatepage = orangefs_invalidatepage,
@@ -307,7 +307,7 @@ int orangefs_update_time(struct inode *inode, struct timespec *time, int flags)
}
/* ORANGEDS2 implementation of VFS inode operations for files */
-const struct inode_operations orangefs_file_inode_operations = {
+static const struct inode_operations orangefs_file_inode_operations = {
.get_acl = orangefs_get_acl,
.set_acl = orangefs_set_acl,
.setattr = orangefs_setattr,