Displaying 6 results from an estimated 6 matches for "net_sch".
Did you mean:
net_s3
2004 Jun 22
3
[ANNOUNCE] sch_ooo - Out-of-order packet queue discipline
...please include it.
Any comments are appreciated. Thanks!
P.S. The homepage is at http://kernel.umbrella.ro/
P.P.S. The license is GPL.
--- linux.orig/net/sched/Kconfig 2004-06-16 08:19:52.000000000 +0300
+++ linux/net/sched/Kconfig 2004-06-22 15:03:11.000000000 +0300
@@ -175,6 +175,17 @@ config NET_SCH_DELAY
To compile this driver as a module, choose M here: the module
will be called sch_delay.
+config NET_SCH_OOO
+ tristate "Out-of-order qdisc discipline"
+ depends on NET_SCHED
+ help
+ Say Y if you want to simulate out-of-order packets by delaying
+ some of them. This q...
2009 Sep 08
1
Request advise regarding Driver for Intel Motherboard
Hello All
I made the mistake of assuming all Intel motherboards would be Linux
compatible out of the box and bought one without checking support
information. And now on initial install the Network is not
working....the Network port is not detected at all.
I have bought an Intel board DG41RQI
(http://www.intel.com/support/motherboards/desktop/DG41RQ/index.htm)
which does not support Linux Out of
2006 Jan 26
3
tc qdisc ingress problem ?
Hi, all
I''ve got problems with tc qdisc ingress.
I''m using vanillia kernel 2.6.14.4 patched with
http://www.ssi.bg/~ja/routes-2.6.14-12.diff, and iproute2-2.6.14-051107.
i am using ingress to limit incoming traffic :
(DEV is eth1 / DOWNLINK is 7700)
# attach ingress policer:
tc qdisc add dev $DEV handle ffff: ingress
# filter *everything* to it (0.0.0.0/0), drop everything
2004 Mar 18
6
[PATCH] packet delay scheduler
...u32 limit;
+};
#endif
diff -Nru a/net/sched/Kconfig b/net/sched/Kconfig
--- a/net/sched/Kconfig Thu Mar 18 12:04:02 2004
+++ b/net/sched/Kconfig Thu Mar 18 12:04:02 2004
@@ -164,6 +164,17 @@
To compile this code as a module, choose M here: the
module will be called sch_dsmark.
+config NET_SCH_DELAY
+ tristate "Delay simulator"
+ depends on NET_SCHED
+ help
+ Say Y if you want to delay packets by a fixed amount of
+ time. This is often useful to simulate network delay when
+ testing applications or protocols.
+
+ To compile this driver as a module, choose M here: the mo...
2005 Jan 04
11
ESFQ?
Hi again,
I was just looking around for ESFQ sources, and I see that the main site
is down, and only has kernel 2.6.4 patches.
Is ESFQ maintained? If so, where can I find patches for 2.6.10?
Thanks,
-justin
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
2004 Jul 01
20
[PATCH 2.6] update to network emulation QOS scheduler
...e; /* maximum transmit rate (bytes/sec) */
};
#endif
diff -urNp -X dontdiff linux-2.6/net/sched/Kconfig sched-2.6/net/sched/Kconfig
--- linux-2.6/net/sched/Kconfig 2004-06-25 09:41:00.000000000 -0700
+++ sched-2.6/net/sched/Kconfig 2004-06-28 09:17:19.000000000 -0700
@@ -164,12 +164,12 @@ config NET_SCH_DSMARK
To compile this code as a module, choose M here: the
module will be called sch_dsmark.
-config NET_SCH_DELAY
- tristate "Delay simulator"
+config NET_SCH_NETEM
+ tristate "Network emulator"
depends on NET_SCHED
help
- Say Y if you want to delay packets by...