Skip to content

Commit 67dabac

Browse files
committed
Merge tag 'v9.1.1' into update_qemu_9_1_0
v9.1.1 release
2 parents c3c9c21 + 0ff5ab6 commit 67dabac

File tree

2,172 files changed

+91207
-76472
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,172 files changed

+91207
-76472
lines changed

.gitlab-ci.d/base.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ variables:
128128
when: manual
129129

130130
# Jobs can run if any jobs they depend on were successful
131-
- if: '$QEMU_JOB_SKIPPED && $CI_PROJECT_NAMESPACE == $QEMU_CI_UPSTREAM && $CI_COMMIT_BRANCH =~ /staging-[[:digit:]]+\.[[:digit:]]/'
131+
- if: '$CI_PROJECT_NAMESPACE == $QEMU_CI_UPSTREAM && $CI_COMMIT_BRANCH =~ /staging-[[:digit:]]+\.[[:digit:]]/'
132132
when: on_success
133133
variables:
134134
QEMU_CI_CONTAINER_TAG: $CI_COMMIT_REF_SLUG

.gitlab-ci.d/buildtest-template.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
when: always
1010
before_script:
1111
- JOBS=$(expr $(nproc) + 1)
12+
- cat /packages.txt
1213
script:
1314
- export CCACHE_BASEDIR="$(pwd)"
1415
- export CCACHE_DIR="$CCACHE_BASEDIR/ccache"
@@ -45,10 +46,8 @@
4546
exclude:
4647
- build/**/*.p
4748
- build/**/*.a.p
48-
- build/**/*.fa.p
4949
- build/**/*.c.o
5050
- build/**/*.c.o.d
51-
- build/**/*.fa
5251

5352
.common_test_job_template:
5453
extends: .base_job_template

.gitlab-ci.d/buildtest.yml

+16-8
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ build-system-centos:
164164
CONFIGURE_ARGS: --disable-nettle --enable-gcrypt --enable-vfio-user-server
165165
--enable-modules --enable-trace-backends=dtrace --enable-docs
166166
TARGETS: ppc64-softmmu or1k-softmmu s390x-softmmu
167-
x86_64-softmmu rx-softmmu sh4-softmmu nios2-softmmu
167+
x86_64-softmmu rx-softmmu sh4-softmmu
168168
MAKE_CHECK_ARGS: check-build
169169

170170
# Previous QEMU release. Used for cross-version migration tests.
@@ -178,10 +178,8 @@ build-previous-qemu:
178178
exclude:
179179
- build-previous/**/*.p
180180
- build-previous/**/*.a.p
181-
- build-previous/**/*.fa.p
182181
- build-previous/**/*.c.o
183182
- build-previous/**/*.c.o.d
184-
- build-previous/**/*.fa
185183
needs:
186184
job: amd64-opensuse-leap-container
187185
variables:
@@ -254,7 +252,7 @@ avocado-system-centos:
254252
IMAGE: centos9
255253
MAKE_CHECK_ARGS: check-avocado
256254
AVOCADO_TAGS: arch:ppc64 arch:or1k arch:s390x arch:x86_64 arch:rx
257-
arch:sh4 arch:nios2
255+
arch:sh4
258256

259257
build-system-opensuse:
260258
extends:
@@ -342,11 +340,13 @@ build-tcg-disabled:
342340
- cd tests/qemu-iotests/
343341
- ./check -raw 001 002 003 004 005 008 009 010 011 012 021 025 032 033 048
344342
052 063 077 086 101 104 106 113 148 150 151 152 157 159 160 163
345-
170 171 183 184 192 194 208 221 226 227 236 253 277 image-fleecing
343+
170 171 184 192 194 208 221 226 227 236 253 277 image-fleecing
346344
- ./check -qcow2 028 051 056 057 058 065 068 082 085 091 095 096 102 122
347345
124 132 139 142 144 145 151 152 155 157 165 194 196 200 202
348346
208 209 216 218 227 234 246 247 248 250 254 255 257 258
349347
260 261 262 263 264 270 272 273 277 279 image-fleecing
348+
- cd ../..
349+
- make distclean
350350

