From: Greg Kurz Date: Thu, 1 Feb 2018 19:47:41 +0000 (+0100) Subject: spapr: add missing break in h_get_cpu_characteristics() X-Git-Tag: qemu-xen-4.11.0-rc1~1^2~1 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=00e9fba2beb4a0366965ce4ec1068df68ce9f4c0;p=qemu-xen.git spapr: add missing break in h_get_cpu_characteristics() Detected by Coverity (CID 1385702). This fixes the recently added hypercall to let guests properly apply Spectre and Meltdown workarounds. Fixes: c59704b25473 "target/ppc/spapr: Add H-Call H_GET_CPU_CHARACTERISTICS" Reported-by: Paolo Bonzini Signed-off-by: Greg Kurz Reviewed-by: Suraj Jitindar Singh Signed-off-by: David Gibson (cherry picked from commit fa86f59234919b479b7e8da6b0dc2dad894a5eac) Signed-off-by: Michael Roth --- diff --git a/hw/ppc/spapr_hcall.c b/hw/ppc/spapr_hcall.c index 0e1a0aed76..8416452e33 100644 --- a/hw/ppc/spapr_hcall.c +++ b/hw/ppc/spapr_hcall.c @@ -1698,6 +1698,7 @@ static target_ulong h_get_cpu_characteristics(PowerPCCPU *cpu, switch (safe_indirect_branch) { case SPAPR_CAP_FIXED: characteristics |= H_CPU_CHAR_BCCTRL_SERIALISED; + break; default: /* broken */ assert(safe_indirect_branch == SPAPR_CAP_BROKEN); break;