1. 24 7月, 2017 2 次提交
  2. 22 7月, 2017 2 次提交
  3. 21 7月, 2017 4 次提交
  4. 20 7月, 2017 6 次提交
  5. 19 7月, 2017 6 次提交
  6. 18 7月, 2017 2 次提交
  7. 17 7月, 2017 1 次提交
  8. 15 7月, 2017 8 次提交
  9. 14 7月, 2017 1 次提交
  10. 13 7月, 2017 3 次提交
    • D
      tests: add virjsondata to EXTRA_DIST · 14c5673d
      Daniel P. Berrange 提交于
      Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
      14c5673d
    • J
      cpu_x86: Properly disable unknown CPU features · 83e081b8
      Jiri Denemark 提交于
      CPU features unknown to a hypervisor will not be present in dataDisabled
      even though the features won't naturally be enabled because.
      Thus any features we asked for which are not in dataEnabled should be
      considered disabled.
      Signed-off-by: NJiri Denemark <jdenemar@redhat.com>
      83e081b8
    • J
      Avoid hidden cgroup mount points · dacd160d
      Juan Hernandez 提交于
      Currently the scan of the /proc/mounts file used to find cgroup mount
      points doesn't take into account that mount points may hidden by other
      mount points. For, example in certain Kubernetes environments the
      /proc/mounts contains the following lines:
      
        cgroup /sys/fs/cgroup/net_prio,net_cls cgroup ...
        tmpfs /sys/fs/cgroup tmpfs ...
        cgroup /sys/fs/cgroup/net_cls,net_prio cgroup ...
      
      In this particular environment the first mount point is hidden by the
      second one. The correct mount point is the third one, but libvirt will
      never process it because it only checks the first mount point for each
      controller (net_cls in this case). So libvirt will try to use the first
      mount point, which doesn't actually exist, and the complete detection
      process will fail.
      
      To avoid that issue this patch changes the virCgroupDetectMountsFromFile
      function so that when there are duplicates it takes the information from
      the last line in /proc/mounts. This requires removing the previous
      explicit condition to skip duplicates, and adding code to free the
      memory used by the processing of duplicated lines.
      
      Related-To: https://bugzilla.redhat.com/1468214
      Related-To: https://github.com/kubevirt/libvirt/issues/4Signed-off-by: NJuan Hernandez <jhernand@redhat.com>
      dacd160d
  11. 11 7月, 2017 5 次提交