Displaying 1 result from an estimated 1 matches for "qnormal".
Did you mean:
normal
2004 Jul 01
20
[PATCH 2.6] update to network emulation QOS scheduler
...<linux/errno.h>
+#include <linux/netdevice.h>
+#include <linux/skbuff.h>
+
+#include <net/pkt_sched.h>
+
+/* Network emulator
+ *
+ * This scheduler can alters spacing and order
+ * Similar to NISTnet 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...