1. 02 6月, 2017 1 次提交
  2. 01 6月, 2017 3 次提交
  3. 31 5月, 2017 2 次提交
  4. 30 5月, 2017 2 次提交
  5. 29 5月, 2017 2 次提交
    • N
      nodedev: Increase the netlink socket buffer size to the one used by udev · d1eea6c1
      ning.bo 提交于
      When a number of SRIOV VFs (up to 128 on Intel XL710) is created:
      for i in `seq 0 1`; do
        echo 63 > /sys/class/net/<interface>/device/sriov_numvfs
      done
      
      libvirtd will then report "udev_monitor_receive_device returned NULL"
      error because the netlink socket buffer is not big enough (using GDB on
      libudev confirmed this with ENOBUFFS) and thus some udev events were
      dropped. This results in some devices being missing in the nodedev-list
      output. This patch overrides the system's rmem_max limit but for that,
      we need to make sure we've got root privileges.
      
      https://bugzilla.redhat.com/show_bug.cgi?id=1450960Signed-off-by: Nning.bo <ning.bo9@zte.com.cn>
      Signed-off-by: NErik Skultety <eskultet@redhat.com>
      d1eea6c1
    • M
      virCapabilitiesInitCaches: Don't leak @cpus · 6e9e1423
      Michal Privoznik 提交于
      The @cpus is allocated by virFileReadValueBitmap() but never
      freed:
      
      ==21274== 40 (32 direct, 8 indirect) bytes in 1 blocks are definitely lost in loss record 808 of 1,004
      ==21274==    at 0x4C2E080: calloc (vg_replace_malloc.c:711)
      ==21274==    by 0x54BA561: virAlloc (viralloc.c:144)
      ==21274==    by 0x54BC604: virBitmapNewEmpty (virbitmap.c:126)
      ==21274==    by 0x54BD059: virBitmapParseUnlimited (virbitmap.c:570)
      ==21274==    by 0x54EECE9: virFileReadValueBitmap (virfile.c:4113)
      ==21274==    by 0x5563132: virCapabilitiesInitCaches (capabilities.c:1548)
      ==21274==    by 0x2BB86E59: virQEMUCapsInit (qemu_capabilities.c:1132)
      ==21274==    by 0x2BBEC067: virQEMUDriverCreateCapabilities (qemu_conf.c:928)
      ==21274==    by 0x2BC3DEAA: qemuStateInitialize (qemu_driver.c:845)
      ==21274==    by 0x5625AAC: virStateInitialize (libvirt.c:770)
      ==21274==    by 0x124519: daemonRunStateInit (libvirtd.c:881)
      ==21274==    by 0x554C927: virThreadHelper (virthread.c:206)
      Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
      6e9e1423
  6. 27 5月, 2017 1 次提交
  7. 26 5月, 2017 18 次提交
  8. 25 5月, 2017 4 次提交
  9. 24 5月, 2017 7 次提交