From patchwork Tue Oct 3 22:22:10 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Sailer X-Patchwork-Id: 821044 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (2048-bit key; secure) header.d=systemli.org header.i=@systemli.org header.b="qPYNYQrP"; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3y6DH22CX0z9t1G for ; Wed, 4 Oct 2017 09:29:34 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751199AbdJCW3c (ORCPT ); Tue, 3 Oct 2017 18:29:32 -0400 Received: from mail.systemli.org ([198.167.223.214]:59434 "EHLO mail.systemli.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750841AbdJCW3b (ORCPT ); Tue, 3 Oct 2017 18:29:31 -0400 X-Greylist: delayed 395 seconds by postgrey-1.27 at vger.kernel.org; Tue, 03 Oct 2017 18:29:31 EDT From: Richard Sailer DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=systemli.org; s=default; t=1507069375; bh=ajTVDSAC7fdbQ159E0F03V6EATk1L7s7MAWPCGI2roQ=; h=From:To:Cc:Subject:Date; b=qPYNYQrPDvfVXJ/CDAdepK7iZM/IMxt9BaND2oTxFQAEFZd2PwQo8iXx6OAXLmPs/ rkllpAT3IQynlecUGK7DUMA19bo6gZ0V9uDdizJ4dngTCc87HE51p3ac5G4YpDRDz8 QFh2oFgc6wgxl/PozwMmTXJilZ7H6sVAJVTyiSzijyM54vs/PfFbwT2t073Ty8embb nq5QMnieSdCc/1nOokStQ9LWdUTwJJpZe6T9nZCbxzxE40htq0Uh/1OT1Wl0LNMZCl 4kGEE+oWxyCDItw5i3CWF2b74KtjiptB7zr5HxAH8npjTadEZaBFrT4q/ZpU/qBtH2 zyJTwfxKc4V9g== To: netdev@vger.kernel.org, davem@davemloft.net Cc: kuznet@ms2.inr.ac.ru, yoshfuji@linux-ipv6.org Subject: [PATCH net-next 0/3] A own subdirectory for shared TCP code Date: Wed, 4 Oct 2017 00:22:10 +0200 Message-Id: <20171003222213.7996-1-richard_siegfried@systemli.org> Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org net/ipv4 currently contains around 100 source files containing the IP implementation and lots of other functionality (UDP, TCP, xfrm, etc.) # 1/3 To make the networking source tree more self documenting and well structured 1/3 moves the 30 shared TCP source files to a own subdirectory of net/ipv4/. # 2/3 A huge part of the TCP code is congestion control algorithms. With the same goal as above, this moves the cc algos to a own subdirectory of net/ipv4/tcp/ # 3/3 Implementation of a suggestion of valdis, to have a new directory net/ipv4v6_shared that contains all the code shared between IPv4 and IPv6. This creates net/ipv4v6_shared and moves the net/ipv4/tcp directory of shared TCP code there. While every commit depends on its previous commits, it is also possible and sensible to only apply (1) or (1,2) , depending on how conservative one wants to decide regarding directory structure changes. [PATCH net-next 1/3] net/ipv4: Move shared tcp code to own subdirectory [PATCH net-next 2/3] tcp: Move cc algorithms to own subdirectory [PATCH net-next 3/3] Move shared tcp code to net/ipv4v6shared