diff options
author | Tom Herbert <tom@herbertland.com> | 2016-03-07 23:11:07 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-03-09 22:36:14 +0100 |
commit | cd6e111bf5be5c70aef96a86d791ee7be0c0e137 (patch) | |
tree | 6fcfcb85e5838ef670558ad548e27458b0df42f0 /net/kcm/Makefile | |
parent | kcm: Kernel Connection Multiplexor module (diff) | |
download | linux-cd6e111bf5be5c70aef96a86d791ee7be0c0e137.tar.xz linux-cd6e111bf5be5c70aef96a86d791ee7be0c0e137.zip |
kcm: Add statistics and proc interfaces
This patch adds various counters for KCM. These include counters for
messages and bytes received or sent, as well as counters for number of
attached/unattached TCP sockets and other error or edge events.
The statistics are exposed via a proc interface. /proc/net/kcm provides
statistics per KCM socket and per psock (attached TCP sockets).
/proc/net/kcm_stats provides aggregate statistics.
Signed-off-by: Tom Herbert <tom@herbertland.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/kcm/Makefile')
-rw-r--r-- | net/kcm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/kcm/Makefile b/net/kcm/Makefile index cb525f7c5a13..71256133e677 100644 --- a/net/kcm/Makefile +++ b/net/kcm/Makefile @@ -1,3 +1,3 @@ obj-$(CONFIG_AF_KCM) += kcm.o -kcm-y := kcmsock.o +kcm-y := kcmsock.o kcmproc.o |