blob: a3d8f7c76ae091ba92704a3e6a70186c53b3b0f5 [file] [log] [blame]
Arnaldo Carvalho de Melo36729c12005-08-28 00:47:15 -03001#ifndef _TFRC_H_
2#define _TFRC_H_
3/*
Gerrit Renkerc40616c2007-12-06 12:26:38 -02004 * Copyright (c) 2007 The University of Aberdeen, Scotland, UK
5 * Copyright (c) 2005-6 The University of Waikato, Hamilton, New Zealand.
6 * Copyright (c) 2005-6 Ian McDonald <ian.mcdonald@jandi.co.nz>
7 * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
8 * Copyright (c) 2003 Nils-Erik Mattsson, Joacim Haggmark, Magnus Erixzon
Arnaldo Carvalho de Melo36729c12005-08-28 00:47:15 -03009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 */
Arnaldo Carvalho de Melo36729c12005-08-28 00:47:15 -030015#include <linux/types.h>
Gerrit Renker7deb0f82008-06-11 11:19:10 +010016#include <linux/math64.h>
Gerrit Renkerc40616c2007-12-06 12:26:38 -020017#include "../../dccp.h"
Gerrit Renker129fa442009-01-04 21:45:33 -080018
19/* internal includes that this library exports: */
Gerrit Renker8a9c7e92007-12-12 13:50:51 -020020#include "loss_interval.h"
21#include "packet_history.h"
Gerrit Renkerc40616c2007-12-06 12:26:38 -020022
23#ifdef CONFIG_IP_DCCP_TFRC_DEBUG
Gerrit Renkerc40616c2007-12-06 12:26:38 -020024#define tfrc_pr_debug(format, a...) DCCP_PR_DEBUG(tfrc_debug, format, ##a)
25#else
26#define tfrc_pr_debug(format, a...)
27#endif
Gerrit Renkerd63d8362006-12-10 00:04:16 -020028
29/* integer-arithmetic divisions of type (a * 1000000)/b */
Gerrit Renker7deb0f82008-06-11 11:19:10 +010030static inline u64 scaled_div(u64 a, u64 b)
Gerrit Renkerd63d8362006-12-10 00:04:16 -020031{
Gerrit Renkeraa1b1ff2009-09-12 07:47:01 +000032 BUG_ON(b == 0);
Gerrit Renker7deb0f82008-06-11 11:19:10 +010033 return div64_u64(a * 1000000, b);
Gerrit Renkerd63d8362006-12-10 00:04:16 -020034}
35
Gerrit Renker7deb0f82008-06-11 11:19:10 +010036static inline u32 scaled_div32(u64 a, u64 b)
Gerrit Renkerd63d8362006-12-10 00:04:16 -020037{
38 u64 result = scaled_div(a, b);
39
40 if (result > UINT_MAX) {
Gerrit Renker7deb0f82008-06-11 11:19:10 +010041 DCCP_CRIT("Overflow: %llu/%llu > UINT_MAX",
42 (unsigned long long)a, (unsigned long long)b);
Gerrit Renkerd63d8362006-12-10 00:04:16 -020043 return UINT_MAX;
44 }
45 return result;
46}
Arnaldo Carvalho de Melo36729c12005-08-28 00:47:15 -030047
Gerrit Renkerc3ada462007-11-20 18:09:59 -020048/**
49 * tfrc_ewma - Exponentially weighted moving average
50 * @weight: Weight to be used as damping factor, in units of 1/10
51 */
52static inline u32 tfrc_ewma(const u32 avg, const u32 newval, const u8 weight)
53{
54 return avg ? (weight * avg + (10 - weight) * newval) / 10 : newval;
55}
56
Joe Perchesa402a5a2013-10-18 13:48:23 -070057u32 tfrc_calc_x(u16 s, u32 R, u32 p);
58u32 tfrc_calc_x_reverse_lookup(u32 fvalue);
59u32 tfrc_invert_loss_event_rate(u32 loss_event_rate);
Arnaldo Carvalho de Melo36729c12005-08-28 00:47:15 -030060
Joe Perchesa402a5a2013-10-18 13:48:23 -070061int tfrc_tx_packet_history_init(void);
62void tfrc_tx_packet_history_exit(void);
63int tfrc_rx_packet_history_init(void);
64void tfrc_rx_packet_history_exit(void);
Gerrit Renker1e2f0e52008-06-11 11:19:09 +010065
Joe Perchesa402a5a2013-10-18 13:48:23 -070066int tfrc_li_init(void);
67void tfrc_li_exit(void);
Gerrit Renker129fa442009-01-04 21:45:33 -080068
69#ifdef CONFIG_IP_DCCP_TFRC_LIB
Joe Perchesa402a5a2013-10-18 13:48:23 -070070int tfrc_lib_init(void);
71void tfrc_lib_exit(void);
Gerrit Renker129fa442009-01-04 21:45:33 -080072#else
73#define tfrc_lib_init() (0)
74#define tfrc_lib_exit()
75#endif
Arnaldo Carvalho de Melo36729c12005-08-28 00:47:15 -030076#endif /* _TFRC_H_ */