diff options
Diffstat (limited to '')
-rw-r--r-- | tc/tc_cbq.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tc/tc_cbq.h b/tc/tc_cbq.h new file mode 100644 index 0000000..fa17d24 --- /dev/null +++ b/tc/tc_cbq.h @@ -0,0 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +#ifndef _TC_CBQ_H_ +#define _TC_CBQ_H_ 1 + +unsigned tc_cbq_calc_maxidle(unsigned bndw, unsigned rate, unsigned avpkt, + int ewma_log, unsigned maxburst); +unsigned tc_cbq_calc_offtime(unsigned bndw, unsigned rate, unsigned avpkt, + int ewma_log, unsigned minburst); + +#endif |