351351
build-user:
352352
extends: .native_build_job_template
@@ -432,6 +432,7 @@ clang-system:
432432
IMAGE: fedora
433433
CONFIGURE_ARGS: --cc=clang --cxx=clang++
434434
--extra-cflags=-fsanitize=undefined --extra-cflags=-fno-sanitize-recover=undefined
435+
--extra-cflags=-fno-sanitize=function
435436
TARGETS: alpha-softmmu arm-softmmu m68k-softmmu mips64-softmmu s390x-softmmu
436437
MAKE_CHECK_ARGS: check-qtest check-tcg
437438

@@ -445,6 +446,7 @@ clang-user:
445446
CONFIGURE_ARGS: --cc=clang --cxx=clang++ --disable-system
446447
--target-list-exclude=alpha-linux-user,microblazeel-linux-user,aarch64_be-linux-user,i386-linux-user,m68k-linux-user,mipsn32el-linux-user,xtensaeb-linux-user
447448
--extra-cflags=-fsanitize=undefined --extra-cflags=-fno-sanitize-recover=undefined
449+
--extra-cflags=-fno-sanitize=function
448450
MAKE_CHECK_ARGS: check-unit check-tcg
449451

450452
# Set LD_JOBS=1 because this requires LTO and ld consumes a large amount of memory.
@@ -636,7 +638,7 @@ build-tci:
636638
- TARGETS="aarch64 arm hppa m68k microblaze ppc64 s390x x86_64"
637639
- mkdir build
638640
- cd build
639-
- ../configure --enable-tcg-interpreter --disable-docs --disable-gtk --disable-vnc
641+
- ../configure --enable-tcg-interpreter --disable-kvm --disable-docs --disable-gtk --disable-vnc
640642
--target-list="$(for tg in $TARGETS; do echo -n ${tg}'-softmmu '; done)"
641643
|| { cat config.log meson-logs/meson-log.txt && exit 1; }
642644
- make -j"$JOBS"
@@ -651,6 +653,9 @@ build-tci:
651653
- make check-tcg
652654

653655
# Check our reduced build configurations
656+
# requires libfdt: aarch64, arm, loongarch64, microblaze, microblazeel,
657+
# or1k, ppc64, riscv32, riscv64, rx
658+
# fails qtest without boards: i386, x86_64
654659
build-without-defaults:
655660
extends: .native_build_job_template
656661
needs:
@@ -664,8 +669,11 @@ build-without-defaults:
664669
--disable-pie
665670
--disable-qom-cast-debug
666671
--disable-strip
667-
TARGETS: avr-softmmu s390x-softmmu sh4-softmmu
668-
sparc64-softmmu hexagon-linux-user i386-linux-user s390x-linux-user
672+
TARGETS: alpha-softmmu avr-softmmu cris-softmmu hppa-softmmu m68k-softmmu
673+
mips-softmmu mips64-softmmu mipsel-softmmu mips64el-softmmu
674+
ppc-softmmu s390x-softmmu sh4-softmmu sh4eb-softmmu sparc-softmmu
675+
sparc64-softmmu tricore-softmmu xtensa-softmmu xtensaeb-softmmu
676+
hexagon-linux-user i386-linux-user s390x-linux-user
669677
MAKE_CHECK_ARGS: check
670678

671679
build-libvhost-user:

.gitlab-ci.d/cirrus.yml

