From patchwork Fri Oct 14 07:33:33 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Trippelsdorf X-Patchwork-Id: 682143 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3swK8l5V2zz9s9N for ; Fri, 14 Oct 2016 18:33:43 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; secure) header.d=trippelsdorf.de header.i=@trippelsdorf.de header.b=txqM71FM; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757409AbcJNHdj (ORCPT ); Fri, 14 Oct 2016 03:33:39 -0400 Received: from ud10.udmedia.de ([194.117.254.50]:57718 "EHLO mail.ud10.udmedia.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755693AbcJNHdh (ORCPT ); Fri, 14 Oct 2016 03:33:37 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple; d=trippelsdorf.de; h=date :from:to:cc:subject:message-id:mime-version:content-type; s=k1; bh=QcxgSLk/lw5MGYakHxC3yMyXiASFo9C/1hxRTMZstdk=; b=txqM71FM1gLc L2Sqmo64gzLqXczgtRKVHIFyeW913AY90qJ1VPLlXZLBhHGQ26J2yAE9S5UrRYvQ +/SDho8K/i9AQr9dgwxtBJkmc2PjZyin0NPt9Xv88GkNDqTAQ7UeMWzRyrM3n8eb FPj8Mc5vA5AcxQnNTXPh0u+fhIEDRRU= Received: (qmail 11705 invoked from network); 14 Oct 2016 09:33:33 +0200 Received: from ip5b405f78.dynamic.kabel-deutschland.de (HELO x4) (ud10?360p3@91.64.95.120) by mail.ud10.udmedia.de with ESMTPSA (ECDHE-RSA-AES256-SHA encrypted, authenticated); 14 Oct 2016 09:33:33 +0200 Date: Fri, 14 Oct 2016 09:33:33 +0200 From: Markus Trippelsdorf To: Neal Cardwell Cc: netdev@vger.kernel.org Subject: [PATCH trivial] net: add bbr to config DEFAULT_TCP_CONG Message-ID: <20161014073333.GA10006@x4> MIME-Version: 1.0 Content-Disposition: inline Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org While playing with BBR I noticed that it was missing in the list of possible config DEFAULT_TCP_CONG choices. Fixed thusly. Signed-off-by: Markus Trippelsdorf diff --git a/net/ipv4/Kconfig b/net/ipv4/Kconfig index 300b06888fdf..b54b3ca939db 100644 --- a/net/ipv4/Kconfig +++ b/net/ipv4/Kconfig @@ -715,6 +715,7 @@ config DEFAULT_TCP_CONG default "reno" if DEFAULT_RENO default "dctcp" if DEFAULT_DCTCP default "cdg" if DEFAULT_CDG + default "bbr" if DEFAULT_BBR default "cubic" config TCP_MD5SIG