From patchwork Thu Nov 19 12:38:20 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Abeni X-Patchwork-Id: 1402998 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.01.org (client-ip=198.145.21.10; helo=ml01.01.org; envelope-from=mptcp-bounces@lists.01.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=redhat.com header.i=@redhat.com header.a=rsa-sha256 header.s=mimecast20190719 header.b=UOn6if38; dkim-atps=neutral Received: from ml01.01.org (ml01.01.org [198.145.21.10]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4CcK3z5y4jz9sVC for ; Thu, 19 Nov 2020 23:38:52 +1100 (AEDT) Received: from ml01.vlan13.01.org (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id B772E100EBB90; Thu, 19 Nov 2020 04:38:47 -0800 (PST) Received-SPF: Pass (mailfrom) identity=mailfrom; client-ip=63.128.21.124; helo=us-smtp-delivery-124.mimecast.com; envelope-from=pabeni@redhat.com; receiver= Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 9C17F100EBB8B for ; Thu, 19 Nov 2020 04:38:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1605789523; 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=/91EteLJMZZErCW/QnG3rPeD7gAgoKHNw79CHj4p9cg=; b=UOn6if38yD6UykI2w2EaNINqKTr91Uzv4HGPC5nbSx8Z3k1CeSyhpOnU9cYN7SqdRE0kYz rBqB+xvVfEaVGReK7YNd0xE79szV/N1WN/Rph/VQQkdgGc84XVHeHrNqCc/7AK0P/ijcq4 goTzGRSGQx1+X7XlwqhumIfPsxFW6uI= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-188-qQg_MnP9NLWYzoP6YWYv5Q-1; Thu, 19 Nov 2020 07:38:41 -0500 X-MC-Unique: qQg_MnP9NLWYzoP6YWYv5Q-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id BB4E4801B14 for ; Thu, 19 Nov 2020 12:38:40 +0000 (UTC) Received: from gerbillo.redhat.com (ovpn-114-73.ams2.redhat.com [10.36.114.73]) by smtp.corp.redhat.com (Postfix) with ESMTP id 2AE6C5D6AC for ; Thu, 19 Nov 2020 12:38:39 +0000 (UTC) From: Paolo Abeni To: mptcp@lists.01.org Date: Thu, 19 Nov 2020 13:38:20 +0100 Message-Id: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=pabeni@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Message-ID-Hash: 4BDHYS2EOASQYFOPNUXKZQ5BJPDOFLGX X-Message-ID-Hash: 4BDHYS2EOASQYFOPNUXKZQ5BJPDOFLGX X-MailFrom: pabeni@redhat.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header X-Mailman-Version: 3.1.1 Precedence: list Subject: [MPTCP] [PATCH v5 0/6] mptcp: just another complete datapath refactor List-Id: Discussions regarding MPTCP upstreaming Archived-At: List-Archive: List-Help: List-Post: List-Subscribe: List-Unsubscribe: This iteration introduces some improvement for the wake-up/poll code as discussed on the ML. The last 2 patches in the previous iterations has been merged in a single one, with all the relevant deltas noted there. Looking for merge now ;) Paolo Abeni (6): mptcp: open code mptcp variant for lock_sock mptcp: implement wmem reservation. mptcp: protect the rx path with the msk socket spinlock mptcp: allocate TX skbs in msk context. mptcp: avoid a few atomic ops in the rx path mptcp: use mptcp release_cb for delayed tasks. net/core/sock.c | 2 +- net/mptcp/mptcp_diag.c | 2 +- net/mptcp/options.c | 47 +-- net/mptcp/protocol.c | 734 ++++++++++++++++++++++++++++++----------- net/mptcp/protocol.h | 36 +- net/mptcp/subflow.c | 14 +- 6 files changed, 600 insertions(+), 235 deletions(-)