hc
2024-01-05 071106ecf68c401173c58808b1cf5f68cc50d390
kernel/net/ipv4/tcp_vegas.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-only
12 /*
23 * TCP Vegas congestion control
34 *
....@@ -292,10 +293,10 @@
292293 const struct vegas *ca = inet_csk_ca(sk);
293294
294295 if (ext & (1 << (INET_DIAG_VEGASINFO - 1))) {
295
- info->vegas.tcpv_enabled = ca->doing_vegas_now,
296
- info->vegas.tcpv_rttcnt = ca->cntRTT,
297
- info->vegas.tcpv_rtt = ca->baseRTT,
298
- info->vegas.tcpv_minrtt = ca->minRTT,
296
+ info->vegas.tcpv_enabled = ca->doing_vegas_now;
297
+ info->vegas.tcpv_rttcnt = ca->cntRTT;
298
+ info->vegas.tcpv_rtt = ca->baseRTT;
299
+ info->vegas.tcpv_minrtt = ca->minRTT;
299300
300301 *attr = INET_DIAG_VEGASINFO;
301302 return sizeof(struct tcpvegas_info);