blob: ed698c42a5fbef17b34a9a4daf6fc34464d914f5 [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
Rusty Russelleb939922011-12-19 14:08:01 +000024extern bool tfrc_debug;
Gerrit Renkerc40616c2007-12-06 12:26:38 -020025#define tfrc_pr_debug(format, a...) DCCP_PR_DEBUG(tfrc_debug, format, ##a)
26#else
27#define tfrc_pr_debug(format, a...)
28#endif
Gerrit Renkerd63d8362006-12-10 00:04:16 -020029
30/* integer-arithmetic divisions of type (a * 1000000)/b */
Gerrit Renker7deb0f82008-06-11 11:19:10 +010031static inline u64 scaled_div(u64 a, u64 b)
Gerrit Renkerd63d8362006-12-10 00:04:16 -020032{
Gerrit Renkeraa1b1ff2009-09-12 07:47:01 +000033 BUG_ON(b == 0);
Gerrit Renker7deb0f82008-06-11 11:19:10 +010034 return div64_u64(a * 1000000, b);
Gerrit Renkerd63d8362006-12-10 00:04:16 -020035}
36
Gerrit Renker7deb0f82008-06-11 11:19:10 +010037static inline u32 scaled_div32(u64 a, u64 b)
Gerrit Renkerd63d8362006-12-10 00:04:16 -020038{
39 u64 result = scaled_div(a, b);
40
41 if (result > UINT_MAX) {
Gerrit Renker7deb0f82008-06-11 11:19:10 +010042 DCCP_CRIT("Overflow: %llu/%llu > UINT_MAX",
43 (unsigned long long)a, (unsigned long long)b);
Gerrit Renkerd63d8362006-12-10 00:04:16 -020044 return UINT_MAX;
45 }
46 return result;
47}
Arnaldo Carvalho de Melo36729c12005-08-28 00:47:15 -030048
Gerrit Renkerc3ada462007-11-20 18:09:59 -020049/**
50 * tfrc_ewma - Exponentially weighted moving average
51 * @weight: Weight to be used as damping factor, in units of 1/10
52 */
53static inline u32 tfrc_ewma(const u32 avg, const u32 newval, const u8 weight)
54{
55 return avg ? (weight * avg + (10 - weight) * newval) / 10 : newval;
56}
57
Gerrit Renker1e2f0e52008-06-11 11:19:09 +010058extern u32 tfrc_calc_x(u16 s, u32 R, u32 p);
59extern u32 tfrc_calc_x_reverse_lookup(u32 fvalue);
Gerrit Renker792e6d32010-09-19 20:10:52 +020060extern u32 tfrc_invert_loss_event_rate(u32 loss_event_rate);
Arnaldo Carvalho de Melo36729c12005-08-28 00:47:15 -030061
Gerrit Renker1e2f0e52008-06-11 11:19:09 +010062extern int tfrc_tx_packet_history_init(void);
63extern void tfrc_tx_packet_history_exit(void);
64extern int tfrc_rx_packet_history_init(void);
65extern void tfrc_rx_packet_history_exit(void);
66
67extern int tfrc_li_init(void);
68extern void tfrc_li_exit(void);
Gerrit Renker129fa442009-01-04 21:45:33 -080069
70#ifdef CONFIG_IP_DCCP_TFRC_LIB
71extern int tfrc_lib_init(void);
72extern void tfrc_lib_exit(void);
73#else
74#define tfrc_lib_init() (0)
75#define tfrc_lib_exit()
76#endif
Arnaldo Carvalho de Melo36729c12005-08-28 00:47:15 -030077#endif /* _TFRC_H_ */