[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 04/22] plugins: Zero new qemu_plugin_dyn_cb entries
|
From: |
Richard Henderson |
|
Subject: |
[PATCH 04/22] plugins: Zero new qemu_plugin_dyn_cb entries |
|
Date: |
Fri, 15 Mar 2024 15:57:02 -1000 |
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
plugins/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/core.c b/plugins/core.c
index 11ca20e626..4487cb7c48 100644
--- a/plugins/core.c
+++ b/plugins/core.c
@@ -307,7 +307,7 @@ static struct qemu_plugin_dyn_cb *plugin_get_dyn_cb(GArray
**arr)
GArray *cbs = *arr;
if (!cbs) {
- cbs = g_array_sized_new(false, false,
+ cbs = g_array_sized_new(false, true,
sizeof(struct qemu_plugin_dyn_cb), 1);
*arr = cbs;
}
--
2.34.1
- [PATCH 00/22] plugins: Rewrite plugin code generation, Richard Henderson, 2024/03/15
- [PATCH 01/22] tcg: Add TCGContext.emit_before_op, Richard Henderson, 2024/03/15
- [PATCH 04/22] plugins: Zero new qemu_plugin_dyn_cb entries,
Richard Henderson <=
- [PATCH 02/22] tcg: Make tcg/helper-info.h self-contained, Richard Henderson, 2024/03/15
- [PATCH 03/22] tcg: Pass function pointer to tcg_gen_call*, Richard Henderson, 2024/03/15
- [PATCH 06/22] plugins: Create TCGHelperInfo for all out-of-line callbacks, Richard Henderson, 2024/03/15
- [PATCH 05/22] plugins: Move function pointer in qemu_plugin_dyn_cb, Richard Henderson, 2024/03/15
- [PATCH 07/22] plugins: Use emit_before_op for PLUGIN_GEN_AFTER_INSN, Richard Henderson, 2024/03/15
- [PATCH 08/22] plugins: Use emit_before_op for PLUGIN_GEN_FROM_TB, Richard Henderson, 2024/03/15
- [PATCH 09/22] plugins: Add PLUGIN_GEN_AFTER_TB, Richard Henderson, 2024/03/15
- [PATCH 10/22] plugins: Use emit_before_op for PLUGIN_GEN_FROM_INSN, Richard Henderson, 2024/03/15
- [PATCH 11/22] plugins: Use emit_before_op for PLUGIN_GEN_FROM_MEM, Richard Henderson, 2024/03/15
- [PATCH 12/22] plugins: Remove plugin helpers, Richard Henderson, 2024/03/15