1. 26 2月, 2018 1 次提交
  2. 09 2月, 2018 1 次提交
  3. 28 11月, 2017 1 次提交
    • A
      conf: Drop virDomainChrDeviceType.targetTypeAttr · 4fb8ff99
      Andrea Bolognani 提交于
      This attribute was used to decide whether to format the type
      attribute of the <target> element, but the logic didn't take into
      account all possible cases and as such could lead to unexpected
      results. Moreover, it's one more thing to keep track of, and can
      easily fall out of sync with other attributes.
      
      Now that we have VIR_DOMAIN_CHR_SERIAL_TARGET_TYPE_NONE, we can
      use that value to signal that no specific target type has been
      configured for the serial device and as such the attribute should
      not be formatted at all. All other values are now formatted.
      Signed-off-by: NAndrea Bolognani <abologna@redhat.com>
      Reviewed-by: NPavel Hrdina <phrdina@redhat.com>
      4fb8ff99
  4. 03 11月, 2017 1 次提交
    • A
      Remove backslash alignment attempts · 3e7db8d3
      Andrea Bolognani 提交于
      Right-aligning backslashes when defining macros or using complex
      commands in Makefiles looks cute, but as soon as any changes is
      required to the code you end up with either distractingly broken
      alignment or unnecessarily big diffs where most of the changes
      are just pushing all backslashes a few characters to one side.
      
      Generated using
      
        $ git grep -El '[[:blank:]][[:blank:]]\\$' | \
          grep -E '*\.([chx]|am|mk)$$' | \
          while read f; do \
            sed -Ei 's/[[:blank:]]*[[:blank:]]\\$/ \\/g' "$f"; \
          done
      Signed-off-by: NAndrea Bolognani <abologna@redhat.com>
      3e7db8d3
  5. 19 10月, 2017 2 次提交
  6. 18 10月, 2017 1 次提交
  7. 14 10月, 2017 1 次提交
  8. 27 8月, 2017 1 次提交
  9. 23 8月, 2017 1 次提交
    • N
      vz: support disabled items in vz boot order · f3cdbf22
      Nikolay Shirokovskiy 提交于
      At the time the check was written virtuozzo did not use disabled items in boot
      order configuration. Boot items were always enabled. Now they can be disabled
      as well. Supporting such items is easy - they just should be ignored.
      f3cdbf22
  10. 14 8月, 2017 1 次提交
  11. 11 7月, 2017 1 次提交
  12. 29 6月, 2017 1 次提交
  13. 24 5月, 2017 2 次提交
  14. 23 5月, 2017 1 次提交
  15. 18 4月, 2017 2 次提交
  16. 27 3月, 2017 1 次提交
    • M
      Remove src/nodeinfo · 26ae4e48
      Martin Kletzander 提交于
      There is no "node driver" as there was before, drivers have to do
      their own ACL checking anyway, so they all specify their functions and
      nodeinfo is basically just extending conf/capablities.  Hence moving
      the code to src/conf/ is the right way to go.
      
      Also that way we can de-duplicate some code that is in virsysfs and/or
      virhostcpu that got duplicated during the virhostcpu.c split.  And
      Some cleanup is done throughout the changes, like adding the vir*
      prefix etc.
      Signed-off-by: NMartin Kletzander <mkletzan@redhat.com>
      26ae4e48
  17. 23 2月, 2017 1 次提交
  18. 09 2月, 2017 3 次提交
  19. 31 1月, 2017 5 次提交
  20. 23 12月, 2016 5 次提交
  21. 09 12月, 2016 1 次提交
  22. 25 11月, 2016 2 次提交
  23. 27 10月, 2016 1 次提交
  24. 22 10月, 2016 1 次提交
  25. 21 10月, 2016 2 次提交
    • N
      vz: set something in disk driver name · bdaf5e80
      Nikolay Shirokovskiy 提交于
      Absent driver name attribute is invalid xml. Which in turn makes
      unusable 'virsh edit' for example. The value does not make
      much sense and ignored on input so nobody will hurt.
      bdaf5e80
    • N
      vz: add serial number to disk devices · d6e3af62
      Nikolay Shirokovskiy 提交于
      vz sdk supports setting serial number only for disk devices.
      Getting serial upon cdrom(for example) is error however
      setting is just ignored. Let's check for disk device
      explicitly for clarity in both cases.
      
      Setting serial number for other devices is ignored
      with an info note just as before.
      
      We need usual conversion from "" to NULL in direction
      vz sdk -> libvirt, because "" is not valid for libvirt
      and "" means unspecifiend in vz sdk which is NULL for libvirt.
      d6e3af62