qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/19] Ide patches
@ 2015-05-22 19:59 John Snow
  2015-05-22 19:59 ` [Qemu-devel] [PULL 01/19] configure: require glib 2.22 John Snow
                   ` (19 more replies)
  0 siblings, 20 replies; 32+ messages in thread
From: John Snow @ 2015-05-22 19:59 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell, jsnow

The following changes since commit bb2fa17f182ee0b45b53474f76679944fc891f04:

  Merge remote-tracking branch 'remotes/bkoppelmann/tags/pull-tricore-20150522' into staging (2015-05-22 16:22:42 +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 cd6cb73beb63e5fa62ca8ed540b9d54063b15c44:

  ahci: do not remap clb/fis unconditionally (2015-05-22 15:58:22 -0400)

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

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

John Snow (17):
  configure: require glib 2.22
  glib: remove stale compat functions
  libqos/ahci: Add halted command helpers
  libqos/ahci: Fix sector set method
  libqos: Add migration helpers
  ich9/ahci: Enable Migration
  qtest/ahci: Add migration test
  qtest/ahci: add migrate dma test
  qtest/ahci: add flush migrate test
  qtest/ahci: add halted dma test
  qtest/ahci: add migrate halted dma test
  qtest: allow arbitrarily long sends
  qtest: Add base64 encoded read/write
  qtest: add memset to qtest protocol
  libqos/ahci: Swap memread/write with bufread/write
  qtest: pre-buffer hex nibs
  ahci: do not remap clb/fis unconditionally

Mark Cave-Ayland (2):
  macio: move unaligned DMA read code into separate pmac_dma_read()
    function
  macio: move unaligned DMA write code into separate pmac_dma_write()
    function

 configure                  |   7 +-
 hw/ide/ahci.c              |  89 +++++---
 hw/ide/ich.c               |   1 -
 hw/ide/macio.c             | 499 ++++++++++++++++++++++++---------------------
 include/glib-compat.h      |  35 ----
 include/hw/ppc/mac_dbdma.h |   4 -
 qtest.c                    | 138 +++++++++++--
 tests/ahci-test.c          | 328 ++++++++++++++++++++++++++++-
 tests/libqos/ahci.c        |  38 +++-
 tests/libqos/ahci.h        |   3 +
 tests/libqos/libqos.c      |  85 ++++++++
 tests/libqos/libqos.h      |   2 +
 tests/libqos/malloc.c      |  74 +++++--
 tests/libqos/malloc.h      |   1 +
 tests/libqtest.c           |  47 ++++-
 tests/libqtest.h           |  49 +++++
 16 files changed, 1036 insertions(+), 364 deletions(-)

-- 
2.1.0

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

end of thread, other threads:[~2015-11-05 16:52 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-22 19:59 [Qemu-devel] [PULL 00/19] Ide patches John Snow
2015-05-22 19:59 ` [Qemu-devel] [PULL 01/19] configure: require glib 2.22 John Snow
2015-05-22 19:59 ` [Qemu-devel] [PULL 02/19] glib: remove stale compat functions John Snow
2015-05-22 19:59 ` [Qemu-devel] [PULL 03/19] libqos/ahci: Add halted command helpers John Snow
2015-05-22 19:59 ` [Qemu-devel] [PULL 04/19] libqos/ahci: Fix sector set method John Snow
2015-05-22 19:59 ` [Qemu-devel] [PULL 05/19] libqos: Add migration helpers John Snow
2015-05-22 19:59 ` [Qemu-devel] [PULL 06/19] ich9/ahci: Enable Migration John Snow
2015-05-22 19:59 ` [Qemu-devel] [PULL 07/19] qtest/ahci: Add migration test John Snow
2015-11-05 15:26   ` Peter Maydell
2015-11-05 16:52     ` John Snow
2015-05-22 19:59 ` [Qemu-devel] [PULL 08/19] qtest/ahci: add migrate dma test John Snow
2015-05-22 19:59 ` [Qemu-devel] [PULL 09/19] qtest/ahci: add flush migrate test John Snow
2015-05-22 19:59 ` [Qemu-devel] [PULL 10/19] qtest/ahci: add halted dma test John Snow
2015-05-22 19:59 ` [Qemu-devel] [PULL 11/19] qtest/ahci: add migrate " John Snow
2015-05-22 19:59 ` [Qemu-devel] [PULL 12/19] qtest: allow arbitrarily long sends John Snow
2015-05-22 19:59 ` [Qemu-devel] [PULL 13/19] qtest: Add base64 encoded read/write John Snow
2015-05-22 19:59 ` [Qemu-devel] [PULL 14/19] qtest: add memset to qtest protocol John Snow
2015-05-22 19:59 ` [Qemu-devel] [PULL 15/19] libqos/ahci: Swap memread/write with bufread/write John Snow
2015-05-22 19:59 ` [Qemu-devel] [PULL 16/19] qtest: pre-buffer hex nibs John Snow
2015-05-22 19:59 ` [Qemu-devel] [PULL 17/19] macio: move unaligned DMA read code into separate pmac_dma_read() function John Snow
2015-05-22 19:59 ` [Qemu-devel] [PULL 18/19] macio: move unaligned DMA write code into separate pmac_dma_write() function John Snow
2015-07-27 22:00   ` Aurelien Jarno
2015-07-28  8:52     ` Mark Cave-Ayland
2015-07-28 18:02       ` Aurelien Jarno
2015-08-01 11:21         ` Mark Cave-Ayland
2015-08-01 12:37           ` Aurelien Jarno
2015-08-01 16:09             ` Mark Cave-Ayland
2015-07-30 10:10       ` Kevin Wolf
2015-07-31 20:37       ` John Snow
2015-08-02 13:02         ` Mark Cave-Ayland
2015-05-22 19:59 ` [Qemu-devel] [PULL 19/19] ahci: do not remap clb/fis unconditionally John Snow
2015-05-26 11:54 ` [Qemu-devel] [PULL 00/19] Ide patches 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).