aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/tcp_metrics.h
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2012-10-13 10:46:48 +0100
committerDavid Howells <dhowells@redhat.com>2012-10-13 10:46:48 +0100
commit607ca46e97a1b6594b29647d98a32d545c24bdff (patch)
tree30f4c0784bfddb57332cdc0678bd06d1e77fa185 /include/linux/tcp_metrics.h
parentUAPI: Unexport linux/blk_types.h (diff)
downloadlinux-dev-607ca46e97a1b6594b29647d98a32d545c24bdff.tar.xz
linux-dev-607ca46e97a1b6594b29647d98a32d545c24bdff.zip
UAPI: (Scripted) Disintegrate include/linux
Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Michael Kerrisk <mtk.manpages@gmail.com> Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Acked-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'include/linux/tcp_metrics.h')
-rw-r--r--include/linux/tcp_metrics.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/include/linux/tcp_metrics.h b/include/linux/tcp_metrics.h
deleted file mode 100644
index cb5157b55f32..000000000000
--- a/include/linux/tcp_metrics.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/* tcp_metrics.h - TCP Metrics Interface */
-
-#ifndef _LINUX_TCP_METRICS_H
-#define _LINUX_TCP_METRICS_H
-
-#include <linux/types.h>
-
-/* NETLINK_GENERIC related info
- */
-#define TCP_METRICS_GENL_NAME "tcp_metrics"
-#define TCP_METRICS_GENL_VERSION 0x1
-
-enum tcp_metric_index {
- TCP_METRIC_RTT,
- TCP_METRIC_RTTVAR,
- TCP_METRIC_SSTHRESH,
- TCP_METRIC_CWND,
- TCP_METRIC_REORDERING,
-
- /* Always last. */
- __TCP_METRIC_MAX,
-};
-
-#define TCP_METRIC_MAX (__TCP_METRIC_MAX - 1)
-
-enum {
- TCP_METRICS_ATTR_UNSPEC,
- TCP_METRICS_ATTR_ADDR_IPV4, /* u32 */
- TCP_METRICS_ATTR_ADDR_IPV6, /* binary */
- TCP_METRICS_ATTR_AGE, /* msecs */
- TCP_METRICS_ATTR_TW_TSVAL, /* u32, raw, rcv tsval */
- TCP_METRICS_ATTR_TW_TS_STAMP, /* s32, sec age */
- TCP_METRICS_ATTR_VALS, /* nested +1, u32 */
- TCP_METRICS_ATTR_FOPEN_MSS, /* u16 */
- TCP_METRICS_ATTR_FOPEN_SYN_DROPS, /* u16, count of drops */
- TCP_METRICS_ATTR_FOPEN_SYN_DROP_TS, /* msecs age */
- TCP_METRICS_ATTR_FOPEN_COOKIE, /* binary */
-
- __TCP_METRICS_ATTR_MAX,
-};
-
-#define TCP_METRICS_ATTR_MAX (__TCP_METRICS_ATTR_MAX - 1)
-
-enum {
- TCP_METRICS_CMD_UNSPEC,
- TCP_METRICS_CMD_GET,
- TCP_METRICS_CMD_DEL,
-
- __TCP_METRICS_CMD_MAX,
-};
-
-#define TCP_METRICS_CMD_MAX (__TCP_METRICS_CMD_MAX - 1)
-
-#endif /* _LINUX_TCP_METRICS_H */