[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20130804144526.4b2e189c@nehalam.linuxnetplumber.net>
Date: Sun, 4 Aug 2013 14:45:26 -0700
From: Stephen Hemminger <stephen@...workplumber.org>
To: Pravin B Shelar <pshelar@...ira.com>
Cc: netdev@...r.kernel.org
Subject: Re: [PATCH net-next v6 3/8] vxlan: Add vxlan recv demux.
On Thu, 1 Aug 2013 11:44:49 -0700
Pravin B Shelar <pshelar@...ira.com> wrote:
> +static struct vxlan_sock *vxlan_sock_add(struct net *net, __be16 port,
> + vxlan_rcv_t *rcv)
> {
> struct vxlan_net *vn = net_generic(net, vxlan_net_id);
> struct vxlan_sock *vs;
>
> - vxlan_socket_create(net, port);
> + vxlan_socket_create(net, port, rcv);
>
> spin_lock(&vn->sock_lock);
> vs = vxlan_find_sock(net, port);
> - if (vs)
> - atomic_inc(&vs->refcnt);
> - else
> + if (vs) {
> + if (vs->rcv == rcv)
> + atomic_inc(&vs->refcnt);
> + else
> + vs = ERR_PTR(-EBUSY);
> + }
> + spin_unlock(&vn->sock_lock);
> +
I think the ref counting needs to be the same for the
kernel and OVS handling of a VXLAN.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists