diff mbox

vhost-user: set link down when the char device is closed

Message ID 5642E5E9.1050809@cn.fujitsu.com
State New
Headers show

Commit Message

Wen Congyang Nov. 11, 2015, 6:53 a.m. UTC
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
---
 net/vhost-user.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Wen Congyang Nov. 20, 2015, 5:42 a.m. UTC | #1
To Jason Wang:

I think this patch should be for qemu-2.5

Thanks
Wen Congyang

On 11/11/2015 02:53 PM, Wen Congyang wrote:
> Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
> ---
>  net/vhost-user.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/net/vhost-user.c b/net/vhost-user.c
> index 0ebd7df..5071602 100644
> --- a/net/vhost-user.c
> +++ b/net/vhost-user.c
> @@ -188,7 +188,7 @@ static void net_vhost_user_event(void *opaque, int event)
>          qmp_set_link(name, true, &err);
>          break;
>      case CHR_EVENT_CLOSED:
> -        qmp_set_link(name, true, &err);
> +        qmp_set_link(name, false, &err);
>          vhost_user_stop(queues, ncs);
>          break;
>      }
>
Jason Wang Nov. 23, 2015, 8:41 a.m. UTC | #2
On 11/20/2015 01:42 PM, Wen  wrote:
> To Jason Wang:
>
> I think this patch should be for qemu-2.5
>
> Thanks
> Wen Congyang

Hi:

I thought it was for vhost tree.

Michael:

Do you want to take this patch?

>
> On 11/11/2015 02:53 PM, Wen Congyang wrote:
>> Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
>> ---
>>  net/vhost-user.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/net/vhost-user.c b/net/vhost-user.c
>> index 0ebd7df..5071602 100644
>> --- a/net/vhost-user.c
>> +++ b/net/vhost-user.c
>> @@ -188,7 +188,7 @@ static void net_vhost_user_event(void *opaque, int event)
>>          qmp_set_link(name, true, &err);
>>          break;
>>      case CHR_EVENT_CLOSED:
>> -        qmp_set_link(name, true, &err);
>> +        qmp_set_link(name, false, &err);
>>          vhost_user_stop(queues, ncs);
>>          break;
>>      }
>>
>
diff mbox

Patch

diff --git a/net/vhost-user.c b/net/vhost-user.c
index 0ebd7df..5071602 100644
--- a/net/vhost-user.c
+++ b/net/vhost-user.c
@@ -188,7 +188,7 @@  static void net_vhost_user_event(void *opaque, int event)
         qmp_set_link(name, true, &err);
         break;
     case CHR_EVENT_CLOSED:
-        qmp_set_link(name, true, &err);
+        qmp_set_link(name, false, &err);
         vhost_user_stop(queues, ncs);
         break;
     }