diff mbox series

[v1,2/5] plugins/core: add missing break in cb_to_tcg_flags

Message ID 20200207150118.23007-3-alex.bennee@linaro.org
State Superseded
Headers show
Series plugins/next | expand

Commit Message

Alex Bennée Feb. 7, 2020, 3:01 p.m. UTC
From: "Emilio G. Cota" <cota@braap.org>


Reported-by: Robert Henry <robhenry@microsoft.com>
Signed-off-by: Emilio G. Cota <cota@braap.org>

Message-Id: <20200105072940.32204-1-cota@braap.org>
---
 plugins/core.c | 1 +
 1 file changed, 1 insertion(+)

-- 
2.20.1

Comments

Richard Henderson Feb. 11, 2020, 5:56 p.m. UTC | #1
On 2/7/20 7:01 AM, Alex Bennée wrote:
> From: "Emilio G. Cota" <cota@braap.org>

> 

> Reported-by: Robert Henry <robhenry@microsoft.com>

> Signed-off-by: Emilio G. Cota <cota@braap.org>

> Message-Id: <20200105072940.32204-1-cota@braap.org>

> ---

>  plugins/core.c | 1 +

>  1 file changed, 1 insertion(+)


Reviewed-by: Richard Henderson <richard.henderson@linaro.org>



r~
diff mbox series

Patch

diff --git a/plugins/core.c b/plugins/core.c
index 9e1b9e7a915..ed863011baf 100644
--- a/plugins/core.c
+++ b/plugins/core.c
@@ -286,6 +286,7 @@  static inline uint32_t cb_to_tcg_flags(enum qemu_plugin_cb_flags flags)
     switch (flags) {
     case QEMU_PLUGIN_CB_RW_REGS:
         ret = 0;
+        break;
     case QEMU_PLUGIN_CB_R_REGS:
         ret = TCG_CALL_NO_WG;
         break;