提交 7cfcd8b7 编写于 作者: Q Quorum Laval 提交者: Dave Kleikamp

jfs: jump to error_out when filemap_{fdatawait, write_and_wait} fails

filemap_fdatawait/filemap_write_and_wait may fail, so check the return
value and jump to error_out in the case of error.
Signed-off-by: NQuorum Laval <quorum.laval@gmail.com>
Signed-off-by: NDave Kleikamp <dave.kleikamp@oracle.com>
上级 b8927721
...@@ -379,8 +379,14 @@ int jfs_extendfs(struct super_block *sb, s64 newLVSize, int newLogSize) ...@@ -379,8 +379,14 @@ int jfs_extendfs(struct super_block *sb, s64 newLVSize, int newLogSize)
* cached in meta-data cache, and not written out * cached in meta-data cache, and not written out
* by txCommit(); * by txCommit();
*/ */
filemap_fdatawait(ipbmap->i_mapping); rc = filemap_fdatawait(ipbmap->i_mapping);
filemap_write_and_wait(ipbmap->i_mapping); if (rc)
goto error_out;
rc = filemap_write_and_wait(ipbmap->i_mapping);
if (rc)
goto error_out;
diWriteSpecial(ipbmap, 0); diWriteSpecial(ipbmap, 0);
newPage = nPages; /* first new page number */ newPage = nPages; /* first new page number */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册