aboutsummaryrefslogtreecommitdiffstats
path: root/fs/9p/vfs_inode.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/9p/vfs_inode.c')
-rw-r--r--fs/9p/vfs_inode.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/fs/9p/vfs_inode.c b/fs/9p/vfs_inode.c
index 378767c07bf1..5cf22134826b 100644
--- a/fs/9p/vfs_inode.c
+++ b/fs/9p/vfs_inode.c
@@ -41,10 +41,10 @@
41#include "v9fs_vfs.h" 41#include "v9fs_vfs.h"
42#include "fid.h" 42#include "fid.h"
43 43
44static struct inode_operations v9fs_dir_inode_operations; 44static const struct inode_operations v9fs_dir_inode_operations;
45static struct inode_operations v9fs_dir_inode_operations_ext; 45static const struct inode_operations v9fs_dir_inode_operations_ext;
46static struct inode_operations v9fs_file_inode_operations; 46static const struct inode_operations v9fs_file_inode_operations;
47static struct inode_operations v9fs_symlink_inode_operations; 47static const struct inode_operations v9fs_symlink_inode_operations;
48 48
49/** 49/**
50 * unixmode2p9mode - convert unix mode bits to plan 9 50 * unixmode2p9mode - convert unix mode bits to plan 9
@@ -1303,7 +1303,7 @@ v9fs_vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t rdev)
1303 return retval; 1303 return retval;
1304} 1304}
1305 1305
1306static struct inode_operations v9fs_dir_inode_operations_ext = { 1306static const struct inode_operations v9fs_dir_inode_operations_ext = {
1307 .create = v9fs_vfs_create, 1307 .create = v9fs_vfs_create,
1308 .lookup = v9fs_vfs_lookup, 1308 .lookup = v9fs_vfs_lookup,
1309 .symlink = v9fs_vfs_symlink, 1309 .symlink = v9fs_vfs_symlink,
@@ -1318,7 +1318,7 @@ static struct inode_operations v9fs_dir_inode_operations_ext = {
1318 .setattr = v9fs_vfs_setattr, 1318 .setattr = v9fs_vfs_setattr,
1319}; 1319};
1320 1320
1321static struct inode_operations v9fs_dir_inode_operations = { 1321static const struct inode_operations v9fs_dir_inode_operations = {
1322 .create = v9fs_vfs_create, 1322 .create = v9fs_vfs_create,
1323 .lookup = v9fs_vfs_lookup, 1323 .lookup = v9fs_vfs_lookup,
1324 .unlink = v9fs_vfs_unlink, 1324 .unlink = v9fs_vfs_unlink,
@@ -1330,12 +1330,12 @@ static struct inode_operations v9fs_dir_inode_operations = {
1330 .setattr = v9fs_vfs_setattr, 1330 .setattr = v9fs_vfs_setattr,
1331}; 1331};
1332 1332
1333static struct inode_operations v9fs_file_inode_operations = { 1333static const struct inode_operations v9fs_file_inode_operations = {
1334 .getattr = v9fs_vfs_getattr, 1334 .getattr = v9fs_vfs_getattr,
1335 .setattr = v9fs_vfs_setattr, 1335 .setattr = v9fs_vfs_setattr,
1336}; 1336};
1337 1337
1338static struct inode_operations v9fs_symlink_inode_operations = { 1338static const struct inode_operations v9fs_symlink_inode_operations = {
1339 .readlink = v9fs_vfs_readlink, 1339 .readlink = v9fs_vfs_readlink,
1340 .follow_link = v9fs_vfs_follow_link, 1340 .follow_link = v9fs_vfs_follow_link,
1341 .put_link = v9fs_vfs_put_link, 1341 .put_link = v9fs_vfs_put_link,