1. 29 8月, 2017 19 次提交
  2. 28 8月, 2017 7 次提交
  3. 27 8月, 2017 4 次提交
  4. 26 8月, 2017 4 次提交
  5. 25 8月, 2017 3 次提交
  6. 24 8月, 2017 3 次提交
    • G
      libxl: Avoid a variable named 'stat' · 92b6c992
      George Dunlap 提交于
      Using a variable named 'stat' clashes with the system function
      'stat()' causing compiler warnings on some platforms:
      
      libxl/libxl_driver.c: In function 'libxlDomainBlockStatsVBD':
      libxl/libxl_driver.c:5387: error: declaration of 'stat' shadows a global declaration [-Wshadow]
      /usr/include/sys/stat.h:455: error: shadowed declaration is here [-Wshadow]
      Signed-off-by: NGeorge Dunlap <george.dunlap@citrix.com>
      Reviewed-by: NAndrea Bolognani <abologna@redhat.com>
      92b6c992
    • E
      maint: Update to latest gnulib · f8172388
      Erik Skultety 提交于
      This pulls in, among other new things, vc-list-files fix to make
      syntax-check work with git worktrees.
      Signed-off-by: NErik Skultety <eskultet@redhat.com>
      f8172388
    • J
      vmx: do not treat controllers as implicit devices · d9fc08d1
      Ján Tomko 提交于
      When parsing the config, we look for the SCSI controllers one by one,
      remembering their models, then let virDomainDefAddImplicitDevices
      add them if any SCSI disk is using them.
      
      Since these controllers are not really implicit (they are present
      in the source config), add them explicitly.
      
      This patch maintains the behavior of not adding a controller
      if it was present in the config, but no disk was using it.
      
      This also resolves the memory leak of virVMXParseConfig overwriting
      the video device added by calling virDomainDefAddImplicitDevices
      before the parsing is finished.
      Reported-by: NMichal Privoznik <mprivozn@redhat.com>
      d9fc08d1