From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id AB65423746 for ; Thu, 14 Sep 2023 17:02:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1694710942; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=92ntksCrtSb/yFeXbwz5KdI0bnYcBfsb4z/HCfkramM=; b=JIcW8Owi861CYEEi5bLgxYd3UGs1EqKb+A5sWaKuH8eQ0TNPLpXc0OkEHBk1vA9mEcfztW VNXTQc0EbPSuzmsr5v32Iq71YbFhIKCGQSdhWPaj7WVE6qf/+KTr5wC1xoOSNF95ufJNxt sc3fYJ2jO6uxZDUxj76QYHyH005hBxk= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-67-FshM6u1EM3mspCxadCogSA-1; Thu, 14 Sep 2023 13:02:19 -0400 X-MC-Unique: FshM6u1EM3mspCxadCogSA-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.rdu2.redhat.com [10.11.54.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 2FFF3830F10 for ; Thu, 14 Sep 2023 17:02:12 +0000 (UTC) Received: from gerbillo.redhat.com (unknown [10.45.224.154]) by smtp.corp.redhat.com (Postfix) with ESMTP id B258121B2413 for ; Thu, 14 Sep 2023 17:02:11 +0000 (UTC) From: Paolo Abeni To: mptcp@lists.linux.dev Subject: [PATCH mptcp-next v2 0/3] mptcp: misc improvement Date: Thu, 14 Sep 2023 19:02:03 +0200 Message-ID: Precedence: bulk X-Mailing-List: mptcp@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.6 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true This series is a follow-up the discussion ongoing here: https://github.com/multipath-tcp/mptcp_net-next/issues/437 Daire reported several sub-optimal MPTCP behaviour on high-latency links. At least 3 different items stands off: * notsent_lowat setting fooling the scheduler * sub-optimal send buffer autotuning * delayed acks being de-facto disabled due to subflow rcvlowat This series is an initial attempt to address the first 2 points above. I have a tentative patch for the 3rd, but it's nowhere near passing the self-tests, so it will have to wait a bit. v1 -> v2: - fixed compiler warning in patch 3/3 && more local testing Paolo Abeni (3): mptcp: consolidate sockopt synchronization mptcp: ignore notsent_lowat setting at the subflow level. mptcp: refactor sndbuf auto-tuning. net/mptcp/protocol.c | 27 ++++++++++++++++++++++++--- net/mptcp/protocol.h | 32 +++++++++++++++++++++++++++----- net/mptcp/sockopt.c | 28 ++++++---------------------- net/mptcp/subflow.c | 21 ++++++++++----------- 4 files changed, 67 insertions(+), 41 deletions(-) -- 2.41.0