Re: [ovs-dev] [PATCH] netdev, dpif: fix the crash/assert on port delete

2017-11-06 Thread Ashish Varma
Hi Ben, I have refactored the function "dpif_port_del" and removed the new function "dpif_port_remove" added in the v1 patch. Removed the braces around the if compare. Sending v2 patch now. Thanks for the review. -Ashish On Fri, Nov 3, 2017 at 2:26 PM, Ben Pfaff wrote: > On

Re: [ovs-dev] [PATCH] netdev, dpif: fix the crash/assert on port delete

2017-11-03 Thread Ben Pfaff
On Fri, Nov 03, 2017 at 07:36:41AM -0700, Ashish Varma wrote: > a crash is seen in "netdev_ports_remove" when an interface is deleted and > added > back in the system and when the interface is part of a bridge configuration. > e.g. steps: > create a tap0 interface using "ip tuntap add.." >

[ovs-dev] [PATCH] netdev, dpif: fix the crash/assert on port delete

2017-11-03 Thread Ashish Varma
a crash is seen in "netdev_ports_remove" when an interface is deleted and added back in the system and when the interface is part of a bridge configuration. e.g. steps: create a tap0 interface using "ip tuntap add.." add the tap0 interface to br0 using "ovs-vsctl add-port.." delete the tap0