1. 06 9月, 2013 5 次提交
  2. 06 8月, 2013 2 次提交
  3. 15 7月, 2013 1 次提交
  4. 22 6月, 2013 1 次提交
  5. 07 6月, 2013 2 次提交
  6. 06 6月, 2013 1 次提交
  7. 04 6月, 2013 2 次提交
  8. 22 4月, 2013 1 次提交
  9. 15 3月, 2013 1 次提交
  10. 23 2月, 2013 6 次提交
  11. 02 1月, 2013 1 次提交
    • L
      qemu-img: report size overflow error message · 79443397
      liguang 提交于
      qemu-img will complain when qcow or qcow2
      size overflow for 64 bits, report the right
      message in this condition.
      
      $./qemu-img create -f qcow2 /tmp/foo 0x10000000000000000
      before change:
      qemu-img: Invalid image size specified! You may use k, M, G or T suffixes for
      qemu-img: kilobytes, megabytes, gigabytes and terabytes.
      
      after change:
      qemu-img: Image size must be less than 8 EiB!
      
      [Resolved conflict with a9300911 goto removal -- Stefan]
      Signed-off-by: Nliguang <lig.fnst@cn.fujitsu.com>
      Signed-off-by: NStefan Hajnoczi <stefanha@redhat.com>
      79443397
  12. 19 12月, 2012 4 次提交
  13. 11 12月, 2012 4 次提交
  14. 06 11月, 2012 1 次提交
  15. 24 10月, 2012 3 次提交
  16. 14 9月, 2012 1 次提交
  17. 12 9月, 2012 2 次提交
  18. 10 8月, 2012 1 次提交
    • S
      block: add BLOCK_O_CHECK for qemu-img check · 058f8f16
      Stefan Hajnoczi 提交于
      Image formats with a dirty bit, like qed and qcow2, repair dirty image
      files upon open with BDRV_O_RDWR.  Performing automatic repair when
      qemu-img check runs is not ideal because the bdrv_open() call repairs
      the image before the actual bdrv_check() call from qemu-img.c.
      
      Fix this "double repair" since it leads to confusing output from
      qemu-img check.  Tell the block driver that this image is being opened
      just for bdrv_check().  This skips automatic repair and qemu-img.c can
      invoke it manually with bdrv_check().
      
      Update the golden output for qemu-iotests 039 to reflect the new
      qemu-img check output.
      Signed-off-by: NStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
      Signed-off-by: NKevin Wolf <kwolf@redhat.com>
      058f8f16
  19. 07 8月, 2012 1 次提交