qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/6] Ide patches
@ 2015-11-13 20:16 John Snow
  2015-11-13 20:16 ` [Qemu-devel] [PULL 1/6] atapi: add byte_count_limit helper John Snow
                   ` (6 more replies)
  0 siblings, 7 replies; 14+ messages in thread
From: John Snow @ 2015-11-13 20:16 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell, jsnow

The following changes since commit 8337c6cbc37c6b2184f41bab3eaff47d5e68012a:

  Update version for v2.5.0-rc0 release (2015-11-13 17:10:36 +0000)

are available in the git repository at:

  https://github.com/jnsnow/qemu.git tags/ide-pull-request

for you to fetch changes up to 917158dc3b22924922dc1f3b9d4049a4fc83d926:

  qtest/ahci: use raw format when qemu-img is absent (2015-11-13 14:31:43 -0500)

----------------------------------------------------------------

----------------------------------------------------------------

John Snow (6):
  atapi: add byte_count_limit helper
  atapi: Prioritize unknown cmd error over BCL error
  ahci/qtest: don't use tcp sockets for migration tests
  qtest/ahci: always specify image format
  libqos: add qemu-img presence check
  qtest/ahci: use raw format when qemu-img is absent

 hw/ide/atapi.c        |  38 ++++++++++-------
 tests/ahci-test.c     | 115 +++++++++++++++++++++++++++++++++++---------------
 tests/libqos/libqos.c |  28 +++++++++---
 tests/libqos/libqos.h |   1 +
 4 files changed, 127 insertions(+), 55 deletions(-)

-- 
2.4.3

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [Qemu-devel] [PULL 0/6] Ide patches
@ 2015-11-17 20:12 John Snow
  2015-11-18 12:47 ` Peter Maydell
  0 siblings, 1 reply; 14+ messages in thread
From: John Snow @ 2015-11-17 20:12 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell, jsnow

The following changes since commit c27e9014d56fa4880e7d741275d887c3a5949997:

  Merge remote-tracking branch 'remotes/kraxel/tags/pull-vnc-20151116-1' into staging (2015-11-17 12:34:07 +0000)

are available in the git repository at:

  https://github.com/jnsnow/qemu.git tags/ide-pull-request

for you to fetch changes up to d66a8fa83b00b3b3d631a0e28cdce8c9b5698822:

  ide: enable buffered requests for PIO read requests (2015-11-17 15:06:39 -0500)

----------------------------------------------------------------

----------------------------------------------------------------

Peter Lieven (6):
  ide/atapi: make PIO read requests async
  block: add blk_abort_aio_request
  ide: add support for IDEBufferedRequest
  ide: orphan all buffered requests on DMA cancel
  ide: enable buffered requests for ATAPI devices
  ide: enable buffered requests for PIO read requests

 block/block-backend.c          |  17 +++----
 hw/ide/atapi.c                 | 101 ++++++++++++++++++++++++++++++++++-------
 hw/ide/core.c                  |  51 ++++++++++++++++++++-
 hw/ide/internal.h              |  14 ++++++
 hw/ide/pci.c                   |  19 ++++++++
 include/sysemu/block-backend.h |   3 ++
 6 files changed, 179 insertions(+), 26 deletions(-)

-- 
2.4.3

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [Qemu-devel] [PULL 0/6] Ide patches
@ 2016-10-27 21:18 John Snow
  2016-10-28 14:30 ` Peter Maydell
  0 siblings, 1 reply; 14+ messages in thread
From: John Snow @ 2016-10-27 21:18 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell, jsnow

The following changes since commit 835f3d24b42fcbeca5c49048994a4e5d0fe905c5:

  Merge remote-tracking branch 'remotes/kraxel/tags/pull-audio-20161027-1' into staging (2016-10-27 17:24:29 +0100)

are available in the git repository at:

  https://github.com/jnsnow/qemu.git tags/ide-pull-request

for you to fetch changes up to c9bf278bf20f99827da65156915f78e0ce53c68e:

  qemu-iotests: Test creating floppy drives (2016-10-27 16:29:14 -0400)

----------------------------------------------------------------

----------------------------------------------------------------

Kevin Wolf (4):
  fdc: Add a floppy qbus
  fdc: Add a floppy drive qdev
  fdc: Move qdev properties to FloppyDrive
  qemu-iotests: Test creating floppy drives

Mark Cave-Ayland (2):
  dma-helpers: explicitly pass alignment into DMA helpers
  macio: switch over to new byte-aligned DMA helpers

 dma-helpers.c              |   21 +-
 hw/block/fdc.c             |  271 ++++++++--
 hw/block/nvme.c            |    6 +-
 hw/ide/ahci.c              |    2 +
 hw/ide/core.c              |    6 +-
 hw/ide/macio.c             |  213 ++------
 hw/scsi/scsi-disk.c        |    2 +
 include/sysemu/dma.h       |    6 +-
 tests/qemu-iotests/172     |  246 ++++++++++
 tests/qemu-iotests/172.out | 1170 ++++++++++++++++++++++++++++++++++++++++++++
 tests/qemu-iotests/group   |    1 +
 vl.c                       |    1 +
 12 files changed, 1695 insertions(+), 250 deletions(-)
 create mode 100755 tests/qemu-iotests/172
 create mode 100644 tests/qemu-iotests/172.out

-- 
2.7.4

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2016-10-28 14:30 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-13 20:16 [Qemu-devel] [PULL 0/6] Ide patches John Snow
2015-11-13 20:16 ` [Qemu-devel] [PULL 1/6] atapi: add byte_count_limit helper John Snow
2015-11-13 20:16 ` [Qemu-devel] [PULL 2/6] atapi: Prioritize unknown cmd error over BCL error John Snow
2015-11-13 20:16 ` [Qemu-devel] [PULL 3/6] ahci/qtest: don't use tcp sockets for migration tests John Snow
2015-11-13 20:16 ` [Qemu-devel] [PULL 4/6] qtest/ahci: always specify image format John Snow
2015-11-13 20:16 ` [Qemu-devel] [PULL 5/6] libqos: add qemu-img presence check John Snow
2015-11-13 20:16 ` [Qemu-devel] [PULL 6/6] qtest/ahci: use raw format when qemu-img is absent John Snow
2015-11-16 11:07 ` [Qemu-devel] [PULL 0/6] Ide patches Peter Maydell
2015-11-16 11:32   ` Peter Maydell
2015-11-16 16:29     ` John Snow
  -- strict thread matches above, loose matches on Subject: below --
2015-11-17 20:12 John Snow
2015-11-18 12:47 ` Peter Maydell
2016-10-27 21:18 John Snow
2016-10-28 14:30 ` Peter Maydell

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).