search for: htb_debug

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

2005 Jan 24
0
greb + htb debug
...nting 6 - class overlimit status computation 7 - hint tree 8 - event queue 10 - rate estimator 11 - classifier 12 - fast dequeue cache L is level; 0 = none, 1 = basic info, 2 = detailed, 3 = full q->debug uint32 contains 16 2-bit fields one for subsystem starting from LSB */ #ifdef HTB_DEBUG #define HTB_DBG_COND(S,L) (((q->debug>>(2*S))&3) >= L) #define HTB_DBG(S,L,FMT,ARG...) if (HTB_DBG_COND(S,L)) \ but still i don''t know what should i change in order to see debug messages in my dmesg... Also in the same file the following line exists #define HTB_DEBUG 1...
2006 Aug 02
10
[PATCH 0/6] htb: cleanup
The HTB scheduler code is a mess, this patch set does some basic house cleaning. The first four should cause no code change, but the last two need more testing. -- Stephen Hemminger <shemminger@osdl.org> "And in the Packet there writ down that doome" - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to
2004 Jun 13
1
[Help] IMQ download traffic is duplicated !?
...same setting except the red class but I have the same result if I create an esfq instead). Any comments/information will be appreciated. Below my config : tc commands from my scirpt : # TC on my download link tcdownload () { tc qdisc add dev $TC_D_INT root handle 1: htb default 99 debug $HTB_DEBUG tc class add dev $TC_D_INT parent 1: classid 1:1 htb rate ${D_LIMIT}kbit # VOIP class have the highest priority tc class add dev $TC_D_INT parent 1:1 classid 1:10 htb \ rate ${VOIP}kbit ceil ${D_LIMIT}kbit prio 0 tc qdisc add dev $TC_D_INT parent 1:1...
2006 Jun 15
0
[PATCH 1/2] Runtime configuration of HTB''s HYSTERESIS option (kernel)
...nel-source-2.6.11/net/sched/sch_htb.c --- kernel-source-2.6.11.orig/net/sched/sch_htb.c 2005-03-02 17:38:12.000000000 +1000 +++ kernel-source-2.6.11/net/sched/sch_htb.c 2006-06-13 11:34:25.000000000 +1000 @@ -73,7 +73,6 @@ #define HTB_EWMAC 2 /* rate average over HTB_EWMAC*HTB_HSIZE sec */ #undef HTB_DEBUG /* compile debugging support (activated by tc tool) */ #define HTB_RATECM 1 /* whether to use rate computer */ -#define HTB_HYSTERESIS 1/* whether to use mode hysteresis for speedup */ #define HTB_QLOCK(S) spin_lock_bh(&(S)->dev->queue_lock) #define HTB_QUNLOCK(S) spin_unlock_bh(&am...