|
@@ -3311,13 +3311,14 @@ static void test_cpu_buff_start(struct trace_iterator *iter)
|
|
|
if (!(iter->iter_flags & TRACE_FILE_ANNOTATE))
|
|
|
return;
|
|
|
|
|
|
- if (iter->started && cpumask_test_cpu(iter->cpu, iter->started))
|
|
|
+ if (cpumask_available(iter->started) &&
|
|
|
+ cpumask_test_cpu(iter->cpu, iter->started))
|
|
|
return;
|
|
|
|
|
|
if (per_cpu_ptr(iter->trace_buffer->data, iter->cpu)->skipped_entries)
|
|
|
return;
|
|
|
|
|
|
- if (iter->started)
|
|
|
+ if (cpumask_available(iter->started))
|
|
|
cpumask_set_cpu(iter->cpu, iter->started);
|
|
|
|
|
|
/* Don't print started cpu buffer for the first entry of the trace */
|