mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
Fix Bug #3822: BurstSize default value updated
The default value of burst size in config is set to -1 which is one part of the problem. The other part of the problem is that the check in tr181 is not good enough to disallow negative values. That will be fixed in a seprate patch.
This commit is contained in:
parent
81a39308cc
commit
4b707a26f4
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ generate_queue(){
|
||||||
uci set qos.@queue[-1].precedence="$i"
|
uci set qos.@queue[-1].precedence="$i"
|
||||||
uci set qos.@queue[-1].scheduling="SP"
|
uci set qos.@queue[-1].scheduling="SP"
|
||||||
uci set qos.@queue[-1].rate="0"
|
uci set qos.@queue[-1].rate="0"
|
||||||
uci set qos.@queue[-1].burst_size="-1"
|
uci set qos.@queue[-1].burst_size="0"
|
||||||
uci set qos.@queue[-1].weight="1"
|
uci set qos.@queue[-1].weight="1"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue