[Qemu-devel] [PATCH v2 0/3] migration: Call blk_resume_after_migration() for postcopy

Kevin Wolf posted 3 patches 7 years ago
Failed in applying to current master (apply log)
migration/savevm.c               |   8 +++
tests/qemu-iotests/028.out       |   2 +-
tests/qemu-iotests/051           |   3 +-
tests/qemu-iotests/051.out       | 106 +++++++++++++++----------------
tests/qemu-iotests/051.pc.out    | 132 +++++++++++++++++++--------------------
tests/qemu-iotests/068           |   4 +-
tests/qemu-iotests/068.out       |   6 +-
tests/qemu-iotests/130.out       |   4 +-
tests/qemu-iotests/142           |   2 +-
tests/qemu-iotests/142.out       |  10 +--
tests/qemu-iotests/145           |   3 +-
tests/qemu-iotests/145.out       |   2 +-
tests/qemu-iotests/181           | 119 +++++++++++++++++++++++++++++++++++
tests/qemu-iotests/181.out       |  38 +++++++++++
tests/qemu-iotests/common.filter |   7 +++
tests/qemu-iotests/common.qemu   |   4 +-
tests/qemu-iotests/group         |   1 +
17 files changed, 313 insertions(+), 138 deletions(-)
create mode 100755 tests/qemu-iotests/181
create mode 100644 tests/qemu-iotests/181.out
[Qemu-devel] [PATCH v2 0/3] migration: Call blk_resume_after_migration() for postcopy
Posted by Kevin Wolf 7 years ago
This fixes one of the bugs that made us disable the op blocker
assertions for the 2.9 release.

v2:
- Filter HMP output not only for common.qemu users, but for all test
  cases that had an escape character in their reference output. This
  required matching also lines that don't begin with the (qemu) prompt
  because other messages (from stderr) are interleaved. [Eric]
- Use bash $'\e' instead of sed \o for better portability [Eric]
- Added driver=$IMGFMT to test 181 [Eric]

Kevin Wolf (3):
  migration: Call blk_resume_after_migration() for postcopy
  qemu-iotests: Filter HMP readline escape characters
  qemu-iotests: Test postcopy migration

 migration/savevm.c               |   8 +++
 tests/qemu-iotests/028.out       |   2 +-
 tests/qemu-iotests/051           |   3 +-
 tests/qemu-iotests/051.out       | 106 +++++++++++++++----------------
 tests/qemu-iotests/051.pc.out    | 132 +++++++++++++++++++--------------------
 tests/qemu-iotests/068           |   4 +-
 tests/qemu-iotests/068.out       |   6 +-
 tests/qemu-iotests/130.out       |   4 +-
 tests/qemu-iotests/142           |   2 +-
 tests/qemu-iotests/142.out       |  10 +--
 tests/qemu-iotests/145           |   3 +-
 tests/qemu-iotests/145.out       |   2 +-
 tests/qemu-iotests/181           | 119 +++++++++++++++++++++++++++++++++++
 tests/qemu-iotests/181.out       |  38 +++++++++++
 tests/qemu-iotests/common.filter |   7 +++
 tests/qemu-iotests/common.qemu   |   4 +-
 tests/qemu-iotests/group         |   1 +
 17 files changed, 313 insertions(+), 138 deletions(-)
 create mode 100755 tests/qemu-iotests/181
 create mode 100644 tests/qemu-iotests/181.out

-- 
1.8.3.1


Re: [Qemu-devel] [PATCH v2 0/3] migration: Call blk_resume_after_migration() for postcopy
Posted by Stefan Hajnoczi 6 years, 11 months ago
On Wed, Apr 19, 2017 at 05:15:59PM +0200, Kevin Wolf wrote:
> This fixes one of the bugs that made us disable the op blocker
> assertions for the 2.9 release.
> 
> v2:
> - Filter HMP output not only for common.qemu users, but for all test
>   cases that had an escape character in their reference output. This
>   required matching also lines that don't begin with the (qemu) prompt
>   because other messages (from stderr) are interleaved. [Eric]
> - Use bash $'\e' instead of sed \o for better portability [Eric]
> - Added driver=$IMGFMT to test 181 [Eric]
> 
> Kevin Wolf (3):
>   migration: Call blk_resume_after_migration() for postcopy
>   qemu-iotests: Filter HMP readline escape characters
>   qemu-iotests: Test postcopy migration
> 
>  migration/savevm.c               |   8 +++
>  tests/qemu-iotests/028.out       |   2 +-
>  tests/qemu-iotests/051           |   3 +-
>  tests/qemu-iotests/051.out       | 106 +++++++++++++++----------------
>  tests/qemu-iotests/051.pc.out    | 132 +++++++++++++++++++--------------------
>  tests/qemu-iotests/068           |   4 +-
>  tests/qemu-iotests/068.out       |   6 +-
>  tests/qemu-iotests/130.out       |   4 +-
>  tests/qemu-iotests/142           |   2 +-
>  tests/qemu-iotests/142.out       |  10 +--
>  tests/qemu-iotests/145           |   3 +-
>  tests/qemu-iotests/145.out       |   2 +-
>  tests/qemu-iotests/181           | 119 +++++++++++++++++++++++++++++++++++
>  tests/qemu-iotests/181.out       |  38 +++++++++++
>  tests/qemu-iotests/common.filter |   7 +++
>  tests/qemu-iotests/common.qemu   |   4 +-
>  tests/qemu-iotests/group         |   1 +
>  17 files changed, 313 insertions(+), 138 deletions(-)
>  create mode 100755 tests/qemu-iotests/181
>  create mode 100644 tests/qemu-iotests/181.out
> 
> -- 
> 1.8.3.1
> 

Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>