mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 1/2] [trivial] tools: perf: Fix typo in tools/perf
@ 2012-07-17 16:20 Masanari Iida
  2012-07-18  2:15 ` Namhyung Kim
  2012-07-18 16:35 ` [PATCH v2] " Masanari Iida
  0 siblings, 2 replies; 3+ messages in thread
From: Masanari Iida @ 2012-07-17 16:20 UTC (permalink / raw)
  To: linux-kernel, trivial; +Cc: standby24x7

Correct spelling typo in tools/perf.

Signed-off-by: Masanari iida <standby24x7@gmail.com>
---
 tools/perf/util/callchain.h         | 2 +-
 tools/perf/util/parse-events-test.c | 2 +-
 tools/perf/util/python-ext-sources  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/tools/perf/util/callchain.h b/tools/perf/util/callchain.h
index 3bdb407..eb34057 100644
--- a/tools/perf/util/callchain.h
+++ b/tools/perf/util/callchain.h
@@ -58,7 +58,7 @@ struct callchain_list {
 /*
  * A callchain cursor is a single linked list that
  * let one feed a callchain progressively.
- * It keeps persitent allocated entries to minimize
+ * It keeps persistent allocated entries to minimize
  * allocations.
  */
 struct callchain_cursor_node {
diff --git a/tools/perf/util/parse-events-test.c b/tools/perf/util/parse-events-test.c
index 76b98e2..8cdf147 100644
--- a/tools/perf/util/parse-events-test.c
+++ b/tools/perf/util/parse-events-test.c
@@ -609,7 +609,7 @@ static int test_pmu(void)
 
 	ret = stat(path, &st);
 	if (ret)
-		pr_debug("ommiting PMU cpu tests\n");
+		pr_debug("omitting PMU cpu tests\n");
 	return !ret;
 }
 
diff --git a/tools/perf/util/python-ext-sources b/tools/perf/util/python-ext-sources
index 2884e67..f4e37ce 100644
--- a/tools/perf/util/python-ext-sources
+++ b/tools/perf/util/python-ext-sources
@@ -1,5 +1,5 @@
 #
-# List of files needed by perf python extention
+# List of files needed by perf python extension
 #
 # Each source file must be placed on its own line so that it can be
 # processed by Makefile and util/setup.py accordingly.
-- 
1.7.11.2.194.g7bdb748


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

* Re: [PATCH 1/2] [trivial] tools: perf: Fix typo in tools/perf
  2012-07-17 16:20 [PATCH 1/2] [trivial] tools: perf: Fix typo in tools/perf Masanari Iida
@ 2012-07-18  2:15 ` Namhyung Kim
  2012-07-18 16:35 ` [PATCH v2] " Masanari Iida
  1 sibling, 0 replies; 3+ messages in thread
From: Namhyung Kim @ 2012-07-18  2:15 UTC (permalink / raw)
  To: Masanari Iida; +Cc: linux-kernel, trivial

Hi, Masanari

On Wed, 18 Jul 2012 01:20:59 +0900, Masanari Iida wrote:
> Correct spelling typo in tools/perf.
>
> Signed-off-by: Masanari iida <standby24x7@gmail.com>
> ---
>  tools/perf/util/callchain.h         | 2 +-
>  tools/perf/util/parse-events-test.c | 2 +-
>  tools/perf/util/python-ext-sources  | 2 +-
>  3 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/tools/perf/util/callchain.h b/tools/perf/util/callchain.h
> index 3bdb407..eb34057 100644
> --- a/tools/perf/util/callchain.h
> +++ b/tools/perf/util/callchain.h
> @@ -58,7 +58,7 @@ struct callchain_list {
>  /*
>   * A callchain cursor is a single linked list that
>   * let one feed a callchain progressively.
> - * It keeps persitent allocated entries to minimize
> + * It keeps persistent allocated entries to minimize

s/persistent/persistently/ ?

Thanks,
Namhyung


>   * allocations.
>   */
>  struct callchain_cursor_node {
> diff --git a/tools/perf/util/parse-events-test.c b/tools/perf/util/parse-events-test.c
> index 76b98e2..8cdf147 100644
> --- a/tools/perf/util/parse-events-test.c
> +++ b/tools/perf/util/parse-events-test.c
> @@ -609,7 +609,7 @@ static int test_pmu(void)
>  
>  	ret = stat(path, &st);
>  	if (ret)
> -		pr_debug("ommiting PMU cpu tests\n");
> +		pr_debug("omitting PMU cpu tests\n");
>  	return !ret;
>  }
>  
> diff --git a/tools/perf/util/python-ext-sources b/tools/perf/util/python-ext-sources
> index 2884e67..f4e37ce 100644
> --- a/tools/perf/util/python-ext-sources
> +++ b/tools/perf/util/python-ext-sources
> @@ -1,5 +1,5 @@
>  #
> -# List of files needed by perf python extention
> +# List of files needed by perf python extension
>  #
>  # Each source file must be placed on its own line so that it can be
>  # processed by Makefile and util/setup.py accordingly.

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

* [PATCH v2] [trivial] tools: perf: Fix typo in tools/perf
  2012-07-17 16:20 [PATCH 1/2] [trivial] tools: perf: Fix typo in tools/perf Masanari Iida
  2012-07-18  2:15 ` Namhyung Kim
@ 2012-07-18 16:35 ` Masanari Iida
  1 sibling, 0 replies; 3+ messages in thread
From: Masanari Iida @ 2012-07-18 16:35 UTC (permalink / raw)
  To: trivial, linux-kernel; +Cc: namhyung, Masanari Iida

Correct spelling typo in tools/perf.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
---
 tools/perf/util/callchain.h         | 2 +-
 tools/perf/util/parse-events-test.c | 2 +-
 tools/perf/util/python-ext-sources  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/tools/perf/util/callchain.h b/tools/perf/util/callchain.h
index 3bdb407..bf2d22c 100644
--- a/tools/perf/util/callchain.h
+++ b/tools/perf/util/callchain.h
@@ -58,7 +58,7 @@ struct callchain_list {
 /*
  * A callchain cursor is a single linked list that
  * let one feed a callchain progressively.
- * It keeps persitent allocated entries to minimize
+ * It keeps persistently allocated entries to minimize
  * allocations.
  */
 struct callchain_cursor_node {
diff --git a/tools/perf/util/parse-events-test.c b/tools/perf/util/parse-events-test.c
index 76b98e2..8cdf147 100644
--- a/tools/perf/util/parse-events-test.c
+++ b/tools/perf/util/parse-events-test.c
@@ -609,7 +609,7 @@ static int test_pmu(void)
 
 	ret = stat(path, &st);
 	if (ret)
-		pr_debug("ommiting PMU cpu tests\n");
+		pr_debug("omitting PMU cpu tests\n");
 	return !ret;
 }
 
diff --git a/tools/perf/util/python-ext-sources b/tools/perf/util/python-ext-sources
index 2884e67..f4e37ce 100644
--- a/tools/perf/util/python-ext-sources
+++ b/tools/perf/util/python-ext-sources
@@ -1,5 +1,5 @@
 #
-# List of files needed by perf python extention
+# List of files needed by perf python extension
 #
 # Each source file must be placed on its own line so that it can be
 # processed by Makefile and util/setup.py accordingly.
-- 
1.7.11.2.249.g31c7954


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

end of thread, other threads:[~2012-07-18 16:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-17 16:20 [PATCH 1/2] [trivial] tools: perf: Fix typo in tools/perf Masanari Iida
2012-07-18  2:15 ` Namhyung Kim
2012-07-18 16:35 ` [PATCH v2] " Masanari Iida

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

all inboxes | Powered by JetHome®