diff options
Diffstat (limited to 'fs/configfs/inode.c')
| -rw-r--r-- | fs/configfs/inode.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/configfs/inode.c b/fs/configfs/inode.c index c153bd9534cb..fb18917954a9 100644 --- a/fs/configfs/inode.c +++ b/fs/configfs/inode.c | |||
| @@ -38,7 +38,7 @@ | |||
| 38 | 38 | ||
| 39 | extern struct super_block * configfs_sb; | 39 | extern struct super_block * configfs_sb; |
| 40 | 40 | ||
| 41 | static struct address_space_operations configfs_aops = { | 41 | static const struct address_space_operations configfs_aops = { |
| 42 | .readpage = simple_readpage, | 42 | .readpage = simple_readpage, |
| 43 | .prepare_write = simple_prepare_write, | 43 | .prepare_write = simple_prepare_write, |
| 44 | .commit_write = simple_commit_write | 44 | .commit_write = simple_commit_write |
| @@ -76,11 +76,10 @@ int configfs_setattr(struct dentry * dentry, struct iattr * iattr) | |||
| 76 | 76 | ||
| 77 | if (!sd_iattr) { | 77 | if (!sd_iattr) { |
| 78 | /* setting attributes for the first time, allocate now */ | 78 | /* setting attributes for the first time, allocate now */ |
| 79 | sd_iattr = kmalloc(sizeof(struct iattr), GFP_KERNEL); | 79 | sd_iattr = kzalloc(sizeof(struct iattr), GFP_KERNEL); |
| 80 | if (!sd_iattr) | 80 | if (!sd_iattr) |
| 81 | return -ENOMEM; | 81 | return -ENOMEM; |
| 82 | /* assign default attributes */ | 82 | /* assign default attributes */ |
| 83 | memset(sd_iattr, 0, sizeof(struct iattr)); | ||
| 84 | sd_iattr->ia_mode = sd->s_mode; | 83 | sd_iattr->ia_mode = sd->s_mode; |
| 85 | sd_iattr->ia_uid = 0; | 84 | sd_iattr->ia_uid = 0; |
| 86 | sd_iattr->ia_gid = 0; | 85 | sd_iattr->ia_gid = 0; |
| @@ -136,7 +135,6 @@ struct inode * configfs_new_inode(mode_t mode, struct configfs_dirent * sd) | |||
| 136 | { | 135 | { |
| 137 | struct inode * inode = new_inode(configfs_sb); | 136 | struct inode * inode = new_inode(configfs_sb); |
| 138 | if (inode) { | 137 | if (inode) { |
| 139 | inode->i_blksize = PAGE_CACHE_SIZE; | ||
| 140 | inode->i_blocks = 0; | 138 | inode->i_blocks = 0; |
| 141 | inode->i_mapping->a_ops = &configfs_aops; | 139 | inode->i_mapping->a_ops = &configfs_aops; |
| 142 | inode->i_mapping->backing_dev_info = &configfs_backing_dev_info; | 140 | inode->i_mapping->backing_dev_info = &configfs_backing_dev_info; |
