hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
kernel/net/dccp/ccids/ccid3.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * Copyright (c) 2007 The University of Aberdeen, Scotland, UK
34 * Copyright (c) 2005-7 The University of Waikato, Hamilton, New Zealand.
....@@ -6,7 +7,7 @@
67 * An implementation of the DCCP protocol
78 *
89 * This code has been developed by the University of Waikato WAND
9
- * research group. For further information please see http://www.wand.net.nz/
10
+ * research group. For further information please see https://www.wand.net.nz/
1011 *
1112 * This code also uses code from Lulea University, rereleased as GPL by its
1213 * authors:
....@@ -17,20 +18,6 @@
1718 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>.
1819 *
1920 * 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.
3421 */
3522 #include "../dccp.h"
3623 #include "ccid3.h"
....@@ -621,7 +608,7 @@
621608 */
622609 if (hc->rx_x_recv > 0)
623610 break;
624
- /* fall through */
611
+ fallthrough;
625612 case CCID3_FBACK_PERIODIC:
626613 delta = ktime_us_delta(now, hc->rx_tstamp_last_feedback);
627614 if (delta <= 0)