X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=libust%2Ftype-serializer.c;h=dcaea1ef029664bbb22218b84ea663378af0c91d;hb=8d6300d3b3cb0219e1109e931a2219dbd812b24d;hp=2c278dfe0f2a9222503e2b20caf80c0119b9e273;hpb=0222e1213f196b66cbc08cd29093aca4a28e9ffb;p=ust.git diff --git a/libust/type-serializer.c b/libust/type-serializer.c index 2c278df..dcaea1e 100644 --- a/libust/type-serializer.c +++ b/libust/type-serializer.c @@ -82,6 +82,14 @@ void _ltt_specialized_trace(const struct marker *mdata, void *probe_data, if (!chan->active) continue; + /* If a new cpu was plugged since the trace was started, we did + * not add it to the trace, and therefore we write the event to + * cpu 0. + */ + if(cpu >= chan->n_cpus) { + cpu = 0; + } + /* reserve space : header and data */ ret = ltt_reserve_slot(chan, trace, data_size, largest_align, cpu, &buf, &slot_size, &buf_offset, &tsc,