-37
Original file line numberDiff line numberDiff line change
@@ -91,40 +91,3 @@ aarch64-macos-14-base-build:
9191
PKG_CONFIG_PATH: /opt/homebrew/curl/lib/pkgconfig:/opt/homebrew/ncurses/lib/pkgconfig:/opt/homebrew/readline/lib/pkgconfig
9292
TEST_TARGETS: check-unit check-block check-qapi-schema check-softfloat check-qtest-x86_64
9393
QEMU_JOB_OPTIONAL: 1
94-
95-
96-
# The following jobs run VM-based tests via KVM on a Linux-based Cirrus-CI job
97-
.cirrus_kvm_job:
98-
extends: .base_job_template
99-
stage: build
100-
image: registry.gitlab.com/libvirt/libvirt-ci/cirrus-run:master
101-
needs: []
102-
timeout: 80m
103-
script:
104-
- sed -e "s|[@]CI_REPOSITORY_URL@|$CI_REPOSITORY_URL|g"
105-
-e "s|[@]CI_COMMIT_REF_NAME@|$CI_COMMIT_REF_NAME|g"
106-
-e "s|[@]CI_COMMIT_SHA@|$CI_COMMIT_SHA|g"
107-
-e "s|[@]NAME@|$NAME|g"
108-
-e "s|[@]CONFIGURE_ARGS@|$CONFIGURE_ARGS|g"
109-
-e "s|[@]TEST_TARGETS@|$TEST_TARGETS|g"
110-
<.gitlab-ci.d/cirrus/kvm-build.yml >.gitlab-ci.d/cirrus/$NAME.yml
111-
- cat .gitlab-ci.d/cirrus/$NAME.yml
112-
- cirrus-run -v --show-build-log always .gitlab-ci.d/cirrus/$NAME.yml
113-
variables:
114-
QEMU_JOB_CIRRUS: 1
115-
QEMU_JOB_OPTIONAL: 1
116-
117-
118-
x86-netbsd:
119-
extends: .cirrus_kvm_job
120-
variables:
121-
NAME: netbsd
122-
CONFIGURE_ARGS: --target-list=x86_64-softmmu,ppc64-softmmu,aarch64-softmmu
123-
TEST_TARGETS: check
124-
125-
x86-openbsd:
126-
extends: .cirrus_kvm_job
127-
variables:
128-
NAME: openbsd
129-
CONFIGURE_ARGS: --target-list=i386-softmmu,riscv64-softmmu,mips64-softmmu
130-
TEST_TARGETS: check

.gitlab-ci.d/cirrus/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ build_task:
2626
- git clone --depth 100 "$CI_REPOSITORY_URL" .
2727
- git fetch origin "$CI_COMMIT_REF_NAME"
2828
- git reset --hard "$CI_COMMIT_SHA"
29-
build_script:
29+
step_script:
3030
- mkdir build
3131
- cd build
3232
- ../configure --enable-werror $CONFIGURE_ARGS

.gitlab-ci.d/cirrus/freebsd-13.vars

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ MAKE='/usr/local/bin/gmake'
1111
NINJA='/usr/local/bin/ninja'
1212
PACKAGING_COMMAND='pkg'
1313
PIP3='/usr/local/bin/pip-3.8'
14-
PKGS='alsa-lib bash bison bzip2 ca_root_nss capstone4 ccache cmocka ctags curl cyrus-sasl dbus diffutils dtc flex fusefs-libs3 gettext git glib gmake gnutls gsed gtk3 json-c libepoxy libffi libgcrypt libjpeg-turbo libnfs libslirp libspice-server libssh libtasn1 llvm lzo2 meson mtools ncurses nettle ninja opencv pixman pkgconf png py39-numpy py39-pillow py39-pip py39-sphinx py39-sphinx_rtd_theme py39-tomli py39-yaml python3 rpm2cpio sdl2 sdl2_image snappy sndio socat spice-protocol tesseract usbredir virglrenderer vte3 xorriso zstd'
14+
PKGS='alsa-lib bash bison bzip2 ca_root_nss capstone4 ccache cmocka ctags curl cyrus-sasl dbus diffutils dtc flex fusefs-libs3 gettext git glib gmake gnutls gsed gtk-vnc gtk3 json-c libepoxy libffi libgcrypt libjpeg-turbo libnfs libslirp libspice-server libssh libtasn1 llvm lzo2 meson mtools ncurses nettle ninja opencv pixman pkgconf png py311-numpy py311-pillow py311-pip py311-sphinx py311-sphinx_rtd_theme py311-tomli py311-yaml python3 rpm2cpio sdl2 sdl2_image snappy sndio socat spice-protocol tesseract usbredir virglrenderer vte3 xorriso zstd'
1515
PYPI_PKGS=''
1616
PYTHON='/usr/local/bin/python3'

.gitlab-ci.d/cirrus/kvm-build.yml

-31
This file was deleted.

