diff options
author | Jarek Poplawski <jarkao2@gmail.com> | 2009-01-05 21:14:19 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-01-05 21:14:19 -0500 |
commit | 6f57321422e0d359e83c978c2b03db77b967b7d5 (patch) | |
tree | 80d92a8fff5b5ae27ca618f34acf9d696289d6ba /net/sched/cls_u32.c | |
parent | f1d3e4dca3f8d4f55656477e83d0afe0ea7cbaed (diff) |
pkt_sched: cls_u32: Fix locking in u32_change()
New nodes are inserted in u32_change() under rtnl_lock() with wmb(),
so without tcf_tree_lock() like in other classifiers (e.g. cls_fw).
This isn't enough without rmb() on the read side, but on the other
hand adding such barriers doesn't give any savings, so the lock is
added instead.
Reported-by: m0sia <m0sia@plotinka.ru>
Signed-off-by: Jarek Poplawski <jarkao2@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/cls_u32.c')
-rw-r--r-- | net/sched/cls_u32.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/sched/cls_u32.c b/net/sched/cls_u32.c index 05d178008cbc..07372f60bee3 100644 --- a/net/sched/cls_u32.c +++ b/net/sched/cls_u32.c | |||
@@ -638,8 +638,9 @@ static int u32_change(struct tcf_proto *tp, unsigned long base, u32 handle, | |||
638 | break; | 638 | break; |
639 | 639 | ||
640 | n->next = *ins; | 640 | n->next = *ins; |
641 | wmb(); | 641 | tcf_tree_lock(tp); |
642 | *ins = n; | 642 | *ins = n; |
643 | tcf_tree_unlock(tp); | ||
643 | 644 | ||
644 | *arg = (unsigned long)n; | 645 | *arg = (unsigned long)n; |
645 | return 0; | 646 | return 0; |