diff options
author | Florian Fainelli <florian@openwrt.org> | 2008-11-26 18:16:23 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2008-11-26 18:16:23 +0000 |
commit | f39b57d15b9660c1ac3cbe942c18bbf728a95bb2 (patch) | |
tree | a7a355a6e0dfb0bc6fb618332c1575c3cd0b83aa /target | |
parent | cd96a09834f31f360102bd3a7f678ab7c30eda04 (diff) | |
download | upstream-f39b57d15b9660c1ac3cbe942c18bbf728a95bb2.tar.gz upstream-f39b57d15b9660c1ac3cbe942c18bbf728a95bb2.tar.bz2 upstream-f39b57d15b9660c1ac3cbe942c18bbf728a95bb2.zip |
the 'dev' member of the structure was removed in 2.6.27 (see: http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5ce2d488fe039ddd86a638496cf704df86c74eeb), therefore use the qdisc_dev() function instead.
Signed-off-by: Russell Senior <seniorr@aracnet.com>
SVN-Revision: 13366
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.27/200-sched_esfq.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.27/200-sched_esfq.patch b/target/linux/generic-2.6/patches-2.6.27/200-sched_esfq.patch index 8c8b56bcd0..ef4c21f771 100644 --- a/target/linux/generic-2.6/patches-2.6.27/200-sched_esfq.patch +++ b/target/linux/generic-2.6/patches-2.6.27/200-sched_esfq.patch @@ -678,7 +678,7 @@ + struct esfq_sched_data *q = qdisc_priv(sch); + int err; + -+ q->quantum = psched_mtu(sch->dev); /* default */ ++ q->quantum = psched_mtu(qdisc_dev(sch)); /* default */ + if ((err = esfq_q_init(q, opt))) + return err; + @@ -702,7 +702,7 @@ + + /* set up new queue */ + memset(&new, 0, sizeof(struct esfq_sched_data)); -+ new.quantum = psched_mtu(sch->dev); /* default */ ++ new.quantum = psched_mtu(qdisc_dev(sch)); /* default */ + if ((err = esfq_q_init(&new, opt))) + return err; + |