aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/sch_tbf.c
diff options
context:
space:
mode:
authorEric Dumazet <dada1@cosmosbay.com>2007-11-14 04:44:41 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 17:53:58 -0500
commit20fea08b5fb639c4c175b5c74a2bb346c5c5bc2e (patch)
tree3ffa7e1e82051c6772fc2a01d561e4a5a29bb138 /net/sched/sch_tbf.c
parent2a8cc6c89039e0530a3335954253b76ed0f9339a (diff)
[NET]: Move Qdisc_class_ops and Qdisc_ops in appropriate sections.
Qdisc_class_ops are const, and Qdisc_ops are mostly read. Using "const" and "__read_mostly" qualifiers helps to reduce false sharing. Signed-off-by: Eric Dumazet <dada1@cosmosbay.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_tbf.c')
-rw-r--r--net/sched/sch_tbf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sched/sch_tbf.c b/net/sched/sch_tbf.c
index b0d81098b0e..d88fea9d6b6 100644
--- a/net/sched/sch_tbf.c
+++ b/net/sched/sch_tbf.c
@@ -469,7 +469,7 @@ static struct tcf_proto **tbf_find_tcf(struct Qdisc *sch, unsigned long cl)
469 return NULL; 469 return NULL;
470} 470}
471 471
472static struct Qdisc_class_ops tbf_class_ops = 472static const struct Qdisc_class_ops tbf_class_ops =
473{ 473{
474 .graft = tbf_graft, 474 .graft = tbf_graft,
475 .leaf = tbf_leaf, 475 .leaf = tbf_leaf,
@@ -482,7 +482,7 @@ static struct Qdisc_class_ops tbf_class_ops =
482 .dump = tbf_dump_class, 482 .dump = tbf_dump_class,
483}; 483};
484 484
485static struct Qdisc_ops tbf_qdisc_ops = { 485static struct Qdisc_ops tbf_qdisc_ops __read_mostly = {
486 .next = NULL, 486 .next = NULL,
487 .cl_ops = &tbf_class_ops, 487 .cl_ops = &tbf_class_ops,
488 .id = "tbf", 488 .id = "tbf",