diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2020-07-24 10:50:22 +1000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-07-24 15:17:22 -0700 |
commit | c2b69f24ebd166a13cdc9909b50f33228895998b (patch) | |
tree | cf7041794d682fb5077313fc1cc325be30d875a2 /net/sched | |
parent | 8e8135862ccb5082347e2137b8a33edaf51427ce (diff) | |
download | linux-stable-c2b69f24ebd166a13cdc9909b50f33228895998b.tar.gz linux-stable-c2b69f24ebd166a13cdc9909b50f33228895998b.tar.bz2 linux-stable-c2b69f24ebd166a13cdc9909b50f33228895998b.zip |
flow_offload: Move rhashtable inclusion to the source file
I noticed that touching linux/rhashtable.h causes lib/vsprintf.c to
be rebuilt. This dependency came through a bogus inclusion in the
file net/flow_offload.h. This patch moves it to the right place.
This patch also removes a lingering rhashtable inclusion in cls_api
created by the same commit.
Fixes: 4e481908c51b ("flow_offload: move tc indirect block to...")
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched')
-rw-r--r-- | net/sched/cls_api.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c index e62beec0d844..4619cb3cb0a8 100644 --- a/net/sched/cls_api.c +++ b/net/sched/cls_api.c @@ -20,7 +20,6 @@ #include <linux/kmod.h> #include <linux/slab.h> #include <linux/idr.h> -#include <linux/rhashtable.h> #include <linux/jhash.h> #include <linux/rculist.h> #include <net/net_namespace.h> |