diff options
author | Paolo Abeni <pabeni@redhat.com> | 2020-09-14 10:01:14 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-09-14 13:28:02 -0700 |
commit | 06242e44b9fbd59be0bd4a4ed82b38f8f2c3f4b2 (patch) | |
tree | 6fab14b68a803e8f0deaae7b5da73385e6d2eac0 /net/mptcp/mib.h | |
parent | 04e4cd4f7ca4600409a898fe0abc318372c4c1ab (diff) | |
download | linux-stable-06242e44b9fbd59be0bd4a4ed82b38f8f2c3f4b2.tar.gz linux-stable-06242e44b9fbd59be0bd4a4ed82b38f8f2c3f4b2.tar.bz2 linux-stable-06242e44b9fbd59be0bd4a4ed82b38f8f2c3f4b2.zip |
mptcp: add OoO related mibs
Add a bunch of MPTCP mibs related to MPTCP OoO data
processing.
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Reviewed-by: Mat Martineau <mathew.j.martineau@linux.intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/mptcp/mib.h')
-rw-r--r-- | net/mptcp/mib.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/mptcp/mib.h b/net/mptcp/mib.h index d7de340fc997..937a177729f1 100644 --- a/net/mptcp/mib.h +++ b/net/mptcp/mib.h @@ -15,6 +15,11 @@ enum linux_mptcp_mib_field { MPTCP_MIB_JOINACKMAC, /* HMAC was wrong on ACK + MP_JOIN */ MPTCP_MIB_DSSNOMATCH, /* Received a new mapping that did not match the previous one */ MPTCP_MIB_INFINITEMAPRX, /* Received an infinite mapping */ + MPTCP_MIB_OFOQUEUETAIL, /* Segments inserted into OoO queue tail */ + MPTCP_MIB_OFOQUEUE, /* Segments inserted into OoO queue */ + MPTCP_MIB_OFOMERGE, /* Segments merged in OoO queue */ + MPTCP_MIB_NODSSWINDOW, /* Segments not in MPTCP windows */ + MPTCP_MIB_DUPDATA, /* Segments discarded due to duplicate DSS */ __MPTCP_MIB_MAX }; |