x86/speculation/mds: Fix documentation typo
[linux/fpc-iii.git] / net / sched / sch_ingress.c
bloba08a32fa094930ca0f4bd18cb66f80eee1cccfb5
1 /* net/sched/sch_ingress.c - Ingress and clsact qdisc
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU General Public License
5 * as published by the Free Software Foundation; either version
6 * 2 of the License, or (at your option) any later version.
8 * Authors: Jamal Hadi Salim 1999
9 */
11 #include <linux/module.h>
12 #include <linux/types.h>
13 #include <linux/list.h>
14 #include <linux/skbuff.h>
15 #include <linux/rtnetlink.h>
17 #include <net/netlink.h>
18 #include <net/pkt_sched.h>
19 #include <net/pkt_cls.h>
21 struct ingress_sched_data {
22 struct tcf_block *block;
25 static struct Qdisc *ingress_leaf(struct Qdisc *sch, unsigned long arg)
27 return NULL;
30 static unsigned long ingress_find(struct Qdisc *sch, u32 classid)
32 return TC_H_MIN(classid) + 1;
35 static unsigned long ingress_bind_filter(struct Qdisc *sch,
36 unsigned long parent, u32 classid)
38 return ingress_find(sch, classid);
41 static void ingress_unbind_filter(struct Qdisc *sch, unsigned long cl)
45 static void ingress_walk(struct Qdisc *sch, struct qdisc_walker *walker)
49 static struct tcf_block *ingress_tcf_block(struct Qdisc *sch, unsigned long cl)
51 struct ingress_sched_data *q = qdisc_priv(sch);
53 return q->block;
56 static int ingress_init(struct Qdisc *sch, struct nlattr *opt)
58 struct ingress_sched_data *q = qdisc_priv(sch);
59 struct net_device *dev = qdisc_dev(sch);
60 int err;
62 net_inc_ingress_queue();
64 err = tcf_block_get(&q->block, &dev->ingress_cl_list);
65 if (err)
66 return err;
68 sch->flags |= TCQ_F_CPUSTATS;
70 return 0;
73 static void ingress_destroy(struct Qdisc *sch)
75 struct ingress_sched_data *q = qdisc_priv(sch);
77 tcf_block_put(q->block);
78 net_dec_ingress_queue();
81 static int ingress_dump(struct Qdisc *sch, struct sk_buff *skb)
83 struct nlattr *nest;
85 nest = nla_nest_start(skb, TCA_OPTIONS);
86 if (nest == NULL)
87 goto nla_put_failure;
89 return nla_nest_end(skb, nest);
91 nla_put_failure:
92 nla_nest_cancel(skb, nest);
93 return -1;
96 static const struct Qdisc_class_ops ingress_class_ops = {
97 .leaf = ingress_leaf,
98 .find = ingress_find,
99 .walk = ingress_walk,
100 .tcf_block = ingress_tcf_block,
101 .bind_tcf = ingress_bind_filter,
102 .unbind_tcf = ingress_unbind_filter,
105 static struct Qdisc_ops ingress_qdisc_ops __read_mostly = {
106 .cl_ops = &ingress_class_ops,
107 .id = "ingress",
108 .priv_size = sizeof(struct ingress_sched_data),
109 .init = ingress_init,
110 .destroy = ingress_destroy,
111 .dump = ingress_dump,
112 .owner = THIS_MODULE,
115 struct clsact_sched_data {
116 struct tcf_block *ingress_block;
117 struct tcf_block *egress_block;
120 static unsigned long clsact_find(struct Qdisc *sch, u32 classid)
122 switch (TC_H_MIN(classid)) {
123 case TC_H_MIN(TC_H_MIN_INGRESS):
124 case TC_H_MIN(TC_H_MIN_EGRESS):
125 return TC_H_MIN(classid);
126 default:
127 return 0;
131 static unsigned long clsact_bind_filter(struct Qdisc *sch,
132 unsigned long parent, u32 classid)
134 return clsact_find(sch, classid);
137 static struct tcf_block *clsact_tcf_block(struct Qdisc *sch, unsigned long cl)
139 struct clsact_sched_data *q = qdisc_priv(sch);
141 switch (cl) {
142 case TC_H_MIN(TC_H_MIN_INGRESS):
143 return q->ingress_block;
144 case TC_H_MIN(TC_H_MIN_EGRESS):
145 return q->egress_block;
146 default:
147 return NULL;
151 static int clsact_init(struct Qdisc *sch, struct nlattr *opt)
153 struct clsact_sched_data *q = qdisc_priv(sch);
154 struct net_device *dev = qdisc_dev(sch);
155 int err;
157 net_inc_ingress_queue();
158 net_inc_egress_queue();
160 err = tcf_block_get(&q->ingress_block, &dev->ingress_cl_list);
161 if (err)
162 return err;
164 err = tcf_block_get(&q->egress_block, &dev->egress_cl_list);
165 if (err)
166 return err;
168 sch->flags |= TCQ_F_CPUSTATS;
170 return 0;
173 static void clsact_destroy(struct Qdisc *sch)
175 struct clsact_sched_data *q = qdisc_priv(sch);
177 tcf_block_put(q->egress_block);
178 tcf_block_put(q->ingress_block);
180 net_dec_ingress_queue();
181 net_dec_egress_queue();
184 static const struct Qdisc_class_ops clsact_class_ops = {
185 .leaf = ingress_leaf,
186 .find = clsact_find,
187 .walk = ingress_walk,
188 .tcf_block = clsact_tcf_block,
189 .bind_tcf = clsact_bind_filter,
190 .unbind_tcf = ingress_unbind_filter,
193 static struct Qdisc_ops clsact_qdisc_ops __read_mostly = {
194 .cl_ops = &clsact_class_ops,
195 .id = "clsact",
196 .priv_size = sizeof(struct clsact_sched_data),
197 .init = clsact_init,
198 .destroy = clsact_destroy,
199 .dump = ingress_dump,
200 .owner = THIS_MODULE,
203 static int __init ingress_module_init(void)
205 int ret;
207 ret = register_qdisc(&ingress_qdisc_ops);
208 if (!ret) {
209 ret = register_qdisc(&clsact_qdisc_ops);
210 if (ret)
211 unregister_qdisc(&ingress_qdisc_ops);
214 return ret;
217 static void __exit ingress_module_exit(void)
219 unregister_qdisc(&ingress_qdisc_ops);
220 unregister_qdisc(&clsact_qdisc_ops);
223 module_init(ingress_module_init);
224 module_exit(ingress_module_exit);
226 MODULE_ALIAS("sch_clsact");
227 MODULE_LICENSE("GPL");