* [PATCH net-next v2] net: allow configuring default qdisc
@ 2017-04-08 19:39 Stephen Hemminger
2017-04-12 2:09 ` David Miller
0 siblings, 1 reply; 4+ messages in thread
From: Stephen Hemminger @ 2017-04-08 19:39 UTC (permalink / raw)
To: davem; +Cc: netdev, Stephen Hemminger
Since 3.12 it has been possible to configure the default queuing
discipline via sysctl. This patch adds ability to configure the
default queue discipline in kernel configuration. This is useful for
environments where configuring the value from userspace is difficult
to manage.
The default is still the same as before (pfifo_fast) and it is
possible to change after kernel init with sysctl. This is similar
to how TCP congestion control works.
Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com>
---
v2 - rearrange order of menu items
use pfifo_fast not pfifo
net/sched/Kconfig | 31 +++++++++++++++++++++++++++++++
net/sched/sch_api.c | 7 +++++++
2 files changed, 38 insertions(+)
diff --git a/net/sched/Kconfig b/net/sched/Kconfig
index 403790cce7d2..c1243b8e6465 100644
--- a/net/sched/Kconfig
+++ b/net/sched/Kconfig
@@ -352,6 +352,37 @@ config NET_SCH_PLUG
To compile this code as a module, choose M here: the
module will be called sch_plug.
+choice
+ prompt "Default queuing discipline"
+ default DEFAULT_PFIFO_FAST
+ help
+ Select the queueing discipline that will be used by default
+ for all network devices.
+
+ config DEFAULT_FQ
+ bool "Fair Queue" if NET_SCH_FQ
+
+ config DEFAULT_CODEL
+ bool "Controlled Delay" if NET_SCH_CODEL
+
+ config DEFAULT_FQ_CODEL
+ bool "Fair Queue Controlled Delay" if NET_SCH_FQ_CODEL
+
+ config DEFAULT_SFQ
+ bool "Stochastic Fair Queue" if NET_SCH_SFQ
+
+ config DEFAULT_PFIFO_FAST
+ bool "Priority FIFO Fast"
+endchoice
+
+config DEFAULT_NET_SCH
+ string
+ default "pfifo_fast" if DEFAULT_PFIFO_FAST
+ default "fq" if DEFAULT_FQ
+ default "fq_codel" if DEFAULT_FQ_CODEL
+ default "sfq" if DEFAULT_SFQ
+ default "pfifo_fast"
+
comment "Classification"
config NET_CLS
diff --git a/net/sched/sch_api.c b/net/sched/sch_api.c
index 62567bfe52c7..0d82f76f622d 100644
--- a/net/sched/sch_api.c
+++ b/net/sched/sch_api.c
@@ -251,6 +251,13 @@ int qdisc_set_default(const char *name)
return ops ? 0 : -ENOENT;
}
+/* Set default value from kernel config */
+static int __init sch_default_qdisc(void)
+{
+ return qdisc_set_default(CONFIG_DEFAULT_NET_SCH);
+}
+late_initcall(sch_default_qdisc);
+
/* We know handle. Find qdisc among all qdisc's attached to device
* (root qdisc, all its children, children of children etc.)
* Note: caller either uses rtnl or rcu_read_lock()
--
2.11.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH net-next v2] net: allow configuring default qdisc
2017-04-08 19:39 [PATCH net-next v2] net: allow configuring default qdisc Stephen Hemminger
@ 2017-04-12 2:09 ` David Miller
2017-04-12 22:59 ` Stephen Hemminger
0 siblings, 1 reply; 4+ messages in thread
From: David Miller @ 2017-04-12 2:09 UTC (permalink / raw)
To: stephen; +Cc: netdev, sthemmin
From: Stephen Hemminger <stephen@networkplumber.org>
Date: Sat, 8 Apr 2017 15:39:46 -0400
> Since 3.12 it has been possible to configure the default queuing
> discipline via sysctl. This patch adds ability to configure the
> default queue discipline in kernel configuration. This is useful for
> environments where configuring the value from userspace is difficult
> to manage.
>
> The default is still the same as before (pfifo_fast) and it is
> possible to change after kernel init with sysctl. This is similar
> to how TCP congestion control works.
>
> Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com>
> ---
> v2 - rearrange order of menu items
> use pfifo_fast not pfifo
Stephen I'm still thinking about this.
Normal users typing "make oldconfig" shouldn't be asked a question
like this. They have no idea. This is just like how we hide all the
advanced ipv4 routing choices behind the Kconfig symbol
IP_ADVANCED_ROUTER and TCP congestion control with TCP_CONG_ADVANCED.
And from experience I know that if it shows up when Linus types 'make'
after pulling this in, he will complain :-)
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net-next v2] net: allow configuring default qdisc
2017-04-12 2:09 ` David Miller
@ 2017-04-12 22:59 ` Stephen Hemminger
2017-04-13 1:57 ` David Miller
0 siblings, 1 reply; 4+ messages in thread
From: Stephen Hemminger @ 2017-04-12 22:59 UTC (permalink / raw)
To: David Miller; +Cc: netdev, sthemmin
On Tue, 11 Apr 2017 22:09:59 -0400 (EDT)
David Miller <davem@davemloft.net> wrote:
> From: Stephen Hemminger <stephen@networkplumber.org>
> Date: Sat, 8 Apr 2017 15:39:46 -0400
>
> > Since 3.12 it has been possible to configure the default queuing
> > discipline via sysctl. This patch adds ability to configure the
> > default queue discipline in kernel configuration. This is useful for
> > environments where configuring the value from userspace is difficult
> > to manage.
> >
> > The default is still the same as before (pfifo_fast) and it is
> > possible to change after kernel init with sysctl. This is similar
> > to how TCP congestion control works.
> >
> > Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com>
> > ---
> > v2 - rearrange order of menu items
> > use pfifo_fast not pfifo
>
> Stephen I'm still thinking about this.
>
> Normal users typing "make oldconfig" shouldn't be asked a question
> like this. They have no idea. This is just like how we hide all the
> advanced ipv4 routing choices behind the Kconfig symbol
> IP_ADVANCED_ROUTER and TCP congestion control with TCP_CONG_ADVANCED.
>
> And from experience I know that if it shows up when Linus types 'make'
> after pulling this in, he will complain :-)
I understand your concern about less clueful users not knowing what
to answer. But there have been many recent cases where things have
been added with the adage "just hit return and take the default".
The most recent example was in the block layer.
commit d34849913819a5e0cbfbe724dbe79df89278c524
Author: Jens Axboe <axboe@fb.com>
Date: Fri Jan 13 14:43:58 2017 -0700
blk-mq-sched: allow setting of default IO scheduler
Add Kconfig entries to manage what devices get assigned an MQ
scheduler, and add a blk-mq flag for drivers to opt out of scheduling.
The latter is useful for admin type queues that still allocate a blk-mq
queue and tag set, but aren't use for normal IO.
Signed-off-by: Jens Axboe <axboe@fb.com>
Reviewed-by: Bart Van Assche <bart.vanassche@sandisk.com>
Reviewed-by: Omar Sandoval <osandov@fb.com>
Maybe Linus understands IO better than networking :=)
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-04-13 1:57 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-08 19:39 [PATCH net-next v2] net: allow configuring default qdisc Stephen Hemminger
2017-04-12 2:09 ` David Miller
2017-04-12 22:59 ` Stephen Hemminger
2017-04-13 1:57 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).