On Thu, 28 Sep 2017 21:33:46 +0800 Hangbin Liu <ha...@redhat.com> wrote:
> From: Hangbin Liu <liuhang...@gmail.com> > > This is an update for 460c03f3f3cc ("iplink: double the buffer size also in > iplink_get()"). After update, we will not need to double the buffer size > every time when VFs number increased. > > With call like rtnl_talk(&rth, &req.n, NULL, 0), we can simply remove the > length parameter. > > With call like rtnl_talk(&rth, nlh, nlh, sizeof(req), I add a new variable > answer to avoid overwrite data in nlh, because it may has more info after > nlh. also this will avoid nlh buffer not enough issue. > > We need to free answer after using. > > Signed-off-by: Hangbin Liu <liuhang...@gmail.com> > Signed-off-by: Phil Sutter <p...@nwl.cc> > --- Most of the uses of rtnl_talk() don't need to this peek and dynamic sizing. Can only those places that need that be targeted?