1 /* SPDX-License-Identifier: GPL-2.0-or-later */
5 * Copyright (c) 2007 The University of Aberdeen, Scotland, UK
6 * Copyright (c) 2005-7 The University of Waikato, Hamilton, New Zealand.
7 * Copyright (c) 2005-7 Ian McDonald <ian.mcdonald@jandi.co.nz>
8 * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
10 #include <linux/ktime.h>
11 #include <linux/list.h>
12 #include <linux/slab.h>
15 * Number of loss intervals (RFC 4342, 8.6.1). The history size is one more than
16 * NINTERVAL, since the `open' interval I_0 is always stored as the first entry.
19 #define LIH_SIZE (NINTERVAL + 1)
22 * tfrc_loss_interval - Loss history record for TFRC-based protocols
23 * @li_seqno: Highest received seqno before the start of loss
24 * @li_ccval: The CCVal belonging to @li_seqno
25 * @li_is_closed: Whether @li_seqno is older than 1 RTT
26 * @li_length: Loss interval sequence length
28 struct tfrc_loss_interval
{
36 * tfrc_loss_hist - Loss record database
37 * @ring: Circular queue managed in LIFO manner
38 * @counter: Current count of entries (can be more than %LIH_SIZE)
39 * @i_mean: Current Average Loss Interval [RFC 3448, 5.4]
41 struct tfrc_loss_hist
{
42 struct tfrc_loss_interval
*ring
[LIH_SIZE
];
47 static inline void tfrc_lh_init(struct tfrc_loss_hist
*lh
)
49 memset(lh
, 0, sizeof(struct tfrc_loss_hist
));
52 static inline u8
tfrc_lh_is_initialised(struct tfrc_loss_hist
*lh
)
54 return lh
->counter
> 0;
57 static inline u8
tfrc_lh_length(struct tfrc_loss_hist
*lh
)
59 return min(lh
->counter
, (u8
)LIH_SIZE
);
64 int tfrc_lh_interval_add(struct tfrc_loss_hist
*, struct tfrc_rx_hist
*,
65 u32 (*first_li
)(struct sock
*), struct sock
*);
66 u8
tfrc_lh_update_i_mean(struct tfrc_loss_hist
*lh
, struct sk_buff
*);
67 void tfrc_lh_cleanup(struct tfrc_loss_hist
*lh
);
69 #endif /* _DCCP_LI_HIST_ */