Re: [PATCH V5 20/25] chardev: cpr framework

2021-07-13 Thread Steven Sistare
On 7/12/2021 3:49 PM, Marc-André Lureau wrote: > Hi > > On Mon, Jul 12, 2021 at 11:20 PM Steven Sistare > wrote: > > On 7/8/2021 12:03 PM, Marc-André Lureau wrote: > > Hi > > > > On Wed, Jul 7, 2021 at 9:37 PM Steve Sistare

Re: [PATCH V5 20/25] chardev: cpr framework

2021-07-12 Thread Marc-André Lureau
Hi On Mon, Jul 12, 2021 at 11:20 PM Steven Sistare wrote: > On 7/8/2021 12:03 PM, Marc-André Lureau wrote: > > Hi > > > > On Wed, Jul 7, 2021 at 9:37 PM Steve Sistare > wrote: > > > > Add QEMU_CHAR_FEATURE_CPR for devices that support cpr. > > Add the c

Re: [PATCH V5 20/25] chardev: cpr framework

2021-07-12 Thread Steven Sistare
On 7/8/2021 12:03 PM, Marc-André Lureau wrote: > Hi > > On Wed, Jul 7, 2021 at 9:37 PM Steve Sistare > wrote: > > Add QEMU_CHAR_FEATURE_CPR for devices that support cpr. > Add the chardev close_on_cpr option for devices that can be closed on cpr > an

Re: [PATCH V5 20/25] chardev: cpr framework

2021-07-08 Thread Marc-André Lureau
Hi On Wed, Jul 7, 2021 at 9:37 PM Steve Sistare wrote: > Add QEMU_CHAR_FEATURE_CPR for devices that support cpr. > Add the chardev close_on_cpr option for devices that can be closed on cpr > and reopened after exec. > cpr is allowed only if either QEMU_CHAR_FEATURE_CPR or close_on_cpr is set > f

[PATCH V5 20/25] chardev: cpr framework

2021-07-07 Thread Steve Sistare
Add QEMU_CHAR_FEATURE_CPR for devices that support cpr. Add the chardev close_on_cpr option for devices that can be closed on cpr and reopened after exec. cpr is allowed only if either QEMU_CHAR_FEATURE_CPR or close_on_cpr is set for all chardevs in the configuration. Signed-off-by: Steve Sistare