diff options
author | Cédric Le Goater <clg@kaod.org> | 2023-06-20 07:59:10 +0200 |
---|---|---|
committer | Cédric Le Goater <clg@kaod.org> | 2023-06-25 22:41:30 +0200 |
commit | 518f72ec4bb395647921d5091d85c7335c3968ac (patch) | |
tree | 685bc4f40e88ecfb45ef6a05a77cb170c37d7657 | |
parent | 74b2fd630761b3e3fe39a5314fcec04829060502 (diff) | |
download | qemu-518f72ec4bb395647921d5091d85c7335c3968ac.zip qemu-518f72ec4bb395647921d5091d85c7335c3968ac.tar.gz qemu-518f72ec4bb395647921d5091d85c7335c3968ac.tar.bz2 |
ppc/pnv: Rephrase error when run with KVM
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
-rw-r--r-- | hw/ppc/pnv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/ppc/pnv.c b/hw/ppc/pnv.c index 590fc64..fc08317 100644 --- a/hw/ppc/pnv.c +++ b/hw/ppc/pnv.c @@ -799,7 +799,8 @@ static void pnv_init(MachineState *machine) DeviceState *dev; if (kvm_enabled()) { - error_report("The powernv machine does not work with KVM acceleration"); + error_report("machine %s does not support the KVM accelerator", + mc->name); exit(EXIT_FAILURE); } |