diff options
Diffstat (limited to 'fs/nfs/nfs4proc.c')
-rw-r--r-- | fs/nfs/nfs4proc.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index 05801be4a180..5e373c30e8d4 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c | |||
@@ -6832,6 +6832,26 @@ const struct nfs4_minor_version_ops *nfs_v4_minor_ops[] = { | |||
6832 | #endif | 6832 | #endif |
6833 | }; | 6833 | }; |
6834 | 6834 | ||
6835 | const struct inode_operations nfs4_dir_inode_operations = { | ||
6836 | .create = nfs_create, | ||
6837 | .lookup = nfs_lookup, | ||
6838 | .atomic_open = nfs_atomic_open, | ||
6839 | .link = nfs_link, | ||
6840 | .unlink = nfs_unlink, | ||
6841 | .symlink = nfs_symlink, | ||
6842 | .mkdir = nfs_mkdir, | ||
6843 | .rmdir = nfs_rmdir, | ||
6844 | .mknod = nfs_mknod, | ||
6845 | .rename = nfs_rename, | ||
6846 | .permission = nfs_permission, | ||
6847 | .getattr = nfs_getattr, | ||
6848 | .setattr = nfs_setattr, | ||
6849 | .getxattr = generic_getxattr, | ||
6850 | .setxattr = generic_setxattr, | ||
6851 | .listxattr = generic_listxattr, | ||
6852 | .removexattr = generic_removexattr, | ||
6853 | }; | ||
6854 | |||
6835 | static const struct inode_operations nfs4_file_inode_operations = { | 6855 | static const struct inode_operations nfs4_file_inode_operations = { |
6836 | .permission = nfs_permission, | 6856 | .permission = nfs_permission, |
6837 | .getattr = nfs_getattr, | 6857 | .getattr = nfs_getattr, |