From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8BDF8C433F5 for ; Thu, 17 Feb 2022 04:55:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234038AbiBQEzM (ORCPT ); Wed, 16 Feb 2022 23:55:12 -0500 Received: from mxb-00190b01.gslb.pphosted.com ([23.128.96.19]:52148 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230171AbiBQEzM (ORCPT ); Wed, 16 Feb 2022 23:55:12 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D0EDB1F227D for ; Wed, 16 Feb 2022 20:54:58 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 732D460ADF for ; Thu, 17 Feb 2022 04:54:58 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 945CEC340E9; Thu, 17 Feb 2022 04:54:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1645073697; bh=5GooNLBD6ckBJ5bkk1+HCUOtWhMpEGXWkBXp2YL1zuU=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=SQczxZWtOhKVIdgH4tlaLeKCFHIG31DbcVkNgyAm1EUqdLmw5px0Z2aSQdZL5tOR6 jOJkvFLBrYono5lWASBZgZSRJq9+xMYvC7pez+uJT8TTBuPTn1OTZsiT3xl5pEtNO/ 6uhayWGg+ytMb9p1u+Bt6zjAtY6OBltfszzOTe7iDxmy+aYVWO4K9lTGAmPjhqZzB4 1+wXmHqrs6T9a6T8JBjZiJxrp2nrmAjd6u9fL/npyqLC0DiDJGD557o25BS37zTZcJ UoDnLXFlCFcwbSsvFQx1OIh0Nr7P3MZC8jiB6AD5q747DoesJMyjGyE86+EHCBmZV4 Gi5tj53JXDv7Q== Date: Wed, 16 Feb 2022 20:54:56 -0800 From: Jakub Kicinski To: Mat Martineau Cc: netdev@vger.kernel.org, davem@davemloft.net, matthieu.baerts@tessares.net, mptcp@lists.linux.dev Subject: Re: [PATCH net-next 0/8] mptcp: SO_SNDTIMEO and misc. cleanup Message-ID: <20220216205456.307d4dc6@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com> In-Reply-To: <20220216021130.171786-1-mathew.j.martineau@linux.intel.com> References: <20220216021130.171786-1-mathew.j.martineau@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Tue, 15 Feb 2022 18:11:22 -0800 Mat Martineau wrote: > Patch 1 adds support for the SO_SNDTIMEO socket option on MPTCP sockets. > > The remaining patches are various small cleanups: > > Patch 2 removes an obsolete declaration. > > Patches 3 and 5 remove unnecessary function parameters. > > Patch 4 removes an extra cast. > > Patches 6 and 7 add some const and ro_after_init modifiers. > > Patch 8 removes extra storage of TCP helpers. Applied, thanks!