linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/3] oprofile: ARM backtraces and few minors
@ 2011-01-20 18:57 Ari Kauppi
  2011-01-20 18:57 ` [PATCH v2 1/3] oprofile: Use CONFIG_HW_PERF_EVENTS for oprofile_perf_init and friends Ari Kauppi
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Ari Kauppi @ 2011-01-20 18:57 UTC (permalink / raw)
  To: linux-arm-kernel

This patchset re-enables ARM backtraces with non-PMU capable CPUs.

In V2 I have tried to address the comments received for the V1
patches. arch/sh/oprofile/common.c is untouched but should work
as earlier.

Compile tested with arm/omap2plus_defconfig (with and without
CONFIG_HW_PERF_EVENTS).

Ari Kauppi (3):
  oprofile: Use CONFIG_HW_PERF_EVENTS for oprofile_perf_init and
    friends
  oprofile: Provide stubs for oprofile_perf_{init,exit}
  ARM: oprofile: Always allow backtraces

 arch/arm/oprofile/common.c |   12 ++----------
 include/linux/oprofile.h   |   13 +++++++++++--
 2 files changed, 13 insertions(+), 12 deletions(-)

-- 
1.7.4.rc2.3.g60a2e

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

* [PATCH v2 1/3] oprofile: Use CONFIG_HW_PERF_EVENTS for oprofile_perf_init and friends
  2011-01-20 18:57 [PATCH v2 0/3] oprofile: ARM backtraces and few minors Ari Kauppi
@ 2011-01-20 18:57 ` Ari Kauppi
  2011-01-20 18:57 ` [PATCH v2 2/3] oprofile: Provide stubs for oprofile_perf_{init,exit} Ari Kauppi
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Ari Kauppi @ 2011-01-20 18:57 UTC (permalink / raw)
  To: linux-arm-kernel

The implementations are flagged in Makefile with CONFIG_HW_PERF_EVENTS
instead of CONFIG_PERF_EVENTS.

Signed-off-by: Ari Kauppi <kauppi@papupata.org>
---
 include/linux/oprofile.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/linux/oprofile.h b/include/linux/oprofile.h
index 32fb812..54c8382 100644
--- a/include/linux/oprofile.h
+++ b/include/linux/oprofile.h
@@ -186,10 +186,10 @@ int oprofile_add_data(struct op_entry *entry, unsigned long val);
 int oprofile_add_data64(struct op_entry *entry, u64 val);
 int oprofile_write_commit(struct op_entry *entry);
 
-#ifdef CONFIG_PERF_EVENTS
+#ifdef CONFIG_HW_PERF_EVENTS
 int __init oprofile_perf_init(struct oprofile_operations *ops);
 void oprofile_perf_exit(void);
 char *op_name_from_perf_id(void);
-#endif /* CONFIG_PERF_EVENTS */
+#endif /* CONFIG_HW_PERF_EVENTS */
 
 #endif /* OPROFILE_H */
-- 
1.7.4.rc2.3.g60a2e

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

* [PATCH v2 2/3] oprofile: Provide stubs for oprofile_perf_{init,exit}
  2011-01-20 18:57 [PATCH v2 0/3] oprofile: ARM backtraces and few minors Ari Kauppi
  2011-01-20 18:57 ` [PATCH v2 1/3] oprofile: Use CONFIG_HW_PERF_EVENTS for oprofile_perf_init and friends Ari Kauppi
