I was having some problems with qos when i set the values on /etc/config/qos to my real values. 256/128
The main hsfc qdisc is created with -70kbit of rate , which is really strange. So taking a look at /usr/lib/generate.sh i saw this line.
[ "$overhead" = 1 ] && download=$(($download * 98 / 100 - (80 * 1024 / $download)))
Where is the logic in that line ?
If i have a 600kbit link i will get 452kbit , loosing 148kbits which is almost 25%.
If i have a 1024kbit link i will get 923kbit , loosing less than 10%.
Where that formula come from ? I think it is wrong...