Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1506127 > unrolled thread
| Started by | Steven Rostedt <rostedt@goodmis.org> |
|---|---|
| First post | 2016-10-21 18:20 +0200 |
| Last post | 2016-10-24 16:20 +0200 |
| Articles | 5 — 2 participants |
Back to article view | Back to linux.kernel
[RFC][PATCH] Add EXPORT_MACRO_SYMBOL() for asm Steven Rostedt <rostedt@goodmis.org> - 2016-10-21 18:20 +0200
Re: [RFC][PATCH] Add EXPORT_MACRO_SYMBOL() for asm Nicholas Piggin <npiggin@gmail.com> - 2016-10-22 01:50 +0200
Re: [RFC][PATCH] Add EXPORT_MACRO_SYMBOL() for asm Steven Rostedt <rostedt@goodmis.org> - 2016-10-22 21:10 +0200
Re: [RFC][PATCH] Add EXPORT_MACRO_SYMBOL() for asm Nicholas Piggin <npiggin@gmail.com> - 2016-10-24 03:30 +0200
Re: [RFC][PATCH] Add EXPORT_MACRO_SYMBOL() for asm Steven Rostedt <rostedt@goodmis.org> - 2016-10-24 16:20 +0200
| From | Steven Rostedt <rostedt@goodmis.org> |
|---|---|
| Date | 2016-10-21 18:20 +0200 |
| Subject | [RFC][PATCH] Add EXPORT_MACRO_SYMBOL() for asm |
| Message-ID | <suKI2-84M-23@gated-at.bofh.it> |
Commit 784d5699eddc5 ("x86: move exports to actual definitions") removed the
EXPORT_SYMBOL(__fentry__) and EXPORT_SYMBOL(mcount) from x8664_ksyms_64.c,
and added EXPORT_SYMBOL(function_hook) in mcount_64.S instead. The problem
is that function_hook isn't a function at all, but a macro that is defined
as eithe mcount or __fentry__ depending on the support from gcc. But instead
of adding more #ifdefs like x8684_ksyms_64.c had, I suggest having another
export that can handle this similar to the way __string() works with
converting macros to strings. By having:
EXPORT_MACRO_SYMBOL(function_hook)
Where we have:
#define EXPORT_MACRO_SYMBOL(x) EXPORT_SYMBOL(x)
It will convert the macro into what it is defined as before calling
EXPORT_SYMBOL(), and this will just work properly again.
Cc: stable@vger.kernel.org
Fixes: Commit 784d5699eddc5 ("x86: move exports to actual definitions")
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
arch/x86/kernel/mcount_64.S | 2 +-
include/asm-generic/export.h | 5 +++++
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/arch/x86/kernel/mcount_64.S b/arch/x86/kernel/mcount_64.S
index efe73aacf966..ccd9d912af27 100644
--- a/arch/x86/kernel/mcount_64.S
+++ b/arch/x86/kernel/mcount_64.S
@@ -295,7 +295,7 @@ trace:
jmp fgraph_trace
END(function_hook)
#endif /* CONFIG_DYNAMIC_FTRACE */
-EXPORT_SYMBOL(function_hook)
+EXPORT_MACRO_SYMBOL(function_hook)
#endif /* CONFIG_FUNCTION_TRACER */
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
diff --git a/include/asm-generic/export.h b/include/asm-generic/export.h
index 43199a049da5..cb86e746865e 100644
--- a/include/asm-generic/export.h
+++ b/include/asm-generic/export.h
@@ -90,5 +90,10 @@
__EXPORT_SYMBOL(name, KSYM(name),)
#define EXPORT_DATA_SYMBOL_GPL(name) \
__EXPORT_SYMBOL(name, KSYM(name),_gpl)
+/*
+ * If "name" is a macro of a function and not a function itself,
+ * it needs a second pass.
+ */
+#define EXPORT_MACRO_SYMBOL(x) EXPORT_SYMBOL(x)
#endif
--
1.9.3
[toc] | [next] | [standalone]
| From | Nicholas Piggin <npiggin@gmail.com> |
|---|---|
| Date | 2016-10-22 01:50 +0200 |
| Message-ID | <suRJw-43G-9@gated-at.bofh.it> |
| In reply to | #1506127 |
On Fri, 21 Oct 2016 12:17:59 -0400
Steven Rostedt <rostedt@goodmis.org> wrote:
> Commit 784d5699eddc5 ("x86: move exports to actual definitions") removed the
> EXPORT_SYMBOL(__fentry__) and EXPORT_SYMBOL(mcount) from x8664_ksyms_64.c,
> and added EXPORT_SYMBOL(function_hook) in mcount_64.S instead. The problem
> is that function_hook isn't a function at all, but a macro that is defined
> as eithe mcount or __fentry__ depending on the support from gcc. But instead
> of adding more #ifdefs like x8684_ksyms_64.c had, I suggest having another
> export that can handle this similar to the way __string() works with
> converting macros to strings. By having:
>
> EXPORT_MACRO_SYMBOL(function_hook)
>
> Where we have:
>
> #define EXPORT_MACRO_SYMBOL(x) EXPORT_SYMBOL(x)
>
> It will convert the macro into what it is defined as before calling
> EXPORT_SYMBOL(), and this will just work properly again.
>
> Cc: stable@vger.kernel.org
> Fixes: Commit 784d5699eddc5 ("x86: move exports to actual definitions")
> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
> ---
> arch/x86/kernel/mcount_64.S | 2 +-
> include/asm-generic/export.h | 5 +++++
> 2 files changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/arch/x86/kernel/mcount_64.S b/arch/x86/kernel/mcount_64.S
> index efe73aacf966..ccd9d912af27 100644
> --- a/arch/x86/kernel/mcount_64.S
> +++ b/arch/x86/kernel/mcount_64.S
> @@ -295,7 +295,7 @@ trace:
> jmp fgraph_trace
> END(function_hook)
> #endif /* CONFIG_DYNAMIC_FTRACE */
> -EXPORT_SYMBOL(function_hook)
> +EXPORT_MACRO_SYMBOL(function_hook)
> #endif /* CONFIG_FUNCTION_TRACER */
>
> #ifdef CONFIG_FUNCTION_GRAPH_TRACER
> diff --git a/include/asm-generic/export.h b/include/asm-generic/export.h
> index 43199a049da5..cb86e746865e 100644
> --- a/include/asm-generic/export.h
> +++ b/include/asm-generic/export.h
> @@ -90,5 +90,10 @@
> __EXPORT_SYMBOL(name, KSYM(name),)
> #define EXPORT_DATA_SYMBOL_GPL(name) \
> __EXPORT_SYMBOL(name, KSYM(name),_gpl)
> +/*
> + * If "name" is a macro of a function and not a function itself,
> + * it needs a second pass.
> + */
> +#define EXPORT_MACRO_SYMBOL(x) EXPORT_SYMBOL(x)
Seems okay, but what about just calling it EXPORT_SYMBOL?
Thanks,
Nick
[toc] | [prev] | [next] | [standalone]
| From | Steven Rostedt <rostedt@goodmis.org> |
|---|---|
| Date | 2016-10-22 21:10 +0200 |
| Message-ID | <sv9Q5-7sn-9@gated-at.bofh.it> |
| In reply to | #1506359 |
On Sat, 22 Oct 2016 10:44:41 +1100 Nicholas Piggin <npiggin@gmail.com> wrote: > > #ifdef CONFIG_FUNCTION_GRAPH_TRACER > > diff --git a/include/asm-generic/export.h b/include/asm-generic/export.h > > index 43199a049da5..cb86e746865e 100644 > > --- a/include/asm-generic/export.h > > +++ b/include/asm-generic/export.h > > @@ -90,5 +90,10 @@ > > __EXPORT_SYMBOL(name, KSYM(name),) > > #define EXPORT_DATA_SYMBOL_GPL(name) \ > > __EXPORT_SYMBOL(name, KSYM(name),_gpl) > > +/* > > + * If "name" is a macro of a function and not a function itself, > > + * it needs a second pass. > > + */ > > +#define EXPORT_MACRO_SYMBOL(x) EXPORT_SYMBOL(x) > > Seems okay, but what about just calling it EXPORT_SYMBOL? Actually, this doesn't work. There's some magic going on it Makefile.build in the scripts directory that causes this to fail. I have another patch I'll be sending on Monday that fixes this. -- Steve
[toc] | [prev] | [next] | [standalone]
| From | Nicholas Piggin <npiggin@gmail.com> |
|---|---|
| Date | 2016-10-24 03:30 +0200 |
| Message-ID | <svCfn-DO-7@gated-at.bofh.it> |
| In reply to | #1506585 |
On Sat, 22 Oct 2016 15:08:52 -0400 Steven Rostedt <rostedt@goodmis.org> wrote: > On Sat, 22 Oct 2016 10:44:41 +1100 > Nicholas Piggin <npiggin@gmail.com> wrote: > > > > #ifdef CONFIG_FUNCTION_GRAPH_TRACER > > > diff --git a/include/asm-generic/export.h b/include/asm-generic/export.h > > > index 43199a049da5..cb86e746865e 100644 > > > --- a/include/asm-generic/export.h > > > +++ b/include/asm-generic/export.h > > > @@ -90,5 +90,10 @@ > > > __EXPORT_SYMBOL(name, KSYM(name),) > > > #define EXPORT_DATA_SYMBOL_GPL(name) \ > > > __EXPORT_SYMBOL(name, KSYM(name),_gpl) > > > +/* > > > + * If "name" is a macro of a function and not a function itself, > > > + * it needs a second pass. > > > + */ > > > +#define EXPORT_MACRO_SYMBOL(x) EXPORT_SYMBOL(x) > > > > Seems okay, but what about just calling it EXPORT_SYMBOL? > > > Actually, this doesn't work. There's some magic going on it > Makefile.build in the scripts directory that causes this to fail. > > I have another patch I'll be sending on Monday that fixes this. Yes it's grepping for EXPORT_SYMBOL_* I think. If you need to create a new name, EXPORT_SYMBOL prefix would be preferred. But yeah if you make the standard macro do macro expansion, it should just work, no?
[toc] | [prev] | [next] | [standalone]
| From | Steven Rostedt <rostedt@goodmis.org> |
|---|---|
| Date | 2016-10-24 16:20 +0200 |
| Message-ID | <svOgx-f0-13@gated-at.bofh.it> |
| In reply to | #1506819 |
On Mon, 24 Oct 2016 12:25:45 +1100 Nicholas Piggin <npiggin@gmail.com> wrote: > Yes it's grepping for EXPORT_SYMBOL_* I think. If you need to > create a new name, EXPORT_SYMBOL prefix would be preferred. But > yeah if you make the standard macro do macro expansion, it > should just work, no? Unfortunately, that's not enough. There's some magic in the Makefile that seems to use the names found in EXPORT_SYMBOL*, which fails when that name is just a macro to another name. I'm just going to punt and include both names depending on the config. -- Steve
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web