From: Sinan Kaya Date: Tue, 14 May 2019 22:44:11 +0000 (-0700) Subject: net: replace CONFIG_DEBUG_KERNEL with CONFIG_DEBUG_MISC X-Git-Tag: v5.15~6360^2~61 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=432d82200f584a9501103ca3f0b2658a211a3e29;p=platform%2Fkernel%2Flinux-starfive.git net: replace CONFIG_DEBUG_KERNEL with CONFIG_DEBUG_MISC CONFIG_DEBUG_KERNEL should not impact code generation. Use the newly defined CONFIG_DEBUG_MISC instead to keep the current code. Link: http://lkml.kernel.org/r/20190413224438.10802-6-okaya@kernel.org Signed-off-by: Sinan Kaya Acked-by: Florian Westphal Reviewed-by: Josh Triplett Reviewed-by: Kees Cook Cc: Florian Westphal Cc: Pablo Neira Ayuso Cc: Jozsef Kadlecsik Cc: "David S. Miller" Cc: Anders Roxell Cc: Benjamin Herrenschmidt Cc: Christophe Leroy Cc: Chris Zankel Cc: Greg Kroah-Hartman Cc: James Hogan Cc: Max Filippov Cc: Michael Ellerman Cc: Michal Hocko Cc: Mike Rapoport Cc: Paul Burton Cc: Paul Mackerras Cc: Ralf Baechle Cc: Thomas Bogendoerfer Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/net/netfilter/core.c b/net/netfilter/core.c index 71f0690..b96fd3f 100644 --- a/net/netfilter/core.c +++ b/net/netfilter/core.c @@ -163,7 +163,7 @@ nf_hook_entries_grow(const struct nf_hook_entries *old, static void hooks_validate(const struct nf_hook_entries *hooks) { -#ifdef CONFIG_DEBUG_KERNEL +#ifdef CONFIG_DEBUG_MISC struct nf_hook_ops **orig_ops; int prio = INT_MIN; size_t i = 0;