diff options
author | Paolo Abeni <pabeni@redhat.com> | 2022-05-05 00:54:05 +0300 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2022-05-06 05:00:15 +0300 |
commit | 92be2f522777b775a2d83b00c3690732c1243dfc (patch) | |
tree | 42e97d811bb5549fbe83c5f12da5a43885d95b37 /net/mptcp/mib.h | |
parent | b713d0067574e15cddd08ee7f25acd535b7437cf (diff) | |
download | linux-92be2f522777b775a2d83b00c3690732c1243dfc.tar.xz |
mptcp: add mib for xmit window sharing
Bump a counter for counter when snd_wnd is shared among subflow,
for observability's sake.
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: Mat Martineau <mathew.j.martineau@linux.intel.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/mptcp/mib.h')
-rw-r--r-- | net/mptcp/mib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mptcp/mib.h b/net/mptcp/mib.h index 529d07af9e14..2411510bef66 100644 --- a/net/mptcp/mib.h +++ b/net/mptcp/mib.h @@ -49,6 +49,7 @@ enum linux_mptcp_mib_field { MPTCP_MIB_RCVPRUNED, /* Incoming packet dropped due to memory limit */ MPTCP_MIB_SUBFLOWSTALE, /* Subflows entered 'stale' status */ MPTCP_MIB_SUBFLOWRECOVER, /* Subflows returned to active status after being stale */ + MPTCP_MIB_SNDWNDSHARED, /* Subflow snd wnd is overridden by msk's one */ __MPTCP_MIB_MAX }; |