[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20130624081818.2693ef68@nehalam.linuxnetplumber.net>
Date: Mon, 24 Jun 2013 08:18:18 -0700
From: Stephen Hemminger <stephen@...workplumber.org>
To: Cong Wang <xiyou.wangcong@...il.com>
Cc: netdev@...r.kernel.org
Subject: Re: [PATCH net-next v4 2/2] vxlan: allow specifying multiple
default destinations
On Mon, 24 Jun 2013 06:48:17 +0000 (UTC)
Cong Wang <xiyou.wangcong@...il.com> wrote:
> > +static int vxlan_fill_remotes_info(struct sk_buff *skb,
> > + const struct vxlan_dev *vxlan)
> > +{
> > + struct vxlan_rdst *rd;
> > + struct nlattr *nest, *rdst_nest;
> > + __be32 ip;
> > + int i = 1;
> > +
> > + if (!vxlan->remotes_cnt)
> > + return 0;
> > +
> > + nest = nla_nest_start(skb, IFLA_VXLAN_REMOTES);
> > + if (nest == NULL)
> > + goto nla_put_failure;
> > +
> > + list_for_each_entry_rcu(rd, &vxlan->remotes, list) {
>
>
> Need RCU read lock here?
RCU is unnecessary here since already protected by RTNL.
rtnl_fill_ifinfo
ASSERT_RTNL()
rtnl_link_fill
vxlan_fill_info
vxlan_fill_remotes_info
Better just to remove the for_each_entry_rcu and use for_each_entry
--
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