* [PATCH 2/3 v2] perf_counter: allow arch to supply event misc flags and instruction pointer
@ 2009-05-14 11:48 Paul Mackerras
2009-05-15 14:39 ` Ingo Molnar
2009-05-15 14:44 ` [tip:perfcounters/core] " tip-bot for Paul Mackerras
0 siblings, 2 replies; 3+ messages in thread
From: Paul Mackerras @ 2009-05-14 11:48 UTC (permalink / raw)
To: Ingo Molnar; +Cc: Peter Zijlstra, linux-kernel, Corey Ashford, Thomas Gleixner
At present the values we put in overflow events for the misc flags
indicating processor mode and the instruction pointer are obtained
using the standard user_mode() and instruction_pointer() functions.
Those functions tell you where the performance monitor interrupt
was taken, which might not be exactly where the counter overflow
occurred, for example because interrupts were disabled at the point
where the overflow occurred, or because the processor had many
instructions in flight and chose to complete some more instructions
beyond the one that caused the counter overflow.
Some architectures (e.g. powerpc) can supply more precise information
about where the counter overflow occurred and the processor mode at
that point. This introduces new functions, perf_misc_flags() and
perf_instruction_pointer(), which arch code can override to provide
more precise information if available. They have default implementations
which are identical to the existing code.
This also adds a new misc flag value, PERF_EVENT_MISC_HYPERVISOR, for
the case where a counter overflow occurred in the hypervisor. We
encode the processor mode in the 2 bits previously used to indicate
user or kernel mode; the values for user and kernel mode are unchanged
and hypervisor mode is indicated by both bits being set.
Signed-off-by: Paul Mackerras <paulus@samba.org>
---
Patches 1/3 and 3/3 of this series are unchanged. Ingo, do you need
me to repost them?
include/linux/perf_counter.h | 11 ++++++++++-
kernel/perf_counter.c | 5 ++---
2 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/include/linux/perf_counter.h b/include/linux/perf_counter.h
index 614f921..8ddde14 100644
--- a/include/linux/perf_counter.h
+++ b/include/linux/perf_counter.h
@@ -210,8 +210,11 @@ struct perf_counter_mmap_page {
__u32 data_head; /* head in the data section */
};
+#define PERF_EVENT_MISC_CPUMODE_MASK (3 << 0)
+#define PERF_EVENT_MISC_CPUMODE_UNKNOWN (0 << 0)
#define PERF_EVENT_MISC_KERNEL (1 << 0)
-#define PERF_EVENT_MISC_USER (1 << 1)
+#define PERF_EVENT_MISC_USER (2 << 0)
+#define PERF_EVENT_MISC_HYPERVISOR (3 << 0)
#define PERF_EVENT_MISC_OVERFLOW (1 << 2)
struct perf_event_header {
@@ -588,6 +591,12 @@ extern int sysctl_perf_counter_mlock;
extern void perf_counter_init(void);
+#ifndef perf_misc_flags
+#define perf_misc_flags(regs) (user_mode(regs) ? PERF_EVENT_MISC_USER : \
+ PERF_EVENT_MISC_KERNEL)
+#define perf_instruction_pointer(regs) instruction_pointer(regs)
+#endif
+
#else
static inline void
perf_counter_task_sched_in(struct task_struct *task, int cpu) { }
diff --git a/kernel/perf_counter.c b/kernel/perf_counter.c
index ff166c1..89568de 100644
--- a/kernel/perf_counter.c
+++ b/kernel/perf_counter.c
@@ -1978,11 +1978,10 @@ static void perf_counter_output(struct perf_counter *counter,
header.size = sizeof(header);
header.misc = PERF_EVENT_MISC_OVERFLOW;
- header.misc |= user_mode(regs) ?
- PERF_EVENT_MISC_USER : PERF_EVENT_MISC_KERNEL;
+ header.misc |= perf_misc_flags(regs);
if (record_type & PERF_RECORD_IP) {
- ip = instruction_pointer(regs);
+ ip = perf_instruction_pointer(regs);
header.type |= PERF_RECORD_IP;
header.size += sizeof(ip);
}
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH 2/3 v2] perf_counter: allow arch to supply event misc flags and instruction pointer
2009-05-14 11:48 [PATCH 2/3 v2] perf_counter: allow arch to supply event misc flags and instruction pointer Paul Mackerras
@ 2009-05-15 14:39 ` Ingo Molnar
2009-05-15 14:44 ` [tip:perfcounters/core] " tip-bot for Paul Mackerras
1 sibling, 0 replies; 3+ messages in thread
From: Ingo Molnar @ 2009-05-15 14:39 UTC (permalink / raw)
To: Paul Mackerras
Cc: Peter Zijlstra, linux-kernel, Corey Ashford, Thomas Gleixner
* Paul Mackerras <paulus@samba.org> wrote:
> At present the values we put in overflow events for the misc flags
> indicating processor mode and the instruction pointer are obtained
> using the standard user_mode() and instruction_pointer()
> functions. Those functions tell you where the performance monitor
> interrupt was taken, which might not be exactly where the counter
> overflow occurred, for example because interrupts were disabled at
> the point where the overflow occurred, or because the processor
> had many instructions in flight and chose to complete some more
> instructions beyond the one that caused the counter overflow.
>
> Some architectures (e.g. powerpc) can supply more precise
> information about where the counter overflow occurred and the
> processor mode at that point. This introduces new functions,
> perf_misc_flags() and perf_instruction_pointer(), which arch code
> can override to provide more precise information if available.
> They have default implementations which are identical to the
> existing code.
>
> This also adds a new misc flag value, PERF_EVENT_MISC_HYPERVISOR, for
> the case where a counter overflow occurred in the hypervisor. We
> encode the processor mode in the 2 bits previously used to indicate
> user or kernel mode; the values for user and kernel mode are unchanged
> and hypervisor mode is indicated by both bits being set.
>
> Signed-off-by: Paul Mackerras <paulus@samba.org>
> ---
> Patches 1/3 and 3/3 of this series are unchanged. Ingo, do you need
> me to repost them?
no need, picked them all up, thanks Paul!
Ingo
^ permalink raw reply [flat|nested] 3+ messages in thread
* [tip:perfcounters/core] perf_counter: allow arch to supply event misc flags and instruction pointer
2009-05-14 11:48 [PATCH 2/3 v2] perf_counter: allow arch to supply event misc flags and instruction pointer Paul Mackerras
2009-05-15 14:39 ` Ingo Molnar
@ 2009-05-15 14:44 ` tip-bot for Paul Mackerras
1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Paul Mackerras @ 2009-05-15 14:44 UTC (permalink / raw)
To: linux-tip-commits
Cc: linux-kernel, acme, paulus, hpa, mingo, a.p.zijlstra, tglx,
cjashfor, mingo
Commit-ID: 9d23a90a67261e73b2fcac04d8ca963c6b496afb
Gitweb: http://git.kernel.org/tip/9d23a90a67261e73b2fcac04d8ca963c6b496afb
Author: Paul Mackerras <paulus@samba.org>
AuthorDate: Thu, 14 May 2009 21:48:08 +1000
Committer: Ingo Molnar <mingo@elte.hu>
CommitDate: Fri, 15 May 2009 16:38:56 +0200
perf_counter: allow arch to supply event misc flags and instruction pointer
At present the values we put in overflow events for the misc
flags indicating processor mode and the instruction pointer are
obtained using the standard user_mode() and
instruction_pointer() functions. Those functions tell you where
the performance monitor interrupt was taken, which might not be
exactly where the counter overflow occurred, for example
because interrupts were disabled at the point where the
overflow occurred, or because the processor had many
instructions in flight and chose to complete some more
instructions beyond the one that caused the counter overflow.
Some architectures (e.g. powerpc) can supply more precise
information about where the counter overflow occurred and the
processor mode at that point. This introduces new functions,
perf_misc_flags() and perf_instruction_pointer(), which arch
code can override to provide more precise information if
available. They have default implementations which are
identical to the existing code.
This also adds a new misc flag value,
PERF_EVENT_MISC_HYPERVISOR, for the case where a counter
overflow occurred in the hypervisor. We encode the processor
mode in the 2 bits previously used to indicate user or kernel
mode; the values for user and kernel mode are unchanged and
hypervisor mode is indicated by both bits being set.
[ Impact: generalize perfcounter core facilities ]
Signed-off-by: Paul Mackerras <paulus@samba.org>
Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
LKML-Reference: <18956.1272.818511.561835@cargo.ozlabs.ibm.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
---
include/linux/perf_counter.h | 11 ++++++++++-
kernel/perf_counter.c | 5 ++---
2 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/include/linux/perf_counter.h b/include/linux/perf_counter.h
index 004b6e1..c8c1dfc 100644
--- a/include/linux/perf_counter.h
+++ b/include/linux/perf_counter.h
@@ -215,8 +215,11 @@ struct perf_counter_mmap_page {
__u32 data_head; /* head in the data section */
};
+#define PERF_EVENT_MISC_CPUMODE_MASK (3 << 0)
+#define PERF_EVENT_MISC_CPUMODE_UNKNOWN (0 << 0)
#define PERF_EVENT_MISC_KERNEL (1 << 0)
-#define PERF_EVENT_MISC_USER (1 << 1)
+#define PERF_EVENT_MISC_USER (2 << 0)
+#define PERF_EVENT_MISC_HYPERVISOR (3 << 0)
#define PERF_EVENT_MISC_OVERFLOW (1 << 2)
struct perf_event_header {
@@ -596,6 +599,12 @@ extern int sysctl_perf_counter_mlock;
extern void perf_counter_init(void);
+#ifndef perf_misc_flags
+#define perf_misc_flags(regs) (user_mode(regs) ? PERF_EVENT_MISC_USER : \
+ PERF_EVENT_MISC_KERNEL)
+#define perf_instruction_pointer(regs) instruction_pointer(regs)
+#endif
+
#else
static inline void
perf_counter_task_sched_in(struct task_struct *task, int cpu) { }
diff --git a/kernel/perf_counter.c b/kernel/perf_counter.c
index 728a595..57840a9 100644
--- a/kernel/perf_counter.c
+++ b/kernel/perf_counter.c
@@ -2042,11 +2042,10 @@ static void perf_counter_output(struct perf_counter *counter,
header.size = sizeof(header);
header.misc = PERF_EVENT_MISC_OVERFLOW;
- header.misc |= user_mode(regs) ?
- PERF_EVENT_MISC_USER : PERF_EVENT_MISC_KERNEL;
+ header.misc |= perf_misc_flags(regs);
if (record_type & PERF_RECORD_IP) {
- ip = instruction_pointer(regs);
+ ip = perf_instruction_pointer(regs);
header.type |= PERF_RECORD_IP;
header.size += sizeof(ip);
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-05-15 14:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-14 11:48 [PATCH 2/3 v2] perf_counter: allow arch to supply event misc flags and instruction pointer Paul Mackerras
2009-05-15 14:39 ` Ingo Molnar
2009-05-15 14:44 ` [tip:perfcounters/core] " tip-bot for Paul Mackerras
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox