qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] vhost-user-test: don't rely on RESET_OWNER


From: Michael S. Tsirkin
Subject: [Qemu-devel] [PATCH] vhost-user-test: don't rely on RESET_OWNER
Date: Mon, 16 Nov 2015 13:57:45 +0200

vhost-user-test is broken now: it assumes
QEMU sends RESET_OWNER, and we stopped doing that.
Wait for ENABLE_RING with 0 instead.

Signed-off-by: Michael S. Tsirkin <address@hidden>
---
 tests/vhost-user-test.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tests/vhost-user-test.c b/tests/vhost-user-test.c
index 431aa9f..3593803 100644
--- a/tests/vhost-user-test.c
+++ b/tests/vhost-user-test.c
@@ -321,7 +321,9 @@ static void chr_read(void *opaque, const uint8_t *buf, int 
size)
         break;
 
     case VHOST_USER_SET_VRING_ENABLE:
-        s->fds_num = 0;
+        if (!msg.payload.state.num) {
+            s->fds_num = 0;
+        }
         break;
 
     default:
-- 
MST



reply via email to

[Prev in Thread] Current Thread [Next in Thread]