From patchwork Sat Jan 18 01:06:57 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mat Martineau X-Patchwork-Id: 1225091 X-Patchwork-Delegate: matthieu.baerts@tessares.net 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=2001:19d0:306:5::1; helo=ml01.01.org; envelope-from=mptcp-bounces@lists.01.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=linux.intel.com Received: from ml01.01.org (ml01.01.org [IPv6:2001:19d0:306:5::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4800C76J95z9sR0 for ; Sat, 18 Jan 2020 12:07:15 +1100 (AEDT) Received: from ml01.vlan13.01.org (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id E6B891007B8CC; Fri, 17 Jan 2020 17:10:31 -0800 (PST) Received-SPF: None (mailfrom) identity=mailfrom; client-ip=192.55.52.120; helo=mga04.intel.com; envelope-from=mathew.j.martineau@linux.intel.com; receiver= Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 24F0D10097E09 for ; Fri, 17 Jan 2020 17:10:30 -0800 (PST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Jan 2020 17:07:11 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,332,1574150400"; d="scan'208";a="274548993" Received: from akshatha-mobl1.amr.corp.intel.com (HELO mjmartin-nuc02.sea.intel.com) ([10.251.23.77]) by FMSMGA003.fm.intel.com with ESMTP; 17 Jan 2020 17:07:11 -0800 From: Mat Martineau To: mptcp@lists.01.org Cc: Mat Martineau Date: Fri, 17 Jan 2020 17:06:57 -0800 Message-Id: <20200118010657.22436-1-mathew.j.martineau@linux.intel.com> X-Mailer: git-send-email 2.25.0 MIME-Version: 1.0 Message-ID-Hash: XP4HMT6MKPB7L4DJEBQTSHFDUQSHINAI X-Message-ID-Hash: XP4HMT6MKPB7L4DJEBQTSHFDUQSHINAI X-MailFrom: mathew.j.martineau@linux.intel.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] Update commit message for "mptcp: Implement MPTCP receive path" List-Id: Discussions regarding MPTCP upstreaming Archived-At: List-Archive: List-Help: List-Post: List-Subscribe: List-Unsubscribe: Fix minor typos. Signed-off-by: Mat Martineau --- .topmsg | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.topmsg b/.topmsg index 75ae84b862ce..5a55ac729038 100644 --- a/.topmsg +++ b/.topmsg @@ -6,13 +6,13 @@ fields. MPTCP fields are parsed from the TCP option header and placed in an skb extension, allowing the upper MPTCP layer to access MPTCP options after the skb has gone through the TCP stack. -The subflow implements it's own data_ready() ops, which ensures that -the pending data is in sequence - according to MPTCP seq number - -dropping out-of-seq skbs. The DATA_READY bit flag is set if this -is the case. This allows the MPTCP socket layer to determine if more -data is available without having to consult the individual subflows. +The subflow implements its own data_ready() ops, which ensures that the +pending data is in sequence - according to MPTCP seq number - dropping +out-of-seq skbs. The DATA_READY bit flag is set if this is the case. +This allows the MPTCP socket layer to determine if more data is +available without having to consult the individual subflows. -It additionally validates the current mapping and propagate EoF events +It additionally validates the current mapping and propagates EoF events to the connection socket. Co-developed-by: Paolo Abeni