diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2021-10-07 18:16:58 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-10-13 10:47:49 +0200 |
commit | 2c7233eb103adbf567778270b69950dd7a776c72 (patch) | |
tree | a35cb5833c8c6a24936bf6de1ed63b7f9fbaabca /target/i386/monitor.c | |
parent | 773ab6cb16b34272dc7eb8171824924c38dbeb90 (diff) | |
download | qemu-2c7233eb103adbf567778270b69950dd7a776c72.zip qemu-2c7233eb103adbf567778270b69950dd7a776c72.tar.gz qemu-2c7233eb103adbf567778270b69950dd7a776c72.tar.bz2 |
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>
Diffstat (limited to 'target/i386/monitor.c')
-rw-r--r-- | target/i386/monitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/i386/monitor.c b/target/i386/monitor.c index 196c1c9..eabbeb9 100644 --- a/target/i386/monitor.c +++ b/target/i386/monitor.c @@ -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; } |