diff options
| author | Jiayuan Chen <jiayuan.chen@linux.dev> | 2026-03-25 10:18:54 +0300 |
|---|---|---|
| committer | Jakub Kicinski <kuba@kernel.org> | 2026-03-27 06:44:45 +0300 |
| commit | 552994294fe27b42a6a735b0388029b45d776b38 (patch) | |
| tree | 93f42c8aa1c84ba9819c5c103d6dda4093acbb98 /include | |
| parent | 5fffa6fe40f07e831dc387170405b7f3486d14d0 (diff) | |
| download | linux-552994294fe27b42a6a735b0388029b45d776b38.tar.xz | |
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>
Diffstat (limited to 'include')
| -rw-r--r-- | include/net/tcp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h index 39ff4cf3c810..565943c34b7e 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; } |
