diff options
Diffstat (limited to 'net/sched/sch_ingress.c')
-rw-r--r-- | net/sched/sch_ingress.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/net/sched/sch_ingress.c b/net/sched/sch_ingress.c index c69e7bc7fb6c..b30ca01bdc04 100644 --- a/net/sched/sch_ingress.c +++ b/net/sched/sch_ingress.c | |||
@@ -162,19 +162,10 @@ static struct nf_hook_ops ing_ops[] __read_mostly = { | |||
162 | 162 | ||
163 | static int ingress_init(struct Qdisc *sch, struct rtattr *opt) | 163 | static int ingress_init(struct Qdisc *sch, struct rtattr *opt) |
164 | { | 164 | { |
165 | /* Make sure either netfilter or preferably CLS_ACT is | ||
166 | * compiled in */ | ||
167 | #ifndef CONFIG_NET_CLS_ACT | 165 | #ifndef CONFIG_NET_CLS_ACT |
168 | #ifndef CONFIG_NETFILTER | 166 | #ifdef CONFIG_NETFILTER |
169 | printk("You MUST compile classifier actions into the kernel\n"); | ||
170 | return -EINVAL; | ||
171 | #else | ||
172 | printk("Ingress scheduler: Classifier actions prefered over netfilter\n"); | 167 | printk("Ingress scheduler: Classifier actions prefered over netfilter\n"); |
173 | #endif | ||
174 | #endif | ||
175 | 168 | ||
176 | #ifndef CONFIG_NET_CLS_ACT | ||
177 | #ifdef CONFIG_NETFILTER | ||
178 | if (!nf_registered) { | 169 | if (!nf_registered) { |
179 | if (nf_register_hooks(ing_ops, ARRAY_SIZE(ing_ops)) < 0) { | 170 | if (nf_register_hooks(ing_ops, ARRAY_SIZE(ing_ops)) < 0) { |
180 | printk("ingress qdisc registration error \n"); | 171 | printk("ingress qdisc registration error \n"); |