* [PATCH] perf_event: missing field in PERF_RECORD_SAMPLE documentation
@ 2012-11-06 20:33 Vince Weaver
2013-01-08 19:44 ` [PATCH] perf_event: missing field in PERF_RECORD_SAMPLE documentation (resend) Vince Weaver
0 siblings, 1 reply; 4+ messages in thread
From: Vince Weaver @ 2012-11-06 20:33 UTC (permalink / raw)
To: linux-kernel
Cc: Vince Weaver, Ingo Molnar, Peter Zijlstra, Paul Mackerras,
Arnaldo Carvalho de Melo, Stephane Eranian
While trying to write a perf_event/mmap test for my perf_event
test-suite I came across a missing field description in the
PERF_RECORD_SAMPLE documentation.
Signed-off-by: Vince Weaver <vincent.weaver@maine.edu>
diff --git a/include/uapi/linux/perf_event.h b/include/uapi/linux/perf_event.h
index 4f63c05..9fa9c62 100644
--- a/include/uapi/linux/perf_event.h
+++ b/include/uapi/linux/perf_event.h
@@ -579,7 +579,8 @@ enum perf_event_type {
* { u32 size;
* char data[size];}&& PERF_SAMPLE_RAW
*
- * { u64 from, to, flags } lbr[nr];} && PERF_SAMPLE_BRANCH_STACK
+ * { u64 nr;
+ * { u64 from, to, flags } lbr[nr];} && PERF_SAMPLE_BRANCH_STACK
*
* { u64 abi; # enum perf_sample_regs_abi
* u64 regs[weight(mask)]; } && PERF_SAMPLE_REGS_USER
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] perf_event: missing field in PERF_RECORD_SAMPLE documentation (resend)
2012-11-06 20:33 [PATCH] perf_event: missing field in PERF_RECORD_SAMPLE documentation Vince Weaver
@ 2013-01-08 19:44 ` Vince Weaver
2013-01-11 4:57 ` Arnaldo Carvalho de Melo
2013-01-25 11:35 ` [tip:perf/core] perf: Missing field in PERF_RECORD_SAMPLE documentation tip-bot for Vince Weaver
0 siblings, 2 replies; 4+ messages in thread
From: Vince Weaver @ 2013-01-08 19:44 UTC (permalink / raw)
To: linux-kernel
Cc: Ingo Molnar, Peter Zijlstra, Paul Mackerras,
Arnaldo Carvalho de Melo
I sent this in November with no response, but the patch still
applies.
While trying to write a perf_event/mmap test for my perf_event
test-suite I came across a missing field description in the
PERF_RECORD_SAMPLE documentation in perf_event.h
Signed-off-by: Vince Weaver <vincent.weaver@maine.edu>
diff --git a/include/uapi/linux/perf_event.h b/include/uapi/linux/perf_event.h
index 4f63c05..9fa9c62 100644
--- a/include/uapi/linux/perf_event.h
+++ b/include/uapi/linux/perf_event.h
@@ -579,7 +579,8 @@ enum perf_event_type {
* { u32 size;
* char data[size];}&& PERF_SAMPLE_RAW
*
- * { u64 from, to, flags } lbr[nr];} && PERF_SAMPLE_BRANCH_STACK
+ * { u64 nr;
+ * { u64 from, to, flags } lbr[nr];} && PERF_SAMPLE_BRANCH_STACK
*
* { u64 abi; # enum perf_sample_regs_abi
* u64 regs[weight(mask)]; } && PERF_SAMPLE_REGS_USER
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] perf_event: missing field in PERF_RECORD_SAMPLE documentation (resend)
2013-01-08 19:44 ` [PATCH] perf_event: missing field in PERF_RECORD_SAMPLE documentation (resend) Vince Weaver
@ 2013-01-11 4:57 ` Arnaldo Carvalho de Melo
2013-01-25 11:35 ` [tip:perf/core] perf: Missing field in PERF_RECORD_SAMPLE documentation tip-bot for Vince Weaver
1 sibling, 0 replies; 4+ messages in thread
From: Arnaldo Carvalho de Melo @ 2013-01-11 4:57 UTC (permalink / raw)
To: Vince Weaver; +Cc: linux-kernel, Ingo Molnar, Peter Zijlstra, Paul Mackerras
Em Tue, Jan 08, 2013 at 02:44:25PM -0500, Vince Weaver escreveu:
> I sent this in November with no response, but the patch still
> applies.
>
> While trying to write a perf_event/mmap test for my perf_event
> test-suite I came across a missing field description in the
> PERF_RECORD_SAMPLE documentation in perf_event.h
Thanks, applied to my perf/core branch at:
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux
- Arnaldo
^ permalink raw reply [flat|nested] 4+ messages in thread
* [tip:perf/core] perf: Missing field in PERF_RECORD_SAMPLE documentation
2013-01-08 19:44 ` [PATCH] perf_event: missing field in PERF_RECORD_SAMPLE documentation (resend) Vince Weaver
2013-01-11 4:57 ` Arnaldo Carvalho de Melo
@ 2013-01-25 11:35 ` tip-bot for Vince Weaver
1 sibling, 0 replies; 4+ messages in thread
From: tip-bot for Vince Weaver @ 2013-01-25 11:35 UTC (permalink / raw)
To: linux-tip-commits
Cc: acme, linux-kernel, paulus, mingo, hpa, mingo, a.p.zijlstra,
vincent.weaver, tglx
Commit-ID: b878e7fb22ea48b0585bbbbef249f7efc6d42748
Gitweb: http://git.kernel.org/tip/b878e7fb22ea48b0585bbbbef249f7efc6d42748
Author: Vince Weaver <vincent.weaver@maine.edu>
AuthorDate: Tue, 8 Jan 2013 14:44:25 -0500
Committer: Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Thu, 24 Jan 2013 16:40:19 -0300
perf: Missing field in PERF_RECORD_SAMPLE documentation
While trying to write a perf_event/mmap test for my perf_event
test-suite I came across a missing field description in the
PERF_RECORD_SAMPLE documentation in perf_event.h
Signed-off-by: Vince Weaver <vincent.weaver@maine.edu>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/alpine.DEB.2.02.1301081439300.24507@vincent-weaver-1.um.maine.edu
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
include/uapi/linux/perf_event.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/include/uapi/linux/perf_event.h b/include/uapi/linux/perf_event.h
index 4f63c05..9fa9c62 100644
--- a/include/uapi/linux/perf_event.h
+++ b/include/uapi/linux/perf_event.h
@@ -579,7 +579,8 @@ enum perf_event_type {
* { u32 size;
* char data[size];}&& PERF_SAMPLE_RAW
*
- * { u64 from, to, flags } lbr[nr];} && PERF_SAMPLE_BRANCH_STACK
+ * { u64 nr;
+ * { u64 from, to, flags } lbr[nr];} && PERF_SAMPLE_BRANCH_STACK
*
* { u64 abi; # enum perf_sample_regs_abi
* u64 regs[weight(mask)]; } && PERF_SAMPLE_REGS_USER
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-01-25 11:35 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-06 20:33 [PATCH] perf_event: missing field in PERF_RECORD_SAMPLE documentation Vince Weaver
2013-01-08 19:44 ` [PATCH] perf_event: missing field in PERF_RECORD_SAMPLE documentation (resend) Vince Weaver
2013-01-11 4:57 ` Arnaldo Carvalho de Melo
2013-01-25 11:35 ` [tip:perf/core] perf: Missing field in PERF_RECORD_SAMPLE documentation tip-bot for Vince Weaver
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.