*/
bool force_restart_backfill =
!pi.last_backfill.is_max() &&
- pi.last_backfill_bitwise != get_sort_bitwise();
+ !pi.last_backfill_bitwise;
if (pi.last_update == info.last_update && !force_restart_backfill) {
// empty log
if (pg.scrubber.must_scrub)
out << " MUST_SCRUB";
- if (!pg.get_sort_bitwise())
- out << " NIBBLEWISE";
-
//out << " (" << pg.pg_log.get_tail() << "," << pg.pg_log.get_head() << "]";
if (pg.pg_log.get_missing().num_missing()) {
out << " m=" << pg.pg_log.get_missing().num_missing();
hobject_t pg_end = info.pgid.pgid.get_hobj_end(pool.info.get_pg_num());
dout(10) << " pgnls lower_bound " << lower_bound
<< " pg_end " << pg_end << dendl;
- if (get_sort_bitwise() &&
- ((!lower_bound.is_max() && lower_bound >= pg_end) ||
+ if (((!lower_bound.is_max() && lower_bound >= pg_end) ||
(lower_bound != hobject_t() && lower_bound < pg_start))) {
// this should only happen with a buggy client.
dout(10) << "outside of PG bounds " << pg_start << " .. "
dout(10) << "recover_backfill (" << max << ")"
<< " bft=" << backfill_targets
<< " last_backfill_started " << last_backfill_started
- << " sort " << (get_sort_bitwise() ? "bitwise" : "nibblewise")
<< (new_backfill ? " new_backfill":"")
<< dendl;
assert(!backfill_targets.empty());