diff options
-rw-r--r-- | net/unix/Kconfig | 7 | ||||
-rw-r--r-- | net/unix/Makefile | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/net/unix/Kconfig b/net/unix/Kconfig index 5a69733bcdad..c2128b10e5f9 100644 --- a/net/unix/Kconfig +++ b/net/unix/Kconfig | |||
@@ -19,3 +19,10 @@ config UNIX | |||
19 | 19 | ||
20 | Say Y unless you know what you are doing. | 20 | Say Y unless you know what you are doing. |
21 | 21 | ||
22 | config UNIX_DIAG | ||
23 | tristate "UNIX: socket monitoring interface" | ||
24 | depends on UNIX | ||
25 | default UNIX | ||
26 | ---help--- | ||
27 | Support for UNIX socket monitoring interface used by the ss tool. | ||
28 | If unsure, say Y. | ||
diff --git a/net/unix/Makefile b/net/unix/Makefile index b852a2bde9a8..b663c607b1c6 100644 --- a/net/unix/Makefile +++ b/net/unix/Makefile | |||
@@ -6,3 +6,6 @@ obj-$(CONFIG_UNIX) += unix.o | |||
6 | 6 | ||
7 | unix-y := af_unix.o garbage.o | 7 | unix-y := af_unix.o garbage.o |
8 | unix-$(CONFIG_SYSCTL) += sysctl_net_unix.o | 8 | unix-$(CONFIG_SYSCTL) += sysctl_net_unix.o |
9 | |||
10 | obj-$(CONFIG_UNIX_DIAG) += unix_diag.o | ||
11 | unix_diag-y := diag.o | ||