1. 13 6月, 2016 4 次提交
  2. 12 6月, 2016 5 次提交
  3. 11 6月, 2016 8 次提交
  4. 10 6月, 2016 20 次提交
  5. 09 6月, 2016 3 次提交
    • M
      qemu: Yet another check for blkdeviotune values · 5f4c50d5
      Martin Kletzander 提交于
      If you want to set block device I/O tuning values that end with '_max'
      and there is nothing else set, libvirt emits an error.  In particular:
      
        error: internal error: Unexpected error
      
      That's an unknown error.  That is because *_max values depend on their
      respective non-_max values.  QEMU even says that in the error message
      sent as a response to the monitor command:
      
        "error": {"class": "GenericError", "desc": "bps_max/iops_max require
        corresponding bps/iops values"}
      
      the problem was that we didn't know that and there was no check for it.
      Adding such check makes sure that there will be less confused users.
      Signed-off-by: NMartin Kletzander <mkletzan@redhat.com>
      5f4c50d5
    • P
      vnc: add support for listen type none · 93a2fb23
      Pavel Hrdina 提交于
      Signed-off-by: NPavel Hrdina <phrdina@redhat.com>
      93a2fb23
    • P
      spice: introduce listen type none · c34ada09
      Pavel Hrdina 提交于
      This new listen type is currently supported only by spice graphics.
      It's introduced to make it easier and clearer specify to not listen
      anywhere in order to start a guest with OpenGL support.
      
      The old way to do this was set spice graphics autoport='no' and don't
      specify any ports.  The new way is to use <listen type='none'/>.  In
      order to be able to migrate to old libvirt the migratable XML will be
      generated without the listen element and with autoport='no'.  Also the
      old configuration will be automatically converted to the this listen
      type.
      Signed-off-by: NPavel Hrdina <phrdina@redhat.com>
      c34ada09