diff options
author | Thomas Graf <tgraf@suug.ch> | 2007-03-22 14:55:50 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:27:09 -0400 |
commit | be577ddc2b4aca0849f701222f5bc13cf1b79c9a (patch) | |
tree | 39ea6dcd40885a79cb1e3172b3299069156993f4 /net/sched | |
parent | 63f3444fb9a54c024d55f1205f8b94e7d2786595 (diff) |
[PKT_SCHED] qdisc: Use rtnl registration interface
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched')
-rw-r--r-- | net/sched/sch_api.c | 27 |
1 files changed, 7 insertions, 20 deletions
diff --git a/net/sched/sch_api.c b/net/sched/sch_api.c index 0b9abea68fd5..b06f20294ac0 100644 --- a/net/sched/sch_api.c +++ b/net/sched/sch_api.c | |||
@@ -27,7 +27,6 @@ | |||
27 | #include <linux/interrupt.h> | 27 | #include <linux/interrupt.h> |
28 | #include <linux/netdevice.h> | 28 | #include <linux/netdevice.h> |
29 | #include <linux/skbuff.h> | 29 | #include <linux/skbuff.h> |
30 | #include <linux/rtnetlink.h> | ||
31 | #include <linux/init.h> | 30 | #include <linux/init.h> |
32 | #include <linux/proc_fs.h> | 31 | #include <linux/proc_fs.h> |
33 | #include <linux/seq_file.h> | 32 | #include <linux/seq_file.h> |
@@ -1239,29 +1238,17 @@ static const struct file_operations psched_fops = { | |||
1239 | 1238 | ||
1240 | static int __init pktsched_init(void) | 1239 | static int __init pktsched_init(void) |
1241 | { | 1240 | { |
1242 | struct rtnetlink_link *link_p; | ||
1243 | |||
1244 | link_p = rtnetlink_links[PF_UNSPEC]; | ||
1245 | |||
1246 | /* Setup rtnetlink links. It is made here to avoid | ||
1247 | exporting large number of public symbols. | ||
1248 | */ | ||
1249 | |||
1250 | if (link_p) { | ||
1251 | link_p[RTM_NEWQDISC-RTM_BASE].doit = tc_modify_qdisc; | ||
1252 | link_p[RTM_DELQDISC-RTM_BASE].doit = tc_get_qdisc; | ||
1253 | link_p[RTM_GETQDISC-RTM_BASE].doit = tc_get_qdisc; | ||
1254 | link_p[RTM_GETQDISC-RTM_BASE].dumpit = tc_dump_qdisc; | ||
1255 | link_p[RTM_NEWTCLASS-RTM_BASE].doit = tc_ctl_tclass; | ||
1256 | link_p[RTM_DELTCLASS-RTM_BASE].doit = tc_ctl_tclass; | ||
1257 | link_p[RTM_GETTCLASS-RTM_BASE].doit = tc_ctl_tclass; | ||
1258 | link_p[RTM_GETTCLASS-RTM_BASE].dumpit = tc_dump_tclass; | ||
1259 | } | ||
1260 | |||
1261 | register_qdisc(&pfifo_qdisc_ops); | 1241 | register_qdisc(&pfifo_qdisc_ops); |
1262 | register_qdisc(&bfifo_qdisc_ops); | 1242 | register_qdisc(&bfifo_qdisc_ops); |
1263 | proc_net_fops_create("psched", 0, &psched_fops); | 1243 | proc_net_fops_create("psched", 0, &psched_fops); |
1264 | 1244 | ||
1245 | rtnl_register(PF_UNSPEC, RTM_NEWQDISC, tc_modify_qdisc, NULL); | ||
1246 | rtnl_register(PF_UNSPEC, RTM_DELQDISC, tc_get_qdisc, NULL); | ||
1247 | rtnl_register(PF_UNSPEC, RTM_GETQDISC, tc_get_qdisc, tc_dump_qdisc); | ||
1248 | rtnl_register(PF_UNSPEC, RTM_NEWTCLASS, tc_ctl_tclass, NULL); | ||
1249 | rtnl_register(PF_UNSPEC, RTM_DELTCLASS, tc_ctl_tclass, NULL); | ||
1250 | rtnl_register(PF_UNSPEC, RTM_GETTCLASS, tc_ctl_tclass, tc_dump_tclass); | ||
1251 | |||
1265 | return 0; | 1252 | return 0; |
1266 | } | 1253 | } |
1267 | 1254 | ||