Re: [PATCH RFC 3/7] protocol: generic async message-based protocol loop

2021-04-15 Thread Stefan Hajnoczi
On Wed, Apr 14, 2021 at 01:29:40PM -0400, John Snow wrote: > On 4/13/21 4:00 PM, Stefan Hajnoczi wrote: > > On Tue, Apr 13, 2021 at 11:55:49AM -0400, John Snow wrote: > One of the reasons it's split out here like this is because I also wrote a > qtest protocol that uses the same infrastructure. I t

Re: [PATCH RFC 3/7] protocol: generic async message-based protocol loop

2021-04-14 Thread John Snow
On 4/13/21 4:00 PM, Stefan Hajnoczi wrote: On Tue, Apr 13, 2021 at 11:55:49AM -0400, John Snow wrote: This module provides the protocol-agnostic framework upon which QMP will be built. I also have (not included in this series) a qtest implementation that uses this same framework, which is why it

Re: [PATCH RFC 3/7] protocol: generic async message-based protocol loop

2021-04-13 Thread Stefan Hajnoczi
On Tue, Apr 13, 2021 at 11:55:49AM -0400, John Snow wrote: > This module provides the protocol-agnostic framework upon which QMP will > be built. I also have (not included in this series) a qtest > implementation that uses this same framework, which is why it is split > into two portions like this.