[PULL v2 0/7] IDE patches
"Denis V. Lunev" <[email protected]> Tue, 4 Aug 2026 19:00:07 +0200
| Newsgroups | gmane.comp.emulators.qemu.block,gmane.comp.emulators.qemu |
|---|---|
| Message-ID | <[email protected]> |
The following changes since commit e1705a25aff35635c360bbaba4c2731d019a422a: Update version for v11.1.0-rc2 release (2026-07-29 06:16:08 -0400) are available in the Git repository at: https://gitlab.com/dlunev/qemu tags/pull-ide-2026-08-04 for you to fetch changes up to 9a249de6ae86124b436b5e839e285aeb333ea8c0: tests/qtest/ahci: regression test for ATAPI read vs. drain (2026-08-04 18:40:34 +0200) ---------------------------------------------------------------- IDE patches - fix a main-loop deadlock when an ATAPI PIO read spanning several sectors is in flight while a drain starts: the nested sector fetch was issued synchronously from inside the completion of the first read and queued behind the drain, which then never finished - read the whole ATAPI elementary transfer in one asynchronous request instead, removing cd_read_sector_sync() - extend the IDE/AHCI qtest coverage of ATAPI CD reads: parametrized read helper, multi-sector DMA, raw 2352-byte READ CD on both delivery paths, and a regression test for the deadlock above Changes since v1: - MAINTAINERS patch dropped - spare blank line no longer added and removed within the series NOTE: 'hw/ide: Don't divide by zero if guest specifies 0 sectors requires' is not ready for me, skipped from this submission. Signed-off-by: Denis V. Lunev <[email protected]> CC: Stefan Hajnoczi <[email protected]> CC: Philippe Mathieu-Daudé <[email protected]> ---------------------------------------------------------------- Denis V. Lunev (7): tests/qtest/ide-test: parametrize the ATAPI CD-ROM read test tests/qtest/ide-test: add a multi-sector ATAPI DMA read test tests/qtest/ide-test: cover raw (2352-byte) ATAPI CD reads tests/qtest/libqos/ahci: support raw (2352-byte) READ CD tests/qtest/ahci: cover raw (2352-byte) ATAPI CD reads hw/ide/atapi: read the whole elementary transfer asynchronously tests/qtest/ahci: regression test for ATAPI read vs. drain hw/ide/atapi.c | 180 +++++++++++++++----------------- tests/qtest/ahci-test.c | 134 ++++++++++++++++++++++++ tests/qtest/ide-test.c | 211 ++++++++++++++++++++++++-------------- tests/qtest/libqos/ahci.c | 5 + tests/qtest/libqos/ahci.h | 2 + 5 files changed, 360 insertions(+), 172 deletions(-) -- 2.53.0