[PULL for 9.0 0/8] final maintainer updates (testing, gdbstub)

Alex Bennée posted 8 patches 1 month, 2 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20240312112532.1558319-1-alex.bennee@linaro.org
Maintainers: "Alex Bennée" <alex.bennee@linaro.org>, "Philippe Mathieu-Daudé" <philmd@linaro.org>, Thomas Huth <thuth@redhat.com>, Wainer dos Santos Moschetta <wainersm@redhat.com>, Beraldo Leal <bleal@redhat.com>, Yonggang Luo <luoyonggang@gmail.com>, Warner Losh <imp@bsdimp.com>, Kyle Evans <kevans@freebsd.org>, Laurent Vivier <laurent@vivier.eu>, Brian Cain <bcain@quicinc.com>
There is a newer version of this series
gdbstub/internals.h                                |  1 +
include/gdbstub/user.h                             | 19 +++------
linux-user/signal-common.h                         |  2 -
bsd-user/main.c                                    |  2 +-
bsd-user/signal.c                                  |  5 ++-
gdbstub/gdbstub.c                                  |  8 ++++
gdbstub/user.c                                     | 49 +++++++++++++++++++---
linux-user/aarch64/signal.c                        |  2 +-
linux-user/alpha/signal.c                          |  2 +-
linux-user/arm/signal.c                            |  2 +-
linux-user/hexagon/signal.c                        |  2 +-
linux-user/hppa/signal.c                           |  2 +-
linux-user/i386/signal.c                           |  6 +--
linux-user/loongarch64/signal.c                    |  2 +-
linux-user/m68k/signal.c                           |  4 +-
linux-user/main.c                                  |  2 +-
linux-user/microblaze/signal.c                     |  2 +-
linux-user/mips/signal.c                           |  4 +-
linux-user/nios2/signal.c                          |  2 +-
linux-user/openrisc/signal.c                       |  2 +-
linux-user/ppc/signal.c                            |  4 +-
linux-user/riscv/signal.c                          |  2 +-
linux-user/s390x/signal.c                          |  2 +-
linux-user/sh4/signal.c                            |  2 +-
linux-user/signal.c                                | 15 +++++--
linux-user/sparc/signal.c                          |  2 +-
linux-user/xtensa/signal.c                         |  2 +-
tests/tcg/multiarch/segfault.c                     | 14 +++++++
.gitlab-ci.d/base.yml                              |  4 ++
.gitlab-ci.d/buildtest-template.yml                |  1 +
.gitlab-ci.d/buildtest.yml                         |  2 +
.gitlab-ci.d/windows.yml                           |  2 +
tests/tcg/multiarch/Makefile.target                | 10 ++++-
.../multiarch/gdbstub/test-qxfer-siginfo-read.py   | 26 ++++++++++++
tests/vm/basevm.py                                 |  2 +-
35 files changed, 158 insertions(+), 52 deletions(-)
create mode 100644 tests/tcg/multiarch/segfault.c
create mode 100644 tests/tcg/multiarch/gdbstub/test-qxfer-siginfo-read.py
[PULL for 9.0 0/8] final maintainer updates (testing, gdbstub)
Posted by Alex Bennée 1 month, 2 weeks ago
The following changes since commit 7489f7f3f81dcb776df8c1b9a9db281fc21bf05f:

  Merge tag 'hw-misc-20240309' of https://github.com/philmd/qemu into staging (2024-03-09 20:12:21 +0000)

are available in the Git repository at:

  https://gitlab.com/stsquad/qemu.git tags/pull-maintainer-final-120324-1

for you to fetch changes up to 0532045e8112c13a8a949e696576672e64c6fa14:

  gdbstub: Fix double close() of the follow-fork-mode socket (2024-03-12 10:48:35 +0000)

----------------------------------------------------------------
final updates for 9.0 (testing, gdbstub):

  - avoid transferring pointless git data
  - fix the over rebuilding of test VMs
  - support Xfer:siginfo:read in gdbstub
  - fix double close() in gdbstub

----------------------------------------------------------------
Alex Bennée (2):
      gitlab: aggressively avoid extra GIT data
      tests/vm: ensure we build everything by default

Gustavo Romero (5):
      gdbstub: Rename back gdb_handlesig
      linux-user: Move tswap_siginfo out of target code
      gdbstub: Save target's siginfo
      gdbstub: Add Xfer:siginfo:read stub
      tests/tcg: Add multiarch test for Xfer:siginfo:read stub

