
This implements [RFC 3448, 4.5], which performs congestion avoidance behaviour by reducing the transmit rate as the queueing delay (measured in terms of long-term RTT) increases. Oscillation can be turned on/off via a module option (do_osc_prev) and via sysfs (using mode 0644), the default is off. Overflow analysis: ------------------ * oscillation prevention is done after update_x(), so that t_ipi <= 64000; * hence the multiplication "t_ipi * sqrt(R_sample)" needs 64 bits; * done using u64 for sqrt_sample and explicit typecast of t_ipi; * the divisor, R_sqmean, is non-zero because oscillation prevention is first called when receiving the second feedback packet, and tfrc_scaled_rtt() > 0. A detailed discussion of the algorithm (with plots) is on http://www.erg.abdn.ac.uk/users/gerrit/dccp/notes/ccid3/sender_notes/oscillation_prevention/ The algorithm has negative side effects: * when allowing to decrease t_ipi (leads to a large RTT) and * when using it during slow-start; both uses are therefore disabled. Signed-off-by: Gerrit Renker <gerrit@erg.abdn.ac.uk>
85 lines
2.7 KiB
C
85 lines
2.7 KiB
C
#ifndef _TFRC_H_
|
|
#define _TFRC_H_
|
|
/*
|
|
* net/dccp/ccids/lib/tfrc.h
|
|
*
|
|
* 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
|
|
*
|
|
* 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>
|
|
#include <linux/math64.h>
|
|
#include "../../dccp.h"
|
|
/* internal includes that this module exports: */
|
|
#include "loss_interval.h"
|
|
#include "packet_history.h"
|
|
|
|
#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
|
|
|
|
/* integer-arithmetic divisions of type (a * 1000000)/b */
|
|
static inline u64 scaled_div(u64 a, u64 b)
|
|
{
|
|
BUG_ON(b==0);
|
|
return div64_u64(a * 1000000, b);
|
|
}
|
|
|
|
static inline u32 scaled_div32(u64 a, u64 b)
|
|
{
|
|
u64 result = scaled_div(a, b);
|
|
|
|
if (result > UINT_MAX) {
|
|
DCCP_CRIT("Overflow: %llu/%llu > UINT_MAX",
|
|
(unsigned long long)a, (unsigned long long)b);
|
|
return UINT_MAX;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* tfrc_scaled_sqrt - Compute scaled integer sqrt(x) for 0 < x < 2^22-1
|
|
* Uses scaling to improve accuracy of the integer approximation of sqrt(). The
|
|
* scaling factor of 2^10 limits the maximum @sample to 4e6; this is okay for
|
|
* clamped RTT samples (dccp_sample_rtt).
|
|
* Should best be used for expressions of type sqrt(x)/sqrt(y), since then the
|
|
* scaling factor is neutralised. For this purpose, it avoids returning zero.
|
|
*/
|
|
static inline u16 tfrc_scaled_sqrt(const u32 sample)
|
|
{
|
|
const unsigned long non_zero_sample = sample ? : 1;
|
|
|
|
return int_sqrt(non_zero_sample << 10);
|
|
}
|
|
|
|
/**
|
|
* 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;
|
|
}
|
|
|
|
extern u32 tfrc_calc_x(u16 s, u32 R, u32 p);
|
|
extern u32 tfrc_calc_x_reverse_lookup(u32 fvalue);
|
|
extern u32 tfrc_invert_loss_event_rate(u32 loss_event_rate);
|
|
|
|
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);
|
|
#endif /* _TFRC_H_ */
|