Re: [PATCH v2 4/6] python/machine: use socketpair() for console connections

2023-07-27 Thread Daniel P . Berrangé
On Thu, Jul 27, 2023 at 11:22:35AM +0530, Ani Sinha wrote: > > > > On 26-Jul-2023, at 10:51 PM, John Snow wrote: > > > > > > > > On Wed, Jul 26, 2023, 6:50 AM Ani Sinha wrote: > > > > > > > On 25-Jul-2023, at 11:33 PM, John Snow wrote: > > > > > > Create a socketpair for the console

Re: [PATCH v2 4/6] python/machine: use socketpair() for console connections

2023-07-27 Thread Ani Sinha
> On 27-Jul-2023, at 11:22 AM, Ani Sinha wrote: > > > >> On 26-Jul-2023, at 10:51 PM, John Snow wrote: >> >> >> >> On Wed, Jul 26, 2023, 6:50 AM Ani Sinha wrote: >> >> >>> On 25-Jul-2023, at 11:33 PM, John Snow wrote: >>> >>> Create a socketpair for the console output. This should

Re: [PATCH v2 4/6] python/machine: use socketpair() for console connections

2023-07-27 Thread Ani Sinha
> On 26-Jul-2023, at 10:51 PM, John Snow wrote: > > > > On Wed, Jul 26, 2023, 6:50 AM Ani Sinha wrote: > > > > On 25-Jul-2023, at 11:33 PM, John Snow wrote: > > > > Create a socketpair for the console output. This should help eliminate > > race conditions around console text early in

Re: [PATCH v2 4/6] python/machine: use socketpair() for console connections

2023-07-26 Thread John Snow
On Wed, Jul 26, 2023, 6:50 AM Ani Sinha wrote: > > > > On 25-Jul-2023, at 11:33 PM, John Snow wrote: > > > > Create a socketpair for the console output. This should help eliminate > > race conditions around console text early in the boot process that might > > otherwise have been dropped on the

Re: [PATCH v2 4/6] python/machine: use socketpair() for console connections

2023-07-26 Thread Ani Sinha
> On 25-Jul-2023, at 11:33 PM, John Snow wrote: > > Create a socketpair for the console output. This should help eliminate > race conditions around console text early in the boot process that might > otherwise have been dropped on the floor before being able to connect to > QEMU under

Re: [PATCH v2 4/6] python/machine: use socketpair() for console connections

2023-07-25 Thread Daniel P . Berrangé
On Tue, Jul 25, 2023 at 02:03:35PM -0400, John Snow wrote: > Create a socketpair for the console output. This should help eliminate > race conditions around console text early in the boot process that might > otherwise have been dropped on the floor before being able to connect to > QEMU under

[PATCH v2 4/6] python/machine: use socketpair() for console connections

2023-07-25 Thread John Snow
Create a socketpair for the console output. This should help eliminate race conditions around console text early in the boot process that might otherwise have been dropped on the floor before being able to connect to QEMU under "server,nowait". Signed-off-by: John Snow ---