From: "Alex Bennée" <alex.bennee@linaro.org>
To: qemu-devel@nongnu.org
Cc: fam@euphon.net, berrange@redhat.com, f4bug@amsat.org,
stefanha@redhat.com, crosa@redhat.com, pbonzini@redhat.com,
"Alex Bennée" <alex.bennee@linaro.org>,
aurelien@aurel32.net
Subject: [PATCH for 6.1-rc1 v1 00/29] various fixes pre-PR (metadata, docs, plugins, testing)
Date: Wed, 21 Jul 2021 00:26:34 +0100 [thread overview]
Message-ID: <20210720232703.10650-1-alex.bennee@linaro.org> (raw)
Hi,
This is a roll-up of all the various patches I've been posting
targeting the 6.1 bug fixes. So far they include:
- gitdm metadata updates (dropped un-acked mappings)
- documentation on driver/device configuration
- some miscellaneous plugin bug fixes
- fix and CI test for Tricore (posted earlier today)
- gitlab tweaks for MacOSX and OpenBSI
Phillipe may have merged his PR with some of the tricore patches by
the time this gets in.
The following are still need review:
- gitlab: enable a very minimal build with the tricore container
- tests/tcg/configure.sh: add handling for assembler only builds
- contrib/gitdm: add more individual contributor entries. (3 acks, 1 sobs)
- contrib/gitdm: un-ironically add a mapping for LWN
- contrib/gitdm: add domain-map/group-map for Wind River
- contrib/gitdm: add domain-map for Eldorado
- contrib/gitdm: add domain-map/group-map mappings for Samsung
- gitdm.config: sort the corporate GroupMap entries
- contrib/gitdm: add a group mapping for robot scanners
- contrib/gitdm: add domain-map for MontaVista
- .mailmap: fix up some broken commit authors
- docs: collect the disparate device emulation docs into one section
Aaron Lindsay (1):
plugins: Fix physical address calculation for IO regions
Alex Bennée (22):
docs: collect the disparate device emulation docs into one section
docs: add a section on the generalities of vhost-user
configure: remove needless if leg
contrib/gitdm: add some new aliases to fix up commits
.mailmap: fix up some broken commit authors
contrib/gitdm: add domain-map for MontaVista
contrib/gitdm: add a group mapping for robot scanners
gitdm.config: sort the corporate GroupMap entries
contrib/gitdm: add domain-map/group-map mappings for Samsung
contrib/gitdm: add domain-map for Eldorado
contrib/gitdm: add domain-map/group-map for Wind River
contrib/gitdm: un-ironically add a mapping for LWN
contrib/gitdm: add domain-map for Crudebyte
contrib/gitdm: add domain-map for NVIDIA
contrib/gitdm: add group-map for Netflix
contrib/gitdm: add an explicit academic entry for BU
contrib/gitdm: add a new interns group-map for GSoC/Outreachy work
contrib/gitdm: add more individual contributor entries.
tcg/plugins: implement a qemu_plugin_user_exit helper
hw/tricore: fix inclusion of tricore_testboard
tests/tcg/configure.sh: add handling for assembler only builds
gitlab: enable a very minimal build with the tricore container
Mahmoud Mandour (3):
plugins/cache: Fixed a bug with destroying FIFO metadata
plugins/cache: limited the scope of a mutex lock
plugins/cache: Fixed "function decl. is not a prototype" warnings
Philippe Mathieu-Daudé (1):
gitlab-ci: Extract OpenSBI job rules to reusable section
Thomas Huth (1):
gitlab-ci: Remove the second superfluous macos task
Viresh Kumar (1):
gitignore: Update with some filetypes
docs/interop/vhost-user.rst | 2 +
docs/system/device-emulation.rst | 90 +++++++++++++++++++
docs/system/{ => devices}/ivshmem.rst | 0
docs/system/{ => devices}/net.rst | 0
docs/system/{ => devices}/nvme.rst | 0
docs/system/{ => devices}/usb.rst | 0
docs/system/devices/vhost-user.rst | 59 ++++++++++++
docs/system/{ => devices}/virtio-pmem.rst | 0
docs/system/index.rst | 6 +-
configure | 10 +--
configs/devices/tricore-softmmu/default.mak | 1 +
include/qemu/plugin.h | 12 +++
include/qemu/qemu-plugin.h | 13 +++
bsd-user/syscall.c | 6 +-
contrib/plugins/cache.c | 11 ++-
linux-user/exit.c | 2 +-
plugins/api.c | 2 +-
plugins/core.c | 39 ++++++++
.gitignore | 2 +
.gitlab-ci.d/buildtest.yml | 11 +++
.gitlab-ci.d/cirrus.yml | 15 ----
.gitlab-ci.d/opensbi.yml | 28 +++---
.mailmap | 4 +
contrib/gitdm/aliases | 6 ++
contrib/gitdm/domain-map | 7 ++
contrib/gitdm/group-map-academics | 3 +
contrib/gitdm/group-map-individuals | 5 ++
contrib/gitdm/group-map-interns | 13 +++
contrib/gitdm/group-map-netflix | 5 ++
contrib/gitdm/group-map-robots | 7 ++
gitdm.config | 13 ++-
hw/tricore/Kconfig | 3 +-
hw/tricore/meson.build | 4 +-
.../dockerfiles/debian-tricore-cross.docker | 34 +++++--
tests/tcg/configure.sh | 18 ++++
35 files changed, 370 insertions(+), 61 deletions(-)
create mode 100644 docs/system/device-emulation.rst
rename docs/system/{ => devices}/ivshmem.rst (100%)
rename docs/system/{ => devices}/net.rst (100%)
rename docs/system/{ => devices}/nvme.rst (100%)
rename docs/system/{ => devices}/usb.rst (100%)
create mode 100644 docs/system/devices/vhost-user.rst
rename docs/system/{ => devices}/virtio-pmem.rst (100%)
create mode 100644 contrib/gitdm/group-map-interns
create mode 100644 contrib/gitdm/group-map-netflix
create mode 100644 contrib/gitdm/group-map-robots
--
2.32.0.264.g75ae10bc75
next reply other threads:[~2021-07-20 23:28 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-20 23:26 Alex Bennée [this message]
2021-07-20 23:26 ` [PATCH v1 01/29] gitignore: Update with some filetypes Alex Bennée
2021-07-20 23:26 ` [PATCH v1 02/29] docs: collect the disparate device emulation docs into one section Alex Bennée
2021-07-21 13:25 ` Markus Armbruster
2021-07-20 23:26 ` [PATCH v1 03/29] docs: add a section on the generalities of vhost-user Alex Bennée
2021-07-20 23:26 ` [PATCH v1 04/29] configure: remove needless if leg Alex Bennée
2021-07-20 23:26 ` [PATCH v1 05/29] contrib/gitdm: add some new aliases to fix up commits Alex Bennée
2021-07-20 23:26 ` [PATCH v1 06/29] .mailmap: fix up some broken commit authors Alex Bennée
2021-07-20 23:26 ` [PATCH v1 07/29] contrib/gitdm: add domain-map for MontaVista Alex Bennée
2021-07-20 23:26 ` [PATCH v1 08/29] contrib/gitdm: add a group mapping for robot scanners Alex Bennée
2021-07-20 23:26 ` [PATCH v1 09/29] gitdm.config: sort the corporate GroupMap entries Alex Bennée
2021-07-21 8:06 ` Philippe Mathieu-Daudé
2021-07-20 23:26 ` [PATCH v1 10/29] contrib/gitdm: add domain-map/group-map mappings for Samsung Alex Bennée
2021-07-20 23:26 ` [PATCH v1 11/29] contrib/gitdm: add domain-map for Eldorado Alex Bennée
2021-07-20 23:26 ` [PATCH v1 12/29] contrib/gitdm: add domain-map/group-map for Wind River Alex Bennée
2021-07-20 23:26 ` [PATCH v1 13/29] contrib/gitdm: un-ironically add a mapping for LWN Alex Bennée
2021-07-20 23:26 ` [PATCH v1 14/29] contrib/gitdm: add domain-map for Crudebyte Alex Bennée
2021-07-20 23:26 ` [PATCH v1 15/29] contrib/gitdm: add domain-map for NVIDIA Alex Bennée
2021-07-20 23:26 ` [PATCH v1 16/29] contrib/gitdm: add group-map for Netflix Alex Bennée
2021-07-20 23:26 ` [PATCH v1 17/29] contrib/gitdm: add an explicit academic entry for BU Alex Bennée
2021-07-20 23:26 ` [PATCH v1 18/29] contrib/gitdm: add a new interns group-map for GSoC/Outreachy work Alex Bennée
2021-07-20 23:26 ` [PATCH v1 19/29] contrib/gitdm: add more individual contributor entries Alex Bennée
2021-07-20 23:26 ` [PATCH v1 20/29] tcg/plugins: implement a qemu_plugin_user_exit helper Alex Bennée
2021-07-20 23:26 ` [PATCH v1 21/29] plugins/cache: Fixed a bug with destroying FIFO metadata Alex Bennée
2021-07-20 23:26 ` [PATCH v1 22/29] plugins/cache: limited the scope of a mutex lock Alex Bennée
2021-07-20 23:26 ` [PATCH v1 23/29] plugins/cache: Fixed "function decl. is not a prototype" warnings Alex Bennée
2021-07-21 8:09 ` Philippe Mathieu-Daudé
2021-07-20 23:26 ` [PATCH v1 24/29] plugins: Fix physical address calculation for IO regions Alex Bennée
2021-07-20 23:26 ` [PATCH v1 25/29] hw/tricore: fix inclusion of tricore_testboard Alex Bennée
2021-08-02 16:07 ` Bastian Koppelmann
2021-07-20 23:27 ` [PATCH v1 26/29] tests/tcg/configure.sh: add handling for assembler only builds Alex Bennée
2021-07-20 23:27 ` [PATCH v1 27/29] gitlab: enable a very minimal build with the tricore container Alex Bennée
2021-07-21 7:05 ` Thomas Huth
2021-07-21 15:00 ` Willian Rampazzo
2021-07-20 23:27 ` [PATCH v1 28/29] gitlab-ci: Remove the second superfluous macos task Alex Bennée
2021-07-20 23:27 ` [PATCH v1 29/29] gitlab-ci: Extract OpenSBI job rules to reusable section Alex Bennée
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210720232703.10650-1-alex.bennee@linaro.org \
--to=alex.bennee@linaro.org \
--cc=aurelien@aurel32.net \
--cc=berrange@redhat.com \
--cc=crosa@redhat.com \
--cc=f4bug@amsat.org \
--cc=fam@euphon.net \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).