[dpdk-dev] [PATCH] vchost: Notify application of ownership change

2016-03-17 Thread Jan Kiszka
On 2016-03-17 15:42, Thomas Monjalon wrote: > 2015-08-07 19:20, Jan Kiszka: >> On VHOST_*_RESET_OWNER, we reinitialize the device but without telling >> the application. That will cause crashes when it continues to invoke >> vhost services on the device. Fix it by calling the destruction hook if

[dpdk-dev] [PATCH] vchost: Notify application of ownership change

2016-03-17 Thread Thomas Monjalon
2015-08-07 19:20, Jan Kiszka: > On VHOST_*_RESET_OWNER, we reinitialize the device but without telling > the application. That will cause crashes when it continues to invoke > vhost services on the device. Fix it by calling the destruction hook if > the device is still in use. > > Signed-off-by:

[dpdk-dev] [PATCH] vchost: Notify application of ownership change

2015-10-26 Thread Tetsuya Mukawa
On 2015/10/26 15:30, Yuanhan Liu wrote: > On Mon, Oct 26, 2015 at 02:54:07PM +0900, Tetsuya Mukawa wrote: >> On 2015/10/25 2:16, Thomas Monjalon wrote: >>> 2015-08-12 03:34, Xie, Huawei: On 8/8/2015 1:21 AM, Jan Kiszka wrote: > On VHOST_*_RESET_OWNER, we reinitialize the device but

[dpdk-dev] [PATCH] vchost: Notify application of ownership change

2015-10-26 Thread Tetsuya Mukawa
On 2015/10/25 2:16, Thomas Monjalon wrote: > 2015-08-12 03:34, Xie, Huawei: >> On 8/8/2015 1:21 AM, Jan Kiszka wrote: >>> On VHOST_*_RESET_OWNER, we reinitialize the device but without telling >>> the application. That will cause crashes when it continues to invoke >>> vhost services on the

[dpdk-dev] [PATCH] vchost: Notify application of ownership change

2015-10-26 Thread Yuanhan Liu
On Mon, Oct 26, 2015 at 02:54:07PM +0900, Tetsuya Mukawa wrote: > On 2015/10/25 2:16, Thomas Monjalon wrote: > > 2015-08-12 03:34, Xie, Huawei: > >> On 8/8/2015 1:21 AM, Jan Kiszka wrote: > >>> On VHOST_*_RESET_OWNER, we reinitialize the device but without telling > >>> the application. That will

[dpdk-dev] [PATCH] vchost: Notify application of ownership change

2015-10-24 Thread Thomas Monjalon
2015-08-12 03:34, Xie, Huawei: > On 8/8/2015 1:21 AM, Jan Kiszka wrote: > > On VHOST_*_RESET_OWNER, we reinitialize the device but without telling > > the application. That will cause crashes when it continues to invoke > > vhost services on the device. Fix it by calling the destruction hook if >

[dpdk-dev] [PATCH] vchost: Notify application of ownership change

2015-08-12 Thread Jan Kiszka
On 2015-08-12 05:34, Xie, Huawei wrote: > On 8/8/2015 1:21 AM, Jan Kiszka wrote: >> On VHOST_*_RESET_OWNER, we reinitialize the device but without telling >> the application. That will cause crashes when it continues to invoke >> vhost services on the device. Fix it by calling the destruction hook

[dpdk-dev] [PATCH] vchost: Notify application of ownership change

2015-08-12 Thread Xie, Huawei
On 8/8/2015 1:21 AM, Jan Kiszka wrote: > On VHOST_*_RESET_OWNER, we reinitialize the device but without telling > the application. That will cause crashes when it continues to invoke > vhost services on the device. Fix it by calling the destruction hook if > the device is still in use. > >

[dpdk-dev] [PATCH] vchost: Notify application of ownership change

2015-08-10 Thread Jan Kiszka
On 2015-08-10 03:20, Ouyang, Changchun wrote: >> -Original Message- >> From: Jan Kiszka [mailto:jan.kiszka at siemens.com] >> Sent: Saturday, August 8, 2015 2:43 PM >> To: Ouyang, Changchun; dev at dpdk.org >> Subject: Re: [dpdk-dev] [PATCH] vchost: N

[dpdk-dev] [PATCH] vchost: Notify application of ownership change

2015-08-10 Thread Ouyang, Changchun
> -Original Message- > From: Jan Kiszka [mailto:jan.kiszka at siemens.com] > Sent: Saturday, August 8, 2015 2:43 PM > To: Ouyang, Changchun; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] vchost: Notify application of ownership > change > > On 2015-08-08

[dpdk-dev] [PATCH] vchost: Notify application of ownership change

2015-08-08 Thread Jan Kiszka
On 2015-08-08 02:25, Ouyang, Changchun wrote: > > >> -Original Message- >> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Jan Kiszka >> Sent: Saturday, August 8, 2015 1:21 AM >> To: dev at dpdk.org >> Subject: [dpdk-dev] [PATCH] vchost: No

[dpdk-dev] [PATCH] vchost: Notify application of ownership change

2015-08-08 Thread Ouyang, Changchun
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Jan Kiszka > Sent: Saturday, August 8, 2015 1:21 AM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH] vchost: Notify application of ownership change Vchost should be vhost in the title

[dpdk-dev] [PATCH] vchost: Notify application of ownership change

2015-08-07 Thread Jan Kiszka
On VHOST_*_RESET_OWNER, we reinitialize the device but without telling the application. That will cause crashes when it continues to invoke vhost services on the device. Fix it by calling the destruction hook if the device is still in use. Signed-off-by: Jan Kiszka --- This is the surprisingly