diff options
| -rw-r--r-- | fs/gfs2/inode.c | 2 | ||||
| -rw-r--r-- | fs/gfs2/ops_inode.c | 10 | ||||
| -rw-r--r-- | fs/gfs2/ops_inode.h | 1 |
3 files changed, 1 insertions, 12 deletions
diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c index 810ff023fb14..7b9f31e5d6d3 100644 --- a/fs/gfs2/inode.c +++ b/fs/gfs2/inode.c | |||
| @@ -149,7 +149,7 @@ void gfs2_set_iop(struct inode *inode) | |||
| 149 | } else if (S_ISLNK(mode)) { | 149 | } else if (S_ISLNK(mode)) { |
| 150 | inode->i_op = &gfs2_symlink_iops; | 150 | inode->i_op = &gfs2_symlink_iops; |
| 151 | } else { | 151 | } else { |
| 152 | inode->i_op = &gfs2_dev_iops; | 152 | inode->i_op = &gfs2_file_iops; |
| 153 | } | 153 | } |
| 154 | 154 | ||
| 155 | unlock_new_inode(inode); | 155 | unlock_new_inode(inode); |
diff --git a/fs/gfs2/ops_inode.c b/fs/gfs2/ops_inode.c index af7097a514c1..6cbbb5b46ce4 100644 --- a/fs/gfs2/ops_inode.c +++ b/fs/gfs2/ops_inode.c | |||
| @@ -1149,16 +1149,6 @@ const struct inode_operations gfs2_file_iops = { | |||
| 1149 | .removexattr = gfs2_removexattr, | 1149 | .removexattr = gfs2_removexattr, |
| 1150 | }; | 1150 | }; |
| 1151 | 1151 | ||
| 1152 | const struct inode_operations gfs2_dev_iops = { | ||
| 1153 | .permission = gfs2_permission, | ||
| 1154 | .setattr = gfs2_setattr, | ||
| 1155 | .getattr = gfs2_getattr, | ||
| 1156 | .setxattr = gfs2_setxattr, | ||
| 1157 | .getxattr = gfs2_getxattr, | ||
| 1158 | .listxattr = gfs2_listxattr, | ||
| 1159 | .removexattr = gfs2_removexattr, | ||
| 1160 | }; | ||
| 1161 | |||
| 1162 | const struct inode_operations gfs2_dir_iops = { | 1152 | const struct inode_operations gfs2_dir_iops = { |
| 1163 | .create = gfs2_create, | 1153 | .create = gfs2_create, |
| 1164 | .lookup = gfs2_lookup, | 1154 | .lookup = gfs2_lookup, |
diff --git a/fs/gfs2/ops_inode.h b/fs/gfs2/ops_inode.h index fd8cee231e1d..14b4b797622a 100644 --- a/fs/gfs2/ops_inode.h +++ b/fs/gfs2/ops_inode.h | |||
| @@ -15,7 +15,6 @@ | |||
| 15 | extern const struct inode_operations gfs2_file_iops; | 15 | extern const struct inode_operations gfs2_file_iops; |
| 16 | extern const struct inode_operations gfs2_dir_iops; | 16 | extern const struct inode_operations gfs2_dir_iops; |
| 17 | extern const struct inode_operations gfs2_symlink_iops; | 17 | extern const struct inode_operations gfs2_symlink_iops; |
| 18 | extern const struct inode_operations gfs2_dev_iops; | ||
| 19 | extern const struct file_operations gfs2_file_fops; | 18 | extern const struct file_operations gfs2_file_fops; |
| 20 | extern const struct file_operations gfs2_dir_fops; | 19 | extern const struct file_operations gfs2_dir_fops; |
| 21 | extern const struct file_operations gfs2_file_fops_nolock; | 20 | extern const struct file_operations gfs2_file_fops_nolock; |
