| 
									
										
										
										
											2005-08-28 00:47:15 -03:00
										 |  |  | #ifndef _TFRC_H_
 | 
					
						
							|  |  |  | #define _TFRC_H_
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2007-12-06 12:26:38 -02:00
										 |  |  |  *  Copyright (c) 2007   The University of Aberdeen, Scotland, UK | 
					
						
							|  |  |  |  *  Copyright (c) 2005-6 The University of Waikato, Hamilton, New Zealand. | 
					
						
							|  |  |  |  *  Copyright (c) 2005-6 Ian McDonald <ian.mcdonald@jandi.co.nz> | 
					
						
							|  |  |  |  *  Copyright (c) 2005   Arnaldo Carvalho de Melo <acme@conectiva.com.br> | 
					
						
							|  |  |  |  *  Copyright (c) 2003   Nils-Erik Mattsson, Joacim Haggmark, Magnus Erixzon | 
					
						
							| 
									
										
										
										
											2005-08-28 00:47:15 -03:00
										 |  |  |  * | 
					
						
							|  |  |  |  *  This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  *  it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |  *  the Free Software Foundation; either version 2 of the License, or | 
					
						
							|  |  |  |  *  (at your option) any later version. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include <linux/types.h>
 | 
					
						
							| 
									
										
										
										
											2008-06-11 11:19:10 +01:00
										 |  |  | #include <linux/math64.h>
 | 
					
						
							| 
									
										
										
										
											2007-12-06 12:26:38 -02:00
										 |  |  | #include "../../dccp.h"
 | 
					
						
							| 
									
										
										
										
											2009-01-04 21:45:33 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* internal includes that this library exports: */ | 
					
						
							| 
									
										
										
										
											2007-12-12 13:50:51 -02:00
										 |  |  | #include "loss_interval.h"
 | 
					
						
							|  |  |  | #include "packet_history.h"
 | 
					
						
							| 
									
										
										
										
											2007-12-06 12:26:38 -02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_IP_DCCP_TFRC_DEBUG
 | 
					
						
							|  |  |  | extern int tfrc_debug; | 
					
						
							|  |  |  | #define tfrc_pr_debug(format, a...)	DCCP_PR_DEBUG(tfrc_debug, format, ##a)
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define tfrc_pr_debug(format, a...)
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-12-10 00:04:16 -02:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* integer-arithmetic divisions of type (a * 1000000)/b */ | 
					
						
							| 
									
										
										
										
											2008-06-11 11:19:10 +01:00
										 |  |  | static inline u64 scaled_div(u64 a, u64 b) | 
					
						
							| 
									
										
										
										
											2006-12-10 00:04:16 -02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-12 07:47:01 +00:00
										 |  |  | 	BUG_ON(b == 0); | 
					
						
							| 
									
										
										
										
											2008-06-11 11:19:10 +01:00
										 |  |  | 	return div64_u64(a * 1000000, b); | 
					
						
							| 
									
										
										
										
											2006-12-10 00:04:16 -02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-11 11:19:10 +01:00
										 |  |  | static inline u32 scaled_div32(u64 a, u64 b) | 
					
						
							| 
									
										
										
										
											2006-12-10 00:04:16 -02:00
										 |  |  | { | 
					
						
							|  |  |  | 	u64 result = scaled_div(a, b); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (result > UINT_MAX) { | 
					
						
							| 
									
										
										
										
											2008-06-11 11:19:10 +01:00
										 |  |  | 		DCCP_CRIT("Overflow: %llu/%llu > UINT_MAX", | 
					
						
							|  |  |  | 			  (unsigned long long)a, (unsigned long long)b); | 
					
						
							| 
									
										
										
										
											2006-12-10 00:04:16 -02:00
										 |  |  | 		return UINT_MAX; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return result; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-08-28 00:47:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-20 18:09:59 -02:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * tfrc_ewma  -  Exponentially weighted moving average | 
					
						
							|  |  |  |  * @weight: Weight to be used as damping factor, in units of 1/10 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static inline u32 tfrc_ewma(const u32 avg, const u32 newval, const u8 weight) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return avg ? (weight * avg + (10 - weight) * newval) / 10 : newval; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-11 11:19:09 +01:00
										 |  |  | extern u32  tfrc_calc_x(u16 s, u32 R, u32 p); | 
					
						
							|  |  |  | extern u32  tfrc_calc_x_reverse_lookup(u32 fvalue); | 
					
						
							| 
									
										
										
										
											2005-08-28 00:47:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-11 11:19:09 +01:00
										 |  |  | extern int  tfrc_tx_packet_history_init(void); | 
					
						
							|  |  |  | extern void tfrc_tx_packet_history_exit(void); | 
					
						
							|  |  |  | extern int  tfrc_rx_packet_history_init(void); | 
					
						
							|  |  |  | extern void tfrc_rx_packet_history_exit(void); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern int  tfrc_li_init(void); | 
					
						
							|  |  |  | extern void tfrc_li_exit(void); | 
					
						
							| 
									
										
										
										
											2009-01-04 21:45:33 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_IP_DCCP_TFRC_LIB
 | 
					
						
							|  |  |  | extern int  tfrc_lib_init(void); | 
					
						
							|  |  |  | extern void tfrc_lib_exit(void); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define tfrc_lib_init() (0)
 | 
					
						
							|  |  |  | #define tfrc_lib_exit()
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-08-28 00:47:15 -03:00
										 |  |  | #endif /* _TFRC_H_ */
 |