void PrimaryLogPG::handle_watch_timeout(WatchRef watch)
{
ObjectContextRef obc = watch->get_obc(); // handle_watch_timeout owns this ref
- dout(10) << "handle_watch_timeout obc " << obc << dendl;
+ dout(10) << "handle_watch_timeout obc " << *obc << dendl;
if (!is_active()) {
dout(10) << "handle_watch_timeout not active, no-op" << dendl;
osd->logger->inc(l_osd_object_ctx_cache_total);
if (obc) {
osd->logger->inc(l_osd_object_ctx_cache_hit);
- dout(10) << __func__ << ": found obc in cache: " << obc
+ dout(10) << __func__ << ": found obc in cache: " << *obc
<< dendl;
} else {
dout(10) << __func__ << ": obc NOT found in cache: " << soid << dendl;
soid, true, 0, false);
ceph_assert(ssc);
obc = create_object_context(oi, ssc);
- dout(10) << __func__ << ": " << obc << " " << soid
- << " " << obc->rwstate
+ dout(10) << __func__ << ": " << *obc
<< " oi: " << obc->obs.oi
<< " ssc: " << obc->ssc
<< " snapset: " << obc->ssc->snapset << dendl;
}
}
- dout(10) << __func__ << ": creating obc from disk: " << obc
+ dout(10) << __func__ << ": creating obc from disk: " << *obc
<< dendl;
}
return ObjectContextRef(); // -ENOENT!
}
- dout(10) << __func__ << ": " << obc << " " << soid
- << " " << obc->rwstate
+ dout(10) << __func__ << ": " << *obc
<< " oi: " << obc->obs.oi
<< " exists: " << (int)obc->obs.exists
<< " ssc: " << obc->ssc