use 'perf trace command' to a special thread with TSX abort

171 Views Asked by At

I try to use 'perf trace' command to trace tsx abort in a special thread. But I get errors with arguments. All command I think may be right and tried is below.

perf trace --pid 24265 --event tx-abort

perf trace --pid 24265 --event {tx-abort}

perf trace --pid 24265 --event {'tx-abort'}

perf trace --pid {24265} --event tx-abort

perf trace --pid {24265} --event {tx-abort}

perf trace --pid {24265} --event {'tx-abort'}

perf trace --pid {'24265'} --event tx-abort

perf trace --pid {'24265'} --event {tx-abort}

perf trace --pid {'24265'} --event {'tx-abort'}

All error hins is 'Problems parsing the target to trace,check your options'.

Is there any way to let perf trace run as expected?

1

There are 1 best solutions below

1
On

The issue is not the argument syntax, your first line should be just fine. First, check if tx-abort is listed by perf list, to see if it's generally supported on your system. Then the error may happen because the specified pid does not exist.

The TSX events are PMU events. As opposed to syscalls or tracepoints, not the individual event is instrumented in software, but there is a hardware counter within the Performance Monitoring Unit, that counts these events and triggers an interrupt after a certain amount of events. Taking a sample on each event is not typically feasible for PMU events. I suspect that is why it doesn't work for perf trace, which is originally intended for syscalls, even though the documentation a bit vague as to what type of events are supported.

Note I can reproduce that it doesn't work, but i get an "Invalid argument". That PMU events are unsupported for perf trace is a a bit of speculation by me.

There is a broad documentation by Intel on analyzing TSX with perf, which gives examples and explanation on how to use the the tx events with perf record.