From patchwork Wed Dec 9 11:03:28 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Abeni X-Patchwork-Id: 11961095 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B9938C433FE for ; Wed, 9 Dec 2020 11:05:11 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5C3912336F for ; Wed, 9 Dec 2020 11:05:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730319AbgLILFK (ORCPT ); Wed, 9 Dec 2020 06:05:10 -0500 Received: from us-smtp-delivery-124.mimecast.com ([63.128.21.124]:60720 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730183AbgLILFK (ORCPT ); Wed, 9 Dec 2020 06:05:10 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1607511824; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=01gqQ38ASgF2fnFR3f0KAdi/jKYXH/hWOXAEUD2Amuc=; b=Fnz0vqRMLYb2730qUxNscGPM0Ec252JLzdc5rLQwgkAdQTViaGKA1NvvZCPiP38Qw4Q6cP im9qoPo/iasEf0UOnLCiLflsOfhPJSQCdAOfZFPuX+AdARpDWQln/O1vroOGIKSI0+EVn/ Z1gyME+FXtrvboFrCqlXbZHwLYgorEY= 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-586-EDQDMThfP9GmqJwXU32a4A-1; Wed, 09 Dec 2020 06:03:42 -0500 X-MC-Unique: EDQDMThfP9GmqJwXU32a4A-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 7A3FA5700B; Wed, 9 Dec 2020 11:03:41 +0000 (UTC) Received: from gerbillo.redhat.com (ovpn-112-45.ams2.redhat.com [10.36.112.45]) by smtp.corp.redhat.com (Postfix) with ESMTP id 05FE519C78; Wed, 9 Dec 2020 11:03:39 +0000 (UTC) From: Paolo Abeni To: netdev@vger.kernel.org Cc: "David S. Miller" , Jakub Kicinski , mptcp@lists.01.org Subject: [PATCH net-next 0/3] mptcp: a bunch of fixes Date: Wed, 9 Dec 2020 12:03:28 +0100 Message-Id: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org X-Patchwork-Delegate: kuba@kernel.org This series includes a few fixes following-up the recent code refactor for the MPTCP RX and TX paths. Boundling them together, since the fixes are somewhat related. Paolo Abeni (3): mptcp: link MPC subflow into msk only after accept mptcp: plug subflow context memory leak mptcp: be careful on subflows shutdown net/mptcp/options.c | 7 ++++++- net/mptcp/pm.c | 8 +++++++- net/mptcp/protocol.c | 23 +++++++++++++++++++++-- net/mptcp/protocol.h | 1 + net/mptcp/subflow.c | 19 +++++++++++++------ 5 files changed, 48 insertions(+), 10 deletions(-)