Re: [ovs-dev] [PATCH v2] dpctl: Fix crash.

2014-11-24 Thread YAMAMOTO Takashi
> diff --git a/lib/netdev-vport.c b/lib/netdev-vport.c > index 167212e..3825a09 100644 > --- a/lib/netdev-vport.c > +++ b/lib/netdev-vport.c > @@ -254,8 +254,6 @@ netdev_vport_construct(struct netdev *netdev_) > dev->tnl_cfg.dst_port = htons(LISP_DST_PORT); > } > > -route_table_

Re: [ovs-dev] [PATCH v2] dpctl: Fix crash.

2014-11-21 Thread Jarno Rajahalme
Acked-by: Jarno Rajahalme With a small nit below, Jarno On Nov 19, 2014, at 10:12 PM, Pravin B Shelar wrote: > ovs-dpctl crashed due to uninitialized router classifier. To > fix this issue move ovs router initialization to route table > module. > > Reported-by: Madhu Challa > Signed-off-

Re: [ovs-dev] [PATCH v2] dpctl: Fix crash.

2014-11-21 Thread Pravin Shelar
Jarno, Can you review this patch? On Wed, Nov 19, 2014 at 10:12 PM, Pravin B Shelar wrote: > ovs-dpctl crashed due to uninitialized router classifier. To > fix this issue move ovs router initialization to route table > module. > > Reported-by: Madhu Challa > Signed-off-by: Pravin B Shelar > ---

[ovs-dev] [PATCH v2] dpctl: Fix crash.

2014-11-19 Thread Pravin B Shelar
ovs-dpctl crashed due to uninitialized router classifier. To fix this issue move ovs router initialization to route table module. Reported-by: Madhu Challa Signed-off-by: Pravin B Shelar --- v1-v2: Initialize route-table from dpif init. --- lib/dpif.c |1 + lib/netdev-vport.c