qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [qemu/qemu] 0c3dd5: configure: fix performance regression


From: Peter Maydell
Subject: [Qemu-commits] [qemu/qemu] 0c3dd5: configure: fix performance regression due to PIC o...
Date: Sun, 11 Oct 2020 09:30:27 -0700

  Branch: refs/heads/master
  Home:   https://github.com/qemu/qemu
  Commit: 0c3dd50eaecbfe267db1e90c2ade165da331e143
      
https://github.com/qemu/qemu/commit/0c3dd50eaecbfe267db1e90c2ade165da331e143
  Author: Paolo Bonzini <pbonzini@redhat.com>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M configure

  Log Message:
  -----------
  configure: fix performance regression due to PIC objects

Because most files in QEMU are grouped into static libraries, Meson 
conservatively
compiles them with -fPIC.  This is overkill and produces slowdowns up to 20% on
some TCG tests.

As a stopgap measure, use the b_staticpic option to limit the slowdown to
--enable-pie.  https://github.com/mesonbuild/meson/pull/7760 will allow
us to use b_staticpic=false and let Meson do the right thing.

Reported-by: Ahmed Karaman <ahmedkrmn@outlook.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20200924092314.1722645-57-pbonzini@redhat.com>
Message-Id: <20201007160038.26953-2-alex.bennee@linaro.org>


  Commit: 42a052333a6d31fa74b3f8c152bc433d869e09c4
      
https://github.com/qemu/qemu/commit/42a052333a6d31fa74b3f8c152bc433d869e09c4
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M hw/misc/mips_cpc.c

  Log Message:
  -----------
  hw/misc/mips_cpc: Start vCPU when powered on

In commit 102ca9667d we set "start-powered-off" on all vCPUs
included in the CPS (Coherent Processing System) but forgot to
start the vCPUS on when they are powered on in the CPC (Cluster
Power Controller).

This fixes the following tests:

  $ avocado run tests/acceptance/machine_mips_malta.py
   (1/3) test_mips_malta_i6400_framebuffer_logo_1core: PASS (3.67 s)
   (2/3) test_mips_malta_i6400_framebuffer_logo_7cores: INTERRUPTED: Test 
interrupted by SIGTERM (30.22 s)
   (3/3) test_mips_malta_i6400_framebuffer_logo_8cores: INTERRUPTED: Test 
interrupted by SIGTERM (30.25 s)
  RESULTS    : PASS 1 | ERROR 0 | FAIL 0 | SKIP 0 | WARN 0 | INTERRUPT 2 | 
CANCEL 0

Fixes: 102ca9667d ("mips/cps: Use start-powered-off CPUState property")
Reported-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Tested-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20201007113942.2523866-1-f4bug@amsat.org>
Message-Id: <20201007160038.26953-3-alex.bennee@linaro.org>


  Commit: de00b8b3768c2f854065ab1269bd6d68af3d2263
      
https://github.com/qemu/qemu/commit/de00b8b3768c2f854065ab1269bd6d68af3d2263
  Author: Alex Bennée <alex.bennee@linaro.org>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M hw/ide/core.c

  Log Message:
  -----------
  hw/ide: restore replay support of IDE

A recent change to weak reset handling broke replay due to the use of
aio_bh_schedule_oneshot instead of the replay aware
replay_bh_schedule_oneshot_event.

Fixes: 55adb3c456 ("ide: cancel pending callbacks on SRST")
Suggested-by: Pavel Dovgalyuk <pavel.dovgalyuk@ispras.ru>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: John Snow <jsnow@redhat.com>
Acked-by: John Snow <jsnow@redhat.com>
Message-Id: <20201007160038.26953-4-alex.bennee@linaro.org>


  Commit: 0026b33992c677f631b766b9266a501bc511f8f5
      
https://github.com/qemu/qemu/commit/0026b33992c677f631b766b9266a501bc511f8f5
  Author: Yonggang Luo <luoyonggang@gmail.com>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M .cirrus.yml

  Log Message:
  -----------
  cirrus: Fixing and speedup the msys2/mingw CI

