Displaying 5 results from an estimated 5 matches for "lowprio".
2005 Jul 08
5
HTB Rate and Prio
...-SERVICE1 250 kbits prio 1
-SERVICE2 250 kbits prio 1
-SERVICE3 250 kbits prio 1
-SUBCLASS3 400 kbits prio 1
-SERVICE1 200 kbits prio 1
-SERVICE2 200 kbits prio 1
-LOWPRIO SUBCLASS 50 kbits prio 5
Here is the details of the implementation, I only wrote 1 on the subclass
Cause they are all on the same template.
tc qdisc add dev $QOSIN root handle 1:0 htb default 1000
tc class add dev $QOSIN parent 1:0 classid 1:1 htb rate 2000kbit
### SUBCLASS1
tc cl...
2005 Jul 11
9
HTB Rate and Prio (continued)
Hi again,
I keep posting about my problem with HTB ->
http://mailman.ds9a.nl/pipermail/lartc/2005q3/016611.html
With a bit of search I recently found the exact same problem I have in the
2004 archives with some
graphs that explain it far better than I did ->
http://mailman.ds9a.nl/pipermail/lartc/2004q4/014519.html
and
http://mailman.ds9a.nl/pipermail/lartc/2004q4/014568.html
2001 Apr 19
1
0.0.6b conflict with raid patch
...Tue Jan 16 13:30:09 2001
+++ linux/include/linux/fs.h Tue Jan 16 13:47:18 2001
@@ -191,6 +191,7 @@
#define BH_Req 3 /* 0 if the buffer has been invalidated */
#define BH_Protected 6 /* 1 if the buffer is protected */
#define BH_Wait_IO 7 /* 1 if we should throttle on this buffer */
+#define BH_LowPrio 8 /* 1 if the buffer is lowprio */
/*
* Try to keep the most commonly used fields in single cache lines (16
ext3 0.0.6b has the following hunk in it:
--- linux-2.2.19pre14.ext3-0.0.6b/include/linux/fs.h.~1~ Wed Feb 21 20:00:38 2001
+++ linux-2.2.19pre14.ext3-0.0.6b/include/linux/fs.h Wed F...
2001 Jul 13
0
0.0.7a + rh2.2.19: help solve rejects
.../* 1 if the buffer is dirty */
#define BH_Lock 2 /* 1 if the buffer is locked */
#define BH_Req 3 /* 0 if the buffer has been invalidated */
#define BH_Protected 6 /* 1 if the buffer is protected */
#define BH_Wait_IO 7 /* 1 if we should throttle on this buffer */
#define BH_LowPrio 8 /* 1 if the buffer is lowprio */
Thanks
--
giulioo@pobox.com
2001 Jul 29
1
2.2.19/0.0.7a: bonnie -> VM problems
...*(int *)0 = 0; <== This is RH specific, I chose to put J_ASSERT before it
}
2)
+1 to all added stuff
include/linux/fs.h
@@ -192,6 +192,25 @@
#define BH_Protected 6 /* 1 if the buffer is protected */
#define BH_Wait_IO 7 /* 1 if we should throttle on this buffer */
#define BH_LowPrio 8 /* 1 if the buffer is lowprio */
+#define BH_Temp 9 /* 1 if the buffer is temporary (unlinked) */
+#define BH_JWrite 10 /* 1 if being written to log (@@@ DEBUGGING) */
+#define BH_QuickFree 11 /* 1 if alloced and freed quickly (see below)*/
+#define BH_Alloced 12 /* 1 if buffer h...