qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/22] Migration queue
@ 2014-06-24 13:09 Juan Quintela
  2014-06-24 13:09 ` [Qemu-devel] [PULL 01/22] rdma: bug fixes Juan Quintela
                   ` (22 more replies)
  0 siblings, 23 replies; 24+ messages in thread
From: Juan Quintela @ 2014-06-24 13:09 UTC (permalink / raw)
  To: qemu-devel

Hi

Peter, please pull:


- RDMA bugfixes (Michael)
- Static checker from Amit (v5)
- acked patches from vmstate (thanks Dave)

Later, Juan.


The following changes since commit d9c1647d896d3192cba9dbf98fb7efab876edde5:

  Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2014-06-23 12:55:22 +0100)

are available in the git repository at:


  git://github.com/juanquintela/qemu.git tags/migration/20140623

for you to fetch changes up to 4ea7df4e5c6b9d8b8a474680d6b1687fc8eacbac:

  vmstate: Refactor & increase tests for primitive types (2014-06-23 19:14:52 +0200)

----------------------------------------------------------------
migration/next for 20140623

----------------------------------------------------------------
Amit Shah (18):
      migration: dump vmstate info as a json file for static analysis
      vmstate-static-checker: script to validate vmstate changes
      tests: vmstate static checker: add dump1 and dump2 files
      tests: vmstate static checker: incompat machine types
      tests: vmstate static checker: add version error in main section
      tests: vmstate static checker: version mismatch inside a Description
      tests: vmstate static checker: minimum_version_id check
      tests: vmstate static checker: remove a section
      tests: vmstate static checker: remove a field
      tests: vmstate static checker: remove last field in a struct
      tests: vmstate static checker: change description name
      tests: vmstate static checker: remove Fields
      tests: vmstate static checker: remove Description
      tests: vmstate static checker: remove Description inside Fields
      tests: vmstate static checker: remove a subsection
      tests: vmstate static checker: remove Subsections
      tests: vmstate static checker: add substructure for usb-kbd for hid section
      tests: vmstate static checker: add size mismatch inside substructure

Juan Quintela (3):
      migration: Remove unneeded minimum_version_id_old
      vmstate: Return error in case of error
      vmstate: Refactor & increase tests for primitive types

Michael R. Hines (1):
      rdma: bug fixes

 hw/usb/hcd-ohci.c                            |    7 +-
 include/migration/vmstate.h                  |    2 +
 migration-rdma.c                             |   20 +-
 qemu-options.hx                              |   14 +
 savevm.c                                     |  139 +++
 scripts/vmstate-static-checker.py            |  345 ++++++++
 tests/test-vmstate.c                         |  273 ++++--
 tests/vmstate-static-checker-data/dump1.json | 1163 ++++++++++++++++++++++++++
 tests/vmstate-static-checker-data/dump2.json |  968 +++++++++++++++++++++
 vl.c                                         |   13 +
 vmstate.c                                    |    4 +
 11 files changed, 2872 insertions(+), 76 deletions(-)
 create mode 100755 scripts/vmstate-static-checker.py
 create mode 100644 tests/vmstate-static-checker-data/dump1.json
 create mode 100644 tests/vmstate-static-checker-data/dump2.json

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

end of thread, other threads:[~2014-06-24 15:11 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-24 13:09 [Qemu-devel] [PULL 00/22] Migration queue Juan Quintela
2014-06-24 13:09 ` [Qemu-devel] [PULL 01/22] rdma: bug fixes Juan Quintela
2014-06-24 13:09 ` [Qemu-devel] [PULL 02/22] migration: dump vmstate info as a json file for static analysis Juan Quintela
2014-06-24 13:09 ` [Qemu-devel] [PULL 03/22] vmstate-static-checker: script to validate vmstate changes Juan Quintela
2014-06-24 13:09 ` [Qemu-devel] [PULL 04/22] tests: vmstate static checker: add dump1 and dump2 files Juan Quintela
2014-06-24 13:09 ` [Qemu-devel] [PULL 05/22] tests: vmstate static checker: incompat machine types Juan Quintela
2014-06-24 13:09 ` [Qemu-devel] [PULL 06/22] tests: vmstate static checker: add version error in main section Juan Quintela
2014-06-24 13:09 ` [Qemu-devel] [PULL 07/22] tests: vmstate static checker: version mismatch inside a Description Juan Quintela
2014-06-24 13:09 ` [Qemu-devel] [PULL 08/22] tests: vmstate static checker: minimum_version_id check Juan Quintela
2014-06-24 13:09 ` [Qemu-devel] [PULL 09/22] tests: vmstate static checker: remove a section Juan Quintela
2014-06-24 13:10 ` [Qemu-devel] [PULL 10/22] tests: vmstate static checker: remove a field Juan Quintela
2014-06-24 13:10 ` [Qemu-devel] [PULL 11/22] tests: vmstate static checker: remove last field in a struct Juan Quintela
2014-06-24 13:10 ` [Qemu-devel] [PULL 12/22] tests: vmstate static checker: change description name Juan Quintela
2014-06-24 13:10 ` [Qemu-devel] [PULL 13/22] tests: vmstate static checker: remove Fields Juan Quintela
2014-06-24 13:10 ` [Qemu-devel] [PULL 14/22] tests: vmstate static checker: remove Description Juan Quintela
2014-06-24 13:10 ` [Qemu-devel] [PULL 15/22] tests: vmstate static checker: remove Description inside Fields Juan Quintela
2014-06-24 13:10 ` [Qemu-devel] [PULL 16/22] tests: vmstate static checker: remove a subsection Juan Quintela
2014-06-24 13:10 ` [Qemu-devel] [PULL 17/22] tests: vmstate static checker: remove Subsections Juan Quintela
2014-06-24 13:10 ` [Qemu-devel] [PULL 18/22] tests: vmstate static checker: add substructure for usb-kbd for hid section Juan Quintela
2014-06-24 13:10 ` [Qemu-devel] [PULL 19/22] tests: vmstate static checker: add size mismatch inside substructure Juan Quintela
2014-06-24 13:10 ` [Qemu-devel] [PULL 20/22] migration: Remove unneeded minimum_version_id_old Juan Quintela
2014-06-24 13:10 ` [Qemu-devel] [PULL 21/22] vmstate: Return error in case of error Juan Quintela
2014-06-24 13:10 ` [Qemu-devel] [PULL 22/22] vmstate: Refactor & increase tests for primitive types Juan Quintela
2014-06-24 15:10 ` [Qemu-devel] [PULL 00/22] Migration queue 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).