From: Dave Barach Date: Sun, 30 Oct 2022 20:45:24 +0000 (-0400) Subject: ip6-nd: initialize radv_info->send_radv to 1 X-Git-Tag: v23.06-rc0~145 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=f094ce7653917b8c331a79c088ef63ea2679c40d;hp=f094ce7653917b8c331a79c088ef63ea2679c40d;p=vpp.git ip6-nd: initialize radv_info->send_radv to 1 Otherwise, the newly configured interface will never send RADV's. See below. In the typical case, suppress = 0 and is_no = 0, which propagates the current value of radv->send_radv: radv_info->send_radv = (suppress != 0) ? ((is_no != 0) ? 1 : 0) : radv_info->send_radv; No other bit of code will set send_radv, at least in straightforward ways. Type:fix Signed-off-by: Dave Barach Change-Id: If9368155f7676460ca1f87729c2b3c453405d08d ---