diff options
author | Eric Dumazet <dada1@cosmosbay.com> | 2007-11-14 04:44:41 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 17:53:58 -0500 |
commit | 20fea08b5fb639c4c175b5c74a2bb346c5c5bc2e (patch) | |
tree | 3ffa7e1e82051c6772fc2a01d561e4a5a29bb138 /net/mac80211/wme.c | |
parent | 2a8cc6c89039e0530a3335954253b76ed0f9339a (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/mac80211/wme.c')
-rw-r--r-- | net/mac80211/wme.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/wme.c b/net/mac80211/wme.c index 5b8a157975a3..8dbdededdec2 100644 --- a/net/mac80211/wme.c +++ b/net/mac80211/wme.c | |||
@@ -527,7 +527,7 @@ static struct tcf_proto ** wme_classop_find_tcf(struct Qdisc *qd, | |||
527 | 527 | ||
528 | /* this qdisc is classful (i.e. has classes, some of which may have leaf qdiscs attached) | 528 | /* this qdisc is classful (i.e. has classes, some of which may have leaf qdiscs attached) |
529 | * - these are the operations on the classes */ | 529 | * - these are the operations on the classes */ |
530 | static struct Qdisc_class_ops class_ops = | 530 | static const struct Qdisc_class_ops class_ops = |
531 | { | 531 | { |
532 | .graft = wme_classop_graft, | 532 | .graft = wme_classop_graft, |
533 | .leaf = wme_classop_leaf, | 533 | .leaf = wme_classop_leaf, |
@@ -547,7 +547,7 @@ static struct Qdisc_class_ops class_ops = | |||
547 | 547 | ||
548 | 548 | ||
549 | /* queueing discipline operations */ | 549 | /* queueing discipline operations */ |
550 | static struct Qdisc_ops wme_qdisc_ops = | 550 | static struct Qdisc_ops wme_qdisc_ops __read_mostly = |
551 | { | 551 | { |
552 | .next = NULL, | 552 | .next = NULL, |
553 | .cl_ops = &class_ops, | 553 | .cl_ops = &class_ops, |