Re: [ovs-dev] [PATCH v3 RFC] ovs-lib: try to call exit before?killing

2016-01-26 Thread Ben Pfaff
On Tue, Jan 26, 2016 at 10:15:35AM +, Christian Ehrhardt wrote: > Ben Pfaff writes: > > > > > On Wed, Dec 16, 2015 at 03:32:21PM +0300, Ilya Maximets wrote: > > > While killing OVS may not free all allocated resources. > > > > > > Eample: > > > Socket for vhost-user port will stay in a sy

Re: [ovs-dev] [PATCH v3 RFC] ovs-lib: try to call exit before killing

2016-01-26 Thread Christian Ehrhardt
Ben Pfaff writes: > > On Wed, Dec 16, 2015 at 03:32:21PM +0300, Ilya Maximets wrote: > > While killing OVS may not free all allocated resources. > > > > Eample: > > Socket for vhost-user port will stay in a system > > after 'systemctl stop openvswitch' and opening > > that port afte

Re: [ovs-dev] [PATCH v3 RFC] ovs-lib: try to call exit before killing

2015-12-16 Thread Ben Pfaff
On Wed, Dec 16, 2015 at 03:32:21PM +0300, Ilya Maximets wrote: > While killing OVS may not free all allocated resources. > > Eample: > Socket for vhost-user port will stay in a system > after 'systemctl stop openvswitch' and opening > that port after restart will fail. > > Signe

[ovs-dev] [PATCH v3 RFC] ovs-lib: try to call exit before killing

2015-12-16 Thread Ilya Maximets
While killing OVS may not free all allocated resources. Eample: Socket for vhost-user port will stay in a system after 'systemctl stop openvswitch' and opening that port after restart will fail. Signed-off-by: Ilya Maximets --- version 3: * sleep after EXIT split