Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

tcp: Fix inconsistent indenting warning

Suppress such warning reported by test robot:
include/net/tcp.h:1449 tcp_ca_event() warn: inconsistent indenting

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202603251430.gQ3VuiKV-lkp@intel.com/
Signed-off-by: Jiayuan Chen <jiayuan.chen@linux.dev>
Reviewed-by: Eric Dumazet <edumazet@google.com>
Link: https://patch.msgid.link/20260325071854.805-1-jiayuan.chen@linux.dev
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Jiayuan Chen and committed by
Jakub Kicinski
55299429 5fffa6fe

+1 -1
+1 -1
include/net/tcp.h
··· 1444 1444 const struct inet_connection_sock *icsk = inet_csk(sk); 1445 1445 1446 1446 if (event == CA_EVENT_TX_START) { 1447 - if (icsk->icsk_ca_ops->cwnd_event_tx_start) 1447 + if (icsk->icsk_ca_ops->cwnd_event_tx_start) 1448 1448 icsk->icsk_ca_ops->cwnd_event_tx_start(sk); 1449 1449 return; 1450 1450 }