@ 2011-01-20 18:57 ` Ari Kauppi
  2011-01-20 18:57 ` [PATCH v2 3/3] ARM: oprofile: Always allow backtraces Ari Kauppi
  2011-01-26 18:33 ` [PATCH v2 0/3] oprofile: ARM backtraces and few minors Robert Richter
  3 siblings, 0 replies; 6+ messages in thread
From: Ari Kauppi @ 2011-01-20 18:57 UTC (permalink / raw)
  To: linux-arm-kernel

If CONFIG_HW_PERF_EVENTS is not defined, provide stubs for
oprofile_perf_init and oprofile_perf_exit. Allows cleaning of
architecture specific implementations.

Signed-off-by: Ari Kauppi <kauppi@papupata.org>
---
 include/linux/oprofile.h |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/include/linux/oprofile.h b/include/linux/oprofile.h
index 54c8382..1ca6411 100644
--- a/include/linux/oprofile.h
+++ b/include/linux/oprofile.h
@@ -16,6 +16,8 @@
 #include <linux/types.h>
 #include <linux/spinlock.h>
 #include <linux/init.h>
+#include <linux/errno.h>
+#include <linux/printk.h>
 #include <asm/atomic.h>
  
 /* Each escaped entry is prefixed by ESCAPE_CODE
@@ -190,6 +192,13 @@ int oprofile_write_commit(struct op_entry *entry);
 int __init oprofile_perf_init(struct oprofile_operations *ops);
 void oprofile_perf_exit(void);
 char *op_name_from_perf_id(void);
+#else
+static inline int __init oprofile_perf_init(struct oprofile_operations *ops)
+{
+	pr_info("oprofile: hardware counters not available\n");
+	return -ENODEV;
+}
+static inline void oprofile_perf_exit(void) { }
 #endif /* CONFIG_HW_PERF_EVENTS */
 
 #endif /* OPROFILE_H */
-- 
1.7.4.rc2.3.g60a2e

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

* [PATCH v2 3/3] ARM: oprofile: Always allow backtraces
  2011-01-20 18:57 [PATCH v2 0/3] oprofile: ARM backtraces and few minors Ari Kauppi
  2011-01-20 18:57 ` [PATCH v2 1/3] oprofile: Use CONFIG_HW_PERF_EVENTS for oprofile_perf_init and friends Ari Kauppi
  2011-01-20 18:57 ` [PATCH v2 2/3] oprofile: Provide stubs for oprofile_perf_{init,exit} Ari Kauppi
@ 2011-01-20 18:57 ` Ari Kauppi
  2011-01-21 11:27   ` Will Deacon
  2011-01-26 18:33 ` [PATCH v2 0/3] oprofile: ARM backtraces and few minors Robert Richter
  3 siblings, 1 reply; 6+ messages in thread
From: Ari Kauppi @ 2011-01-20 18:57 UTC (permalink / raw)
  To: linux-arm-kernel

Always allow backtrace when using oprofile on ARM, even if a PMU
isn't present. Implemented by removing code and using stubs
provided by <linux/oprofile.h>.

Restores functionality originally introduced in commit
1b7b56982fdcd9d85effd76f3928cf5d6eb26155 ("oprofile: Always allow
backtraces on ARM") by Richard Purdie.

Signed-off-by: Ari Kauppi <kauppi@papupata.org>
---
 arch/arm/oprofile/common.c |   12 ++----------
 1 files changed, 2 insertions(+), 10 deletions(-)

diff --git a/arch/arm/oprofile/common.c b/arch/arm/oprofile/common.c
index 8aa9744..2b66391 100644
--- a/arch/arm/oprofile/common.c
+++ b/arch/arm/oprofile/common.c
@@ -10,8 +10,6 @@
  */
 
 #include <linux/cpumask.h>
-#include <linux/err.h>
-#include <linux/errno.h>
 #include <linux/init.h>
 #include <linux/mutex.h>
 #include <linux/oprofile.h>
@@ -46,6 +44,7 @@ char *op_name_from_perf_id(void)
 		return NULL;
 	}
 }
