Fix has_flushes setting

This commit is contained in:
Vitaliy Filippov
2021-04-28 23:40:44 +03:00
parent 5d8d486f7c
commit 9703773a63
+2 -2
View File
@@ -155,14 +155,14 @@ restart:
has_writes = has_writes || !rm;
if (is_flush)
{
has_flushes = has_writes || !rm;
has_flushes = has_flushes || !rm;
}
}
else if (opcode == OSD_OP_SYNC)
{
// Postpone writes until previous SYNC completes
// ...so dirty_writes can't contain anything newer than SYNC
has_flushes = has_writes || !rm;
has_flushes = has_flushes || !rm;
}
if (rm)
{