Displaying 2 results from an estimated 2 matches for "time_to_send".
Did you mean:
time_to_sec
2005 Mar 30
5
netem with prio hangs on duplicate
hi
i tried the example given on the examples page to
duplicate selected traffic like
tc qdisc add dev eth0 root handle 1: prio
tc qdisc add dev eth0 parent 1:3 handle 3: netem
duplicate 40%
tc filter add dev eth0 protocol ip parent 1:0 prio 3
u32 match ip dst 11.0.2.2 flowid 1:3
when i ping from 11.0.2.2 to this interface my machine
hangs. the same thing works for drop or delay.
i would
2004 Jul 01
20
[PATCH 2.6] update to network emulation QOS scheduler
...Tnet and BSD Dummynet.
+ */
+
+struct netem_sched_data {
+ struct sk_buff_head qnormal;
+ struct sk_buff_head qdelay;
+ struct timer_list timer;
+
+ u32 latency;
+ u32 loss;
+ u32 counter;
+ u32 gap;
+};
+
+/* Time stamp put into socket buffer control block */
+struct netem_skb_cb {
+ psched_time_t time_to_send;
+};
+
+/* Enqueue packets with underlying discipline (fifo)
+ * but mark them with current time first.
+ */
+static int netem_enqueue(struct sk_buff *skb, struct Qdisc *sch)
+{
+ struct netem_sched_data *q = (struct netem_sched_data *)sch->data;
+ struct netem_skb_cb *cb = (struct netem_skb_cb...