1. 15 10月, 2015 4 次提交
    • A
      NEWS: Fix indentation · ccc96976
      Andrea Bolognani 提交于
      Some of the paragraphs were not properly indented: while this was
      not a problem in the HTML version, you could tell the difference
      in the plain text version.
      ccc96976
    • A
      NEWS: Fix newlines · a7a0eb53
      Andrea Bolognani 提交于
      Some <br/> tags were missing from the end of the corresponding
      line, some of there were in the middle of the line instead.
      a7a0eb53
    • A
      NEWS: Fix whitespace · 7b45172a
      Andrea Bolognani 提交于
      Mostly missing space between change description and author name or
      spurious space before section title.
      
      Reflow the introductory paragraph as well.
      7b45172a
    • A
      NEWS: Organize old entries · 348bb337
      Andrea Bolognani 提交于
      Sort all items into the standard categories: Features, Bug Fixes,
      Improvements, Cleanups, etc.
      
      The sorting is somewhat arbitrary in certain instances.
      348bb337
  2. 14 10月, 2015 16 次提交
  3. 13 10月, 2015 1 次提交
    • D
      virt-host-validate: check for IOMMU support · 9139b46a
      Daniel P. Berrange 提交于
      This looks for existance of DMAR (Intel) and IVRS (AMD)
      files under /sys/firmware/acpi/tables/, as a sign that
      the platform has IOMMU present & enabled in the BIOS.
      
      If these are present and /sys/kernel/iommu_groups does
      not contain any entries this is taken as a sign that
      the kernel has not enabled the IOMMU currently.
      
      If no ACPI tables are found we can't distinguish between
      disabled in BIOS and not present in the hardware, so we
      have to give the user a generic hint.
      Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
      9139b46a
  4. 12 10月, 2015 18 次提交
  5. 09 10月, 2015 1 次提交
    • M
      virJSONValueArraySize: return ssize_t · 4f77c48c
      Michal Privoznik 提交于
      The internal representation of a JSON array counts the items in
      size_t. However, for some reason, when asking for the count it's
      reported as int. Firstly, we need the function to return a signed
      type as it's returning -1 on an error. But, not every system has
      integer the same size as size_t. Therefore, lets return ssize_t.
      Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
      4f77c48c