1. 19 12月, 2012 2 次提交
  2. 18 10月, 2012 3 次提交
  3. 28 9月, 2012 1 次提交
  4. 20 7月, 2012 5 次提交
  5. 29 6月, 2012 1 次提交
  6. 15 3月, 2012 1 次提交
  7. 14 1月, 2012 1 次提交
  8. 15 12月, 2011 1 次提交
    • P
      block: bdrv_aio_* do not return NULL · ad54ae80
      Paolo Bonzini 提交于
      Initially done with the following semantic patch:
      
      @ rule1 @
      expression E;
      statement S;
      @@
        E =
      (
         bdrv_aio_readv
      |  bdrv_aio_writev
      |  bdrv_aio_flush
      |  bdrv_aio_discard
      |  bdrv_aio_ioctl
      )
           (...);
      (
      - if (E == NULL) { ... }
      |
      - if (E)
          { <... S ...> }
      )
      
      which however missed the occurrence in block/blkverify.c
      (as it should have done), and left behind some unused
      variables.
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      Signed-off-by: NKevin Wolf <kwolf@redhat.com>
      ad54ae80
  9. 05 12月, 2011 1 次提交
  10. 17 11月, 2011 1 次提交
  11. 20 10月, 2011 4 次提交
  12. 21 8月, 2011 1 次提交
  13. 24 6月, 2011 1 次提交
  14. 27 4月, 2011 1 次提交
    • A
      Improve accuracy of block migration bandwidth calculation · ff5c52a3
      Avishay Traeger 提交于
      block_mig_state.total_time is currently the sum of the read request
      latencies.  This is not very accurate because block migration uses aio and
      so several requests can be submitted at once.  Bandwidth should be computed
      with wall-clock time, not by adding the latencies.  In this case,
      "total_time" has a higher value than it should, and so the computed
      bandwidth is lower than it is in reality.  This means that migration can
      take longer than it needs to.
      However, we don't want to use pure wall-clock time here.  We are computing
      bandwidth in the asynchronous phase, where the migration repeatedly wakes
      up and sends some aio requests.  The computed bandwidth will be used for
      synchronous transfer.
      Signed-off-by: NAvishay Traeger <avishay@il.ibm.com>
      Reviewed-by: NMichael Roth <mdroth@linux.vnet.ibm.com>
      Signed-off-by: NKevin Wolf <kwolf@redhat.com>
      ff5c52a3
  15. 07 4月, 2011 1 次提交
  16. 07 2月, 2011 3 次提交
  17. 24 1月, 2011 2 次提交
  18. 25 11月, 2010 1 次提交
  19. 21 11月, 2010 1 次提交
  20. 03 8月, 2010 1 次提交
  21. 26 7月, 2010 1 次提交
  22. 13 7月, 2010 1 次提交
  23. 06 7月, 2010 2 次提交
  24. 23 4月, 2010 1 次提交
  25. 10 2月, 2010 2 次提交