1. 16 6月, 2015 14 次提交
  2. 15 6月, 2015 24 次提交
  3. 13 6月, 2015 1 次提交
    • P
      Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging · 8aeaa055
      Peter Maydell 提交于
      # gpg: Signature made Fri Jun 12 15:57:47 2015 BST using RSA key ID 81AB73C8
      # gpg: Good signature from "Stefan Hajnoczi <stefanha@redhat.com>"
      # gpg:                 aka "Stefan Hajnoczi <stefanha@gmail.com>"
      
      * remotes/stefanha/tags/block-pull-request:
        qemu-iotests: expand test 093 to support group throttling
        throttle: Update throttle infrastructure copyright
        throttle: add the name of the ThrottleGroup to BlockDeviceInfo
        throttle: acquire the ThrottleGroup lock in bdrv_swap()
        throttle: Add throttle group support
        throttle: Add throttle group infrastructure tests
        throttle: Add throttle group infrastructure
        throttle: Extract timers from ThrottleState into a separate structure
        raw-posix: Fix .bdrv_co_get_block_status() for unaligned image size
        Revert "iothread: release iothread around aio_poll"
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      8aeaa055
  4. 12 6月, 2015 1 次提交
    • K
      block: Fix reopen flag inheritance · 67251a31
      Kevin Wolf 提交于
      When reopening an image, the block layer already takes care to reopen
      bs->file as well with recalculated inherited flags. The same must happen
      for any other child (most notably missing before this patch: backing
      files).
      
      If bs->file (or any other child) didn't originally inherit from bs, e.g.
      because it was created separately and then only referenced, it must not
      inherit flags on reopen either, so check the inherited_from field before
      propagation the reopen down.
      
      VMDK already reopened its extents manually; this code can now be
      dropped.
      Signed-off-by: NKevin Wolf <kwolf@redhat.com>
      Reviewed-by: NMax Reitz <mreitz@redhat.com>
      Reviewed-by: NEric Blake <eblake@redhat.com>
      67251a31