linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] perf buildid-cache: Document for Node.js USDT
@ 2017-11-23 16:05 Hansuk Hong
  2017-11-23 17:48 ` Arnaldo Carvalho de Melo
  2017-12-06 16:33 ` [tip:perf/core] " tip-bot for Hansuk Hong
  0 siblings, 2 replies; 3+ messages in thread
From: Hansuk Hong @ 2017-11-23 16:05 UTC (permalink / raw)
  To: Arnaldo Carvalho de Melo
  Cc: linux-kernel, Jiri Olsa, Namhyung Kim, Hansuk Hong

Add a tip for Node.js USDT(User-Level Statically
Defined Tracing) probes in tips.txt

Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>

Signed-off-by: Hansuk Hong <flavono123@gmail.com>
---
 tools/perf/Documentation/tips.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/perf/Documentation/tips.txt b/tools/perf/Documentation/tips.txt
index db0ca3063eae..3dd1dbe28407 100644
--- a/tools/perf/Documentation/tips.txt
+++ b/tools/perf/Documentation/tips.txt
@@ -32,3 +32,4 @@ Order by the overhead of source file name and line number: perf report -s srclin
 System-wide collection from all CPUs: perf record -a
 Show current config key-value pairs: perf config --list
 Show user configuration overrides: perf config --user --list
+To add Node.js USDT(User-Level Statically Defined Tracing): perf buildid-cache --add `which node`
-- 
2.14.2

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

* Re: [PATCH] perf buildid-cache: Document for Node.js USDT
  2017-11-23 16:05 [PATCH] perf buildid-cache: Document for Node.js USDT Hansuk Hong
@ 2017-11-23 17:48 ` Arnaldo Carvalho de Melo
  2017-12-06 16:33 ` [tip:perf/core] " tip-bot for Hansuk Hong
  1 sibling, 0 replies; 3+ messages in thread
From: Arnaldo Carvalho de Melo @ 2017-11-23 17:48 UTC (permalink / raw)
  To: Hansuk Hong; +Cc: linux-kernel, Jiri Olsa, Namhyung Kim

Em Fri, Nov 24, 2017 at 01:05:46AM +0900, Hansuk Hong escreveu:
> Add a tip for Node.js USDT(User-Level Statically
> Defined Tracing) probes in tips.txt

Thanks, applid.

- Arnaldo
 
> Cc: Jiri Olsa <jolsa@kernel.org>
> Cc: Namhyung Kim <namhyung@kernel.org>
> 
> Signed-off-by: Hansuk Hong <flavono123@gmail.com>
> ---
>  tools/perf/Documentation/tips.txt | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/tools/perf/Documentation/tips.txt b/tools/perf/Documentation/tips.txt
> index db0ca3063eae..3dd1dbe28407 100644
> --- a/tools/perf/Documentation/tips.txt
> +++ b/tools/perf/Documentation/tips.txt
> @@ -32,3 +32,4 @@ Order by the overhead of source file name and line number: perf report -s srclin
>  System-wide collection from all CPUs: perf record -a
>  Show current config key-value pairs: perf config --list
>  Show user configuration overrides: perf config --user --list
> +To add Node.js USDT(User-Level Statically Defined Tracing): perf buildid-cache --add `which node`
> -- 
> 2.14.2

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

* [tip:perf/core] perf buildid-cache: Document for Node.js USDT
  2017-11-23 16:05 [PATCH] perf buildid-cache: Document for Node.js USDT Hansuk Hong
  2017-11-23 17:48 ` Arnaldo Carvalho de Melo
@ 2017-12-06 16:33 ` tip-bot for Hansuk Hong
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Hansuk Hong @ 2017-12-06 16:33 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: mingo, namhyung, linux-kernel, jolsa, tglx, acme, hpa, flavono123

Commit-ID:  2e38e661f00603584fa5a64acdf580b400bad570
Gitweb:     https://git.kernel.org/tip/2e38e661f00603584fa5a64acdf580b400bad570
Author:     Hansuk Hong <flavono123@gmail.com>
AuthorDate: Fri, 24 Nov 2017 01:05:46 +0900
Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Wed, 29 Nov 2017 18:18:01 -0300

perf buildid-cache: Document for Node.js USDT

Add a tip for Node.js USDT(User-Level Statically Defined Tracing) probes
in tips.txt

Signed-off-by: Hansuk Hong <flavono123@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: http://lkml.kernel.org/r/20171123160546.9722-1-flavono123@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
 tools/perf/Documentation/tips.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/perf/Documentation/tips.txt b/tools/perf/Documentation/tips.txt
index db0ca30..3dd1dbe 100644
--- a/tools/perf/Documentation/tips.txt
+++ b/tools/perf/Documentation/tips.txt
@@ -32,3 +32,4 @@ Order by the overhead of source file name and line number: perf report -s srclin
 System-wide collection from all CPUs: perf record -a
 Show current config key-value pairs: perf config --list
 Show user configuration overrides: perf config --user --list
+To add Node.js USDT(User-Level Statically Defined Tracing): perf buildid-cache --add `which node`

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

end of thread, other threads:[~2017-12-06 16:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-23 16:05 [PATCH] perf buildid-cache: Document for Node.js USDT Hansuk Hong
2017-11-23 17:48 ` Arnaldo Carvalho de Melo
2017-12-06 16:33 ` [tip:perf/core] " tip-bot for Hansuk Hong

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