-
compiler-v2e6943f1e · ·
Remove GCC < 4.8 checks Hi, Since commit efc6c07 ("configure: Add a test for the minimum compiler version"), QEMU explicitely depends on GCC >= 4.8. v2: - include reviewed Philippe earlier series - drop problematic patch to replace GCC_FMT_ATTR, but tweak the check to be clang - replace QEMU_GNUC_PREREQ with G_GNUC_CHECK_VERSION - split changes - add patches to drop __GNUC__ checks (clang advertizes itself as 4.2.1, unless -fgnuc-version=0)
-
libvhost-user-v2d9dc70e7 · ·
libvhost-user: make it a subproject (was: "lower dependency on QEMU headers") Hi, libvhost-user is meant to be free of glib dependency, and easily copyable/reusable outside of QEMU. Clean-up some dependencies that crept in recently (the one remaining is qemu/atomic.h, from which a subset is used) v2: - fix memfd flags argument (spotted by D. Gilbert) - new patches to remove dependency from QEMU headers - make it a standalone meson subproject - check subproject build in gitlab CI (suggested by S. Hajnoczi) - add some r-b tags
-
compiler-v17fae238d · ·
Remove GCC < 4.8 checks Hi, Since commit efc6c07 ("configure: Add a test for the minimum compiler version"), QEMU explicitely depends on GCC >= 4.8.
-
r8.3-qga-v193285532 · ·
Bug 1900578 - qemu-ga aborts after guest-shutdown command BZ: 1900578 BRANCH: rhel-8.3.0.z UPSTREAM: 844bd70b5652f30bbace89499f513e3fbbb6457a BREW: http://brew-task-repos.usersys.redhat.com/repos/scratch/mlureau/qemu-kvm/4.2.0/34.module+el8.3.0+7629+c86ce105.elmarco202011232354/
-
qemu-kvm-4.2.0-37.module+el8.4.0+8837+c89bcfe6ecd797b8 · ·
Update to qemu-kvm-4.2.0-37.module+el8.4.0+8837+c89bcfe6
-
qemu-kvm-4.2.0-34.module+el8.3.0+8829+e7a0a3ea.17330ba2b · ·
Update to qemu-kvm-4.2.0-34.module+el8.3.0+8829+e7a0a3ea.1
-
qemu-kvm-2.12.0-65.module+el8.0.0+8809+f910d7b3.10ffd7e6d4 · ·
Update to qemu-kvm-2.12.0-65.module+el8.0.0+8809+f910d7b3.10
-
qemu-kvm-4.1.0-23.module+el8.1.1+8810+b1cf7b02.5f3324991 · ·
Update to qemu-kvm-4.1.0-23.module+el8.1.1+8810+b1cf7b02.5
-
qemu-kvm-4.2.0-36.module+el8.4.0+8807+0c3dc3b0da39efaa · ·
Update to qemu-kvm-4.2.0-36.module+el8.4.0+8807+0c3dc3b0
-
qemu-kvm-5.1.0-14.module+el8.3.0+8790+80f9c6d8.192d0c281 · ·
Update to qemu-kvm-5.1.0-14.module+el8.3.0+8790+80f9c6d8.1
-
libvhost-user-v16089cccb · ·
libvhost-user: lower dependency on QEMU headers Hi, libvhost-user is meant to be free of glib dependency, and easily copyable/reusable outside of QEMU. Clean-up some dependencies that crept in recently (the one remaining is qemu/atomic.h, from which a subset is used)
-
qemu-kvm-5.1.0-15.module+el8.3.1+8772+a3fdeccd633d1dee · ·
Update to qemu-kvm-5.1.0-15.module+el8.3.1+8772+a3fdeccd
-
qapi-if-v268380051 · ·
qapi: untie 'if' conditions from C preprocessor Hi, This series makes the 'if' conditions less liberal, by formalizing a simple expression tree based on bare boolean logic of configure option identifiers. (this will allow to express conditions in Rust in my QAPI-Rust PoC series, but it is worth a standalone post) This is based on John Snow QAPI cleanup branch: https://gitlab.com/jsnow/qemu/-/tree/python-qapi-cleanup-pt6 thanks v2: - fix the normalization step to handle recursive expr - replace IfCond by QAPISchemaIf (JohnS) - commit message and documentation tweaks - mypy/flake8/isort
-
screendump-co-v21685770b · ·
console: make QMP screendump use coroutine Hi, Thanks to recent work by Kevin, it becomes possible to run HMP/QMP commands in a coroutine. The screendump command is a good target, as it requires to re-enter the main-loop in ordre to flush the display, and write to file. Ideally, IO would be done with a non-blocking fd, however it's not currently enabled. This is left for a future work. v2: - change summary to not falsly claim non-blocking write support - code styles fixes - rebased, add reviewed-by tags