Commit 80f659f3 authored by Heinz Mauelshagen's avatar Heinz Mauelshagen Committed by Mike Snitzer

dm cache: use cell_defer() boolean argument consistently

Fix a few cell_defer() calls that weren't passing a bool.
Signed-off-by: default avatarHeinz Mauelshagen <heinzm@redhat.com>
Signed-off-by: default avatarJoe Thornber <ejt@redhat.com>
Signed-off-by: default avatarMike Snitzer <snitzer@redhat.com>
parent 4cb3e1db
...@@ -770,13 +770,13 @@ static void migration_failure(struct dm_cache_migration *mg) ...@@ -770,13 +770,13 @@ static void migration_failure(struct dm_cache_migration *mg)
DMWARN_LIMIT("demotion failed; couldn't copy block"); DMWARN_LIMIT("demotion failed; couldn't copy block");
policy_force_mapping(cache->policy, mg->new_oblock, mg->old_oblock); policy_force_mapping(cache->policy, mg->new_oblock, mg->old_oblock);
cell_defer(cache, mg->old_ocell, mg->promote ? 0 : 1); cell_defer(cache, mg->old_ocell, mg->promote ? false : true);
if (mg->promote) if (mg->promote)
cell_defer(cache, mg->new_ocell, 1); cell_defer(cache, mg->new_ocell, true);
} else { } else {
DMWARN_LIMIT("promotion failed; couldn't copy block"); DMWARN_LIMIT("promotion failed; couldn't copy block");
policy_remove_mapping(cache->policy, mg->new_oblock); policy_remove_mapping(cache->policy, mg->new_oblock);
cell_defer(cache, mg->new_ocell, 1); cell_defer(cache, mg->new_ocell, true);
} }
cleanup_migration(mg); cleanup_migration(mg);
...@@ -828,7 +828,7 @@ static void migration_success_post_commit(struct dm_cache_migration *mg) ...@@ -828,7 +828,7 @@ static void migration_success_post_commit(struct dm_cache_migration *mg)
return; return;
} else if (mg->demote) { } else if (mg->demote) {
cell_defer(cache, mg->old_ocell, mg->promote ? 0 : 1); cell_defer(cache, mg->old_ocell, mg->promote ? false : true);
if (mg->promote) { if (mg->promote) {
mg->demote = false; mg->demote = false;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment