From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Subject: [PULL v2 00/28] Misc (including block file-posix) for 2021-06-23
Date: Fri, 25 Jun 2021 16:17:54 +0200 [thread overview]
Message-ID: <20210625141822.1368639-1-pbonzini@redhat.com> (raw)
The following changes since commit ecba223da6215d6f6ce2d343b70b2e9a19bfb90b:
Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20210624' into staging (2021-06-24 15:00:34 +0100)
are available in the Git repository at:
https://gitlab.com/bonzini/qemu.git tags/for-upstream
for you to fetch changes up to 0aebebb561c9c23b9c6d3d58040f83547f059b5c:
machine: reject -smp dies!=1 for non-PC machines (2021-06-25 16:16:11 +0200)
Starting to flush my own queue before 6.1 soft freeze. The
block/file-posix.c patches have been reviewed/acked by Max.
----------------------------------------------------------------
* Some Meson test conversions
* KVM dirty page ring buffer fix
* KVM TSC scaling support
* Fixes for SG_IO with /dev/sdX devices
* (Non)support for host devices on iOS
* -smp cleanups
----------------------------------------------------------------
Joelle van Dyne (3):
block: feature detection for host block support
block: check for sys/disk.h
block: detect DKIOCGETBLOCKCOUNT/SIZE before use
Paolo Bonzini (24):
target/i386: kvm: add support for TSC scaling
meson: drop unused CONFIG_GCRYPT_HMAC
configure: drop unused variables for xts
meson: remove preadv from summary
tests: remove QCRYPTO_HAVE_TLS_TEST_SUPPORT
configure, meson: convert crypto detection to meson
configure, meson: convert libtasn1 detection to meson
configure, meson: convert pam detection to meson
configure, meson: convert libusb detection to meson
configure, meson: convert libcacard detection to meson
configure, meson: convert libusbredir detection to meson
file-posix: fix max_iov for /dev/sg devices
scsi-generic: pass max_segments via max_iov field in BlockLimits
osdep: provide ROUND_DOWN macro
block-backend: align max_transfer to request alignment
block: add max_hw_transfer to BlockLimits
file-posix: try BLKSECTGET on block devices too, do not round to power of 2
block: try BSD disk size ioctls one after another
file-posix: handle EINTR during ioctl
machine: move dies from X86MachineState to CpuTopology
machine: move common smp_parse code to caller
machine: add error propagation to mc->smp_parse
machine: pass QAPI struct to mc->smp_parse
machine: reject -smp dies!=1 for non-PC machines
Peter Xu (1):
KVM: Fix dirty ring mmap incorrect size due to renaming accident
accel/kvm/kvm-all.c | 4 +-
authz/meson.build | 2 +-
block.c | 2 +-
block/block-backend.c | 19 +-
block/file-posix.c | 144 +++++++++------
block/io.c | 2 +
configure | 326 +++-------------------------------
crypto/meson.build | 41 ++---
hw/core/machine.c | 140 +++++++++------
hw/i386/pc.c | 110 +++++-------
hw/i386/x86.c | 15 +-
hw/scsi/scsi-generic.c | 6 +-
hw/usb/meson.build | 6 +-
include/block/block_int.h | 7 +
include/hw/boards.h | 3 +-
include/hw/i386/pc.h | 3 -
include/hw/i386/x86.h | 1 -
include/qemu/osdep.h | 28 ++-
include/sysemu/block-backend.h | 1 +
meson.build | 159 ++++++++++++-----
meson_options.txt | 14 ++
qapi/block-core.json | 14 +-
qapi/machine.json | 28 +++
target/i386/cpu.c | 2 +-
target/i386/cpu.h | 1 +
target/i386/kvm/kvm.c | 12 +-
tests/unit/crypto-tls-psk-helpers.c | 6 -
tests/unit/crypto-tls-psk-helpers.h | 4 -
tests/unit/crypto-tls-x509-helpers.c | 4 -
tests/unit/crypto-tls-x509-helpers.h | 11 +-
tests/unit/meson.build | 10 +-
tests/unit/pkix_asn1_tab.c | 3 -
tests/unit/test-crypto-tlscredsx509.c | 12 --
tests/unit/test-crypto-tlssession.c | 12 --
tests/unit/test-io-channel-tls.c | 12 --
35 files changed, 501 insertions(+), 663 deletions(-)
--
2.31.1
next reply other threads:[~2021-06-25 14:20 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-06-25 14:17 Paolo Bonzini [this message]
2021-06-25 14:17 ` [PULL 01/28] target/i386: kvm: add support for TSC scaling Paolo Bonzini
2021-06-25 14:17 ` [PULL 02/28] meson: drop unused CONFIG_GCRYPT_HMAC Paolo Bonzini
2021-06-25 14:17 ` [PULL 03/28] configure: drop unused variables for xts Paolo Bonzini
2021-06-25 14:17 ` [PULL 04/28] meson: remove preadv from summary Paolo Bonzini
2021-06-25 14:17 ` [PULL 05/28] tests: remove QCRYPTO_HAVE_TLS_TEST_SUPPORT Paolo Bonzini
2021-06-25 14:18 ` [PULL 06/28] configure, meson: convert crypto detection to meson Paolo Bonzini
2021-06-25 14:18 ` [PULL 07/28] configure, meson: convert libtasn1 " Paolo Bonzini
2021-06-25 14:18 ` [PULL 08/28] configure, meson: convert pam " Paolo Bonzini
2021-06-25 14:18 ` [PULL 09/28] configure, meson: convert libusb " Paolo Bonzini
2021-06-25 14:18 ` [PULL 10/28] configure, meson: convert libcacard " Paolo Bonzini
2021-06-25 14:18 ` [PULL 11/28] configure, meson: convert libusbredir " Paolo Bonzini
2021-06-25 14:18 ` [PULL 12/28] KVM: Fix dirty ring mmap incorrect size due to renaming accident Paolo Bonzini
2021-06-25 14:18 ` [PULL 13/28] file-posix: fix max_iov for /dev/sg devices Paolo Bonzini
2021-06-25 14:18 ` [PULL 14/28] scsi-generic: pass max_segments via max_iov field in BlockLimits Paolo Bonzini
2021-06-25 14:18 ` [PULL 15/28] osdep: provide ROUND_DOWN macro Paolo Bonzini
2021-06-29 4:12 ` Philippe Mathieu-Daudé
2021-06-25 14:18 ` [PULL 16/28] block-backend: align max_transfer to request alignment Paolo Bonzini
2021-06-25 14:18 ` [PULL 17/28] block: add max_hw_transfer to BlockLimits Paolo Bonzini
2021-06-25 14:18 ` [PULL 18/28] file-posix: try BLKSECTGET on block devices too, do not round to power of 2 Paolo Bonzini
2021-09-06 14:24 ` Halil Pasic
2021-09-22 19:51 ` Halil Pasic
2021-09-23 9:18 ` Recent qemu patch results in aio failures with host DASD disks resulting in guest I/O errors Christian Borntraeger
2021-09-23 10:57 ` [PULL 18/28] file-posix: try BLKSECTGET on block devices too, do not round to power of 2 Paolo Bonzini
2021-09-23 12:13 ` Halil Pasic
2021-09-23 13:02 ` Paolo Bonzini
2021-06-25 14:18 ` [PULL 19/28] block: feature detection for host block support Paolo Bonzini
2021-06-25 14:18 ` [PULL 20/28] block: check for sys/disk.h Paolo Bonzini
2021-06-25 14:18 ` [PULL 21/28] block: try BSD disk size ioctls one after another Paolo Bonzini
2021-06-25 14:18 ` [PULL 22/28] block: detect DKIOCGETBLOCKCOUNT/SIZE before use Paolo Bonzini
2021-06-25 14:18 ` [PULL 23/28] file-posix: handle EINTR during ioctl Paolo Bonzini
2021-06-25 14:18 ` [PULL 24/28] machine: move dies from X86MachineState to CpuTopology Paolo Bonzini
2021-06-25 14:18 ` [PULL 25/28] machine: move common smp_parse code to caller Paolo Bonzini
2021-06-25 14:18 ` [PULL 26/28] machine: add error propagation to mc->smp_parse Paolo Bonzini
2021-06-25 14:18 ` [PULL 27/28] machine: pass QAPI struct " Paolo Bonzini
2021-06-25 14:18 ` [PULL 28/28] machine: reject -smp dies!=1 for non-PC machines Paolo Bonzini
2021-06-29 8:37 ` [PULL v2 00/28] Misc (including block file-posix) for 2021-06-23 Peter Maydell
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=20210625141822.1368639-1-pbonzini@redhat.com \
--to=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/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).