1. 08 2月, 2016 1 次提交
  2. 04 2月, 2016 1 次提交
  3. 26 1月, 2016 1 次提交
  4. 11 1月, 2016 1 次提交
  5. 24 12月, 2015 4 次提交
  6. 09 12月, 2015 5 次提交
  7. 30 11月, 2015 1 次提交
    • M
      conf: Split virDomainObjList into a separate file · 90f3c0d7
      Michal Privoznik 提交于
      Our domain_conf.* files are big enough. Not only they contain XML
      parsing code, but they served as a storage of all functions whose
      name is virDomain prefixed. This is just wrong as it gathers not
      related functions (and modules) into one big file which is then
      harder to maintain. Split virDomainObjList module into a separate
      file called virdomainobjlist.[ch].
      Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
      90f3c0d7
  8. 27 11月, 2015 1 次提交
  9. 24 11月, 2015 1 次提交
  10. 19 11月, 2015 2 次提交
  11. 10 11月, 2015 1 次提交
  12. 21 10月, 2015 1 次提交
  13. 20 10月, 2015 3 次提交
  14. 15 10月, 2015 1 次提交
  15. 08 10月, 2015 1 次提交
  16. 06 10月, 2015 2 次提交
  17. 22 9月, 2015 2 次提交
  18. 21 9月, 2015 1 次提交
    • M
      vz: remove error logging from prlsdkUUIDParse · 91c8e75f
      Maxim Nestratov 提交于
      As far as not every call of prlsdkUUIDParse assume correct UUID
      supplied, there is no use to complain about wrong format in it.
      Otherwise our log is flooded with false error messages.
      For instance, calling prlsdkUUIDParse from prlsdkEventsHandler
      works as a filter and in case of uuid absence for event issuer,
      we simply know that we shouldn't continue further processing.
      Instead of error logging for all calls we should explicitly take
      into accaunt where it is called from.
      Signed-off-by: NMaxim Nestratov <mnestratov@virtuozzo.com>
      Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
      91c8e75f
  19. 14 7月, 2015 4 次提交
  20. 10 7月, 2015 1 次提交
  21. 08 7月, 2015 3 次提交
  22. 07 7月, 2015 1 次提交
    • M
      vz: assign static IPs and default gateways for network adapter · beddef39
      Mikhail Feoktistov 提交于
      We support only one IPv4 and one IPv6 default gateway.
      If static IPs are not present in instance config,
      then we switch on DHCP for this adapter.
      PrlVmDevNet_SetAutoApply to makes necessary settings within guest OS
      In linux case it creates network startup scripts
      /etc/sysconfig/network-scripts/ifcfg-ethN and fills it with necessary
      parameters.
      beddef39
  23. 06 7月, 2015 1 次提交
    • D
      vz: fix building capabilities · 651426e9
      Dmitry Guryanov 提交于
      There should be at least one domain for each guest
      in cababilities. And in current code we don't add
      domain for this guest for example.
      
          if ((guest = virCapabilitiesAddGuest(caps, VIR_DOMAIN_OSTYPE_HVM,
                                               VIR_ARCH_X86_64,
                                               "vz",
                                               NULL, 0, NULL)) == NULL)
      
      Anyway, with two virt types it looks a litte messy, so let's
      move adding guest and domain to a separate function.
      Signed-off-by: NDmitry Guryanov <dguryanov@parallels.com>
      651426e9