mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
netfilter: fix Kconfig dependencies
Fix dependencies of netfilter realm match: it depends on NET_CLS_ROUTE, which itself depends on NET_SCHED; this dependency is missing from netfilter. Since matching on realms is also useful without having NET_SCHED enabled and the option really only controls whether the tclassid member is included in route and dst entries, rename the config option to IP_ROUTE_CLASSID and move it outside of traffic scheduling context to get rid of the NET_SCHED dependeny. Reported-by: Vladis Kletnieks <Valdis.Kletnieks@vt.edu> Signed-off-by: Patrick McHardy <kaber@trash.net>
This commit is contained in:
parent
ae90bdeaea
commit
c7066f70d9
11 changed files with 37 additions and 38 deletions
|
@ -255,7 +255,7 @@ META_COLLECTOR(int_rtclassid)
|
|||
if (unlikely(skb_dst(skb) == NULL))
|
||||
*err = -1;
|
||||
else
|
||||
#ifdef CONFIG_NET_CLS_ROUTE
|
||||
#ifdef CONFIG_IP_ROUTE_CLASSID
|
||||
dst->value = skb_dst(skb)->tclassid;
|
||||
#else
|
||||
dst->value = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue