public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL v2 0/5] perf tools fixes and improvements
@ 2010-05-19  2:08 Arnaldo Carvalho de Melo
  2010-05-19  2:08 ` [PATCH 1/5] perf stat: add perf stat -B to pretty print large numbers Arnaldo Carvalho de Melo
                   ` (4 more replies)
  0 siblings, 5 replies; 13+ messages in thread
From: Arnaldo Carvalho de Melo @ 2010-05-19  2:08 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: linux-kernel, Arnaldo Carvalho de Melo, David S. Miller,
	Frédéric Weisbecker, Ingo Molnar, Masami Hiramatsu,
	Mike Galbraith, Paul Mackerras, Peter Zijlstra, Tom Zanussi

Hi Ingo,

        Please pull from:

git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux-2.6 perf

	The probe ones have the issues pointed out by Masami addressed,
please let me know if now it is ok, thanks for reviewing them!

Regards,

- Arnaldo

Arnaldo Carvalho de Melo (4):
  perf tools: Remove some unused functions
  perf probe: Fix some error exit paths
  perf probe: Don't call die()
  perf tools: remove xstrndup, xmalloc, xzalloc

Stephane Eranian (1):
  perf stat: add perf stat -B to pretty print large numbers

 tools/perf/Documentation/perf-stat.txt |    3 +
 tools/perf/builtin-probe.c             |   10 +-
 tools/perf/builtin-record.c            |    1 +
 tools/perf/builtin-stat.c              |   18 +-
 tools/perf/util/abspath.c              |   81 ------
 tools/perf/util/cache.h                |   55 +----
 tools/perf/util/config.c               |  461 +-------------------------------
 tools/perf/util/exec_cmd.c             |    6 +-
 tools/perf/util/exec_cmd.h             |    1 -
 tools/perf/util/help.c                 |   30 +--
 tools/perf/util/path.c                 |  204 +--------------
 tools/perf/util/probe-finder.c         |   29 ++-
 tools/perf/util/quote.c                |  433 +------------------------------
 tools/perf/util/quote.h                |   39 ---
 tools/perf/util/run-command.c          |   90 ------
 tools/perf/util/run-command.h          |   30 --
 tools/perf/util/session.c              |    1 +
 tools/perf/util/sigchain.c             |    2 +-
 tools/perf/util/sigchain.h             |    1 -
 tools/perf/util/strbuf.c               |  229 +----------------
 tools/perf/util/strbuf.h               |   45 ---
 tools/perf/util/util.h                 |  162 -----------
 tools/perf/util/wrapper.c              |  110 --------
 23 files changed, 65 insertions(+), 1976 deletions(-)


^ permalink raw reply	[flat|nested] 13+ messages in thread
* [GIT PULL 0/5] perf tools fixes and improvements
@ 2010-05-19  0:27 Arnaldo Carvalho de Melo
  2010-05-19  0:27 ` [PATCH 1/5] perf stat: add perf stat -B to pretty print large numbers Arnaldo Carvalho de Melo
  0 siblings, 1 reply; 13+ messages in thread
From: Arnaldo Carvalho de Melo @ 2010-05-19  0:27 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: linux-kernel, Arnaldo Carvalho de Melo, David S. Miller,
	Frédéric Weisbecker, Ingo Molnar, Masami Hiramatsu,
	Mike Galbraith, Paul Mackerras, Peter Zijlstra, Tom Zanussi

Hi Ingo,

        Please pull from:

git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux-2.6 perf

Regards,

- Arnaldo

Arnaldo Carvalho de Melo (4):
  perf tools: Remove some unused functions
  perf probe: Fix some error exit paths
  perf probe: Don't call die()
  perf tools: remove xstrndup, xmalloc, xzalloc

Stephane Eranian (1):
  perf stat: add perf stat -B to pretty print large numbers

 tools/perf/Documentation/perf-stat.txt |    3 +
 tools/perf/builtin-probe.c             |   10 +-
 tools/perf/builtin-record.c            |    1 +
 tools/perf/builtin-stat.c              |   18 +-
 tools/perf/util/abspath.c              |   81 ------
 tools/perf/util/cache.h                |   55 +----
 tools/perf/util/config.c               |  461 +-------------------------------
 tools/perf/util/exec_cmd.c             |    6 +-
 tools/perf/util/exec_cmd.h             |    1 -
 tools/perf/util/help.c                 |   30 +--
 tools/perf/util/path.c                 |  204 +--------------
 tools/perf/util/probe-finder.c         |   27 ++-
 tools/perf/util/quote.c                |  433 +------------------------------
 tools/perf/util/quote.h                |   39 ---
 tools/perf/util/run-command.c          |   90 ------
 tools/perf/util/run-command.h          |   30 --
 tools/perf/util/session.c              |    1 +
 tools/perf/util/sigchain.c             |    2 +-
 tools/perf/util/sigchain.h             |    1 -
 tools/perf/util/strbuf.c               |  229 +----------------
 tools/perf/util/strbuf.h               |   45 ---
 tools/perf/util/util.h                 |  162 -----------
 tools/perf/util/wrapper.c              |  110 --------
 23 files changed, 63 insertions(+), 1976 deletions(-)


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

end of thread, other threads:[~2010-05-31 23:37 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-19  2:08 [GIT PULL v2 0/5] perf tools fixes and improvements Arnaldo Carvalho de Melo
2010-05-19  2:08 ` [PATCH 1/5] perf stat: add perf stat -B to pretty print large numbers Arnaldo Carvalho de Melo
2010-05-19  6:28   ` Ingo Molnar
2010-05-31 19:11   ` Valdis.Kletnieks
2010-05-31 19:30     ` Stephane Eranian
2010-05-31 20:49       ` Valdis.Kletnieks
2010-05-31 23:11         ` Arnaldo Carvalho de Melo
2010-05-31 23:37           ` Arnaldo Carvalho de Melo
2010-05-19  2:08 ` [PATCH 2/5] perf tools: Remove some unused functions Arnaldo Carvalho de Melo
2010-05-19  2:08 ` [PATCH v2 3/5] perf probe: Fix some error exit paths Arnaldo Carvalho de Melo
2010-05-19  2:08 ` [PATCH v2 4/5] perf probe: Don't call die() Arnaldo Carvalho de Melo
2010-05-19  2:08 ` [PATCH 5/5] perf tools: remove xstrndup, xmalloc, xzalloc Arnaldo Carvalho de Melo
  -- strict thread matches above, loose matches on Subject: below --
2010-05-19  0:27 [GIT PULL 0/5] perf tools fixes and improvements Arnaldo Carvalho de Melo
2010-05-19  0:27 ` [PATCH 1/5] perf stat: add perf stat -B to pretty print large numbers Arnaldo Carvalho de Melo

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