diff options
| author | Daniel P. Berrangé <berrange@redhat.com> | 2024-01-08 17:13:55 +0000 |
|---|---|---|
| committer | Stefan Hajnoczi <stefanha@redhat.com> | 2024-03-12 14:52:07 -0400 |
| commit | 081340d1ddfe27e80f653d707c278edf06a9a803 (patch) | |
| tree | 7621050a37772d67a41c480ac74433e48ba3af3d /docs/devel | |
| parent | 8f3f329f5e0117bd1a23a79ab751f8a7d3471e4b (diff) | |
| download | focaccia-qemu-081340d1ddfe27e80f653d707c278edf06a9a803.tar.gz focaccia-qemu-081340d1ddfe27e80f653d707c278edf06a9a803.zip | |
tracetool: remove redundant --target-type / --target-name args
The --target-type and --target-name args are used to construct the default probe prefix if '--probe-prefix' is not given. The meson.build will always pass '--probe-prefix', so the other args are effectively redundant. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: John Snow <jsnow@redhat.com> Message-id: 20240108171356.1037059-2-berrange@redhat.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'docs/devel')
| -rw-r--r-- | docs/devel/tracing.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/devel/tracing.rst b/docs/devel/tracing.rst index d288480db1..043bed7fd0 100644 --- a/docs/devel/tracing.rst +++ b/docs/devel/tracing.rst @@ -357,8 +357,7 @@ probes:: scripts/tracetool.py --backends=dtrace --format=stap \ --binary path/to/qemu-binary \ - --target-type system \ - --target-name x86_64 \ + --probe-prefix qemu.system.x86_64 \ --group=all \ trace-events-all \ qemu.stp |