On Thu, 1 Aug 2024 at 20:32, BillXiang <[email protected]> wrote:
> > From: "Michael S. Tsirkin"<[email protected]>
> > How do things work now after 7c211eb078c4 then?
>
> It does not really work after 7c211eb078c4 and it's my mistake.
> I forgot to submit the code to check vq_index in 7c211eb078c4.
>
* vhost_user_set_log_base() sends set log message only when (vq_index == 0),
->
https://github.com/qemu/qemu/commit/c98ac64cfb53ccb862a80e818c3a19bdd386e61e
===
+ /* Send only once with first queue pair */
+ if (dev->vq_index != 0) {
+ return 0;
+ }
===
This should help to keep things working, no?
---
- Prasad