+#endif
 
 static int report_trace(struct stackframe *frame, void *d)
 {
@@ -111,6 +110,7 @@ static void arm_backtrace(struct pt_regs * const regs, unsigned int depth)
 
 int __init oprofile_arch_init(struct oprofile_operations *ops)
 {
+	/* provide backtrace support also in timer mode: */
 	ops->backtrace		= arm_backtrace;
 
 	return oprofile_perf_init(ops);
@@ -120,11 +120,3 @@ void __exit oprofile_arch_exit(void)
 {
 	oprofile_perf_exit();
 }
-#else
-int __init oprofile_arch_init(struct oprofile_operations *ops)
-{
-	pr_info("oprofile: hardware counters not available\n");
-	return -ENODEV;
-}
-void __exit oprofile_arch_exit(void) {}
-#endif /* CONFIG_HW_PERF_EVENTS */
-- 
1.7.4.rc2.3.g60a2e

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

* [PATCH v2 3/3] ARM: oprofile: Always allow backtraces
  2011-01-20 18:57 ` [PATCH v2 3/3] ARM: oprofile: Always allow backtraces Ari Kauppi
@ 2011-01-21 11:27   ` Will Deacon
  0 siblings, 0 replies; 6+ messages in thread
From: Will Deacon @ 2011-01-21 11:27 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Ari,

> Always allow backtrace when using oprofile on ARM, even if a PMU
> isn't present. Implemented by removing code and using stubs
> provided by <linux/oprofile.h>.
> 
> Restores functionality originally introduced in commit
> 1b7b56982fdcd9d85effd76f3928cf5d6eb26155 ("oprofile: Always allow
> backtraces on ARM") by Richard Purdie.
> 
> Signed-off-by: Ari Kauppi <kauppi@papupata.org>
> ---
>  arch/arm/oprofile/common.c |   12 ++----------
>  1 files changed, 2 insertions(+), 10 deletions(-)

[...]

Providing Robert is happy with the associated changes to
linux/oprofile.h then this patch looks good to me.

Acked-by: Will Deacon <will.deacon@arm.com>

Will

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

* [PATCH v2 0/3] oprofile: ARM backtraces and few minors
  2011-01-20 18:57 [PATCH v2 0/3] oprofile: ARM backtraces and few minors Ari Kauppi
                   ` (2 preceding siblings ...)
  2011-01-20 18:57 ` [PATCH v2 3/3] ARM: oprofile: Always allow backtraces Ari Kauppi
@ 2011-01-26 18:33 ` Robert Richter
  3 siblings, 0 replies; 6+ messages in thread
From: Robert Richter @ 2011-01-26 18:33 UTC (permalink / raw)
  To: linux-arm-kernel

On 20.01.11 13:57:17, Ari Kauppi wrote:
> This patchset re-enables ARM backtraces with non-PMU capable CPUs.
> 
> In V2 I have tried to address the comments received for the V1
> patches. arch/sh/oprofile/common.c is untouched but should work
> as earlier.
> 
> Compile tested with arm/omap2plus_defconfig (with and without
> CONFIG_HW_PERF_EVENTS).
> 
> Ari Kauppi (3):
>   oprofile: Use CONFIG_HW_PERF_EVENTS for oprofile_perf_init and
>     friends
>   oprofile: Provide stubs for oprofile_perf_{init,exit}
>   ARM: oprofile: Always allow backtraces
> 
>  arch/arm/oprofile/common.c |   12 ++----------
>  include/linux/oprofile.h   |   13 +++++++++++--
>  2 files changed, 13 insertions(+), 12 deletions(-)

Applied to oprofile/urgent, thanks Ari.

I squashed patch 2 and 3 and modified the commit messages (see below).

Added to .37-stable.

-Robert


commit d14dd7e20d5e526557f5d3cfef4046a642f80924
Author: Ari Kauppi <kauppi@papupata.org>
Date:   Thu Jan 20 13:57:19 2011 -0500

    ARM: oprofile: Fix backtraces in timer mode
    
    Always allow backtraces when using oprofile on ARM, even if a PMU
    isn't present. Restores functionality originally introduced in commit
    1b7b56982fdcd9d85effd76f3928cf5d6eb26155 ("oprofile: Always allow
    backtraces on ARM") by Richard Purdie.
    
    It is not that obvious, but there is now only one oprofile_arch_init()
    function. So the .backtrace callback is available also in timer mode.
    
    Implemented by removing code and using stubs for oprofile_perf_{init,
    exit} provided by <linux/oprofile.h>. This allows cleaning of other
    architecture specific implementations too.
    
    Cc: stable at kernel.org # 37.x
    Signed-off-by: Ari Kauppi <kauppi@papupata.org>
    Acked-by: Will Deacon <will.deacon@arm.com>
    Signed-off-by: Robert Richter <robert.richter@amd.com>

commit 1ea1bdf7faa4d0b5293e605f2e1ef1c2c59f6b53
Author: Ari Kauppi <kauppi@papupata.org>
Date:   Thu Jan 20 13:57:18 2011 -0500

    oprofile: Fix usage of CONFIG_HW_PERF_EVENTS for oprofile_perf_init and friends
    
    The implementations are flagged in Makefile with CONFIG_HW_PERF_EVENTS
    instead of CONFIG_PERF_EVENTS.
    
    Cc: stable at kernel.org # 37.x
    Signed-off-by: Ari Kauppi <kauppi@papupata.org>
    Signed-off-by: Robert Richter <robert.richter@amd.com>


-- 
Advanced Micro Devices, Inc.
Operating System Research Center

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

end of thread, other threads:[~2011-01-26 18:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-20 18:57 [PATCH v2 0/3] oprofile: ARM backtraces and few minors Ari Kauppi
2011-01-20 18:57 ` [PATCH v2 1/3] oprofile: Use CONFIG_HW_PERF_EVENTS for oprofile_perf_init and friends Ari Kauppi
2011-01-20 18:57 ` [PATCH v2 2/3] oprofile: Provide stubs for oprofile_perf_{init,exit} Ari Kauppi
2011-01-20 18:57 ` [PATCH v2 3/3] ARM: oprofile: Always allow backtraces Ari Kauppi
2011-01-21 11:27   ` Will Deacon
2011-01-26 18:33 ` [PATCH v2 0/3] oprofile: ARM backtraces and few minors Robert Richter

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).