Use cache of cirrus caching msys2
The install of msys2 are refer to https://github.com/msys2/setup-msys2
The first time install msys2 would be time consuming, so increase timeout_in to 
90m
according to https://cirrus-ci.org/faq/#instance-timed-out

Apply patch of 
https://lists.gnu.org/archive/html/qemu-devel/2020-10/msg00072.html

[AJB: renamed printenv_script to setup_script]

Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20201007145300.1197-2-luoyonggang@gmail.com>
Message-Id: <20201007160038.26953-5-alex.bennee@linaro.org>


  Commit: 5eb691df5a40b435ae8292b3822bcf961de1e1ff
      
https://github.com/qemu/qemu/commit/5eb691df5a40b435ae8292b3822bcf961de1e1ff
  Author: Yonggang Luo <luoyonggang@gmail.com>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M .cirrus.yml

  Log Message:
  -----------
  cirrus: msys2/mingw speed is up, add excluded target back

The following target are add back:
i386-softmmu,arm-softmmu,ppc-softmmu,mips-softmmu

Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20201007145300.1197-3-luoyonggang@gmail.com>
Message-Id: <20201007160038.26953-6-alex.bennee@linaro.org>


  Commit: 7e86e5d5ccc9e6de04995968b71e5c386d432dec
      
https://github.com/qemu/qemu/commit/7e86e5d5ccc9e6de04995968b71e5c386d432dec
  Author: Thomas Huth <thuth@redhat.com>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M tests/docker/dockerfiles/centos8.docker
    M tests/docker/dockerfiles/debian-amd64.docker
    M tests/docker/dockerfiles/fedora.docker
    M tests/docker/dockerfiles/ubuntu2004.docker

  Log Message:
  -----------
  tests/docker: Add genisoimage to the docker file

genisoimage is needed for running the tests/qtest/cdrom-test qtest.

Signed-off-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20201006174347.152040-1-thuth@redhat.com>
Message-Id: <20201007160038.26953-7-alex.bennee@linaro.org>


  Commit: 33955b5672590d62a253e7c68a0ccd97e435b8d1
      
https://github.com/qemu/qemu/commit/33955b5672590d62a253e7c68a0ccd97e435b8d1
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M contrib/gitdm/group-map-academics

  Log Message:
  -----------
  contrib/gitdm: Add more academic domains

There is a number of contributions from these academic domains.
Add the entries to the gitdm 'academic' domain map.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Alexander Bulekov <alxndr@bu.edu>
Reviewed-by: Dayeol Lee <dayeol@berkeley.edu>
Acked-by: Fan Yang <Fan_Yang@sjtu.edu.cn>
Acked-by: Xinyu Li <precinct@mail.ustc.edu.cn>
Acked-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
Message-Id: <20201006160653.2391972-2-f4bug@amsat.org>
Message-Id: <20201007160038.26953-8-alex.bennee@linaro.org>


  Commit: da568cc906a8fc5ec52da8f0dc03d56836d08030
      
https://github.com/qemu/qemu/commit/da568cc906a8fc5ec52da8f0dc03d56836d08030
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M contrib/gitdm/group-map-individuals

  Log Message:
  -----------
  contrib/gitdm: Add more individual contributors

These individual contributors have a number of contributions,
add them to the 'individual' group map.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Acked-by: Helge Deller <deller@gmx.de>
Acked-by: Stefan Weil <sw@weilnetz.de>
Acked-by: Niek Linnenbank <nieklinnenbank@gmail.com>
Acked-by: David Carlier <devnexen@gmail.com>
Acked-by: Paul Zimmerman <pauldzim@gmail.com>
Acked-by: Volker Rümelin <vr_qemu@t-online.de>
Acked-by: Finn Thain <fthain@telegraphics.com.au>
Message-Id: <20201006160653.2391972-3-f4bug@amsat.org>
Message-Id: <20201007160038.26953-9-alex.bennee@linaro.org>


  Commit: 2ba17f9760ff1716f1bc0ac7e70bee39ab44c161
      
