1. 06 1月, 2012 1 次提交
  2. 22 12月, 2011 5 次提交
  3. 11 11月, 2011 6 次提交
  4. 19 9月, 2011 1 次提交
  5. 09 9月, 2011 1 次提交
  6. 21 8月, 2011 1 次提交
  7. 14 6月, 2011 1 次提交
  8. 08 6月, 2011 1 次提交
  9. 17 12月, 2010 1 次提交
  10. 21 9月, 2010 2 次提交
  11. 04 9月, 2010 2 次提交
  12. 31 8月, 2010 1 次提交
    • L
      nbd: Introduce NBD named exports. · 1d45f8b5
      Laurent Vivier 提交于
      This patch allows to connect Qemu using NBD protocol to an nbd-server
      using named exports.
      
      For instance, if on the host "isoserver", in /etc/nbd-server/config, you have:
      
      [generic]
      [debian-500-ppc-netinst]
              exportname = /ISO/debian-500-powerpc-netinst.iso
      [Fedora-10-ppc-netinst]
              exportname = /ISO/Fedora-10-ppc-netinst.iso
      
      You can connect to it, using:
      
          qemu -cdrom nbd:isoserver:exportname=debian-500-ppc-netinst
          qemu -cdrom nbd:isoserver:exportname=Fedora-10-ppc-netinst
      
      NOTE: you need at least nbd-server 2.9.18
      Signed-off-by: NLaurent Vivier <laurent@vivier.eu>
      Signed-off-by: NKevin Wolf <kwolf@redhat.com>
      1d45f8b5
  13. 17 5月, 2010 1 次提交
  14. 23 4月, 2010 1 次提交
    • K
      Replace calls of old bdrv_open · d6e9098e
      Kevin Wolf 提交于
      What is known today as bdrv_open2 becomes the new bdrv_open. All remaining
      callers of the old function are converted to the new one. In some places they
      even know the right format, so they should have used bdrv_open2 from the
      beginning.
      Signed-off-by: NKevin Wolf <kwolf@redhat.com>
      d6e9098e
  15. 27 3月, 2010 2 次提交
  16. 18 3月, 2010 1 次提交
  17. 27 1月, 2010 1 次提交
  18. 20 1月, 2010 1 次提交
  19. 23 12月, 2009 2 次提交
  20. 01 8月, 2009 1 次提交
  21. 17 7月, 2009 1 次提交
  22. 16 6月, 2009 1 次提交
  23. 06 2月, 2009 1 次提交
  24. 09 1月, 2009 1 次提交
  25. 05 1月, 2009 1 次提交
  26. 26 10月, 2008 1 次提交
  27. 14 10月, 2008 1 次提交
    • A
      Expand cache= option and use write-through caching by default · 9f7965c7
      aliguori 提交于
      This patch changes the cache= option to accept none, writeback, or writethough
      to control the host page cache behavior.  By default, writethrough caching is
      now used which internally is implemented by using O_DSYNC to open the disk
      images.  When using -snapshot, writeback is used by default since data integrity
      it not at all an issue.
      
      cache=none has the same behavior as cache=off previously.  The later syntax is
      still supported by now deprecated.  I also cleaned up the O_DIRECT
      implementation to avoid many of the #ifdefs.
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5485 c046a42c-6fe2-441c-8c8c-71466251a162
      9f7965c7