On Fri, May 18, 2018 at 5:49 PM, Greg Rose <[email protected]> wrote: > Fix an oversight in the ip6gre_tap_ops and ip6erspan_tap_ops in > which the .dellink field was not initialized leading to bugs > when trying to remove and re-add those type of ports. > > Signed-off-by: Greg Rose <[email protected]> > --- Tested it and looks good to me.
Tested-by: William Tu <[email protected]> > datapath/linux/compat/ip6_gre.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/datapath/linux/compat/ip6_gre.c b/datapath/linux/compat/ip6_gre.c > index 23b1c83..1e2f46a 100644 > --- a/datapath/linux/compat/ip6_gre.c > +++ b/datapath/linux/compat/ip6_gre.c > @@ -2324,6 +2324,7 @@ static struct rtnl_link_ops ip6gre_tap_ops > __read_mostly = { > .validate = ip6gre_tap_validate, > .newlink = ip6gre_newlink, > .changelink = ip6gre_changelink, > + .dellink = ip6gre_dellink, > .get_size = ip6gre_get_size, > .fill_info = ip6gre_fill_info, > #ifdef HAVE_GET_LINK_NET > @@ -2340,6 +2341,7 @@ static struct rtnl_link_ops ip6erspan_tap_ops > __read_mostly = { > .validate = ip6erspan_tap_validate, > .newlink = ip6gre_newlink, > .changelink = ip6gre_changelink, > + .dellink = ip6gre_dellink, > .get_size = ip6gre_get_size, > .fill_info = ip6gre_fill_info, > #ifdef HAVE_GET_LINK_NET > -- > 1.8.3.1 > > _______________________________________________ > dev mailing list > [email protected] > https://mail.openvswitch.org/mailman/listinfo/ovs-dev _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