https://github.com/qemu/qemu/commit/2ba17f9760ff1716f1bc0ac7e70bee39ab44c161
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M contrib/gitdm/domain-map

  Log Message:
  -----------
  contrib/gitdm: Add Baidu to the domain map

There is a number of contributors from this domain,
add its own entry to the gitdm domain map.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Chai Wen <chaiwen@baidu.com>
Message-Id: <20201006160653.2391972-4-f4bug@amsat.org>
Message-Id: <20201007160038.26953-10-alex.bennee@linaro.org>


  Commit: 2f8cdb76720c9e71871a6cff0cfb529138fe487d
      
https://github.com/qemu/qemu/commit/2f8cdb76720c9e71871a6cff0cfb529138fe487d
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M contrib/gitdm/domain-map

  Log Message:
  -----------
  contrib/gitdm: Add ByteDance to the domain map

There is a number of contributors from this domain,
add its own entry to the gitdm domain map.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Acked-by: Jiachen Zhang <zhangjiachen.jaycee@bytedance.com>
Message-Id: <20201006160653.2391972-5-f4bug@amsat.org>
Message-Id: <20201007160038.26953-11-alex.bennee@linaro.org>


  Commit: 4766a2b227a645778aaebe0f9c688bb52e8955a4
      
https://github.com/qemu/qemu/commit/4766a2b227a645778aaebe0f9c688bb52e8955a4
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M contrib/gitdm/domain-map

  Log Message:
  -----------
  contrib/gitdm: Add Google to the domain map

There is a number of contributors from this domain,
add its own entry to the gitdm domain map.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Acked-by: Erik Kline <ek@google.com>
Message-Id: <20201006160653.2391972-6-f4bug@amsat.org>
Message-Id: <20201007160038.26953-12-alex.bennee@linaro.org>


  Commit: 0705260b55bdaa1e83980bac4531a80ae234568d
      
https://github.com/qemu/qemu/commit/0705260b55bdaa1e83980bac4531a80ae234568d
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M contrib/gitdm/domain-map

  Log Message:
  -----------
  contrib/gitdm: Add Nuvia to the domain map

There is a number of contributions from this domain,
add its own entry to the gitdm domain map.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Graeme Gregory <graeme@nuviainc.com>
Message-Id: <20201006160653.2391972-7-f4bug@amsat.org>
Message-Id: <20201007160038.26953-13-alex.bennee@linaro.org>


  Commit: 3b3453f2dc262183afb622a17d926a6a25eb6bab
      
https://github.com/qemu/qemu/commit/3b3453f2dc262183afb622a17d926a6a25eb6bab
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M contrib/gitdm/domain-map

  Log Message:
  -----------
  contrib/gitdm: Add Qualcomm to the domain map

There is a number of contributions from this domain,
add its own entry to the gitdm domain map.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Taylor Simpson <tsimpson@quicinc.com>
Message-Id: <20201006160653.2391972-8-f4bug@amsat.org>
Message-Id: <20201007160038.26953-14-alex.bennee@linaro.org>


  Commit: 0d056af5143acee12ac2babf85364785848d7a3c
      
https://github.com/qemu/qemu/commit/0d056af5143acee12ac2babf85364785848d7a3c
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M contrib/gitdm/group-map-redhat

  Log Message:
  -----------
  contrib/gitdm: Add Nir Soffer to Red Hat domain

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Acked-by: Nir Soffer <nirsof@gmail.com>
Message-Id: <20201006160653.2391972-9-f4bug@amsat.org>
Message-Id: <20201007160038.26953-15-alex.bennee@linaro.org>


  Commit: 99b19335f4c5a55085b027162624f34aee1ccd44
      
https://github.com/qemu/qemu/commit/99b19335f4c5a55085b027162624f34aee1ccd44
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M contrib/gitdm/domain-map

  Log Message:
  -----------
  contrib/gitdm: Add SUSE to the domain map

