diff options
author | Jakub Kicinski <kuba@kernel.org> | 2020-11-21 01:50:52 +0300 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2020-11-24 04:27:04 +0300 |
commit | cc69837fcaf467426ca19e5790085c26146a2300 (patch) | |
tree | 94d2635912fdbe8873a928760551ac112a67115c /net/sched | |
parent | 7fd6372e273e67d6d8b49a3cd8d9a00b44d92e97 (diff) | |
download | linux-cc69837fcaf467426ca19e5790085c26146a2300.tar.xz |
net: don't include ethtool.h from netdevice.h
linux/netdevice.h is included in very many places, touching any
of its dependecies causes large incremental builds.
Drop the linux/ethtool.h include, linux/netdevice.h just needs
a forward declaration of struct ethtool_ops.
Fix all the places which made use of this implicit include.
Acked-by: Johannes Berg <johannes@sipsolutions.net>
Acked-by: Shannon Nelson <snelson@pensando.io>
Reviewed-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Link: https://lore.kernel.org/r/20201120225052.1427503-1-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/sched')
-rw-r--r-- | net/sched/sch_cbs.c | 1 | ||||
-rw-r--r-- | net/sched/sch_taprio.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/net/sched/sch_cbs.c b/net/sched/sch_cbs.c index 2eaac2ff380f..459cc240eda9 100644 --- a/net/sched/sch_cbs.c +++ b/net/sched/sch_cbs.c @@ -50,6 +50,7 @@ * locredit = max_frame_size * (sendslope / port_transmit_rate) */ +#include <linux/ethtool.h> #include <linux/module.h> #include <linux/types.h> #include <linux/kernel.h> diff --git a/net/sched/sch_taprio.c b/net/sched/sch_taprio.c index b0ad7687ee2c..26fb8a62996b 100644 --- a/net/sched/sch_taprio.c +++ b/net/sched/sch_taprio.c @@ -6,6 +6,7 @@ * */ +#include <linux/ethtool.h> #include <linux/types.h> #include <linux/slab.h> #include <linux/kernel.h> |