Patches applied successfully (
tree,
apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20230824165833.1689137-1-stefanha@redhat.com
Maintainers: Kevin Wolf <kwolf@redhat.com>, Hanna Reitz <hreitz@redhat.com>, Stefan Hajnoczi <stefanha@redhat.com>, Fam Zheng <fam@euphon.net>, John Snow <jsnow@redhat.com>, Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>, "Michael S. Tsirkin" <mst@redhat.com>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, Paolo Bonzini <pbonzini@redhat.com>, Jeuk Kim <jeuk20.kim@samsung.com>, "Marc-André Lureau" <marcandre.lureau@redhat.com>, "Daniel P. Berrangé" <berrange@redhat.com>, Thomas Huth <thuth@redhat.com>, "Philippe Mathieu-Daudé" <philmd@linaro.org>, Juan Quintela <quintela@redhat.com>, Peter Xu <peterx@redhat.com>, Leonardo Bras <leobras@redhat.com>, Laurent Vivier <lvivier@redhat.com>
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