Re: [Qemu-devel] [PATCH] monitor: accept input on resume

2018-07-31 Thread Markus Armbruster
Marc-André Lureau writes: > Hi > > On Tue, Jul 31, 2018 at 1:30 PM, Markus Armbruster wrote: >> Marc-André Lureau writes: >> >>> A chardev may stop trying to write if the associated can_read() >>> callback returned 0. This happens when the monitor is suspended. >>> The frontend is supposed to c

Re: [Qemu-devel] [PATCH] monitor: accept input on resume

2018-07-31 Thread Marc-André Lureau
Hi On Tue, Jul 31, 2018 at 1:30 PM, Markus Armbruster wrote: > Marc-André Lureau writes: > >> A chardev may stop trying to write if the associated can_read() >> callback returned 0. This happens when the monitor is suspended. >> The frontend is supposed to call qemu_chr_fe_accept_input() when it

Re: [Qemu-devel] [PATCH] monitor: accept input on resume

2018-07-31 Thread Markus Armbruster
Marc-André Lureau writes: > A chardev may stop trying to write if the associated can_read() > callback returned 0. This happens when the monitor is suspended. > The frontend is supposed to call qemu_chr_fe_accept_input() when it is > ready to accept data again. > > Signed-off-by: Marc-André Lurea

[Qemu-devel] [PATCH] monitor: accept input on resume

2018-07-31 Thread Marc-André Lureau
A chardev may stop trying to write if the associated can_read() callback returned 0. This happens when the monitor is suspended. The frontend is supposed to call qemu_chr_fe_accept_input() when it is ready to accept data again. Signed-off-by: Marc-André Lureau --- monitor.c | 1 + 1 file changed