diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2008-05-18 20:26:43 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2008-05-18 20:26:43 +0000 |
commit | 4503efda2da6e5868bbbd274c042622dc03edd8e (patch) | |
tree | 3678d3fa5a554dcf4f4295ab9dcb5ab026240683 /target/linux/generic-2.6/patches-2.6.25/200-sched_esfq.patch | |
parent | e582f614b6e15517a9207b0a96a72b68f7a254df (diff) | |
download | upstream-4503efda2da6e5868bbbd274c042622dc03edd8e.tar.gz upstream-4503efda2da6e5868bbbd274c042622dc03edd8e.tar.bz2 upstream-4503efda2da6e5868bbbd274c042622dc03edd8e.zip |
refresh generic 2.6.25 patches
SVN-Revision: 11189
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.25/200-sched_esfq.patch')
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.25/200-sched_esfq.patch | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.25/200-sched_esfq.patch b/target/linux/generic-2.6/patches-2.6.25/200-sched_esfq.patch index 142c82ab18..ac39a8c72f 100644 --- a/target/linux/generic-2.6/patches-2.6.25/200-sched_esfq.patch +++ b/target/linux/generic-2.6/patches-2.6.25/200-sched_esfq.patch @@ -1,7 +1,7 @@ -Index: linux-2.6.25.1/include/linux/pkt_sched.h +Index: linux-2.6.25.4/include/linux/pkt_sched.h =================================================================== ---- linux-2.6.25.1.orig/include/linux/pkt_sched.h -+++ linux-2.6.25.1/include/linux/pkt_sched.h +--- linux-2.6.25.4.orig/include/linux/pkt_sched.h ++++ linux-2.6.25.4/include/linux/pkt_sched.h @@ -162,8 +162,37 @@ struct tc_sfq_xstats * * The only reason for this is efficiency, it is possible @@ -40,10 +40,10 @@ Index: linux-2.6.25.1/include/linux/pkt_sched.h /* RED section */ enum -Index: linux-2.6.25.1/net/sched/Kconfig +Index: linux-2.6.25.4/net/sched/Kconfig =================================================================== ---- linux-2.6.25.1.orig/net/sched/Kconfig -+++ linux-2.6.25.1/net/sched/Kconfig +--- linux-2.6.25.4.orig/net/sched/Kconfig ++++ linux-2.6.25.4/net/sched/Kconfig @@ -139,6 +139,37 @@ config NET_SCH_SFQ To compile this code as a module, choose M here: the module will be called sch_sfq. @@ -82,10 +82,10 @@ Index: linux-2.6.25.1/net/sched/Kconfig config NET_SCH_TEQL tristate "True Link Equalizer (TEQL)" ---help--- -Index: linux-2.6.25.1/net/sched/Makefile +Index: linux-2.6.25.4/net/sched/Makefile =================================================================== ---- linux-2.6.25.1.orig/net/sched/Makefile -+++ linux-2.6.25.1/net/sched/Makefile +--- linux-2.6.25.4.orig/net/sched/Makefile ++++ linux-2.6.25.4/net/sched/Makefile @@ -23,6 +23,7 @@ obj-$(CONFIG_NET_SCH_GRED) += sch_gred.o obj-$(CONFIG_NET_SCH_INGRESS) += sch_ingress.o obj-$(CONFIG_NET_SCH_DSMARK) += sch_dsmark.o @@ -94,10 +94,10 @@ Index: linux-2.6.25.1/net/sched/Makefile obj-$(CONFIG_NET_SCH_TBF) += sch_tbf.o obj-$(CONFIG_NET_SCH_TEQL) += sch_teql.o obj-$(CONFIG_NET_SCH_PRIO) += sch_prio.o -Index: linux-2.6.25.1/net/sched/sch_esfq.c +Index: linux-2.6.25.4/net/sched/sch_esfq.c =================================================================== --- /dev/null -+++ linux-2.6.25.1/net/sched/sch_esfq.c ++++ linux-2.6.25.4/net/sched/sch_esfq.c @@ -0,0 +1,702 @@ +/* + * net/sched/sch_esfq.c Extended Stochastic Fairness Queueing discipline. |