plugins: fix mem callback array size
authorPierrick Bouvier <pierrick.bouvier@linaro.org>
Thu, 18 Jul 2024 09:45:13 +0000 (10:45 +0100)
committerAlex Bennée <alex.bennee@linaro.org>
Mon, 22 Jul 2024 08:37:56 +0000 (09:37 +0100)
commit94ae227e15bd5ede18a92947412ef47c2b89e269
treeaca7104531e3816f6a326a1d8e2057d62f714707
parent58fc249d9ebd7c6ed979cbf039ccfa93d1bae2b9
plugins: fix mem callback array size

data was correctly copied, but size of array was not set
(g_array_sized_new only reserves memory, but does not set size).

As a result, callbacks were not called for code path relying on
plugin_register_vcpu_mem_cb().

Found when trying to trigger mem access callbacks for atomic
instructions.

Reviewed-by: Xingtao Yao <yaoxt.fnst@fujitsu.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20240706191335.878142-2-pierrick.bouvier@linaro.org>
Message-Id: <20240718094523.1198645-6-alex.bennee@linaro.org>
accel/tcg/plugin-gen.c