Ilya Leoshkevich (1):
      gdbstub: Fix double close() of the follow-fork-mode socket

 gdbstub/internals.h                                |  1 +
 include/gdbstub/user.h                             | 19 +++------
 linux-user/signal-common.h                         |  2 -
 bsd-user/main.c                                    |  2 +-
 bsd-user/signal.c                                  |  5 ++-
 gdbstub/gdbstub.c                                  |  8 ++++
 gdbstub/user.c                                     | 49 +++++++++++++++++++---
 linux-user/aarch64/signal.c                        |  2 +-
 linux-user/alpha/signal.c                          |  2 +-
 linux-user/arm/signal.c                            |  2 +-
 linux-user/hexagon/signal.c                        |  2 +-
 linux-user/hppa/signal.c                           |  2 +-
 linux-user/i386/signal.c                           |  6 +--
 linux-user/loongarch64/signal.c                    |  2 +-
 linux-user/m68k/signal.c                           |  4 +-
 linux-user/main.c                                  |  2 +-
 linux-user/microblaze/signal.c                     |  2 +-
 linux-user/mips/signal.c                           |  4 +-
 linux-user/nios2/signal.c                          |  2 +-
 linux-user/openrisc/signal.c                       |  2 +-
 linux-user/ppc/signal.c                            |  4 +-
 linux-user/riscv/signal.c                          |  2 +-
 linux-user/s390x/signal.c                          |  2 +-
 linux-user/sh4/signal.c                            |  2 +-
 linux-user/signal.c                                | 15 +++++--
 linux-user/sparc/signal.c                          |  2 +-
 linux-user/xtensa/signal.c                         |  2 +-
 tests/tcg/multiarch/segfault.c                     | 14 +++++++
 .gitlab-ci.d/base.yml                              |  4 ++
 .gitlab-ci.d/buildtest-template.yml                |  1 +
 .gitlab-ci.d/buildtest.yml                         |  2 +
 .gitlab-ci.d/windows.yml                           |  2 +
 tests/tcg/multiarch/Makefile.target                | 10 ++++-
 .../multiarch/gdbstub/test-qxfer-siginfo-read.py   | 26 ++++++++++++
 tests/vm/basevm.py                                 |  2 +-
 35 files changed, 158 insertions(+), 52 deletions(-)
 create mode 100644 tests/tcg/multiarch/segfault.c
 create mode 100644 tests/tcg/multiarch/gdbstub/test-qxfer-siginfo-read.py

-- 
2.39.2


Re: [PULL for 9.0 0/8] final maintainer updates (testing, gdbstub)
Posted by Peter Maydell 1 month, 2 weeks ago
On Tue, 12 Mar 2024 at 11:26, Alex Bennée <alex.bennee@linaro.org> wrote:
>
> The following changes since commit 7489f7f3f81dcb776df8c1b9a9db281fc21bf05f:
>
>   Merge tag 'hw-misc-20240309' of https://github.com/philmd/qemu into staging (2024-03-09 20:12:21 +0000)
>
> are available in the Git repository at:
>
>   https://gitlab.com/stsquad/qemu.git tags/pull-maintainer-final-120324-1
>
> for you to fetch changes up to 0532045e8112c13a8a949e696576672e64c6fa14:
>
>   gdbstub: Fix double close() of the follow-fork-mode socket (2024-03-12 10:48:35 +0000)
>
> ----------------------------------------------------------------
> final updates for 9.0 (testing, gdbstub):
>
>   - avoid transferring pointless git data
>   - fix the over rebuilding of test VMs
>   - support Xfer:siginfo:read in gdbstub
>   - fix double close() in gdbstub
>

This makes the s390 CI jobs fail:

https://gitlab.com/qemu-project/qemu/-/jobs/6374182015
https://gitlab.com/qemu-project/qemu/-/jobs/6374182020

fatal: --filter can only be used when extensions.partialClone is set


thanks
-- PMM
Re: [PULL for 9.0 0/8] final maintainer updates (testing, gdbstub)
Posted by Alex Bennée 1 month, 2 weeks ago
Peter Maydell <peter.maydell@linaro.org> writes:

> On Tue, 12 Mar 2024 at 11:26, Alex Bennée <alex.bennee@linaro.org> wrote:
>>
>> The following changes since commit 7489f7f3f81dcb776df8c1b9a9db281fc21bf05f:
>>
>>   Merge tag 'hw-misc-20240309' of https://github.com/philmd/qemu into staging (2024-03-09 20:12:21 +0000)
>>
>> are available in the Git repository at:
>>
>>   https://gitlab.com/stsquad/qemu.git tags/pull-maintainer-final-120324-1
>>
>> for you to fetch changes up to 0532045e8112c13a8a949e696576672e64c6fa14:
>>
>>   gdbstub: Fix double close() of the follow-fork-mode socket (2024-03-12 10:48:35 +0000)
>>
>> ----------------------------------------------------------------
>> final updates for 9.0 (testing, gdbstub):
>>
>>   - avoid transferring pointless git data
>>   - fix the over rebuilding of test VMs
>>   - support Xfer:siginfo:read in gdbstub
>>   - fix double close() in gdbstub
>>
>
> This makes the s390 CI jobs fail:
>
> https://gitlab.com/qemu-project/qemu/-/jobs/6374182015
> https://gitlab.com/qemu-project/qemu/-/jobs/6374182020
>
> fatal: --filter can only be used when extensions.partialClone is set

That's annoying - I thought I had the s390 jobs in my matrix but it
seems they don't appear anymore. That said I see:

  root@qemu01 ~# cat /etc/lsb-release 
  DISTRIB_ID=Ubuntu
  DISTRIB_RELEASE=20.04
  DISTRIB_CODENAME=focal
  DISTRIB_DESCRIPTION="Ubuntu 20.04.6 LTS"

And as 24.04 is just round the corner maybe its time I update the system
to a more recent ubuntu (with I assume a more recent git)?

-- 
Alex Bennée
Virtualisation Tech Lead @ Linaro
Re: [PULL for 9.0 0/8] final maintainer updates (testing, gdbstub)
Posted by Peter Maydell 1 month, 2 weeks ago
On Tue, 12 Mar 2024 at 15:01, Alex Bennée <alex.bennee@linaro.org> wrote:
> That's annoying - I thought I had the s390 jobs in my matrix but it
> seems they don't appear anymore. That said I see:
>
>   root@qemu01 ~# cat /etc/lsb-release
>   DISTRIB_ID=Ubuntu
>   DISTRIB_RELEASE=20.04
>   DISTRIB_CODENAME=focal
>   DISTRIB_DESCRIPTION="Ubuntu 20.04.6 LTS"
>
> And as 24.04 is just round the corner maybe its time I update the system
> to a more recent ubuntu (with I assume a more recent git)?

Not until after we release 9.0, please.

thanks
-- PMM