diff options
author | Martin Brandenburg <martin@omnibond.com> | 2018-04-03 16:27:13 +0000 |
---|---|---|
committer | Mike Marshall <hubcap@omnibond.com> | 2018-04-03 21:55:27 -0400 |
commit | bdd6f083586ff17eb3959cca88212fdb60ca53d1 (patch) | |
tree | 9c9722d051c9134b5d7be813b985c675c06aca19 /fs/orangefs/inode.c | |
parent | a5135eeab2e5ca1b94f34dcb772cb30f9f390efc (diff) | |
download | linux-bdd6f083586ff17eb3959cca88212fdb60ca53d1.tar.gz linux-bdd6f083586ff17eb3959cca88212fdb60ca53d1.tar.bz2 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.c | 4 |
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, |