Re: [PATCH RFC 13/15] hw/virtio/vhost-user: add shadow virtqueues and eventfd intercepts
Connor Kite <[email protected]>
| Newsgroups | dev.linux.lists.virtio-fs,org.nongnu.qemu-devel |
|---|---|
| Message-ID | <CA+spn3pBnL4BokUKcp2uQCH3vfW4v3mYAuzwx3Ppnv4vutuHmw@mail.gmail.com> |
On Fri, Jul 24, 2026 at 6:45 AM Akihiko Odaki <[email protected]> wrote: > > > This is not undone in case of errors. > I've added event_notifier_cleanup calls to the errors here. As Hanna mentioned, I have svq_cleanup added in a later patch but should probably pull it forward. I believe that currently doesn't clean up notifiers, so I will be sure to do that as well. > > + > > + if (svq->hdev_kick.initialized == false) { > > Simpler: if (!svq->hdev_kick.initialized) > > Regards, > Akihiko Odaki > This is now simplified. Thanks! Connor