Re: trace_exec_tb(tb, pc) does not have cpu index

2023-08-22 Thread Peter Maydell
On Tue, 22 Aug 2023 at 10:01, Alex Bennée wrote: > > > Igor Lesik writes: > > > Hi. > > > > I am wondering why trace events like trace_exec_tb(tb, pc) do not have > > cpu index, how to make sense of the trace in case of multiple vCPUs? > > I have changed it to trace_exec_tb(tb, pc, cpu->cpu_index

Re: trace_exec_tb(tb, pc) does not have cpu index

2023-08-22 Thread Alex Bennée
Igor Lesik writes: > Hi. > > I am wondering why trace events like trace_exec_tb(tb, pc) do not have > cpu index, how to make sense of the trace in case of multiple vCPUs? > I have changed it to trace_exec_tb(tb, pc, cpu->cpu_index) to read my > trace, and now wondering should not it be there by

trace_exec_tb(tb, pc) does not have cpu index

2023-08-21 Thread Igor Lesik
Hi. I am wondering why trace events like trace_exec_tb(tb, pc) do not have cpu index, how to make sense of the trace in case of multiple vCPUs? I have changed it to trace_exec_tb(tb, pc, cpu->cpu_index) to read my trace, and now wondering should not it be there by default? Am I missing something