linux: Enable CONFIG_NET_DROP_MONITOR by default.

Needed for subscribing to dropped packets (e.g. via `dropwatch`).
This commit is contained in:
Niklas Hambüchen 2020-04-13 03:36:15 +02:00 committed by Matthieu Coudron
parent df012cc3c4
commit f16ae2da3e

View File

@ -178,6 +178,10 @@ let
NF_TABLES_BRIDGE = mkMerge [ (whenBetween "4.19" "5.3" yes)
(whenAtLeast "5.3" module) ];
# needed for `dropwatch`
# Builtin-only since https://github.com/torvalds/linux/commit/f4b6bcc7002f0e3a3428bac33cf1945abff95450
NET_DROP_MONITOR = yes;
# needed for ss
INET_DIAG = yes;
INET_TCP_DIAG = module;