public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] perf tools: Fixing perf-record documentation for branch stack sampling
@ 2012-05-18  8:46 Anshuman Khandual
  2012-05-18 12:44 ` Stephane Eranian
  2012-05-23 15:25 ` [tip:perf/core] perf record: Fix " tip-bot for Anshuman Khandual
  0 siblings, 2 replies; 3+ messages in thread
From: Anshuman Khandual @ 2012-05-18  8:46 UTC (permalink / raw)
  To: linux-kernel; +Cc: Arnaldo Carvalho de Melo, eranian

perf tools: Fixing perf-record documentation for branch stack sampling

Signed-off-by: Anshuman Khandual <khandual@linux.vnet.ibm.com>
---
 tools/perf/Documentation/perf-record.txt |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/Documentation/perf-record.txt b/tools/perf/Documentation/perf-record.txt
index a1386b2..b38a1f9 100644
--- a/tools/perf/Documentation/perf-record.txt
+++ b/tools/perf/Documentation/perf-record.txt
@@ -168,7 +168,7 @@ following filters are defined:
         - any:  any type of branches
         - any_call: any function call or system call
         - any_ret: any function return or system call return
-        - any_ind: any indirect branch
+        - ind_call: any indirect branch
         - u:  only when the branch target is at the user level
         - k: only when the branch target is in the kernel
         - hv: only when the target is at the hypervisor level


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

* Re: [PATCH] perf tools: Fixing perf-record documentation for branch stack sampling
  2012-05-18  8:46 [PATCH] perf tools: Fixing perf-record documentation for branch stack sampling Anshuman Khandual
@ 2012-05-18 12:44 ` Stephane Eranian
  2012-05-23 15:25 ` [tip:perf/core] perf record: Fix " tip-bot for Anshuman Khandual
  1 sibling, 0 replies; 3+ messages in thread
From: Stephane Eranian @ 2012-05-18 12:44 UTC (permalink / raw)
  To: Anshuman Khandual; +Cc: linux-kernel, Arnaldo Carvalho de Melo

On Fri, May 18, 2012 at 10:46 AM, Anshuman Khandual
<khandual@linux.vnet.ibm.com> wrote:
> perf tools: Fixing perf-record documentation for branch stack sampling
>
> Signed-off-by: Anshuman Khandual <khandual@linux.vnet.ibm.com>

Acked-by: Stephane Eranian <eranian@google.com>

> ---
>  tools/perf/Documentation/perf-record.txt |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/perf/Documentation/perf-record.txt b/tools/perf/Documentation/perf-record.txt
> index a1386b2..b38a1f9 100644
> --- a/tools/perf/Documentation/perf-record.txt
> +++ b/tools/perf/Documentation/perf-record.txt
> @@ -168,7 +168,7 @@ following filters are defined:
>         - any:  any type of branches
>         - any_call: any function call or system call
>         - any_ret: any function return or system call return
> -        - any_ind: any indirect branch
> +        - ind_call: any indirect branch
>         - u:  only when the branch target is at the user level
>         - k: only when the branch target is in the kernel
>         - hv: only when the target is at the hypervisor level
>

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

* [tip:perf/core] perf record: Fix documentation for branch stack sampling
  2012-05-18  8:46 [PATCH] perf tools: Fixing perf-record documentation for branch stack sampling Anshuman Khandual
  2012-05-18 12:44 ` Stephane Eranian
@ 2012-05-23 15:25 ` tip-bot for Anshuman Khandual
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Anshuman Khandual @ 2012-05-23 15:25 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: acme, linux-kernel, eranian, hpa, mingo, khandual, tglx

Commit-ID:  2e49a948be1e282d2c1477c5a3b5ed23f5987723
Gitweb:     http://git.kernel.org/tip/2e49a948be1e282d2c1477c5a3b5ed23f5987723
Author:     Anshuman Khandual <khandual@linux.vnet.ibm.com>
AuthorDate: Fri, 18 May 2012 14:16:50 +0530
Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Tue, 22 May 2012 12:47:45 -0300

perf record: Fix documentation for branch stack sampling

Signed-off-by: Anshuman Khandual <khandual@linux.vnet.ibm.com>
Acked-by: Stephane Eranian <eranian@google.com>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/4FB60C7A.2080508@linux.vnet.ibm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
 tools/perf/Documentation/perf-record.txt |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/perf/Documentation/perf-record.txt b/tools/perf/Documentation/perf-record.txt
index a1386b2..b38a1f9 100644
--- a/tools/perf/Documentation/perf-record.txt
+++ b/tools/perf/Documentation/perf-record.txt
@@ -168,7 +168,7 @@ following filters are defined:
         - any:  any type of branches
         - any_call: any function call or system call
         - any_ret: any function return or system call return
-        - any_ind: any indirect branch
+        - ind_call: any indirect branch
         - u:  only when the branch target is at the user level
         - k: only when the branch target is in the kernel
         - hv: only when the target is at the hypervisor level

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

end of thread, other threads:[~2012-05-23 15:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-18  8:46 [PATCH] perf tools: Fixing perf-record documentation for branch stack sampling Anshuman Khandual
2012-05-18 12:44 ` Stephane Eranian
2012-05-23 15:25 ` [tip:perf/core] perf record: Fix " tip-bot for Anshuman Khandual

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox