From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53634) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bdDFy-00005w-UR for qemu-devel@nongnu.org; Fri, 26 Aug 2016 05:17:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bdDFs-0003rf-Tu for qemu-devel@nongnu.org; Fri, 26 Aug 2016 05:16:57 -0400 From: Reda Sallahi Date: Fri, 26 Aug 2016 11:16:36 +0200 Message-Id: <20160826091643.15841-1-fullmanet@gmail.com> Subject: [Qemu-devel] [PATCH v2 0/7] qemu-img dd List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-block@nongnu.org, Kevin Wolf , Max Reitz , Fam Zheng , Stefan Hajnoczi , Reda Sallahi Hi everyone, This patchset adds additional options to qemu-img dd. Depends on: [PATCH v5] qemu-img: change opening method for the output in dd Changes from v1: * Use for qemu_{timersub,gettimeofday} instead of timersub and gettimeofday. * Add skip= and seek= options for test case 167. * Put the common part in img_dd_iflag(), img_dd_oflag() and img_dd_conv() into a new function img_dd_flag(). Reda Sallahi (7): qemu-img: add seek option to dd qemu-img: add iflag and oflag options to dd qemu-img: add more conv= conversions to dd qemu-img: delete not used variable and an unecessary check qemu-img: add status option to dd qemu-img: clean up dd documentation qemu-img: add a test suite for the count option qemu-img-cmds.hx | 4 +- qemu-img.c | 400 +++++++++++++++++++++++++++++++++++++++------ qemu-img.texi | 69 +++++++- tests/qemu-iotests/159 | 2 +- tests/qemu-iotests/160 | 2 +- tests/qemu-iotests/161 | 73 +++++++++ tests/qemu-iotests/161.out | 51 ++++++ tests/qemu-iotests/163 | 103 ++++++++++++ tests/qemu-iotests/163.out | 135 +++++++++++++++ tests/qemu-iotests/164 | 100 ++++++++++++ tests/qemu-iotests/164.out | 75 +++++++++ tests/qemu-iotests/165 | 110 +++++++++++++ tests/qemu-iotests/165.out | 33 ++++ tests/qemu-iotests/166 | 73 +++++++++ tests/qemu-iotests/166.out | 19 +++ tests/qemu-iotests/167 | 77 +++++++++ tests/qemu-iotests/167.out | 17 ++ tests/qemu-iotests/168 | 75 +++++++++ tests/qemu-iotests/168.out | 51 ++++++ tests/qemu-iotests/group | 7 + 20 files changed, 1418 insertions(+), 58 deletions(-) create mode 100755 tests/qemu-iotests/161 create mode 100644 tests/qemu-iotests/161.out create mode 100755 tests/qemu-iotests/163 create mode 100644 tests/qemu-iotests/163.out create mode 100755 tests/qemu-iotests/164 create mode 100644 tests/qemu-iotests/164.out create mode 100755 tests/qemu-iotests/165 create mode 100644 tests/qemu-iotests/165.out create mode 100755 tests/qemu-iotests/166 create mode 100644 tests/qemu-iotests/166.out create mode 100755 tests/qemu-iotests/167 create mode 100644 tests/qemu-iotests/167.out create mode 100755 tests/qemu-iotests/168 create mode 100644 tests/qemu-iotests/168.out -- 2.9.3