diff options
Diffstat (limited to 'fs/udf/ialloc.c')
-rw-r--r-- | fs/udf/ialloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/udf/ialloc.c b/fs/udf/ialloc.c index e1856b89c9c8..15c6e992e587 100644 --- a/fs/udf/ialloc.c +++ b/fs/udf/ialloc.c | |||
@@ -37,7 +37,7 @@ void udf_free_inode(struct inode *inode) | |||
37 | * as writing the quota to disk may need the lock as well. | 37 | * as writing the quota to disk may need the lock as well. |
38 | */ | 38 | */ |
39 | dquot_free_inode(inode); | 39 | dquot_free_inode(inode); |
40 | vfs_dq_drop(inode); | 40 | dquot_drop(inode); |
41 | 41 | ||
42 | clear_inode(inode); | 42 | clear_inode(inode); |
43 | 43 | ||
@@ -156,7 +156,7 @@ struct inode *udf_new_inode(struct inode *dir, int mode, int *err) | |||
156 | vfs_dq_init(inode); | 156 | vfs_dq_init(inode); |
157 | ret = dquot_alloc_inode(inode); | 157 | ret = dquot_alloc_inode(inode); |
158 | if (ret) { | 158 | if (ret) { |
159 | vfs_dq_drop(inode); | 159 | dquot_drop(inode); |
160 | inode->i_flags |= S_NOQUOTA; | 160 | inode->i_flags |= S_NOQUOTA; |
161 | inode->i_nlink = 0; | 161 | inode->i_nlink = 0; |
162 | iput(inode); | 162 | iput(inode); |