Skip to content

Commit

Permalink
Merge pull request ceph#5632 from ceph/wip-fix-ftbfs-4998
Browse files Browse the repository at this point in the history
osd: fix the FTBFS introduced by be28319

Reviewed-by: Greg Farnum <[email protected]>
  • Loading branch information
gregsfortytwo committed Aug 21, 2015
2 parents e06207a + d1c4086 commit 2daccff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osd/ReplicatedPG.cc
Original file line number Diff line number Diff line change
Expand Up @@ -10594,7 +10594,7 @@ void ReplicatedPG::hit_set_remove_all()
// Once we hit a degraded object just skip
if (is_degraded_or_backfilling_object(aoid))
return;
if (scrubber.write_blocked_by_scrub(aoid))
if (scrubber.write_blocked_by_scrub(aoid, get_sort_bitwise()))
return;
}

Expand Down

0 comments on commit 2daccff

Please sign in to comment.