Re: [Qemu-devel] [PATCH 1/3] chardev: use backend chr context when watch for fe

2018-01-02 Thread Marc-André Lureau
On Thu, Dec 28, 2017 at 8:29 AM, Peter Xu wrote: > In commit 6bbb6c0644 ("chardev: use per-dev context for > io_add_watch_poll", 2017-09-22) all the chardev watches are converted to > use per-chardev gcontext to support chardev to be run outside default > main thread. However that's still missing

[Qemu-devel] [PATCH 1/3] chardev: use backend chr context when watch for fe

2017-12-27 Thread Peter Xu
In commit 6bbb6c0644 ("chardev: use per-dev context for io_add_watch_poll", 2017-09-22) all the chardev watches are converted to use per-chardev gcontext to support chardev to be run outside default main thread. However that's still missing one call from the frontend code. Touch that up. Reviewe