diff options
Diffstat (limited to 'fs/ext2/namei.c')
-rw-r--r-- | fs/ext2/namei.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/fs/ext2/namei.c b/fs/ext2/namei.c index 5923df7b22af..71efb0e9a3f2 100644 --- a/fs/ext2/namei.c +++ b/fs/ext2/namei.c | |||
@@ -102,7 +102,7 @@ static int ext2_create (struct inode * dir, struct dentry * dentry, int mode, st | |||
102 | { | 102 | { |
103 | struct inode *inode; | 103 | struct inode *inode; |
104 | 104 | ||
105 | vfs_dq_init(dir); | 105 | dquot_initialize(dir); |
106 | 106 | ||
107 | inode = ext2_new_inode(dir, mode); | 107 | inode = ext2_new_inode(dir, mode); |
108 | if (IS_ERR(inode)) | 108 | if (IS_ERR(inode)) |
@@ -131,7 +131,7 @@ static int ext2_mknod (struct inode * dir, struct dentry *dentry, int mode, dev_ | |||
131 | if (!new_valid_dev(rdev)) | 131 | if (!new_valid_dev(rdev)) |
132 | return -EINVAL; | 132 | return -EINVAL; |
133 | 133 | ||
134 | vfs_dq_init(dir); | 134 | dquot_initialize(dir); |
135 | 135 | ||
136 | inode = ext2_new_inode (dir, mode); | 136 | inode = ext2_new_inode (dir, mode); |
137 | err = PTR_ERR(inode); | 137 | err = PTR_ERR(inode); |
@@ -157,7 +157,7 @@ static int ext2_symlink (struct inode * dir, struct dentry * dentry, | |||
157 | if (l > sb->s_blocksize) | 157 | if (l > sb->s_blocksize) |
158 | goto out; | 158 | goto out; |
159 | 159 | ||
160 | vfs_dq_init(dir); | 160 | dquot_initialize(dir); |
161 | 161 | ||
162 | inode = ext2_new_inode (dir, S_IFLNK | S_IRWXUGO); | 162 | inode = ext2_new_inode (dir, S_IFLNK | S_IRWXUGO); |
163 | err = PTR_ERR(inode); | 163 | err = PTR_ERR(inode); |
@@ -202,7 +202,7 @@ static int ext2_link (struct dentry * old_dentry, struct inode * dir, | |||
202 | if (inode->i_nlink >= EXT2_LINK_MAX) | 202 | if (inode->i_nlink >= EXT2_LINK_MAX) |
203 | return -EMLINK; | 203 | return -EMLINK; |
204 | 204 | ||
205 | vfs_dq_init(dir); | 205 | dquot_initialize(dir); |
206 | 206 | ||
207 | inode->i_ctime = CURRENT_TIME_SEC; | 207 | inode->i_ctime = CURRENT_TIME_SEC; |
208 | inode_inc_link_count(inode); | 208 | inode_inc_link_count(inode); |
@@ -226,7 +226,7 @@ static int ext2_mkdir(struct inode * dir, struct dentry * dentry, int mode) | |||
226 | if (dir->i_nlink >= EXT2_LINK_MAX) | 226 | if (dir->i_nlink >= EXT2_LINK_MAX) |
227 | goto out; | 227 | goto out; |
228 | 228 | ||
229 | vfs_dq_init(dir); | 229 | dquot_initialize(dir); |
230 | 230 | ||
231 | inode_inc_link_count(dir); | 231 | inode_inc_link_count(dir); |
232 | 232 | ||
@@ -274,7 +274,7 @@ static int ext2_unlink(struct inode * dir, struct dentry *dentry) | |||
274 | struct page * page; | 274 | struct page * page; |
275 | int err = -ENOENT; | 275 | int err = -ENOENT; |
276 | 276 | ||
277 | vfs_dq_init(dir); | 277 | dquot_initialize(dir); |
278 | 278 | ||
279 | de = ext2_find_entry (dir, &dentry->d_name, &page); | 279 | de = ext2_find_entry (dir, &dentry->d_name, &page); |
280 | if (!de) | 280 | if (!de) |
@@ -318,8 +318,8 @@ static int ext2_rename (struct inode * old_dir, struct dentry * old_dentry, | |||
318 | struct ext2_dir_entry_2 * old_de; | 318 | struct ext2_dir_entry_2 * old_de; |
319 | int err = -ENOENT; | 319 | int err = -ENOENT; |
320 | 320 | ||
321 | vfs_dq_init(old_dir); | 321 | dquot_initialize(old_dir); |
322 | vfs_dq_init(new_dir); | 322 | dquot_initialize(new_dir); |
323 | 323 | ||
324 | old_de = ext2_find_entry (old_dir, &old_dentry->d_name, &old_page); | 324 | old_de = ext2_find_entry (old_dir, &old_dentry->d_name, &old_page); |
325 | if (!old_de) | 325 | if (!old_de) |