blob: 5e50afa849074fe0bb6b689574036118ad4cba1f [file] [log] [blame]
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001/*
2 * tc_cbq.c CBQ maintanance routines.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 *
11 */
12
13#include <stdio.h>
14#include <stdlib.h>
15#include <unistd.h>
16#include <syslog.h>
17#include <fcntl.h>
18#include <math.h>
19#include <sys/socket.h>
20#include <netinet/in.h>
21#include <arpa/inet.h>
22#include <string.h>
23
24#include "tc_core.h"
25#include "tc_cbq.h"
26
Stephen Hemminger32a121c2016-03-21 11:48:36 -070027unsigned int tc_cbq_calc_maxidle(unsigned int bndw, unsigned int rate, unsigned int avpkt,
28 int ewma_log, unsigned int maxburst)
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000029{
30 double maxidle;
31 double g = 1.0 - 1.0/(1<<ewma_log);
32 double xmt = (double)avpkt/bndw;
33
34 maxidle = xmt*(1-g);
35 if (bndw != rate && maxburst) {
36 double vxmt = (double)avpkt/rate - xmt;
Stephen Hemminger32a121c2016-03-21 11:48:36 -070037
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000038 vxmt *= (pow(g, -(double)maxburst) - 1);
39 if (vxmt > maxidle)
40 maxidle = vxmt;
41 }
Patrick McHardy8f34caa2007-03-04 20:15:00 +010042 return tc_core_time2tick(maxidle*(1<<ewma_log)*TIME_UNITS_PER_SEC);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000043}
44
Stephen Hemminger32a121c2016-03-21 11:48:36 -070045unsigned int tc_cbq_calc_offtime(unsigned int bndw, unsigned int rate, unsigned int avpkt,
46 int ewma_log, unsigned int minburst)
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000047{
48 double g = 1.0 - 1.0/(1<<ewma_log);
49 double offtime = (double)avpkt/rate - (double)avpkt/bndw;
50
51 if (minburst == 0)
52 return 0;
53 if (minburst == 1)
54 offtime *= pow(g, -(double)minburst) - 1;
55 else
56 offtime *= 1 + (pow(g, -(double)(minburst-1)) - 1)/(1-g);
Patrick McHardy8f34caa2007-03-04 20:15:00 +010057 return tc_core_time2tick(offtime*TIME_UNITS_PER_SEC);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000058}