From: Stefan Hajnoczi <stefanha@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Laurent Vivier" <lvivier@redhat.com>,
"Marc-André Lureau" <marcandre.lureau@redhat.com>,
"Fam Zheng" <fam@euphon.net>, "Peter Xu" <peterx@redhat.com>,
"Kevin Wolf" <kwolf@redhat.com>,
"Hanna Reitz" <hreitz@redhat.com>,
"Stefan Hajnoczi" <stefanha@redhat.com>,
"Michael S. Tsirkin" <mst@redhat.com>,
"Leonardo Bras" <leobras@redhat.com>,
"Juan Quintela" <quintela@redhat.com>,
"Vladimir Sementsov-Ogievskiy" <vsementsov@yandex-team.ru>,
"Marcel Apfelbaum" <marcel.apfelbaum@gmail.com>,
"John Snow" <jsnow@redhat.com>, "Thomas Huth" <thuth@redhat.com>,
"Philippe Mathieu-Daudé" <philmd@linaro.org>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Daniel P. Berrangé" <berrange@redhat.com>,
"Jeuk Kim" <jeuk20.kim@samsung.com>,
qemu-block@nongnu.org
Subject: [PULL v2 0/8] Block patches
Date: Tue, 29 Aug 2023 13:21:14 -0400 [thread overview]
Message-ID: <20230829172122.303592-1-stefanha@redhat.com> (raw)
The following changes since commit 813bac3d8d70d85cb7835f7945eb9eed84c2d8d0:
Merge tag '2023q3-bsd-user-pull-request' of https://gitlab.com/bsdimp/qemu into staging (2023-08-29 08:58:00 -0400)
are available in the Git repository at:
https://gitlab.com/stefanha/qemu.git tags/block-pull-request
for you to fetch changes up to 3f5f2285bfcdd855508a55da7875fb92de1a6ed0:
tests/qemu-iotests/197: add testcase for CoR with subclusters (2023-08-29 13:19:56 -0400)
----------------------------------------------------------------
Pull request
v2:
- Fix authorship information lost by the mailing list for Andrey Drobyshev
----------------------------------------------------------------
Andrey Drobyshev (3):
block: add subcluster_size field to BlockDriverInfo
block/io: align requests to subcluster_size
tests/qemu-iotests/197: add testcase for CoR with subclusters
Fabiano Rosas (1):
block-migration: Ensure we don't crash during migration cleanup
Jeuk Kim (4):
hw/ufs: Initial commit for emulated Universal-Flash-Storage
hw/ufs: Support for Query Transfer Requests
hw/ufs: Support for UFS logical unit
tests/qtest: Introduce tests for UFS
MAINTAINERS | 7 +
docs/specs/pci-ids.rst | 2 +
meson.build | 1 +
hw/ufs/trace.h | 1 +
hw/ufs/ufs.h | 131 +++
include/block/block-common.h | 5 +
include/block/block-io.h | 8 +-
include/block/ufs.h | 1090 +++++++++++++++++++++++++
include/hw/pci/pci.h | 1 +
include/hw/pci/pci_ids.h | 1 +
include/scsi/constants.h | 1 +
block.c | 7 +
block/io.c | 50 +-
block/mirror.c | 8 +-
block/qcow2.c | 1 +
hw/ufs/lu.c | 1445 ++++++++++++++++++++++++++++++++
hw/ufs/ufs.c | 1494 ++++++++++++++++++++++++++++++++++
migration/block.c | 11 +-
tests/qtest/ufs-test.c | 584 +++++++++++++
hw/Kconfig | 1 +
hw/meson.build | 1 +
hw/ufs/Kconfig | 4 +
hw/ufs/meson.build | 1 +
hw/ufs/trace-events | 58 ++
tests/qemu-iotests/197 | 29 +
tests/qemu-iotests/197.out | 24 +
tests/qtest/meson.build | 1 +
27 files changed, 4932 insertions(+), 35 deletions(-)
create mode 100644 hw/ufs/trace.h
create mode 100644 hw/ufs/ufs.h
create mode 100644 include/block/ufs.h
create mode 100644 hw/ufs/lu.c
create mode 100644 hw/ufs/ufs.c
create mode 100644 tests/qtest/ufs-test.c
create mode 100644 hw/ufs/Kconfig
create mode 100644 hw/ufs/meson.build
create mode 100644 hw/ufs/trace-events
--
2.41.0
next reply other threads:[~2023-08-29 17:22 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-29 17:21 Stefan Hajnoczi [this message]
2023-08-29 17:21 ` [PULL v2 1/8] hw/ufs: Initial commit for emulated Universal-Flash-Storage Stefan Hajnoczi
2023-08-29 17:21 ` [PULL v2 2/8] hw/ufs: Support for Query Transfer Requests Stefan Hajnoczi
2023-08-29 17:21 ` [PULL v2 3/8] hw/ufs: Support for UFS logical unit Stefan Hajnoczi
2023-08-29 17:21 ` [PULL v2 4/8] tests/qtest: Introduce tests for UFS Stefan Hajnoczi
2023-08-29 17:21 ` [PULL v2 5/8] block-migration: Ensure we don't crash during migration cleanup Stefan Hajnoczi
2023-08-29 17:21 ` [PULL v2 6/8] block: add subcluster_size field to BlockDriverInfo Stefan Hajnoczi
2023-08-29 17:21 ` [PULL v2 7/8] block/io: align requests to subcluster_size Stefan Hajnoczi
2023-08-29 17:21 ` [PULL v2 8/8] tests/qemu-iotests/197: add testcase for CoR with subclusters Stefan Hajnoczi
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=20230829172122.303592-1-stefanha@redhat.com \
--to=stefanha@redhat.com \
--cc=berrange@redhat.com \
--cc=fam@euphon.net \
--cc=hreitz@redhat.com \
--cc=jeuk20.kim@samsung.com \
--cc=jsnow@redhat.com \
--cc=kwolf@redhat.com \
--cc=leobras@redhat.com \
--cc=lvivier@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=marcel.apfelbaum@gmail.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peterx@redhat.com \
--cc=philmd@linaro.org \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.com \
--cc=thuth@redhat.com \
--cc=vsementsov@yandex-team.ru \
/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).