From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dave Taht Subject: [PATCH net-next 3/3] Add support for building the new cake qdisc Date: Sun, 3 Dec 2017 14:06:15 -0800 Message-ID: <1512338775-3270-4-git-send-email-dave.taht@gmail.com> References: <1512338775-3270-1-git-send-email-dave.taht@gmail.com> Cc: Dave Taht , =?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?= , Sebastian Moeller , Ryan Mounce , Jonathan Morton , Kevin Darbyshire-Bryant , Nils Andreas Svee , Dean Scarff , Loganaden Velvindron To: netdev@vger.kernel.org Return-path: Received: from mail-pf0-f196.google.com ([209.85.192.196]:40222 "EHLO mail-pf0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752434AbdLCWGo (ORCPT ); Sun, 3 Dec 2017 17:06:44 -0500 Received: by mail-pf0-f196.google.com with SMTP id v26so7082302pfl.7 for ; Sun, 03 Dec 2017 14:06:43 -0800 (PST) In-Reply-To: <1512338775-3270-1-git-send-email-dave.taht@gmail.com> Sender: netdev-owner@vger.kernel.org List-ID: Hook up sch_cake to the build system. Signed-off-by: Dave Taht --- net/sched/Kconfig | 11 +++++++++++ net/sched/Makefile | 1 + 2 files changed, 12 insertions(+) diff --git a/net/sched/Kconfig b/net/sched/Kconfig index c03d86a..3ea22e5 100644 --- a/net/sched/Kconfig +++ b/net/sched/Kconfig @@ -284,6 +284,17 @@ config NET_SCH_FQ_CODEL If unsure, say N. +config NET_SCH_CAKE + tristate "Common Applicatons Kept Enhanced (CAKE)" + help + Say Y here if you want to use the CAKE + packet scheduling algorithm. + + To compile this driver as a module, choose M here: the module + will be called sch_cake. + + If unsure, say N. + config NET_SCH_FQ tristate "Fair Queue" help diff --git a/net/sched/Makefile b/net/sched/Makefile index 5b63544..b8dd962 100644 --- a/net/sched/Makefile +++ b/net/sched/Makefile @@ -50,6 +50,7 @@ obj-$(CONFIG_NET_SCH_CHOKE) += sch_choke.o obj-$(CONFIG_NET_SCH_QFQ) += sch_qfq.o obj-$(CONFIG_NET_SCH_CODEL) += sch_codel.o obj-$(CONFIG_NET_SCH_FQ_CODEL) += sch_fq_codel.o +obj-$(CONFIG_NET_SCH_CAKE) += sch_cake.o obj-$(CONFIG_NET_SCH_FQ) += sch_fq.o obj-$(CONFIG_NET_SCH_HHF) += sch_hhf.o obj-$(CONFIG_NET_SCH_PIE) += sch_pie.o -- 2.7.4