From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul Gortmaker Subject: [PATCH 09/10] core: migrate exception table users off module.h and onto extable.h Date: Mon, 9 Jan 2017 15:40:09 -0500 Message-ID: <20170109204010.5047-10-paul.gortmaker@windriver.com> References: <20170109204010.5047-1-paul.gortmaker@windriver.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: In-Reply-To: <20170109204010.5047-1-paul.gortmaker@windriver.com> Sender: linux-kernel-owner@vger.kernel.org To: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Paul Gortmaker , Rusty Russell , Andrew Morton , Linus Torvalds List-Id: linux-arch.vger.kernel.org These files were including module.h for exception table related functions. We've now separated that content out into its own file "extable.h" so now move over to that and where possible, avoid all the extra header content in module.h that we don't really need to compile these non-modular files. Note: init/main.c still needs module.h for __init_or_module kernel/extable.c still needs module.h for is_module_text_address ...and so we don't get the benefit of removing module.h from the cpp feed for these two files, unlike the almost universal 1:1 exchange of module.h for extable.h we were able to do in the arch dirs. Cc: Rusty Russell Cc: Andrew Morton Cc: Linus Torvalds Signed-off-by: Paul Gortmaker --- init/main.c | 1 + kernel/extable.c | 1 + kernel/module.c | 1 + 3 files changed, 3 insertions(+) diff --git a/init/main.c b/init/main.c index b0c9d6facef9..5b244bc1c176 100644 --- a/init/main.c +++ b/init/main.c @@ -12,6 +12,7 @@ #define DEBUG /* Enable initcall_debug */ #include +#include #include #include #include diff --git a/kernel/extable.c b/kernel/extable.c index e3beec4a2339..b25d9901e431 100644 --- a/kernel/extable.c +++ b/kernel/extable.c @@ -17,6 +17,7 @@ */ #include #include +#include #include #include #include diff --git a/kernel/module.c b/kernel/module.c index 5088784c0cf9..43b6fb20fdf4 100644 --- a/kernel/module.c +++ b/kernel/module.c @@ -17,6 +17,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include +#include #include #include #include -- 2.11.0 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.windriver.com ([147.11.1.11]:55939 "EHLO mail.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S940746AbdAIUlY (ORCPT ); Mon, 9 Jan 2017 15:41:24 -0500 From: Paul Gortmaker Subject: [PATCH 09/10] core: migrate exception table users off module.h and onto extable.h Date: Mon, 9 Jan 2017 15:40:09 -0500 Message-ID: <20170109204010.5047-10-paul.gortmaker@windriver.com> In-Reply-To: <20170109204010.5047-1-paul.gortmaker@windriver.com> References: <20170109204010.5047-1-paul.gortmaker@windriver.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-arch-owner@vger.kernel.org List-ID: To: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Paul Gortmaker , Rusty Russell , Andrew Morton , Linus Torvalds Message-ID: <20170109204009.InvX7xMKTnvRK-xVohTgOKj-5MYLtZ06se4fmaEIB1s@z> These files were including module.h for exception table related functions. We've now separated that content out into its own file "extable.h" so now move over to that and where possible, avoid all the extra header content in module.h that we don't really need to compile these non-modular files. Note: init/main.c still needs module.h for __init_or_module kernel/extable.c still needs module.h for is_module_text_address ...and so we don't get the benefit of removing module.h from the cpp feed for these two files, unlike the almost universal 1:1 exchange of module.h for extable.h we were able to do in the arch dirs. Cc: Rusty Russell Cc: Andrew Morton Cc: Linus Torvalds Signed-off-by: Paul Gortmaker --- init/main.c | 1 + kernel/extable.c | 1 + kernel/module.c | 1 + 3 files changed, 3 insertions(+) diff --git a/init/main.c b/init/main.c index b0c9d6facef9..5b244bc1c176 100644 --- a/init/main.c +++ b/init/main.c @@ -12,6 +12,7 @@ #define DEBUG /* Enable initcall_debug */ #include +#include #include #include #include diff --git a/kernel/extable.c b/kernel/extable.c index e3beec4a2339..b25d9901e431 100644 --- a/kernel/extable.c +++ b/kernel/extable.c @@ -17,6 +17,7 @@ */ #include #include +#include #include #include #include diff --git a/kernel/module.c b/kernel/module.c index 5088784c0cf9..43b6fb20fdf4 100644 --- a/kernel/module.c +++ b/kernel/module.c @@ -17,6 +17,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include +#include #include #include #include -- 2.11.0