blob: 5a0ba86df183288255200001167ea15d39dd7fda [file] [log] [blame]
Arnaldo Carvalho de Melo36729c12005-08-28 00:47:15 -03001#ifndef _TFRC_H_
2#define _TFRC_H_
3/*
4 * net/dccp/ccids/lib/tfrc.h
5 *
6 * Copyright (c) 2005 The University of Waikato, Hamilton, New Zealand.
Ian McDonalde6bccd32006-08-26 19:01:30 -07007 * Copyright (c) 2005 Ian McDonald <ian.mcdonald@jandi.co.nz>
Arnaldo Carvalho de Melo36729c12005-08-28 00:47:15 -03008 * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
9 * Copyright (c) 2003 Nils-Erik Mattsson, Joacim Haggmark, Magnus Erixzon
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 */
Arnaldo Carvalho de Melo36729c12005-08-28 00:47:15 -030016#include <linux/types.h>
Gerrit Renkerd63d8362006-12-10 00:04:16 -020017#include <asm/div64.h>
18
19/* integer-arithmetic divisions of type (a * 1000000)/b */
20static inline u64 scaled_div(u64 a, u32 b)
21{
22 BUG_ON(b==0);
23 a *= 1000000;
24 do_div(a, b);
25 return a;
26}
27
28static inline u32 scaled_div32(u64 a, u32 b)
29{
30 u64 result = scaled_div(a, b);
31
32 if (result > UINT_MAX) {
33 DCCP_CRIT("Overflow: a(%llu)/b(%u) > ~0U",
34 (unsigned long long)a, b);
35 return UINT_MAX;
36 }
37 return result;
38}
Arnaldo Carvalho de Melo36729c12005-08-28 00:47:15 -030039
Gerrit Renkerc3ada462007-11-20 18:09:59 -020040/**
41 * tfrc_ewma - Exponentially weighted moving average
42 * @weight: Weight to be used as damping factor, in units of 1/10
43 */
44static inline u32 tfrc_ewma(const u32 avg, const u32 newval, const u8 weight)
45{
46 return avg ? (weight * avg + (10 - weight) * newval) / 10 : newval;
47}
48
Arnaldo Carvalho de Melo36729c12005-08-28 00:47:15 -030049extern u32 tfrc_calc_x(u16 s, u32 R, u32 p);
50extern u32 tfrc_calc_x_reverse_lookup(u32 fvalue);
51
52#endif /* _TFRC_H_ */