1. 12 4月, 2017 10 次提交
  2. 06 4月, 2017 1 次提交
  3. 05 4月, 2017 1 次提交
  4. 28 3月, 2017 4 次提交
  5. 27 3月, 2017 4 次提交
  6. 25 3月, 2017 1 次提交
  7. 12 3月, 2017 1 次提交
    • R
      virt-host-validate: add bhyve support · 321ff408
      Roman Bogorodskiy 提交于
      Add bhyve support to virt-host-validate(1). It checks for the
      essential kernel modules to be available so that user can actually
      start VMs, have networking and console access.
      
      It uses the kldnext(2)/kldstat(2) routines to retrieve modules list.
      As bhyve is only available on FreeBSD and these routines were available
      long before bhyve appeared, not adding any specific configure checks
      for that.
      
      Also, update tools/Makefile.am to add
      virt-host-validate-$driver.[hc] to the build only if the
      appropriate driver is enabled.
      321ff408
  8. 08 3月, 2017 9 次提交
  9. 07 3月, 2017 1 次提交
  10. 23 2月, 2017 2 次提交
    • D
      Add ATTRIBUTE_FALLTHROUGH for switch cases without break · 5d84f596
      Daniel P. Berrange 提交于
      In GCC 7 there is a new warning triggered when a switch
      case has a conditional statement (eg if ... else...) and
      some of the code paths fallthrough to the next switch
      statement. e.g.
      
      conf/domain_conf.c: In function 'virDomainChrEquals':
      conf/domain_conf.c:14926:12: error: this statement may fall through [-Werror=implicit-fallthrough=]
               if (src->targetTypeAttr != tgt->targetTypeAttr)
                  ^
      conf/domain_conf.c:14928:5: note: here
           case VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE:
           ^~~~
      conf/domain_conf.c: In function 'virDomainChrDefFormat':
      conf/domain_conf.c:22143:12: error: this statement may fall through [-Werror=implicit-fallthrough=]
               if (def->targetTypeAttr) {
                  ^
      conf/domain_conf.c:22151:5: note: here
           default:
           ^~~~~~~
      
      GCC introduced a __attribute__((fallthrough)) to let you
      indicate that this is intentionale behaviour rather than
      a bug.
      Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
      5d84f596
    • J
      virsh: Alter formatting a bit for output of domstats fields · ff029e44
      John Ferlan 提交于
      Alter the formatting of each line to not give the appearance of
      one long run-on sentence and to be consistent between the various
      elements of collected/displayed data. The formatting should fit
      within the 80 character display. This removes the need for commas
      at the end of each line.
      ff029e44
  11. 21 2月, 2017 1 次提交
  12. 17 2月, 2017 1 次提交
    • M
      nodedev: Introduce new drm cap · 78c01869
      Michal Privoznik 提交于
      After 7f1bdec5 our nodedev driver is capable of
      determining DRM devices (DRM stands for Direct Render Manager not
      Digital rights management). There is still one bit missing
      though: virConnectListAllNodeDevices() is capable of listing
      either all devices or just those with specified capability. Well,
      DRM capability is missing there.
      Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
      78c01869
  13. 30 1月, 2017 2 次提交
  14. 27 1月, 2017 2 次提交