There is a number of contributors from this domain,
add its own entry to the gitdm domain map.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Acked-by: Bruce Rogers <brogers@suse.com>
Message-Id: <20201006160653.2391972-10-f4bug@amsat.org>
Message-Id: <20201007160038.26953-16-alex.bennee@linaro.org>


  Commit: 0f53854572a0d4f733ca9de199a7fe31c2e1cfe3
      
https://github.com/qemu/qemu/commit/0f53854572a0d4f733ca9de199a7fe31c2e1cfe3
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M contrib/gitdm/domain-map

  Log Message:
  -----------
  contrib/gitdm: Add Yadro to the domain map

There is a number of contributions from this domain,
add its own entry to the gitdm domain map.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Roman Bolshakov <r.bolshakov@yadro.com>
Message-Id: <20201006160653.2391972-11-f4bug@amsat.org>
Message-Id: <20201007160038.26953-17-alex.bennee@linaro.org>


  Commit: 311a73a9646fbf9be2d055209875f48191ea7b6e
      
https://github.com/qemu/qemu/commit/311a73a9646fbf9be2d055209875f48191ea7b6e
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M contrib/gitdm/domain-map

  Log Message:
  -----------
  contrib/gitdm: Add Yandex to the domain map

There is a number of contributors from this domain,
add its own entry to the gitdm domain map.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Roman Kagan <rvkagan@yandex-team.ru>
Message-Id: <20201006160653.2391972-12-f4bug@amsat.org>
Message-Id: <20201007160038.26953-18-alex.bennee@linaro.org>


  Commit: 98d3a724694e29787d391a7215327c96788f9939
      
https://github.com/qemu/qemu/commit/98d3a724694e29787d391a7215327c96788f9939
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M .mailmap

  Log Message:
  -----------
  .mailmap: Fix more contributor entries

These authors have some incorrect author email field.
For each of them, there is one commit with the replaced
entry.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Acked-by: Stefan Berger <stefanb@linux.ibm.com>
Acked-by: Erik Smit <erik.lucas.smit@gmail.com>
Message-Id: <20201006160653.2391972-13-f4bug@amsat.org>
Message-Id: <20201007160038.26953-19-alex.bennee@linaro.org>


  Commit: b31371004f46e46235dff1f4f854bbd5ba774879
      
https://github.com/qemu/qemu/commit/b31371004f46e46235dff1f4f854bbd5ba774879
  Author: Yonggang Luo <luoyonggang@gmail.com>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M plugins/loader.c

  Log Message:
  -----------
  plugins: Fixes a issue when dlsym failed, the handle not closed

Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20201001163429.1348-2-luoyonggang@gmail.com>
Message-Id: <20201007160038.26953-20-alex.bennee@linaro.org>


  Commit: 27d891bca9267e18e09540ae62d2096821b103c1
      
https://github.com/qemu/qemu/commit/27d891bca9267e18e09540ae62d2096821b103c1
  Author: Yonggang Luo <luoyonggang@gmail.com>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M contrib/plugins/hotblocks.c
    M tests/plugin/bb.c

  Log Message:
  -----------
  plugin: Fixes compiling errors on msys2/mingw

Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20201001163429.1348-3-luoyonggang@gmail.com>
Message-Id: <20201007160038.26953-21-alex.bennee@linaro.org>


  Commit: 2a5a79d1b57280edd72193f6031de3feb682154e
      
https://github.com/qemu/qemu/commit/2a5a79d1b57280edd72193f6031de3feb682154e
  Author: Paolo Bonzini <pbonzini@redhat.com>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M .cirrus.yml

  Log Message:
  -----------
  cirrus: use V=1 when running tests on FreeBSD and macOS

Using "V=1" makes it easier to identify hanging tests, especially
since they are run with -j1.  It is already used on Windows builds,
do the same for FreeBSD and macOS.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Ed Maste <emaste@FreeBSD.org>
Message-Id: <20201007140103.711142-1-pbonzini@redhat.com>
Message-Id: <20201007160038.26953-22-alex.bennee@linaro.org>


  Commit: e5d402b28f1a325d46b7b0f08d04257f618e6d03
      
