Re: [PATCH V1 22/32] char: qio_channel_socket_accept reuse fd

2020-09-24 Thread Steven Sistare
On 9/15/2020 1:33 PM, Dr. David Alan Gilbert wrote: > * Steve Sistare (steven.sist...@oracle.com) wrote: >> From: Mark Kanda >> >> Add an fd argument to qio_channel_socket_accept. If not -1, the channel >> uses that fd instead of accepting a new socket connection. All callers >> pass -1 in this

Re: [PATCH V1 22/32] char: qio_channel_socket_accept reuse fd

2020-09-15 Thread Daniel P . Berrangé
On Tue, Sep 15, 2020 at 06:33:34PM +0100, Dr. David Alan Gilbert wrote: > * Steve Sistare (steven.sist...@oracle.com) wrote: > > From: Mark Kanda > > > > Add an fd argument to qio_channel_socket_accept. If not -1, the channel > > uses that fd instead of accepting a new socket connection. All

Re: [PATCH V1 22/32] char: qio_channel_socket_accept reuse fd

2020-09-15 Thread Dr. David Alan Gilbert
* Steve Sistare (steven.sist...@oracle.com) wrote: > From: Mark Kanda > > Add an fd argument to qio_channel_socket_accept. If not -1, the channel > uses that fd instead of accepting a new socket connection. All callers > pass -1 in this patch, so no functional change. Doesn't some of this

[PATCH V1 22/32] char: qio_channel_socket_accept reuse fd

2020-07-30 Thread Steve Sistare
From: Mark Kanda Add an fd argument to qio_channel_socket_accept. If not -1, the channel uses that fd instead of accepting a new socket connection. All callers pass -1 in this patch, so no functional change. Signed-off-by: Mark Kanda Signed-off-by: Steve Sistare ---