trace: Remove deprecated 'vcpu' field from QMP trace events
'vcpu' fields are deprecated since commit 5485e52a33
("qapi: make the vcpu parameters deprecated for 8.1"),
time to remove them.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20240530071548.20074-3-philmd@linaro.org>
This commit is contained in:
@@ -48,7 +48,6 @@ static bool check_events(bool ignore_unavailable, bool is_pattern,
|
||||
}
|
||||
|
||||
TraceEventInfoList *qmp_trace_event_get_state(const char *name,
|
||||
bool has_vcpu, int64_t vcpu,
|
||||
Error **errp)
|
||||
{
|
||||
TraceEventInfoList *events = NULL;
|
||||
@@ -86,7 +85,6 @@ TraceEventInfoList *qmp_trace_event_get_state(const char *name,
|
||||
|
||||
void qmp_trace_event_set_state(const char *name, bool enable,
|
||||
bool has_ignore_unavailable, bool ignore_unavailable,
|
||||
bool has_vcpu, int64_t vcpu,
|
||||
Error **errp)
|
||||
{
|
||||
TraceEventIter iter;
|
||||
|
||||
@@ -40,7 +40,7 @@ void hmp_trace_event(Monitor *mon, const QDict *qdict)
|
||||
Error *local_err = NULL;
|
||||
|
||||
qmp_trace_event_set_state(tp_name, new_state,
|
||||
true, true, false, 0, &local_err);
|
||||
true, true, &local_err);
|
||||
if (local_err) {
|
||||
error_report_err(local_err);
|
||||
}
|
||||
@@ -82,7 +82,7 @@ void hmp_info_trace_events(Monitor *mon, const QDict *qdict)
|
||||
name = "*";
|
||||
}
|
||||
|
||||
events = qmp_trace_event_get_state(name, false, 0, &local_err);
|
||||
events = qmp_trace_event_get_state(name, &local_err);
|
||||
if (local_err) {
|
||||
error_report_err(local_err);
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user