linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] perf: export power_start and power_end tracepoints
@ 2011-05-13 14:43 jean.pihet
  2011-05-13 14:48 ` Ingo Molnar
  0 siblings, 1 reply; 5+ messages in thread
From: jean.pihet @ 2011-05-13 14:43 UTC (permalink / raw)
  To: linux-kernel; +Cc: Thomas Renninger, Ingo Molnar, Jean Pihet

From: Jean Pihet <j-pihet@ti.com>

If used in a module both tracepoints need to be exported by the
kernel.
Fixed a typo in CONFIG_EVENT_POWER_TRACING_DEPRECATED to really
export the tracepoints.

Signed-off-by: Jean Pihet <j-pihet@ti.com>
Cc: Thomas Renninger <trenn@suse.de>
Cc: Ingo Molnar <mingo@elte.hu>
---
 kernel/trace/power-traces.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/kernel/trace/power-traces.c b/kernel/trace/power-traces.c
index f55fcf6..29b60f2 100644
--- a/kernel/trace/power-traces.c
+++ b/kernel/trace/power-traces.c
@@ -13,8 +13,9 @@
 #define CREATE_TRACE_POINTS
 #include <trace/events/power.h>
 
-#ifdef EVENT_POWER_TRACING_DEPRECATED
+#ifdef CONFIG_EVENT_POWER_TRACING_DEPRECATED
 EXPORT_TRACEPOINT_SYMBOL_GPL(power_start);
+EXPORT_TRACEPOINT_SYMBOL_GPL(power_end);
 #endif
 EXPORT_TRACEPOINT_SYMBOL_GPL(cpu_idle);
 
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] perf: export power_start and power_end tracepoints
  2011-05-13 14:43 [PATCH] perf: export power_start and power_end tracepoints jean.pihet
@ 2011-05-13 14:48 ` Ingo Molnar
  2011-05-13 15:09   ` Jean Pihet
  0 siblings, 1 reply; 5+ messages in thread
From: Ingo Molnar @ 2011-05-13 14:48 UTC (permalink / raw)
  To: jean.pihet; +Cc: linux-kernel, Thomas Renninger, Jean Pihet


* jean.pihet@newoldbits.com <jean.pihet@newoldbits.com> wrote:

> From: Jean Pihet <j-pihet@ti.com>
> 
> If used in a module both tracepoints need to be exported by the
> kernel.

but it's not used by any module in the kernel AFAICS, so why is this needed?

Thanks,

	Ingo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] perf: export power_start and power_end tracepoints
  2011-05-13 14:48 ` Ingo Molnar
@ 2011-05-13 15:09   ` Jean Pihet
  2011-05-16  9:23     ` Ingo Molnar
  0 siblings, 1 reply; 5+ messages in thread
From: Jean Pihet @ 2011-05-13 15:09 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: linux-kernel, Thomas Renninger, Jean Pihet, linux-omap, linux-pm

Adding l-o and linux-pm MLs. The original post is at
http://www.spinics.net/lists/kernel/msg1186554.html

On Fri, May 13, 2011 at 4:48 PM, Ingo Molnar <mingo@elte.hu> wrote:
>
> * jean.pihet@newoldbits.com <jean.pihet@newoldbits.com> wrote:
>
>> From: Jean Pihet <j-pihet@ti.com>
>>
>> If used in a module both tracepoints need to be exported by the
>> kernel.
>
> but it's not used by any module in the kernel AFAICS, so why is this needed?
Not currently, that is why the error went unnoticed. I think it is
better to fix it now than later.

I am working on a plan to clean-up and isolate the OMAP PM code from
the core code and to provide the PM functionality as a module. This
effort is part of the 'remove the crazy ARM churn' from the kernel.

Thanks,
Jean

>
> Thanks,
>
>        Ingo
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] perf: export power_start and power_end tracepoints
  2011-05-13 15:09   ` Jean Pihet
@ 2011-05-16  9:23     ` Ingo Molnar
  2011-05-16  9:45       ` Pihet-XID, Jean
  0 siblings, 1 reply; 5+ messages in thread
From: Ingo Molnar @ 2011-05-16  9:23 UTC (permalink / raw)
  To: Jean Pihet
  Cc: linux-kernel, Thomas Renninger, Jean Pihet, linux-omap, linux-pm


* Jean Pihet <jean.pihet@newoldbits.com> wrote:

> Adding l-o and linux-pm MLs. The original post is at
> http://www.spinics.net/lists/kernel/msg1186554.html
> 
> On Fri, May 13, 2011 at 4:48 PM, Ingo Molnar <mingo@elte.hu> wrote:
> >
> > * jean.pihet@newoldbits.com <jean.pihet@newoldbits.com> wrote:
> >
> >> From: Jean Pihet <j-pihet@ti.com>
> >>
> >> If used in a module both tracepoints need to be exported by the
> >> kernel.
> >
> > but it's not used by any module in the kernel AFAICS, so why is this needed?
> Not currently, that is why the error went unnoticed. I think it is
> better to fix it now than later.
> 
> I am working on a plan to clean-up and isolate the OMAP PM code from
> the core code and to provide the PM functionality as a module. This
> effort is part of the 'remove the crazy ARM churn' from the kernel.

Feel free to keep this patch with those modifications/cleanups:

Acked-by: Ingo Molnar <mingo@elte.hu>

but please make sure you push it together, i.e. never export something 
(knowingly) without having in-tree use for it.

Thanks,

	Ingo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] perf: export power_start and power_end tracepoints
  2011-05-16  9:23     ` Ingo Molnar
@ 2011-05-16  9:45       ` Pihet-XID, Jean
  0 siblings, 0 replies; 5+ messages in thread
From: Pihet-XID, Jean @ 2011-05-16  9:45 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: Jean Pihet, linux-kernel, Thomas Renninger, linux-omap, linux-pm

On Mon, May 16, 2011 at 11:23 AM, Ingo Molnar <mingo@elte.hu> wrote:
>
> * Jean Pihet <jean.pihet@newoldbits.com> wrote:
>
>> Adding l-o and linux-pm MLs. The original post is at
>> http://www.spinics.net/lists/kernel/msg1186554.html
>>
>> On Fri, May 13, 2011 at 4:48 PM, Ingo Molnar <mingo@elte.hu> wrote:
>> >
>> > * jean.pihet@newoldbits.com <jean.pihet@newoldbits.com> wrote:
>> >
>> >> From: Jean Pihet <j-pihet@ti.com>
>> >>
>> >> If used in a module both tracepoints need to be exported by the
>> >> kernel.
>> >
>> > but it's not used by any module in the kernel AFAICS, so why is this needed?
>> Not currently, that is why the error went unnoticed. I think it is
>> better to fix it now than later.
>>
>> I am working on a plan to clean-up and isolate the OMAP PM code from
>> the core code and to provide the PM functionality as a module. This
>> effort is part of the 'remove the crazy ARM churn' from the kernel.
>
> Feel free to keep this patch with those modifications/cleanups:
>
> Acked-by: Ingo Molnar <mingo@elte.hu>
>
> but please make sure you push it together, i.e. never export something
> (knowingly) without having in-tree use for it.
Ok will push the changes together when they are ready.

>
> Thanks,
>
>        Ingo
>

Thanks,
Jean

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-05-16  9:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-13 14:43 [PATCH] perf: export power_start and power_end tracepoints jean.pihet
2011-05-13 14:48 ` Ingo Molnar
2011-05-13 15:09   ` Jean Pihet
2011-05-16  9:23     ` Ingo Molnar
2011-05-16  9:45       ` Pihet-XID, Jean

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).