Re: [dpdk-dev] [PATCH] vhost: fix double free on shutdown

2018-02-10 Thread Tan, Jianfeng
dk-dev] [PATCH] vhost: fix double free on shutdown > > The vhost connection can be closed concurrently from 2 places: > * the connection thread itself > * rte_vhost_driver_unregister > > The connection thread will terminate the connection if any recv error > occurred.

[dpdk-dev] [PATCH] vhost: fix double free on shutdown

2018-02-09 Thread Tomasz Kulasek
The vhost connection can be closed concurrently from 2 places: * the connection thread itself * rte_vhost_driver_unregister The connection thread will terminate the connection if any recv error occurred. The unregister function will terminate the connection together with the thread. However, the