search for: tc_dly_qopt

Displaying 4 results from an estimated 4 matches for "tc_dly_qopt".

2004 Mar 18
6
[PATCH] packet delay scheduler
...ul please consider adding it. diff -Nru a/include/linux/pkt_sched.h b/include/linux/pkt_sched.h --- a/include/linux/pkt_sched.h Thu Mar 18 12:04:02 2004 +++ b/include/linux/pkt_sched.h Thu Mar 18 12:04:02 2004 @@ -432,4 +432,10 @@ #define TCA_ATM_MAX TCA_ATM_STATE +/* Delay section */ +struct tc_dly_qopt +{ + __u32 latency; + __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 call...
2004 Jul 01
20
[PATCH 2.6] update to network emulation QOS scheduler
...ux/pkt_sched.h sched-2.6/include/linux/pkt_sched.h --- linux-2.6/include/linux/pkt_sched.h 2004-06-24 08:52:58.000000000 -0700 +++ sched-2.6/include/linux/pkt_sched.h 2004-07-01 03:53:31.185482832 -0700 @@ -439,11 +439,14 @@ enum { #define TCA_ATM_MAX TCA_ATM_STATE -/* Delay section */ -struct tc_dly_qopt +/* Network emulator */ +struct tc_netem_qopt { - __u32 latency; - __u32 limit; - __u32 loss; + __u32 latency; /* added delay (us) */ + __u32 limit; /* fifo limit (packets) */ + __u32 loss; /* random packet loss (0=none ~0=100%) */ + __u32 gap; /* re-ordering gap (0 for delay all) */ + __u3...
2005 Feb 02
2
Packet Level Load Balance inbound/outbound success with nth and route
First of all, I''d like to thank Andy Furniss for his direction and for helping me get a working example up and running. For the following set up to work, you will need a linux computer at the ISP (server), a linux computer at the client location (client), and some a public range of IP''s you plan to send down to your client. (as this configuration involves patching the linux
2004 Jun 22
3
[ANNOUNCE] sch_ooo - Out-of-order packet queue discipline
...- <catab at umbrella dot ro>"); +MODULE_DESCRIPTION("sch_ooo - Produce ooo (out-of-order) packets"); --- linux.orig/include/linux/pkt_sched.h 2004-06-16 08:19:43.000000000 +0300 +++ linux/include/linux/pkt_sched.h 2004-06-22 15:16:44.000000000 +0300 @@ -438,4 +438,12 @@ struct tc_dly_qopt __u32 latency; __u32 limit; }; + +/* sch_ooo section */ +struct tc_ooo_qopt +{ + __u32 limit; + __u32 gap; + __u32 wait; +}; #endif --- Catalin(ux aka Dino) BOIE catab at umbrella dot ro - To unsubscribe from this list: send the line "unsubscribe linux-net" in the body of a...