From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id C97003857340 for ; Wed, 28 Sep 2022 17:23:51 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org C97003857340 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gnu.org Received: from fencepost.gnu.org ([2001:470:142:3::e]:37320) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1odamk-0008FZ-Av; Wed, 28 Sep 2022 13:23:50 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=In-Reply-To:MIME-Version:References:Subject:To:From: Date; bh=2JeuzEkBdpBkOKyG38Ju9WvLZoir6RRuUsG3BgMXtP0=; b=TnFr8V67z1g6iLbgoOlY 3rMqZa1WjJZfAT7HTXjZpKZ476hPbl+fd2DmM0zeXN8fV+jske2095PijrKsp4i1EJ0cvRBYtyXET o7WkoJNrKwSR/KB0k3L5edFHxEndaLs0LEe8f9hnHHh1H9Ggo8sragz5IkuJmzkx+Y4l+9xdyPVGK 0IWv+RAcIQ1cM/eMmNvP2gBNX5dLC5s3rcDIJUnjrh4wCS7/jcEKOTgQEsB5ROTXw+qzYzsgKMUBJ z7UydC72PCMPsdg9m7S0G4taLhtAOP2/GvGFK7bOeIOuog16MIk5t3qYvwA/FbOt8CtHKua8DGYNi BzfgbJkNDhVfyg==; Received: from [2a01:cb19:956:1b00:de41:a9ff:fe47:ec49] (port=53560 helo=begin.home) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1odamk-0005q8-3N; Wed, 28 Sep 2022 13:23:50 -0400 Received: from samy by begin.home with local (Exim 4.96) (envelope-from ) id 1odamg-005xZN-1N; Wed, 28 Sep 2022 19:23:46 +0200 Date: Wed, 28 Sep 2022 19:23:46 +0200 From: Samuel Thibault To: Andreas Schwab Cc: libc-alpha@sourceware.org, bug-hurd@gnu.org, commit-hurd@gnu.org Subject: Re: [hurd,commited] hurd: Increase SOMAXCONN to 4096 Message-ID: <20220928172346.gfykdtm4qpiswkkw@begin> Mail-Followup-To: Andreas Schwab , libc-alpha@sourceware.org, bug-hurd@gnu.org, commit-hurd@gnu.org References: <20220927213918.799925-1-samuel.thibault@ens-lyon.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Organization: I am not organized User-Agent: NeoMutt/20170609 (1.8.3) X-Spam-Status: No, score=-11.7 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,KAM_NUMSUBJECT,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Andreas Schwab, le mer. 28 sept. 2022 09:48:33 +0200, a ecrit: > On Sep 27 2022, Samuel Thibault wrote: > > > Notably fakeroot-tcp may introduce a lot of parallel connections. > > --- > > sysdeps/mach/hurd/bits/socket.h | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/sysdeps/mach/hurd/bits/socket.h b/sysdeps/mach/hurd/bits/socket.h > > index 70fce4fb27..4ece37f1dd 100644 > > --- a/sysdeps/mach/hurd/bits/socket.h > > +++ b/sysdeps/mach/hurd/bits/socket.h > > @@ -147,7 +147,7 @@ enum __socket_type > > #define AF_MAX PF_MAX > > > > /* Maximum queue length specifiable by listen. */ > > -#define SOMAXCONN 128 /* 5 on the origional 4.4 BSD. */ > > +#define SOMAXCONN 4096 /* 5 on the origional 4.4 BSD. */ > > Perhaps fix the comment as well. Right, done so :) Samuel