| To: | "David S. Miller" <davem@xxxxxxxxxx> |
|---|---|
| Subject: | [PATCH 2.6 PKT_SCHED]: Fix rcu_assign_pointer fallout, use it in the right place |
| From: | Patrick McHardy <kaber@xxxxxxxxx> |
| Date: | Fri, 05 Nov 2004 22:45:46 +0100 |
| Cc: | netdev@xxxxxxxxxxx |
| Sender: | netdev-bounce@xxxxxxxxxxx |
| User-agent: | Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.7.3) Gecko/20041008 Debian/1.7.3-5 |
|
The patch "RCU: use rcu_assign_pointer()"
http://linux.bkbits.net:8080/linux-2.6/diffs/net/sched/sch_api.c@xxxx?nav=index.html|src/net/|src/net|src/net/sched|related/net/sched/sch_api.c|cset@xxxxxx changed a list_add_tail to list_add_tail_rcu in qdisc_create. It's dev->qdisc not dev->qdisc_list that is protected by RCU, this patch reverts that change. It also removes a misleading comment and replaces the smp_wmb in qdisc_create_dflt by rcu_assign_pointer in dev_activate to document more clearly what is protected. Regards Patrick # This is a BitKeeper generated diff -Nru style patch.
#
# ChangeSet
# 2004/11/05 22:14:18+01:00 kaber@xxxxxxxxxxxx
# [PKT_SCHED]: Fix rcu_assign_pointer fallout, use it in the right place
#
# Signed-off-by: Patrick McHardy <kaber@xxxxxxxxx>
#
# net/sched/sch_generic.c
# 2004/11/05 22:14:08+01:00 kaber@xxxxxxxxxxxx +5 -7
# [PKT_SCHED]: Fix rcu_assign_pointer fallout, use it in the right place
#
# Signed-off-by: Patrick McHardy <kaber@xxxxxxxxx>
#
# net/sched/sch_api.c
# 2004/11/05 22:14:08+01:00 kaber@xxxxxxxxxxxx +2 -4
# [PKT_SCHED]: Fix rcu_assign_pointer fallout, use it in the right place
#
# Signed-off-by: Patrick McHardy <kaber@xxxxxxxxx>
#
diff -Nru a/net/sched/sch_api.c b/net/sched/sch_api.c
--- a/net/sched/sch_api.c 2004-11-05 22:29:06 +01:00
+++ b/net/sched/sch_api.c 2004-11-05 22:29:06 +01:00
@@ -451,11 +451,9 @@
else
sch->handle = handle;
- /* enqueue is accessed locklessly - make sure it's visible
- * before we set a netdevice's qdisc pointer to sch */
if (!ops->init || (err = ops->init(sch, tca[TCA_OPTIONS-1])) == 0) {
qdisc_lock_tree(dev);
- list_add_tail_rcu(&sch->list, &dev->qdisc_list);
+ list_add_tail(&sch->list, &dev->qdisc_list);
qdisc_unlock_tree(dev);
#ifdef CONFIG_NET_ESTIMATOR
diff -Nru a/net/sched/sch_generic.c b/net/sched/sch_generic.c
--- a/net/sched/sch_generic.c 2004-11-05 22:29:06 +01:00
+++ b/net/sched/sch_generic.c 2004-11-05 22:29:06 +01:00
@@ -436,9 +436,6 @@
dev_hold(dev);
sch->stats_lock = &dev->queue_lock;
atomic_set(&sch->refcnt, 1);
- /* enqueue is accessed locklessly - make sure it's visible
- * before we set a netdevice's qdisc pointer to sch */
- smp_wmb();
if (!ops->init || ops->init(sch, NULL) == 0)
return sch;
@@ -519,7 +516,8 @@
}
spin_lock_bh(&dev->queue_lock);
- if ((dev->qdisc = dev->qdisc_sleeping) != &noqueue_qdisc) {
+ rcu_assign_pointer(dev->qdisc, dev->qdisc_sleeping);
+ if (dev->qdisc != &noqueue_qdisc) {
dev->trans_start = jiffies;
dev_watchdog_up(dev);
}
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: request_module while holding rtnl semaphore, Herbert Xu |
|---|---|
| Next by Date: | Re: [PATCH] PKT_SCHED: Initialize list field in dummy qdiscs, Patrick McHardy |
| Previous by Thread: | [PATCH 2.6.9-rc2 5/12] S2io: module loadable parameters, koushik |
| Next by Thread: | Re: [PATCH 2.6 PKT_SCHED]: Fix rcu_assign_pointer fallout, use it in the right place, David S. Miller |
| Indexes: | [Date] [Thread] [Top] [All Lists] |