[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] multifd: Set a higher "backlog" default value for listen()
|
From: |
Daniel P . Berrangé |
|
Subject: |
Re: [PATCH] multifd: Set a higher "backlog" default value for listen() |
|
Date: |
Thu, 18 May 2023 13:29:46 +0100 |
|
User-agent: |
Mutt/2.2.9 (2022-11-12) |
On Thu, May 18, 2023 at 09:13:58AM +0000, Wang, Wei W wrote:
> On Thursday, May 18, 2023 4:52 PM, Wang, Lei4 wrote:
> > When destination VM is launched, the "backlog" parameter for listen() is set
> > to 1 as default in socket_start_incoming_migration_internal(), which will
> > lead to socket connection error (the queue of pending connections is full)
> > when "multifd" and "multifd-channels" are set later on and a high number of
> > channels are used. Set it to a hard-coded higher default value 512 to fix
> > this
> > issue.
> >
> > Reported-by: Wei Wang <wei.w.wang@intel.com>
> > Signed-off-by: Lei Wang <lei4.wang@intel.com>
> > ---
> > migration/socket.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/migration/socket.c b/migration/socket.c index
> > 1b6f5baefb..b43a66ef7e 100644
> > --- a/migration/socket.c
> > +++ b/migration/socket.c
> > @@ -179,7 +179,7 @@
> > socket_start_incoming_migration_internal(SocketAddress *saddr,
> > QIONetListener *listener = qio_net_listener_new();
> > MigrationIncomingState *mis = migration_incoming_get_current();
> > size_t i;
> > - int num = 1;
> > + int num = 512;
> >
>
> Probably we need a macro for it, e.g.
> #define MIGRATION_CHANNEL_MAX 512
>
> Also, I think below lines could be removed, as using a larger value of num
> (i.e. 512)
> doesn't seem to consume more resources anywhere:
> - if (migrate_use_multifd()) {
> - num = migrate_multifd_channels();
> - } else if (migrate_postcopy_preempt()) {
> - num = RAM_CHANNEL_MAX;
> - }
Given that this code already exists, why is it not already sufficient ?
The commit description is saying we're setting backlog == 1 wit
multifd, but this later code is setting it to match the multfd
channels. Why isn't that enough ?
With regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
Re: [PATCH] multifd: Set a higher "backlog" default value for listen(), Juan Quintela, 2023/05/18
- Re: [PATCH] multifd: Set a higher "backlog" default value for listen(), Wang, Lei, 2023/05/18
- RE: [PATCH] multifd: Set a higher "backlog" default value for listen(), Wang, Wei W, 2023/05/18
- Re: [PATCH] multifd: Set a higher "backlog" default value for listen(), Wang, Lei, 2023/05/18
- RE: [PATCH] multifd: Set a higher "backlog" default value for listen(), Wang, Wei W, 2023/05/18
- Re: [PATCH] multifd: Set a higher "backlog" default value for listen(), Juan Quintela, 2023/05/19
Re: [PATCH] multifd: Set a higher "backlog" default value for listen(), Juan Quintela, 2023/05/19