diff options
author | Jakub Kicinski <kuba@kernel.org> | 2021-12-21 22:39:41 +0300 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2021-12-23 02:03:51 +0300 |
commit | e6e5904455815626b711c7d48cacd253f4d72f84 (patch) | |
tree | fde6f20fb83f7f4389a6489d54ff58acb23ea3ad /include/net/codel_qdisc.h | |
parent | 15fcb1031178f2a42425c2993b2ec7bb894c04d6 (diff) | |
download | linux-e6e5904455815626b711c7d48cacd253f4d72f84.tar.xz |
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_qdisc.h')
-rw-r--r-- | include/net/codel_qdisc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/codel_qdisc.h b/include/net/codel_qdisc.h index 098630f83a55..58b6d0ebea10 100644 --- a/include/net/codel_qdisc.h +++ b/include/net/codel_qdisc.h @@ -49,6 +49,8 @@ * Implemented on linux by Dave Taht and Eric Dumazet */ +#include <net/pkt_sched.h> + /* Qdiscs using codel plugin must use codel_skb_cb in their own cb[] */ struct codel_skb_cb { codel_time_t enqueue_time; |