https://github.com/qemu/qemu/commit/e5d402b28f1a325d46b7b0f08d04257f618e6d03
  Author: Alex Bennée <alex.bennee@linaro.org>
  Date:   2020-10-09 (Fri, 09 Oct 2020)

  Changed paths:
    M tests/acceptance/machine_rx_gdbsim.py

  Log Message:
  -----------
  tests/acceptance: disable machine_rx_gdbsim on GitLab

While I can get the ssh test to fail on my test setup this seems a lot
more stable except when on GitLab. Hopefully we can re-enable both
once the serial timing patches have been added.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Willian Rampazzo <willianr@redhat.com>
Reviewed-by: Cleber Rosa <crosa@redhat.com>
Message-Id: <20201007160038.26953-23-alex.bennee@linaro.org>


  Commit: 48a340d9b23ffcf7704f2de14d1e505481a84a1c
      
https://github.com/qemu/qemu/commit/48a340d9b23ffcf7704f2de14d1e505481a84a1c
  Author: Peter Maydell <peter.maydell@linaro.org>
  Date:   2020-10-11 (Sun, 11 Oct 2020)

  Changed paths:
    M .cirrus.yml
    M .mailmap
    M configure
    M contrib/gitdm/domain-map
    M contrib/gitdm/group-map-academics
    M contrib/gitdm/group-map-individuals
    M contrib/gitdm/group-map-redhat
    M contrib/plugins/hotblocks.c
    M hw/ide/core.c
    M hw/misc/mips_cpc.c
    M plugins/loader.c
    M tests/acceptance/machine_rx_gdbsim.py
    M tests/docker/dockerfiles/centos8.docker
    M tests/docker/dockerfiles/debian-amd64.docker
    M tests/docker/dockerfiles/fedora.docker
    M tests/docker/dockerfiles/ubuntu2004.docker
    M tests/plugin/bb.c

  Log Message:
  -----------
  Merge remote-tracking branch 'remotes/stsquad/tags/pull-various-091020-1' 
into staging

Testing, gitdm and plugin fixes:

  - fix acceptance regressions in MIPS and IDE
  - speed up cirrus msys2/mingw builds
  - add genisoimage to more docker images
  - slew of gitdb updates
  - fix some windows compile issues for plugins
  - add V=1 to cirrus output
  - disable rxsim in gitlab CI

# gpg: Signature made Fri 09 Oct 2020 17:30:29 BST
# gpg:                using RSA key 6685AE99E75167BCAFC8DF35FBD0DB095A9E2A44
# gpg: Good signature from "Alex Bennée (Master Work Key) 
<alex.bennee@linaro.org>" [full]
# Primary key fingerprint: 6685 AE99 E751 67BC AFC8  DF35 FBD0 DB09 5A9E 2A44

* remotes/stsquad/tags/pull-various-091020-1: (22 commits)
  tests/acceptance: disable machine_rx_gdbsim on GitLab
  cirrus: use V=1 when running tests on FreeBSD and macOS
  plugin: Fixes compiling errors on msys2/mingw
  plugins: Fixes a issue when dlsym failed, the handle not closed
  .mailmap: Fix more contributor entries
  contrib/gitdm: Add Yandex to the domain map
  contrib/gitdm: Add Yadro to the domain map
  contrib/gitdm: Add SUSE to the domain map
  contrib/gitdm: Add Nir Soffer to Red Hat domain
  contrib/gitdm: Add Qualcomm to the domain map
  contrib/gitdm: Add Nuvia to the domain map
  contrib/gitdm: Add Google to the domain map
  contrib/gitdm: Add ByteDance to the domain map
  contrib/gitdm: Add Baidu to the domain map
  contrib/gitdm: Add more individual contributors
  contrib/gitdm: Add more academic domains
  tests/docker: Add genisoimage to the docker file
  cirrus: msys2/mingw speed is up, add excluded target back
  cirrus: Fixing and speedup the msys2/mingw CI
  hw/ide: restore replay support of IDE
  ...

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>


Compare: https://github.com/qemu/qemu/compare/b433f2cb0115...48a340d9b23f



reply via email to

[Prev in Thread] Current Thread [Next in Thread]