.gitlab-ci.d/cirrus/macos-13.vars

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ MAKE='/opt/homebrew/bin/gmake'
1111
NINJA='/opt/homebrew/bin/ninja'
1212
PACKAGING_COMMAND='brew'
1313
PIP3='/opt/homebrew/bin/pip3'
14-
PKGS='bash bc bison bzip2 capstone ccache cmocka ctags curl dbus diffutils dtc flex gcovr gettext git glib gnu-sed gnutls gtk+3 jemalloc jpeg-turbo json-c libepoxy libffi libgcrypt libiscsi libnfs libpng libslirp libssh libtasn1 libusb llvm lzo make meson mtools ncurses nettle ninja pixman pkg-config python3 rpm2cpio sdl2 sdl2_image snappy socat sparse spice-protocol swtpm tesseract usbredir vde vte3 xorriso zlib zstd'
14+
PKGS='bash bc bison bzip2 capstone ccache cmocka ctags curl dbus diffutils dtc flex gcovr gettext git glib gnu-sed gnutls gtk+3 gtk-vnc jemalloc jpeg-turbo json-c libepoxy libffi libgcrypt libiscsi libnfs libpng libslirp libssh libtasn1 libusb llvm lzo make meson mtools ncurses nettle ninja pixman pkg-config python3 rpm2cpio sdl2 sdl2_image snappy socat sparse spice-protocol swtpm tesseract usbredir vde vte3 xorriso zlib zstd'
1515
PYPI_PKGS='PyYAML numpy pillow sphinx sphinx-rtd-theme tomli'
1616
PYTHON='/opt/homebrew/bin/python3'

.gitlab-ci.d/cirrus/macos-14.vars

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ MAKE='/opt/homebrew/bin/gmake'
1111
NINJA='/opt/homebrew/bin/ninja'
1212
PACKAGING_COMMAND='brew'
1313
PIP3='/opt/homebrew/bin/pip3'
14-
PKGS='bash bc bison bzip2 capstone ccache cmocka ctags curl dbus diffutils dtc flex gcovr gettext git glib gnu-sed gnutls gtk+3 jemalloc jpeg-turbo json-c libepoxy libffi libgcrypt libiscsi libnfs libpng libslirp libssh libtasn1 libusb llvm lzo make meson mtools ncurses nettle ninja pixman pkg-config python3 rpm2cpio sdl2 sdl2_image snappy socat sparse spice-protocol swtpm tesseract usbredir vde vte3 xorriso zlib zstd'
14+
PKGS='bash bc bison bzip2 capstone ccache cmocka ctags curl dbus diffutils dtc flex gcovr gettext git glib gnu-sed gnutls gtk+3 gtk-vnc jemalloc jpeg-turbo json-c libepoxy libffi libgcrypt libiscsi libnfs libpng libslirp libssh libtasn1 libusb llvm lzo make meson mtools ncurses nettle ninja pixman pkg-config python3 rpm2cpio sdl2 sdl2_image snappy socat sparse spice-protocol swtpm tesseract usbredir vde vte3 xorriso zlib zstd'
1515
PYPI_PKGS='PyYAML numpy pillow sphinx sphinx-rtd-theme tomli'
1616
PYTHON='/opt/homebrew/bin/python3'

.gitlab-ci.d/container-cross.yml

-6
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,6 @@ arm64-debian-cross-container:
2222
variables:
2323
NAME: debian-arm64-cross
2424

25-
armel-debian-cross-container:
26-
extends: .container_job_template
27-
stage: containers
28-
variables:
29-
NAME: debian-armel-cross
30-
3125
armhf-debian-cross-container:
3226
extends: .container_job_template
3327
stage: containers

.gitlab-ci.d/crossbuild-template.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
key: "$CI_JOB_NAME"
99
when: always
1010
timeout: 80m
11+
before_script:
12+
- cat /packages.txt
1113
script:
1214
- export CCACHE_BASEDIR="$(pwd)"
1315
- export CCACHE_DIR="$CCACHE_BASEDIR/ccache"
@@ -72,7 +74,7 @@
7274
- ../configure --enable-werror --disable-docs $QEMU_CONFIGURE_OPTS
7375
--disable-system --target-list-exclude="aarch64_be-linux-user
7476
alpha-linux-user cris-linux-user m68k-linux-user microblazeel-linux-user
75-
nios2-linux-user or1k-linux-user ppc-linux-user sparc-linux-user
77+
or1k-linux-user ppc-linux-user sparc-linux-user
7678
xtensa-linux-user $CROSS_SKIP_TARGETS"
7779
- make -j$(expr $(nproc) + 1) all check-build $MAKE_CHECK_ARGS
7880

