Reduce flush relaxation period by 1 order of magninude

Loop now relaxes every 2^17 (131K) cycles instead of every 1M.

Signed-off-by: Adam Rutkowski <adam.j.rutkowski@intel.com>
This commit is contained in:
Adam Rutkowski 2020-03-25 23:37:49 +01:00
parent fd328bd0a1
commit b267d5d77d

View File

@ -180,7 +180,7 @@ static int _ocf_mngt_get_sectors(ocf_cache_t cache, ocf_core_id_t core_id,
break;
}
if ((line + 1) % 1000000 == 0) {
if ((line + 1) % 131072 == 0) {
ocf_metadata_end_exclusive_access(
&cache->metadata.lock);
env_cond_resched();
@ -285,7 +285,7 @@ static int _ocf_mngt_get_flush_containers(ocf_cache_t cache,
break;
}
if ((line + 1) % 1000000 == 0) {
if ((line + 1) % 131072 == 0) {
ocf_metadata_end_exclusive_access(
&cache->metadata.lock);
env_cond_resched();