Merge pull request #568 from mmichal10/fix-passive-update

Fix metadata io detection in passive mode
This commit is contained in:
Robert Baldyga
2021-09-08 13:57:22 +02:00
committed by GitHub

View File

@@ -2018,7 +2018,7 @@ int ocf_metadata_passive_update(ocf_cache_t cache, struct ocf_io *io)
return -OCF_ERR_INVAL;
}
if (io_end_page >= ctrl->count_pages)
if (io_start_page >= ctrl->count_pages)
return 0;
for (i = 0; i < ARRAY_SIZE(update_segments); i++) {