diff options
author | Jan Kara <jack@suse.com> | 2015-06-29 10:08:45 -0400 |
---|---|---|
committer | Jan Kara <jack@suse.com> | 2015-07-23 14:59:37 -0400 |
commit | c2edb305d6846ee8af7b5133845e23943d128e4c (patch) | |
tree | b87a0e482f3b7d0e80bc6cd473a2cc11901a5bb6 /fs/ext2/ialloc.c | |
parent | 6184fc0b8dd76c6aedc7a26e93254993e14e52de (diff) |
ext2: Handle error from dquot_initalize()
dquot_initialize() can now return error. Handle it where possible.
Signed-off-by: Jan Kara <jack@suse.com>
Diffstat (limited to 'fs/ext2/ialloc.c')
-rw-r--r-- | fs/ext2/ialloc.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/ext2/ialloc.c b/fs/ext2/ialloc.c index 5c04a0ddea80..efe5fb21c533 100644 --- a/fs/ext2/ialloc.c +++ b/fs/ext2/ialloc.c | |||
@@ -577,7 +577,10 @@ got: | |||
577 | goto fail; | 577 | goto fail; |
578 | } | 578 | } |
579 | 579 | ||
580 | dquot_initialize(inode); | 580 | err = dquot_initialize(inode); |
581 | if (err) | ||
582 | goto fail_drop; | ||
583 | |||
581 | err = dquot_alloc_inode(inode); | 584 | err = dquot_alloc_inode(inode); |
582 | if (err) | 585 | if (err) |
583 | goto fail_drop; | 586 | goto fail_drop; |