diff options
author | Jakub Kicinski <kuba@kernel.org> | 2021-12-21 11:39:41 -0800 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2021-12-22 15:03:51 -0800 |
commit | e6e5904455815626b711c7d48cacd253f4d72f84 (patch) | |
tree | fde6f20fb83f7f4389a6489d54ff58acb23ea3ad /include/net/codel.h | |
parent | 15fcb1031178f2a42425c2993b2ec7bb894c04d6 (diff) |
codel: remove unnecessary pkt_sched.h include
Commit d068ca2ae2e6 ("codel: split into multiple files") moved all
Qdisc-related code to codel_qdisc.h, move the include of pkt_sched.h
as well.
This is similar to the previous commit, although we don't care as
much about incremental builds after pkt_sched.h was touched itself
it is included by net/sch_generic.h which is modified ~20 times
a year.
This decreases the incremental build size after touching pkt_sched.h
from 1592 to 617 objects.
Fix unmasked missing includes in WiFi drivers.
Acked-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20211221193941.3805147-2-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'include/net/codel.h')
-rw-r--r-- | include/net/codel.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/net/codel.h b/include/net/codel.h index d74dd8fda54e..5fed2f16cb8d 100644 --- a/include/net/codel.h +++ b/include/net/codel.h @@ -44,7 +44,6 @@ #include <linux/types.h> #include <linux/ktime.h> #include <linux/skbuff.h> -#include <net/pkt_sched.h> /* Controlling Queue Delay (CoDel) algorithm * ========================================= |