Displaying 14 results from an estimated 14 matches for "1bps".
Did you mean:
16bps
2007 Jul 01
1
FW filter unused/unloaded ???
...###########################
tc qdisc add dev $interface root handle 1: htb default 14
######################
#Definition of classes
######################
tc class add dev $interface parent 1: classid 1:1 htb rate 28800bps ceil 28800bps
tc class add dev $interface parent 1:1 classid 1:10 htb rate 1bps ceil 1bps prio 4
tc class add dev $interface parent 1:1 classid 1:11 htb rate 1bps ceil 28800bps prio 2
tc class add dev $interface parent 1:1 classid 1:12 htb rate 1bps ceil 28800bps prio 4
tc class add dev $interface parent 1:1 classid 1:13 htb rate 1bps ceil 28800bps prio 4
tc class add dev $int...
2003 Jan 06
1
strange htb behaviour
...at it yourself,
thank you very much for any hint.
Greetings
Tobias
tc qdisc add dev eth0 root handle 2:0 htb r2q 100 default 3
tc class add dev eth0 parent 2:0 classid 2:1 htb rate 128kbit ceil
256kbit quantum 1500 burst 30k cburst 50k
tc class add dev eth0 parent 2:1 classid 2:3 htb rate 1bps ceil 256kbit
prio 3 quantum 1500
tc qdisc add dev eth0 parent 2:3 handle 3:0 sfq
# then a class for acks , maxiumum prio, but shouldnt eat up more than
1/3 of bw)
tc class add dev eth0 parent 2:1 classid 2:4 htb rate 12kbit ceil
85kbit prio 0 quantum 1500 burst 5k
tc qdisc add dev eth0 parent 2:...
2015 Apr 18
2
"keep qlp coeff precision such that only 32-bit math is required"
stream_encoder.c has the following code:
/* try to keep qlp coeff precision such that only 32-bit math is required for decode of <=16bps streams */
if(subframe_bps <= 16) {
...
But FLAC can convert 16-bit input to 17-bit if mid-side coding is used.
So, does it make sense to compare subframe_bps with 17?
(The patch is attached. What do you think about it?)
-------------- next part
2005 Oct 28
0
Issues in setting up different priorities for the MAC match filter
...c class add dev eth1 parent 1:fffe classid 1:140 htb rate 100mbit
tc qdisc add dev eth1 parent 1:140 handle 140:0 htb r2q 1
tc class add dev eth1 parent 140:0 classid 140:1 htb rate 100mbit
tc class add dev eth1 parent 140:0 classid 140:2 htb rate 100mbit
tc qdisc add dev eth1 parent 140:2 tbf rate 1bps burst 1 latency 50ms
tc filter add dev eth1 parent 1:0 prio 3 protocol ip u32 ht ffe:40 match
u32 \
0x000bcd59 0xffffffff at -12 match u16 0x1240 0xffff at -8 flowid
1:140
User 2:
tc class add dev eth1 parent 1:fffe classid 1:13E htb rate 100mbit
tc qdisc add dev eth1 parent 1:13E handl...
2014 Jul 28
1
Duplicate QLP coefficient restricting code
...usually 0.5%
larger then when not using the switch. I stumbled upon this code
in stream_encoder
> if(encoder->protected_->do_qlp_coeff_prec_search) {
> min_qlp_coeff_precision = FLAC__MIN_QLP_COEFF_PRECISION;
> /* try to ensure a 32-bit datapath throughout for
> 16bps(+1bps for side channel) or less */
> if(subframe_bps <= 17) {
> max_qlp_coeff_precision = flac_min(32 - subframe_bps -
> lpc_order, FLAC__MAX_QLP_COEFF_PRECISION);
> max_qlp_coeff_precision =
> flac_max(max_qlp_coeff_precision, min_qlp_coeff_precision);
> }...
2014 Jul 28
0
[PATCH] Fix bug when using -p switch during compression
...+++ b/src/libFLAC/stream_encoder.c
@@ -3428,9 +3428,9 @@ FLAC__bool process_subframe_(
}
if(encoder->protected_->do_qlp_coeff_prec_search) {
min_qlp_coeff_precision = FLAC__MIN_QLP_COEFF_PRECISION;
- /* try to ensure a 32-bit datapath throughout for 16bps(+1bps for side channel) or less */
- if(subframe_bps <= 17) {
- max_qlp_coeff_precision = flac_min(32 - subframe_bps - lpc_order, FLAC__MAX_QLP_COEFF_PRECISION);
+ /* try to keep qlp coeff precision such that only 32-bit math is required for decode of <=16bps streams */
+...
2012 Dec 26
0
Yum search for unavailable file!
Hi,
I'm trying to install ant on my centos 6.3, this is behind a http
(only http and not ftp) proxy server.
after execute yum install ant, I got some error which indicate mirror
speed is extremely low, less than 1bps!
and go to test another mirror and error cycle starts again.
this is error:
"http://wftp.tu-chemnitz.de/pub/linux/centos/6.3/updates/x86_64/repodata/e2e0a4ecd0b1548bb176caec4fd68091c8a2b7409872e3ccf2fd3669ffd1cbcd-filelists.sqlite.bz2:
[Errno 12] Timeout on
http://ftp.tu-chemnitz.de/pub/linux...
2015 Apr 18
2
"keep qlp coeff precision such that only 32-bit math is required"
...PM, Brian Willoughby <brianw at audiobanshee.com> wrote:
> Hmm, I don't know the history of the code, but flac 1.2.1 stream_encoder.c has
>
> min_qlp_coeff_precision = FLAC__MIN_QLP_COEFF_PRECISION;
> /* try to ensure a 32-bit datapath throughout for 16bps(+1bps for side channel) or less */
> if(subframe_bps <= 17) {
> max_qlp_coeff_precision = min(32 - subframe_bps - lpc_order, FLAC__MAX_QLP_COEFF_PRECISION);
> max_qlp_coeff_precision = max(max_qlp_coeff_precision, min_qlp_coeff_precision);
> }
>
&g...
2004 Oct 20
1
throttle particular client ip
I know this will be trivial for most, but I am having trouble with getting
my scenario to work correctly. I want to ''tag'' and ''throttle'' the
bandwidth to and from a particular client on my lan side. Better yet, I
just want to throttle smtp traffic, per say, for that ip.
----lan----------eth1-[linux.box]-eth0----------internet
I have used the technique
2003 Jun 16
1
RE: CBQ-wondershaper superior over HTB-wondershaper?
...burst 200b cburst 200b
# very few data allowed for HTTP requests, but still higher priority than bulk
uploads.
tc class add dev $DEV parent 1:1 classid 1:12 htb rate 2kbps ceil 15kbps prio
10 burst 1b cburst 1b
# bulk uploads have no prio :D
tc class add dev $DEV parent 1:1 classid 1:13 htb rate 1bps ceil 15kbps prio
20 burst 1b cburst 1b
# now make all qdiscs simple pfifo
# small queues for minimum latency
tc qdisc add dev $DEV parent 1:10 handle 20: pfifo limit 0
tc qdisc add dev $DEV parent 1:11 handle 30: pfifo limit 0
# larger queues for more latency.
tc qdisc add dev $DEV parent 1:12 ha...
2005 Oct 17
5
TC show filter command shows all u32 filters defined with different priority iin all priority.
...c class add dev eth1 parent 1:fffe classid 1:13E htb rate 100mbit
tc qdisc add dev eth1 parent 1:13E handle 13E:0 htb r2q 1
tc class add dev eth1 parent 13E:0 classid 13E:1 htb rate 100mbit
tc class add dev eth1 parent 13E:0 classid 13E:2 htb rate 100mbit
tc qdisc add dev eth1 parent 13E:2 tbf rate 1bps burst 1 latency 50ms
tc filter add dev eth1 parent 1:0 prio 1 protocol ip u32 ht ffe:3E match
u32 \
0x000bcd59 0xffffffff at -12 match u16 0x123E 0xffff at -8 flowid
1:13E
#### Queue 1
tc filter add dev eth1 parent 13E:0 prio 1 protocol ip u32 match ip
protocol 1 0xff flowid 13E:2
tc filter ad...
2012 Apr 05
2
[PATCH 2/2] V2: Use a single definition of MIN and MAX in sources
...n_order);
+ min_partition_order = flac_min(min_partition_order, max_partition_order);
/*
* Setup the frame
@@ -3332,8 +3323,8 @@ FLAC__bool process_subframe_(
min_qlp_coeff_precision = FLAC__MIN_QLP_COEFF_PRECISION;
/* try to ensure a 32-bit datapath throughout for 16bps(+1bps for side channel) or less */
if(subframe_bps <= 17) {
- max_qlp_coeff_precision = min(32 - subframe_bps - lpc_order, FLAC__MAX_QLP_COEFF_PRECISION);
- max_qlp_coeff_precision = max(max_qlp_coeff_precision, min_qlp_coeff_precision);
+ max_qlp_coeff_precision =...
2003 Jun 15
3
how to emulate large IP routing table
...for HTTP requests, but still higher priority
than
> > bulk uploads.
> > tc class add dev $DEV parent 1:1 classid 1:12 htb rate 2kbps ceil 15kbps
> > prio 10 burst 1b cburst 1b
> > # bulk uploads have no prio :D
> > tc class add dev $DEV parent 1:1 classid 1:13 htb rate 1bps ceil 15kbps
> > prio 20 burst 1b cburst 1b
> Your burst is too low. I understand you want a minimum burst, but you
have to
> follow some rules. The best you can do is to remove the burst/cburst
option
> so htb can calculate the minimum burst/cburst for you.
> And don''t...
2013 Feb 21
1
IPMI serial console
Hi all,
A recent thread inspired me to try getting a proper serial console working on a Supermicro X9SCL motherboard with IPMI.
However I find that while I see loader messages and the getty I enabled after boot I don't get any kernel messages which does somewhat limit the utility..
The BMC creates COM3 (/dev/cuau2) which works with getty. I modified /boot/loader.conf like so..