1. 14 10月, 2016 2 次提交
  2. 12 10月, 2016 2 次提交
  3. 11 10月, 2016 1 次提交
  4. 06 10月, 2016 2 次提交
  5. 05 10月, 2016 1 次提交
  6. 04 10月, 2016 1 次提交
  7. 30 9月, 2016 1 次提交
  8. 28 9月, 2016 1 次提交
  9. 26 9月, 2016 8 次提交
  10. 23 9月, 2016 1 次提交
  11. 22 9月, 2016 3 次提交
  12. 21 9月, 2016 1 次提交
  13. 20 9月, 2016 1 次提交
  14. 16 9月, 2016 1 次提交
  15. 09 9月, 2016 2 次提交
  16. 03 9月, 2016 1 次提交
    • N
      qemu: Filter cur_balloon ABI check for certain transactions · c62e79c8
      Nikolay Shirokovskiy 提交于
      Since the domain lock is not held during preparation of an external XML
      config, it is possible that the value can change resulting in unexpected
      failures during ABI consistency checking for some save and migrate
      operations.
      
      This patch adds a new flag to skip the checking of the cur_balloon value
      and then sets the destination value to the source value to ensure
      subsequent checks without the skip flag will succeed.
      
      This way it is protected from forges and is keeped up to date too.
      Signed-off-by: NNikolay Shirokovskiy <nshirokovskiy@virtuozzo.com>
      c62e79c8
  17. 26 8月, 2016 2 次提交
  18. 25 8月, 2016 1 次提交
    • P
      conf: Add XML for individual vCPU hotplug · 5847bc5c
      Peter Krempa 提交于
      Individual vCPU hotplug requires us to track the state of any vCPU. To
      allow this add the following XML:
      
      <domain>
        ...
        <vcpu current='2'>3</vcpu>
        <vcpus>
          <vcpu id='0' enabled='yes' hotpluggable='no' order='1'/>
          <vcpu id='1' enabled='yes' hotpluggable='yes' order='2'/>
          <vcpu id='1' enabled='no' hotpluggable='yes'/>
        </vcpus>
        ...
      
      The 'enabled' attribute allows to control the state of the vcpu.
      'hotpluggable' controls whether given vcpu can be hotplugged and 'order'
      allows to specify the order to add the vcpus.
      5847bc5c
  19. 17 8月, 2016 1 次提交
  20. 16 8月, 2016 1 次提交
    • J
      conf: Provide error on undefined iothreadsched entry · 8c6b29e7
      John Ferlan 提交于
      When commit id '6dfb4507' refactored where the iothreadsched data was
      stored, the error message for when the virDomainIOThreadIDFind failed
      to find an iothreadid ("iothreadsched attribute 'iothreads' uses
      undefined iothread ids") was lost. This led to the possibility that
      someone would try to use it, but receive the generic message "An error
      occurred, but the cause is unknown".
      
      This patch adds the error message back so that someone will know that
      they have an invalid configuration.
      Signed-off-by: NJohn Ferlan <jferlan@redhat.com>
      8c6b29e7
  21. 05 8月, 2016 1 次提交
  22. 04 8月, 2016 2 次提交
    • M
      Introduce @secure attribute to os loader element · 64c24800
      Michal Privoznik 提交于
      This element will control secure boot implemented by some
      firmwares. If the firmware used in <loader/> does support the
      feature we must tell it to the underlying hypervisor. However, we
      can't know whether loader does support it or not just by looking
      at the file. Therefore we have to have an attribute to the
      element where users can tell us whether the firmware is secure
      boot enabled or not.
      Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
      64c24800
    • M
      Introduce SMM feature · d0e4be9d
      Michal Privoznik 提交于
      Since its release of 2.4.0 qemu is able to enable System
      Management Module in the firmware, or disable it. We should
      expose this capability in the XML. Unfortunately, there's no good
      way to determine whether the binary we are talking to supports
      it. I mean, if qemu's run with real machine type, the smm
      attribute can be seen in 'qom-list /machine' output. But it's not
      there when qemu's run with -M none. Therefore we're stuck with
      version based check.
      Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
      d0e4be9d
  23. 03 8月, 2016 1 次提交
    • J
      conf: Add IOThread quota and period scheduler/cputune defs · 2197ea56
      John Ferlan 提交于
      https://bugzilla.redhat.com/show_bug.cgi?id=1356937
      
      Add the definitions to allow for viewing/setting cgroup period and quota
      limits for IOThreads.
      
      This is similar to the work done for emulator quota and period by
      commit ids 'b65dafa8' and 'e051c482'.
      
      Being able to view/set the IOThread specific values is related to more
      recent changes adding global period (commmit id '4d92d58f') and global
      quota (commit id '55ecdae0') definitions and qemu support (commit id
      '4e17ff79' and 'fbcbd1b2'). With a global setting though, if somehow
      the IOThread value in the cgroup hierarchy was set "outside of libvirt"
      to a value that is incompatible with the global value.
      
      Allowing control over IOThread specific values provides the capability
      to alter the IOThread values as necessary.
      2197ea56
  24. 02 8月, 2016 2 次提交