mbox series

[0/2] fix deadlock with plugins reset/uninstall

Message ID 20250404032027.430575-1-pierrick.bouvier@linaro.org
Headers show
Series fix deadlock with plugins reset/uninstall | expand

Message

Pierrick Bouvier April 4, 2025, 3:20 a.m. UTC
We first fix the issue reported in [1].
We then add a test plugin making sure we don't regress in the future.

[1] https://gitlab.com/qemu-project/qemu/-/issues/2901

Pierrick Bouvier (2):
  plugins/loader: fix deadlock when resetting/uninstalling a plugin
  tests/tcg/plugins: add plugin to test reset and uninstall

 plugins/loader.c              |  2 +-
 tests/tcg/plugins/reset.c     | 73 +++++++++++++++++++++++++++++++++++
 tests/tcg/plugins/meson.build |  2 +-
 3 files changed, 75 insertions(+), 2 deletions(-)
 create mode 100644 tests/tcg/plugins/reset.c

Comments

Alex Bennée April 4, 2025, 12:08 p.m. UTC | #1
Pierrick Bouvier <pierrick.bouvier@linaro.org> writes:

> We first fix the issue reported in [1].
> We then add a test plugin making sure we don't regress in the future.
>
> [1] https://gitlab.com/qemu-project/qemu/-/issues/2901

Queued to plugins/next, thanks.

>
> Pierrick Bouvier (2):
>   plugins/loader: fix deadlock when resetting/uninstalling a plugin
>   tests/tcg/plugins: add plugin to test reset and uninstall
>
>  plugins/loader.c              |  2 +-
>  tests/tcg/plugins/reset.c     | 73 +++++++++++++++++++++++++++++++++++
>  tests/tcg/plugins/meson.build |  2 +-
>  3 files changed, 75 insertions(+), 2 deletions(-)
>  create mode 100644 tests/tcg/plugins/reset.c