.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * Copyright (c) 2007 The University of Aberdeen, Scotland, UK |
---|
3 | 4 | * Copyright (c) 2005-7 The University of Waikato, Hamilton, New Zealand. |
---|
.. | .. |
---|
5 | 6 | * An implementation of the DCCP protocol |
---|
6 | 7 | * |
---|
7 | 8 | * This code has been developed by the University of Waikato WAND |
---|
8 | | - * research group. For further information please see http://www.wand.net.nz/ |
---|
| 9 | + * research group. For further information please see https://www.wand.net.nz/ |
---|
9 | 10 | * or e-mail Ian McDonald - ian.mcdonald@jandi.co.nz |
---|
10 | 11 | * |
---|
11 | 12 | * This code also uses code from Lulea University, rereleased as GPL by its |
---|
.. | .. |
---|
17 | 18 | * Arnaldo Carvalho de Melo <acme@conectiva.com.br>. |
---|
18 | 19 | * |
---|
19 | 20 | * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br> |
---|
20 | | - * |
---|
21 | | - * This program is free software; you can redistribute it and/or modify |
---|
22 | | - * it under the terms of the GNU General Public License as published by |
---|
23 | | - * the Free Software Foundation; either version 2 of the License, or |
---|
24 | | - * (at your option) any later version. |
---|
25 | | - * |
---|
26 | | - * This program is distributed in the hope that it will be useful, |
---|
27 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
28 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
29 | | - * GNU General Public License for more details. |
---|
30 | | - * |
---|
31 | | - * You should have received a copy of the GNU General Public License |
---|
32 | | - * along with this program; if not, write to the Free Software |
---|
33 | | - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
34 | 21 | */ |
---|
35 | 22 | |
---|
36 | 23 | #include <linux/string.h> |
---|
.. | .. |
---|
378 | 365 | |
---|
379 | 366 | /** |
---|
380 | 367 | * tfrc_rx_hist_rtt_last_s - reference entry to compute RTT samples against |
---|
| 368 | + * @h: The non-empty RX history object |
---|
381 | 369 | */ |
---|
382 | 370 | static inline struct tfrc_rx_hist_entry * |
---|
383 | 371 | tfrc_rx_hist_rtt_last_s(const struct tfrc_rx_hist *h) |
---|
.. | .. |
---|
387 | 375 | |
---|
388 | 376 | /** |
---|
389 | 377 | * tfrc_rx_hist_rtt_prev_s - previously suitable (wrt rtt_last_s) RTT-sampling entry |
---|
| 378 | + * @h: The non-empty RX history object |
---|
390 | 379 | */ |
---|
391 | 380 | static inline struct tfrc_rx_hist_entry * |
---|
392 | 381 | tfrc_rx_hist_rtt_prev_s(const struct tfrc_rx_hist *h) |
---|