## Description: Fix "Message truncated" issue with many VF's ## Origin/Author: Jan Gutter ## Bug: https://bugs.launchpad.net/ubuntu/+source/iproute2/+bug/1720126 Index: iproute2/lib/libnetlink.c =================================================================== --- iproute2.orig/lib/libnetlink.c 2017-10-13 14:29:12.313074855 +0200 +++ iproute2/lib/libnetlink.c 2017-10-13 14:29:12.309074887 +0200 @@ -193,7 +193,7 @@ .msg_iov = &iov, .msg_iovlen = 1, }; - char buf[16384]; + char buf[65536]; int dump_intr = 0; iov.iov_base = buf;