1. 27 5月, 2010 1 次提交
    • A
      Add cache=unsafe parameter to -drive · 016f5cf6
      Alexander Graf 提交于
      Usually the guest can tell the host to flush data to disk. In some cases we
      don't want to flush though, but try to keep everything in cache.
      
      So let's add a new cache value to -drive that allows us to set the cache
      policy to most aggressive, disabling flushes. We call this mode "unsafe",
      as guest data is not guaranteed to survive host crashes anymore.
      
      This patch also adds a noop function for aio, so we can do nothing in AIO
      fashion.
      Signed-off-by: NAlexander Graf <agraf@suse.de>
      Signed-off-by: NAurelien Jarno <aurelien@aurel32.net>
      016f5cf6
  2. 25 5月, 2010 1 次提交
  3. 19 5月, 2010 2 次提交
  4. 05 5月, 2010 1 次提交
  5. 04 5月, 2010 4 次提交
  6. 02 5月, 2010 1 次提交
  7. 27 4月, 2010 3 次提交
  8. 23 4月, 2010 3 次提交
  9. 20 4月, 2010 1 次提交
  10. 19 4月, 2010 1 次提交
  11. 13 4月, 2010 1 次提交
  12. 10 4月, 2010 5 次提交
  13. 08 4月, 2010 1 次提交
  14. 31 3月, 2010 1 次提交
  15. 30 3月, 2010 5 次提交
  16. 28 3月, 2010 2 次提交
  17. 27 3月, 2010 1 次提交
  18. 22 3月, 2010 4 次提交
  19. 20 3月, 2010 2 次提交
    • B
      Fix mingw32 build · 9b164805
      Blue Swirl 提交于
      mkdir() only takes path argument on mingw32:
      
        CC    i386-softmmu/vl.o
      /src/qemu/vl.c: In function 'qmp_add_default':
      /src/qemu/vl.c:3763: error: too many arguments to function 'mkdir'
      /src/qemu/vl.c:3769: error: too many arguments to function 'mkdir'
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      9b164805
    • A
      Introduce a default qmp session · 3290c4aa
      Anthony Liguori 提交于
      Basically, -qmp unix:%{home}/.qemu/qmp/%{uuid}.sock,server,nowait
      
      %{uuid} will be -uuid if it's specified, otherwise, if libuuid is available,
      we generate a uuid.  If it's not available, we don't create one.
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      3290c4aa