diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2023-05-26 17:53:58 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2023-06-01 11:05:05 -0400 |
commit | 333df1c6c7a388ddccaaa041b4fa2ce565d1255e (patch) | |
tree | 69a6f2f6b50180259809d0c0580c05aa2e158e89 /scripts | |
parent | 89aafcf2a79307b7d658b174e2d649dd63365bd1 (diff) | |
download | qemu-333df1c6c7a388ddccaaa041b4fa2ce565d1255e.zip qemu-333df1c6c7a388ddccaaa041b4fa2ce565d1255e.tar.gz qemu-333df1c6c7a388ddccaaa041b4fa2ce565d1255e.tar.bz2 |
trace: remove control-vcpu.h
Now we no longer have vcpu controlled trace events we can excise the
code that allows us to query its status.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 20230526165401.574474-9-alex.bennee@linaro.org
Message-Id: <20230524133952.3971948-8-alex.bennee@linaro.org>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/tracetool/format/h.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/scripts/tracetool/format/h.py b/scripts/tracetool/format/h.py index 285d7b0..ea126b0 100644 --- a/scripts/tracetool/format/h.py +++ b/scripts/tracetool/format/h.py @@ -16,10 +16,7 @@ from tracetool import out def generate(events, backend, group): - if group == "root": - header = "trace/control-vcpu.h" - else: - header = "trace/control.h" + header = "trace/control.h" out('/* This file is autogenerated by tracetool, do not edit. */', '', |