mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 00:26:39 +08:00
ocfs2: clear unaligned io flag when dio fails
The unaligned io flag is set in the kiocb when an unaligned dio is issued, it should be cleared even when the dio fails, or it may affect the following io which are using the same kiocb. Signed-off-by: Junxiao Bi <junxiao.bi@oracle.com> Cc: stable@vger.kernel.org Signed-off-by: Joel Becker <jlbec@evilplan.org>
This commit is contained in:
parent
9e85a6f9dc
commit
3e5d3c35a6
@ -2422,8 +2422,10 @@ out_dio:
|
||||
unaligned_dio = 0;
|
||||
}
|
||||
|
||||
if (unaligned_dio)
|
||||
if (unaligned_dio) {
|
||||
ocfs2_iocb_clear_unaligned_aio(iocb);
|
||||
atomic_dec(&OCFS2_I(inode)->ip_unaligned_aio);
|
||||
}
|
||||
|
||||
out:
|
||||
if (rw_level != -1)
|
||||
|
Loading…
Reference in New Issue
Block a user