.gitlab-ci.d/crossbuilds.yml

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
include:
22
- local: '/.gitlab-ci.d/crossbuild-template.yml'
33

4-
cross-armel-user:
5-
extends: .cross_user_build_job
6-
needs:
7-
job: armel-debian-cross-container
8-
variables:
9-
IMAGE: debian-armel-cross
10-
114
cross-armhf-user:
125
extends: .cross_user_build_job
136
needs:
@@ -37,6 +30,17 @@ cross-arm64-kvm-only:
3730
IMAGE: debian-arm64-cross
3831
EXTRA_CONFIGURE_OPTS: --disable-tcg --without-default-features
3932

33+
cross-i686-system:
34+
extends:
35+
- .cross_system_build_job
36+
- .cross_test_artifacts
37+
needs:
38+
job: i686-debian-cross-container
39+
variables:
40+
IMAGE: debian-i686-cross
41+
EXTRA_CONFIGURE_OPTS: --disable-kvm
42+
MAKE_CHECK_ARGS: check-qtest
43+
4044
cross-i686-user:
4145
extends:
4246
- .cross_user_build_job
@@ -57,7 +61,7 @@ cross-i686-tci:
5761
variables:
5862
IMAGE: debian-i686-cross
5963
ACCEL: tcg-interpreter
60-
EXTRA_CONFIGURE_OPTS: --target-list=i386-softmmu,i386-linux-user,aarch64-softmmu,aarch64-linux-user,ppc-softmmu,ppc-linux-user --disable-plugins
64+
EXTRA_CONFIGURE_OPTS: --target-list=i386-softmmu,i386-linux-user,aarch64-softmmu,aarch64-linux-user,ppc-softmmu,ppc-linux-user --disable-plugins --disable-kvm
6165
MAKE_CHECK_ARGS: check check-tcg
6266

6367
cross-mipsel-system:
@@ -167,7 +171,7 @@ cross-win64-system:
167171
IMAGE: fedora-win64-cross
168172
EXTRA_CONFIGURE_OPTS: --enable-fdt=internal --disable-plugins
169173
CROSS_SKIP_TARGETS: alpha-softmmu avr-softmmu hppa-softmmu
170-
m68k-softmmu microblazeel-softmmu nios2-softmmu
174+
m68k-softmmu microblazeel-softmmu
171175
or1k-softmmu rx-softmmu sh4eb-softmmu sparc64-softmmu
172176
tricore-softmmu xtensaeb-softmmu
173177
artifacts:

.gitlab-ci.d/custom-runners.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
junit: build/meson-logs/testlog.junit.xml
3030

3131
include:
32-
- local: '/.gitlab-ci.d/custom-runners/ubuntu-20.04-s390x.yml'
32+
- local: '/.gitlab-ci.d/custom-runners/ubuntu-22.04-s390x.yml'
3333
- local: '/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml'
3434
- local: '/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch32.yml'
35-
- local: '/.gitlab-ci.d/custom-runners/centos-stream-8-x86_64.yml'

.gitlab-ci.d/custom-runners/centos-stream-8-x86_64.yml

-24
This file was deleted.

.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch32.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# All ubuntu-22.04 jobs should run successfully in an environment
2-
# setup by the scripts/ci/setup/qemu/build-environment.yml task
2+
# setup by the scripts/ci/setup/ubuntu/build-environment.yml task
33
# "Install basic packages to build QEMU on Ubuntu 22.04"
44

55
ubuntu-22.04-aarch32-all:

.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# All ubuntu-22.04 jobs should run successfully in an environment
2-
# setup by the scripts/ci/setup/qemu/build-environment.yml task
2+
# setup by the scripts/ci/setup/ubuntu/build-environment.yml task
33
# "Install basic packages to build QEMU on Ubuntu 22.04"
44

55
ubuntu-22.04-aarch64-all-linux-static:

0 commit comments

Comments
 (0)