1. 11 7月, 2016 30 次提交
  2. 09 7月, 2016 4 次提交
  3. 08 7月, 2016 2 次提交
  4. 07 7月, 2016 4 次提交
    • D
      virtlogd: increase max file size to 2 MB · 8f390596
      Daniel P. Berrange 提交于
      People debugging guest OS boot processes and reported that
      the default 128 KB size is too small to capture an entire
      boot up sequence. Increase the default size to 2 MB which
      should allow capturing a full boot up even with verbose
      debugging.
      Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
      8f390596
    • D
      virtlogd: make max file size & number of backups configurable · 24aacfa8
      Daniel P. Berrange 提交于
      Currently virtlogd has a hardcoded max file size of 128kb
      and max of 3 backups. This adds two new config parameters
      to /etc/libvirt/virtlogd.conf to let these be customized.
      Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
      24aacfa8
    • P
      qemu: caps: Always assume QEMU_CAPS_SMP_TOPOLOGY · e114b091
      Peter Krempa 提交于
      Support for SMP topology was added by qemu commit dc6b1c09849484fbbc50
      prior to 0.12.0, our minimum supported qemu version.
      
      $ git describe --tags dc6b1c09849484fbbc50803307e4c7a3d81eab62
      v0.11.0-rc0-449-gdc6b1c0
      $ git describe --tags --contains dc6b1c09849484fbbc50803307e4c7a3d81eab
      v0.12.0-rc0~1477
      e114b091
    • M
      virDomainHostdevDefFree: Don't leak privateData · 6fcffcb1
      Michal Privoznik 提交于
      After 27726d8c a privateData is allocated in
      virDomainHostdevDefAlloc(). However, the counter part - freeing
      them in Free() is missing which leads to the following memory
      leak:
      
      ==6489== 24 bytes in 1 blocks are definitely lost in loss record 684 of 1,003
      ==6489==    at 0x4C2C070: calloc (vg_replace_malloc.c:623)
      ==6489==    by 0x54B7C94: virAllocVar (viralloc.c:560)
      ==6489==    by 0x5517BE6: virObjectNew (virobject.c:193)
      ==6489==    by 0x1B400121: qemuDomainHostdevPrivateNew (qemu_domain.c:798)
      ==6489==    by 0x5557B24: virDomainHostdevDefAlloc (domain_conf.c:2152)
      ==6489==    by 0x5575578: virDomainHostdevDefParseXML (domain_conf.c:12709)
      ==6489==    by 0x5582292: virDomainDefParseXML (domain_conf.c:16995)
      ==6489==    by 0x5583C98: virDomainDefParseNode (domain_conf.c:17470)
      ==6489==    by 0x5583B07: virDomainDefParse (domain_conf.c:17417)
      ==6489==    by 0x5583B95: virDomainDefParseFile (domain_conf.c:17441)
      ==6489==    by 0x55A3F24: virDomainObjListLoadConfig (virdomainobjlist.c:465)
      ==6489==    by 0x55A43E6: virDomainObjListLoadAllConfigs (virdomainobjlist.c:596)
      Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
      6fcffcb1