Re: [ovs-dev] [PATCH] datapath: Use RCU lock for dp dump operation.

2013-07-12 Thread Jesse Gross
On Fri, Jul 12, 2013 at 4:37 PM, Pravin B Shelar wrote: > diff --git a/datapath/datapath.c b/datapath/datapath.c > index 2f02f71..09367cf 100644 > --- a/datapath/datapath.c > +++ b/datapath/datapath.c > @@ -1902,7 +1903,7 @@ static int ovs_dp_cmd_dump(struct sk_buff *skb, struct > netlink_callbac

[ovs-dev] [PATCH] datapath: Use RCU lock for dp dump operation.

2013-07-12 Thread Pravin B Shelar
RCUfy dp-dump operation which is already read-only. This makes all ovs dump operations lockless. Signed-off-by: Pravin B Shelar --- datapath/datapath.c |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/datapath/datapath.c b/datapath/datapath.c index 2f02f71..09367cf