Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 103606
b: refs/heads/master
c: 5304997
h: refs/heads/master
v: v3
  • Loading branch information
David S. Miller committed Jul 18, 2008
1 parent d1e2860 commit 513f303
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ead81cc5fc6d996db6afb20f211241612610a07a
refs/heads/master: 53049978df1d9ae55bf397c9879e6b33218352db
41 changes: 29 additions & 12 deletions trunk/net/sched/sch_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -441,15 +441,29 @@ static struct Qdisc *
dev_graft_qdisc(struct net_device *dev, struct Qdisc *qdisc)
{
struct netdev_queue *dev_queue;
spinlock_t *root_lock;
struct Qdisc *oqdisc;
int ingress;

if (dev->flags & IFF_UP)
dev_deactivate(dev);

qdisc_lock_tree(dev);
if (qdisc && qdisc->flags&TCQ_F_INGRESS) {
ingress = 0;
if (qdisc && qdisc->flags&TCQ_F_INGRESS)
ingress = 1;

if (ingress) {
dev_queue = &dev->rx_queue;
oqdisc = dev_queue->qdisc;
} else {
dev_queue = netdev_get_tx_queue(dev, 0);
oqdisc = dev_queue->qdisc_sleeping;
}

root_lock = qdisc_root_lock(oqdisc);
spin_lock_bh(root_lock);

if (ingress) {
/* Prune old scheduler */
if (oqdisc && atomic_read(&oqdisc->refcnt) <= 1) {
/* delete */
Expand All @@ -460,9 +474,6 @@ dev_graft_qdisc(struct net_device *dev, struct Qdisc *qdisc)
}

} else {
dev_queue = netdev_get_tx_queue(dev, 0);
oqdisc = dev_queue->qdisc_sleeping;

/* Prune old scheduler */
if (oqdisc && atomic_read(&oqdisc->refcnt) <= 1)
qdisc_reset(oqdisc);
Expand All @@ -474,7 +485,7 @@ dev_graft_qdisc(struct net_device *dev, struct Qdisc *qdisc)
dev_queue->qdisc = &noop_qdisc;
}

qdisc_unlock_tree(dev);
spin_unlock_bh(root_lock);

if (dev->flags & IFF_UP)
dev_activate(dev);
Expand Down Expand Up @@ -765,10 +776,12 @@ static int tc_get_qdisc(struct sk_buff *skb, struct nlmsghdr *n, void *arg)
if ((err = qdisc_graft(dev, p, clid, NULL, &q)) != 0)
return err;
if (q) {
spinlock_t *root_lock = qdisc_root_lock(q);

qdisc_notify(skb, n, clid, q, NULL);
qdisc_lock_tree(dev);
spin_unlock_bh(root_lock);
qdisc_destroy(q);
qdisc_unlock_tree(dev);
spin_unlock_bh(root_lock);
}
} else {
qdisc_notify(skb, n, clid, NULL, q);
Expand Down Expand Up @@ -911,20 +924,24 @@ static int tc_modify_qdisc(struct sk_buff *skb, struct nlmsghdr *n, void *arg)
graft:
if (1) {
struct Qdisc *old_q = NULL;
spinlock_t *root_lock;

err = qdisc_graft(dev, p, clid, q, &old_q);
if (err) {
if (q) {
qdisc_lock_tree(dev);
root_lock = qdisc_root_lock(q);
spin_lock_bh(root_lock);
qdisc_destroy(q);
qdisc_unlock_tree(dev);
spin_unlock_bh(root_lock);
}
return err;
}
qdisc_notify(skb, n, clid, old_q, q);
if (old_q) {
qdisc_lock_tree(dev);
root_lock = qdisc_root_lock(old_q);
spin_lock_bh(root_lock);
qdisc_destroy(old_q);
qdisc_unlock_tree(dev);
spin_unlock_bh(root_lock);
}
}
return 0;
Expand Down

0 comments on commit 513f303

Please sign in to comment.