On Thu, Jun 30, 2016 at 1:06 AM, Pravin B Shelar <pshe...@ovn.org> wrote:
> diff --git a/NEWS b/NEWS
> index 802e7f8..e91f8d1 100644
> --- a/NEWS
> +++ b/NEWS
> @@ -67,6 +67,7 @@ Post-v2.5.0
>       * Dropped support for kernel older than 3.10.
>       * Removed VLAN splinters feature.
>       * Support for truncate action.
> +     * Support for IPv6 Geneve and VxLAN tunnels.

We currently have "Added support for IPv6 tunnels to native
tunneling." in NEWS. Maybe we can merge these together to just say
that support for IPv6 tunnels was added?

> diff --git a/datapath/flow_netlink.c b/datapath/flow_netlink.c
> index a6e1f32..b6020ab 100644
> --- a/datapath/flow_netlink.c
> +++ b/datapath/flow_netlink.c
> @@ -1916,6 +1964,11 @@ static int validate_and_copy_set_tun(const struct 
> nlattr *attr,
>         if (!tun_dst)
>                 return -ENOMEM;
>
> +       err = dst_cache_init(&tun_dst->u.tun_info.dst_cache, GFP_KERNEL);
> +       if (err) {
> +               dst_release((struct dst_entry *)tun_dst);
> +               return err;
> +       }

Seems like this should be part of a different commit?
_______________________________________________
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev

Reply via email to