From e26a55e2ba1b056f44070f794f09c5b164e96c46 Mon Sep 17 00:00:00 2001 From: Dust Li Date: Fri, 17 Jul 2020 07:39:21 +0800 Subject: [PATCH 1735/2944] hookers: fix Kconfig dependency on INET fix #29372337 hookers need CONFIG_INET to run its basic functionanity, add dependency in Kconfig Signed-off-by: Dust Li Signed-off-by: Tony Lu Acked-by: Caspar Zhang --- net/hookers/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/net/hookers/Kconfig b/net/hookers/Kconfig index fed54ad..323c5b1 100644 --- a/net/hookers/Kconfig +++ b/net/hookers/Kconfig @@ -2,6 +2,7 @@ config HOOKERS tristate "Hooker service" default m depends on X86 || ARM64 + depends on INET ---help--- Allow replacing and restore the function pointer in any order. See include/linux/hookers.h for details. -- 1.8.3.1