Signed-off-by: Casey Bodley <cbodley@redhat.com>
OPTION(osd_bench_duration, OPT_U32, 30) // duration of 'osd bench', capped at 30s to avoid triggering timeouts
OPTION(osd_blkin_trace_all, OPT_BOOL, false) // create a blkin trace for all osd requests
+OPTION(osdc_blkin_trace_all, OPT_BOOL, false) // create a blkin trace for all objecter requests
OPTION(osd_discard_disconnected_ops, OPT_BOOL, true)
m->set_mtime(op->mtime);
m->set_retry_attempt(op->attempts++);
m->trace = op->trace;
+ if (!m->trace && cct->_conf->osdc_blkin_trace_all)
+ m->trace.init("objecter op", &trace_endpoint);
if (op->priority)
m->set_priority(op->priority);