target/i386/sev: Prefix QMP errors with 'SEV'

Multiple errors might be reported to the monitor,
better to prefix the SEV ones so we can distinct them.

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Message-Id: <20211007161716.453984-6-philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Philippe Mathieu-Daudé 2021-10-07 18:16:58 +02:00 committed by Paolo Bonzini
parent 773ab6cb16
commit 2c7233eb10
2 changed files with 12 additions and 10 deletions

View file

@ -717,7 +717,7 @@ SevLaunchMeasureInfo *qmp_query_sev_launch_measure(Error **errp)
data = sev_get_launch_measurement();
if (!data) {
error_setg(errp, "Measurement is not available");
error_setg(errp, "SEV launch measurement is not available");
return NULL;
}