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 <m...@redhat.com> --- 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