From: Jiayuan Chen Date: Wed, 25 Mar 2026 07:18:54 +0000 (+0800) Subject: tcp: Fix inconsistent indenting warning X-Git-Tag: v7.1-rc1~173^2~160 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=552994294fe27b42a6a735b0388029b45d776b38;p=thirdparty%2Flinux.git 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 Closes: https://lore.kernel.org/oe-kbuild-all/202603251430.gQ3VuiKV-lkp@intel.com/ Signed-off-by: Jiayuan Chen Reviewed-by: Eric Dumazet Link: https://patch.msgid.link/20260325071854.805-1-jiayuan.chen@linux.dev Signed-off-by: Jakub Kicinski --- diff --git a/include/net/tcp.h b/include/net/tcp.h index 39ff4cf3c810f..565943c34b7e8 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h @@ -1444,7 +1444,7 @@ static inline void tcp_ca_event(struct sock *sk, const enum tcp_ca_event event) const struct inet_connection_sock *icsk = inet_csk(sk); if (event == CA_EVENT_TX_START) { - if (icsk->icsk_ca_ops->cwnd_event_tx_start) + if (icsk->icsk_ca_ops->cwnd_event_tx_start) icsk->icsk_ca_ops->cwnd_event_tx_start(sk); return; }