[PULL 00/22] testing and plugin updates

Alex Bennée posted 22 patches 2 years, 7 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20210903090339.1074887-1-alex.bennee@linaro.org
There is a newer version of this series
docs/about/deprecated.rst                |  12 +++
docs/devel/ci-jobs.rst                   |  11 ++
docs/devel/tcg-plugins.rst               |  68 +++++++-----
configure                                |   5 +-
include/qemu/qemu-plugin.h               |  13 +++
contrib/plugins/cache.c                  | 176 +++++++++++++++++++++++--------
contrib/plugins/execlog.c                |   2 +-
contrib/plugins/hotblocks.c              |  14 ++-
contrib/plugins/hotpages.c               |  30 ++++--
contrib/plugins/howvec.c                 |  27 +++--
contrib/plugins/hwprofile.c              |  39 ++++---
contrib/plugins/lockstep.c               |  31 ++++--
linux-user/main.c                        |   2 +-
plugins/api.c                            |   5 +
plugins/loader.c                         |  24 ++++-
tests/plugin/bb.c                        |  15 ++-
tests/plugin/insn.c                      |  14 ++-
tests/plugin/mem.c                       |  47 +++++----
tests/plugin/syscall.c                   |  23 ++--
.gitlab-ci.d/buildtest.yml               |  99 +++--------------
.gitlab-ci.d/custom-runners.yml          |  12 +--
plugins/meson.build                      |  14 +--
plugins/qemu-plugins.symbols             |  49 ++++-----
qemu-options.hx                          |   9 +-
tests/tcg/i386/Makefile.softmmu-target   |   2 +-
tests/tcg/i386/Makefile.target           |   2 +-
tests/tcg/x86_64/Makefile.softmmu-target |   2 +-
27 files changed, 467 insertions(+), 280 deletions(-)
[PULL 00/22] testing and plugin updates
Posted by Alex Bennée 2 years, 7 months ago
The following changes since commit 079b1252e9de384385c9da910262312ec2e574c8:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20210901' into staging (2021-09-01 17:45:38 +0100)

are available in the Git repository at:

  https://github.com/stsquad/qemu.git tags/pull-for-6.2-020921-1

for you to fetch changes up to a35af836d103f781d2fea437129732c16ba64b25:

  docs/devel: be consistent about example plugin names (2021-09-02 11:29:34 +0100)

----------------------------------------------------------------
Testing and plugin updates:

  - fix typo in execlog plugin
  - clean-up and document gitlab FOO_RUNNER_AVAILABLE vars
  - fix plugin build issue on OSX and modules
  - add multi-core support to cache modelling plugin
  - clean-ups for plugin arg=FOO handling

----------------------------------------------------------------
Alex Bennée (1):
      plugins: sort exported symbol list

Mahmoud Mandour (17):
      plugins/execlog: removed unintended "s" at the end of log lines.
      plugins/cache: supported multicore cache modelling
      docs/devel/tcg-plugins: added cores arg to cache plugin
      plugins: allow plugin arguments to be passed directly
      plugins/api: added a boolean parsing plugin api
      plugins/hotpages: introduce sortby arg and parsed bool args correctly
      plugins/hotblocks: Added correct boolean argument parsing
      plugins/lockstep: make socket path not positional & parse bool arg
      plugins/hwprofile: adapt to the new plugin arguments scheme
      plugins/howvec: adapting to the new argument passing scheme
      docs/tcg-plugins: new passing parameters scheme for cache docs
      tests/plugins/bb: adapt to the new arg passing scheme
      tests/plugins/insn: made arg inline not positional and parse it as bool
      tests/plugins/mem: introduce "track" arg and make args not positional
      tests/plugins/syscalls: adhere to new arg-passing scheme
      docs/deprecated: deprecate passing plugin args through `arg=`
      docs/devel: be consistent about example plugin names

Paolo Bonzini (1):
      plugins: do not limit exported symbols if modules are active

Thomas Huth (3):
      gitlab-ci: Merge "build-disabled" with "build-without-default-features"
      gitlab-ci: Remove superfluous "dnf install" statement
      gitlab-ci: Fix ..._RUNNER_AVAILABLE variables and document them

 docs/about/deprecated.rst                |  12 +++
 docs/devel/ci-jobs.rst                   |  11 ++
 docs/devel/tcg-plugins.rst               |  68 +++++++-----
 configure                                |   5 +-
 include/qemu/qemu-plugin.h               |  13 +++
 contrib/plugins/cache.c                  | 176 +++++++++++++++++++++++--------
 contrib/plugins/execlog.c                |   2 +-
 contrib/plugins/hotblocks.c              |  14 ++-
 contrib/plugins/hotpages.c               |  30 ++++--
 contrib/plugins/howvec.c                 |  27 +++--
 contrib/plugins/hwprofile.c              |  39 ++++---
 contrib/plugins/lockstep.c               |  31 ++++--
 linux-user/main.c                        |   2 +-
 plugins/api.c                            |   5 +
 plugins/loader.c                         |  24 ++++-
 tests/plugin/bb.c                        |  15 ++-
 tests/plugin/insn.c                      |  14 ++-
 tests/plugin/mem.c                       |  47 +++++----
 tests/plugin/syscall.c                   |  23 ++--
 .gitlab-ci.d/buildtest.yml               |  99 +++--------------
 .gitlab-ci.d/custom-runners.yml          |  12 +--
 plugins/meson.build                      |  14 +--
 plugins/qemu-plugins.symbols             |  49 ++++-----
 qemu-options.hx                          |   9 +-
 tests/tcg/i386/Makefile.softmmu-target   |   2 +-
 tests/tcg/i386/Makefile.target           |   2 +-
 tests/tcg/x86_64/Makefile.softmmu-target |   2 +-
 27 files changed, 467 insertions(+), 280 deletions(-)

-- 
2.30.2


Re: [PULL 00/22] testing and plugin updates
Posted by Peter Maydell 2 years, 7 months ago
On Fri, 3 Sept 2021 at 10:03, Alex Bennée <alex.bennee@linaro.org> wrote:
>
> The following changes since commit 079b1252e9de384385c9da910262312ec2e574c8:
>
>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20210901' into staging (2021-09-01 17:45:38 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/stsquad/qemu.git tags/pull-for-6.2-020921-1
>
> for you to fetch changes up to a35af836d103f781d2fea437129732c16ba64b25:
>
>   docs/devel: be consistent about example plugin names (2021-09-02 11:29:34 +0100)
>
> ----------------------------------------------------------------
> Testing and plugin updates:
>
>   - fix typo in execlog plugin
>   - clean-up and document gitlab FOO_RUNNER_AVAILABLE vars
>   - fix plugin build issue on OSX and modules
>   - add multi-core support to cache modelling plugin
>   - clean-ups for plugin arg=FOO handling


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/6.2
for any user-visible changes.

-- PMM