1. 17 8月, 2018 3 次提交
  2. 28 5月, 2018 3 次提交
  3. 10 1月, 2018 2 次提交
  4. 04 1月, 2018 2 次提交
  5. 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
  6. 18 10月, 2017 1 次提交
  7. 16 10月, 2017 4 次提交
  8. 18 9月, 2017 1 次提交
  9. 13 7月, 2017 1 次提交
  10. 19 4月, 2017 1 次提交
  11. 07 4月, 2017 3 次提交
  12. 27 3月, 2017 4 次提交
  13. 17 3月, 2017 2 次提交
  14. 14 3月, 2017 2 次提交
  15. 04 3月, 2017 1 次提交
  16. 24 2月, 2017 7 次提交
  17. 09 2月, 2017 2 次提交
    • M
      cpu: fix typo: rename __kvm_hv_spinlock to __kvm_hv_spinlocks · c3ee75e5
      Maxim Nestratov 提交于
      Strings associated with virDomainHyperv values in domain_conf.c are used to
      construct HyperV CPU features names to be compared with names defined in
      cpu_x86_data.h and the names for HyperV "spinlocks" feature don't match.
      This leads to a misleading warning:
      "host doesn't support hyperv 'spinlocks' feature" even when it's supported.
      Let's fix it and rename along with it VIR_CPU_x86_KVM_HV_SPINLOCK to
      VIR_CPU_x86_KVM_HV_SPINLOCKS.
      Signed-off-by: NMaxim Nestratov <mnestratov@virtuozzo.com>
      c3ee75e5
    • J
      cpu_x86: Fix memory leak in virCPUx86Translate · b97839b8
      Jiri Denemark 提交于
      virCPUDefStealModel is called with keepVendor == true which means the
      cpu structure will keep its original vendor/vendor_id values. Thus it
      makes no sense to copy them to the translated definition as they won't
      be used there anyway. Except that the translated->vendor pointer might
      get lost in x86Decode.
      Signed-off-by: NJiri Denemark <jdenemar@redhat.com>
      b97839b8