forked from luck/tmp_suning_uos_patched
quota: be aware of error from dquot_initialize
Commit 6184fc0b8d
("quota: Propagate error from ->acquire_dquot()")
missed to handle error from dquot_initialize in dquot_file_open, fix it.
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jan Kara <jack@suse.cz>
This commit is contained in:
parent
dd5f627973
commit
88d8ff976a
|
@ -2140,7 +2140,7 @@ int dquot_file_open(struct inode *inode, struct file *file)
|
||||||
|
|
||||||
error = generic_file_open(inode, file);
|
error = generic_file_open(inode, file);
|
||||||
if (!error && (file->f_mode & FMODE_WRITE))
|
if (!error && (file->f_mode & FMODE_WRITE))
|
||||||
dquot_initialize(inode);
|
error = dquot_initialize(inode);
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(dquot_file_open);
|
EXPORT_SYMBOL(dquot_file_open);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user