[PATCH] perf tool: don't print bogus data on -e instructions

2013-10-01 Thread Ramkumar Ramachandra
-off-by: Ramkumar Ramachandra --- tools/perf/builtin-stat.c | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c index cc167ae..0b747a5 100644 --- a/tools/perf/builtin-stat.c +++ b/tools/perf/builtin-stat.c @@ -852,11

[PATCH] perf tool: simplify a git command in PERF-VERSION-GEN

2013-10-02 Thread Ramkumar Ramachandra
Replace a complex git log invocation with a simpler git rev-parse invocation. Cc: Ingo Molnar Cc: Namhyung Kim Cc: Arnaldo Carvalho de Melo Signed-off-by: Ramkumar Ramachandra --- tools/perf/util/PERF-VERSION-GEN | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf

[PATCH] perf tool: add example to perf-trace documentation

2013-10-02 Thread Ramkumar Ramachandra
It's not clear that perf trace must be run as a privileged user, so include an example demonstrating its usage with sudo. While at it, update the synopsis to include options. Cc: Ingo Molnar Cc: Namhyung Kim Cc: Arnaldo Carvalho de Melo Cc: David Ahern Signed-off-by: Ramkumar Ramachandra

[QUERY] Why does perf-trace need me to be root?

2013-10-02 Thread Ramkumar Ramachandra
Hi, All the other perf tooling can be used as a normal user. At one point, I had to touch /proc/sys/kernel/perf_event_paranoid to get me numbers on a PMU event without a symbolic name, but that's about it. perf-trace seems to be the exception though: artagnon|perf-core=:~/src/linux/tools/perf$

[BUG] perf timechart segfault

2013-10-02 Thread Ramkumar Ramachandra
Hi, I tried using the `perf timechart` command after a `sudo perf timechart record -- git status`, and it segfaulted. Backtrace follows: Program received signal SIGSEGV, Segmentation fault. 0x in ?? () (gdb) bt #0 0x in ?? () #1 0x0047d728 in

Re: [BUG] perf timechart segfault

2013-10-02 Thread Ramkumar Ramachandra
Hi Jiri, Jiri Olsa wrote: > what perf version are you running? I'm running off the one in torvalds/linux.git. $ perf --version perf version 3.12.rc3.g34b22d5 The log of builtin-timechart.c shows that it was last touched by you three months ago: 5936678 (perf timechart: Remove event types

Re: [BUG] perf timechart segfault

2013-10-02 Thread Ramkumar Ramachandra
Jiri Olsa wrote: > looks like you're missing this one: > (git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux perf/core) Very messy; doesn't rebase on top of the latest torvalds/linux.git cleanly: I get a merge conflict at patch 9 of 74. Since my work is based on torvalds/linux.git, I was

[PATCH] MAINTAINERS: add acme's tree to perf subsystem

2013-10-02 Thread Ramkumar Ramachandra
Cc: Ingo Molnar Cc: Jiri Olsa Cc: Arnaldo Carvalho de Melo Signed-off-by: Ramkumar Ramachandra --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 744a239..9ef82c7 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -6403,6 +6403,7 @@ M:Paul

Re: [QUERY] Why does perf-trace need me to be root?

2013-10-02 Thread Ramkumar Ramachandra
David Ahern wrote: > If you trust your users make the debugfs mount point rx by group,world. Thanks David. I can preserve this configuration across reboots by putting an entry in fstab, right? How do I preserve the value of /proc/sys/kernel/perf_event_paranoid across reboots? -- To unsubscribe

Re: [QUERY] Why does perf-trace need me to be root?

2013-10-03 Thread Ramkumar Ramachandra
Ingo Molnar wrote: >echo 'kernel.perf_event_paranoid = -1' >> /etc/sysctl.conf Thanks Ingo. It's called /etc/sysctl.d/* now: https://www.archlinux.org/news/deprecation-of-etcsysctlconf/ > The current output: > > comet:~/tip> perf trace > Couldn't read the raw_syscalls tracepoints

[PATCH] perf tool: more user-friendly errors from trace

2013-10-03 Thread Ramkumar Ramachandra
the permissions of debugfs: /sys/kernel/debug The directory will be present if your kernel was compiled with debugfs support. Cc: Ingo Molnar Cc: Arnaldo Carvalho de Melo Signed-off-by: Ramkumar Ramachandra --- tools/perf/builtin-trace.c | 8 ++-- 1 file changed, 6 insertions(+), 2

[PATCH v2] perf tool: add example to perf-trace documentation

2013-10-03 Thread Ramkumar Ramachandra
While at it, update the synopsis to include options. Cc: Ingo Molnar Cc: Namhyung Kim Cc: Arnaldo Carvalho de Melo Cc: David Ahern Signed-off-by: Ramkumar Ramachandra --- tools/perf/Documentation/perf-trace.txt | 29 - 1 file changed, 28 insertions(+), 1 deletion

[PATCH] perf tool: ignore output from timechart

2013-10-03 Thread Ramkumar Ramachandra
Cc: Ingo Molnar Cc: Arnaldo Carvalho de Melo Signed-off-by: Ramkumar Ramachandra --- tools/perf/.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/perf/.gitignore b/tools/perf/.gitignore index 8f8fbc2..782d86e 100644 --- a/tools/perf/.gitignore +++ b/tools/perf/.gitignore

[PATCH] perf tool: report user-friendly error from timechart

2013-10-03 Thread Ramkumar Ramachandra
The directory will be present if your kernel was compiled with debugfs support. Cc: Ingo Molnar Cc: Jiri Olsa Cc: Arnaldo Carvalho de Melo Signed-off-by: Ramkumar Ramachandra --- tools/perf/builtin-timechart.c | 8 1 file changed, 8 insertions(+) diff --git a/tools/perf/builtin

[PATCH] perf tool: add example to perf-timechart documentation

2013-10-03 Thread Ramkumar Ramachandra
While at it, update the synopsis to show both forms. Cc: Ingo Molnar Cc: Namhyung Kim Cc: David Ahern Cc: Arnaldo Carvalho de Melo Signed-off-by: Ramkumar Ramachandra --- tools/perf/Documentation/perf-timechart.txt | 15 ++- 1 file changed, 14 insertions(+), 1 deletion(-) diff

Re: [PATCH] perf tool: report user-friendly error from timechart

2013-10-03 Thread Ramkumar Ramachandra
Ingo Molnar wrote: >> + /* Perform a quick sanity check */ >> + if (!is_valid_tracepoint("power:cpu_frequency")) { >> + fprintf(stderr, "Error:\tNo permissions to read >> $debugfs/tracing/events/power/cpu_frequency\n"); >> + fprintf(stderr, "Hint:\tChange the

Re: [PATCH] perf tool: more user-friendly errors from trace

2013-10-03 Thread Ramkumar Ramachandra
Arnaldo Carvalho de Melo wrote: > [acme@zoo ~]$ mount | grep debugfs > [acme@zoo ~]$ > [acme@zoo ~]$ perf trace usleep 1 > Is debugfs mounted? Try 'sudo mount -t debugfs nodev /sys/kernel/debug' > [acme@zoo ~]$ sudo mkdir /d > [acme@zoo ~]$ sudo mount -t debugfs nodev /d > [acme@zoo ~]$ mount |

[PATCH v2] perf tool: report user-friendly errors from trace

2013-10-03 Thread Ramkumar Ramachandra
$debugfs/tracing/events/raw_syscalls Hint: Change the permissions of the debugfs filesystem Cc: Ingo Molnar Cc: David Ahern Cc: Arnaldo Carvalho de Melo Signed-off-by: Ramkumar Ramachandra --- We don't want to spoonfeed the user with an exact command-line to execute. She is competent enough

[PATCH] perf tool: don't open-code TEST_EVENTS macro

2013-10-06 Thread Ramkumar Ramachandra
The TEST_EVENTS macro is open-coded towards the end of test__parse_events(). While at it, undef it cleanly after its usage. Cc: Robert Richter Cc: Jiri Olsa Cc: Ingo Molnar Cc: Arnaldo Carvalho de Melo Signed-off-by: Ramkumar Ramachandra --- tools/perf/tests/parse-events.c | 6 +++--- 1

Re: [PATCH] perf tool: don't open-code TEST_EVENTS macro

2013-10-06 Thread Ramkumar Ramachandra
Ramkumar Ramachandra wrote: > The TEST_EVENTS macro is open-coded towards the end of > test__parse_events(). While at it, undef it cleanly after its usage. Kindly ignore this patch; I made a trivial mistake. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel&q

[PATCH v2] perf stat: Don't print bogus data for stalled-cycles

2014-04-10 Thread Ramkumar Ramachandra
0.363599976 seconds time elapsed The 0.00% frontend cycles idle comment in the output is totally bogus and misleading. Omit printing it here, as well as in the stalled-cycles-backend case. Cc: Jiri Olsa Cc: David Ahern Cc: Arnaldo Carvalho de Melo Signed-off-by: Ramkumar Ramachandra --- tools/perf

Re: [PATCH 1/3] perf bench: Set more defaults in the 'numa' suite

2014-04-10 Thread Ramkumar Ramachandra
Jiri Olsa wrote: > ### > # 1 task will execute (on 1 nodes, 4 CPUs): > # -1x 1MB global shared mem operations > # -1x 0MB process shared mem operations > # -1x 0MB thread local mem operations > ### > ... > > > '-1x' does not seem right/intentional for

[PATCH v2] perf list: Fix --raw-dump argument

2014-04-10 Thread Ramkumar Ramachandra
While adding usage information, 44d742e (perf list: Add usage, 2013-10-30) broke $ perf list --raw-dump Fix this by making raw-dump a subcommand. Cc: David Ahern Cc: Jiri Olsa Cc: Arnaldo Carvalho de Melo Signed-off-by: Ramkumar Ramachandra --- tools/perf/builtin-list.c | 2 +- tools

Re: [PATCH] perf list: Fix --raw-dump argument

2014-04-10 Thread Ramkumar Ramachandra
Jiri Olsa wrote: > but looks like the usage is for bash completion only, so we probably > need only the first example functionality above. > > If this is the case I think it should not be an option but another > command like 'raw-dump'. I decided that there's no point making it an option, so I've

Re: [PATCH v2] perf list: Fix --raw-dump argument

2014-04-11 Thread Ramkumar Ramachandra
Jiri Olsa wrote: > you need to update perf-completion.sh now > also please add it to perf list man page as well I updated perf-completion.sh, although I didn't mention it in the commit message. I'll add it to the perf-list man page and send out another version. Ram -- To unsubscribe from this

[PATCH v3] perf list: Fix --raw-dump argument

2014-04-11 Thread Ramkumar Ramachandra
While adding usage information, 44d742e (perf list: Add usage, 2013-10-30) broke $ perf list --raw-dump Fix this by making raw-dump a subcommand. Also update the completion script and manpage. Cc: David Ahern Cc: Jiri Olsa Cc: Arnaldo Carvalho de Melo Signed-off-by: Ramkumar Ramachandra

[PATCH] [.mailmap] Add entry for Ramkumar Ramachandra

2021-03-06 Thread Ramkumar Ramachandra
Signed-off-by: Ramkumar Ramachandra --- .mailmap | 1 + 1 file changed, 1 insertion(+) diff --git a/.mailmap b/.mailmap index 85b93cdefc87..78bff5f1e881 100644 --- a/.mailmap +++ b/.mailmap @@ -282,6 +282,7 @@ Rafael J. Wysocki Rajesh Shah Ralf Baechle Ralf Wildenhues +Ramkumar

[tip:perf/urgent] perf script: Fix broken include in Context.xs

2013-07-12 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 750ade7e82709c2835cb221a7b6a9ef0a6a9c0ac Gitweb: http://git.kernel.org/tip/750ade7e82709c2835cb221a7b6a9ef0a6a9c0ac Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Tue, 9 Jul 2013 15:30:30 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Wed

[tip:perf/core] perf completion: Introduce a layer of indirection

2013-11-30 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 2cf025e69543f5f4aa68e8549d60680515fef5ad Gitweb: http://git.kernel.org/tip/2cf025e69543f5f4aa68e8549d60680515fef5ad Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Sun, 17 Nov 2013 21:43:23 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Wed

[tip:perf/core] perf completion: Factor out call to __ltrim_colon_completions

2013-11-30 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 37e72c31061521d6f0e4b7fe47cd5748280ed691 Gitweb: http://git.kernel.org/tip/37e72c31061521d6f0e4b7fe47cd5748280ed691 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Sun, 17 Nov 2013 21:43:25 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Wed

[tip:perf/core] perf completion: Introduce zsh support

2013-11-30 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: f38ab8af794c184c15f5e001d0eaa16f4a120978 Gitweb: http://git.kernel.org/tip/f38ab8af794c184c15f5e001d0eaa16f4a120978 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Sun, 17 Nov 2013 21:43:26 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Wed

[tip:perf/core] perf completion: Factor out compgen stuff

2013-11-30 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 12f9dd5042483698c74a133d9004ff1d1a6474f9 Gitweb: http://git.kernel.org/tip/12f9dd5042483698c74a133d9004ff1d1a6474f9 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Sun, 17 Nov 2013 21:43:24 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Wed

[tip:perf/core] perf completion: Rename file to reflect zsh support

2013-11-30 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: a8b4c7014cadfdacd4e1f4c963128593be6f20de Gitweb: http://git.kernel.org/tip/a8b4c7014cadfdacd4e1f4c963128593be6f20de Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Sun, 17 Nov 2013 21:43:27 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Wed

[tip:sched/core] sched: Remove bogus parameter in structured comment

2013-10-12 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 62e947cb0cd27c392aabe732c64f5023e272cf0e Gitweb: http://git.kernel.org/tip/62e947cb0cd27c392aabe732c64f5023e272cf0e Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Thu, 10 Oct 2013 15:50:33 +0530 Committer: Ingo Molnar mi...@kernel.org CommitDate: Sat, 12 Oct 2013

[tip:perf/core] perf completion: Strip function_exists ()

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 4685a6cfaeac6d2fe8ed10a9aa0cbff5026529cb Gitweb: http://git.kernel.org/tip/4685a6cfaeac6d2fe8ed10a9aa0cbff5026529cb Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Thu, 4 Jul 2013 18:11:29 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Wed, 9

[tip:perf/core] perf completion: Strip dependency on bash-completion

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: c3fb6717e90049b93d0f5f5714a4d878799d89c2 Gitweb: http://git.kernel.org/tip/c3fb6717e90049b93d0f5f5714a4d878799d89c2 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Thu, 4 Jul 2013 18:11:30 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Wed, 9

[tip:perf/core] perf completion: Use more comp words

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 6e0dc374a2c912a8a967ea8a4f9696dd4b0a6d3e Gitweb: http://git.kernel.org/tip/6e0dc374a2c912a8a967ea8a4f9696dd4b0a6d3e Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Thu, 4 Jul 2013 18:11:31 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Wed, 9

[tip:perf/core] perf completion: Don' t dictate perf install location

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 1ba6e01782fd2a94481e18b91b363636f8171565 Gitweb: http://git.kernel.org/tip/1ba6e01782fd2a94481e18b91b363636f8171565 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Thu, 4 Jul 2013 18:11:25 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Wed, 9

[tip:perf/core] perf stat: Don' t print bogus data on -e instructions

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 3e7a081796146f97f166d77a655c0eb585065077 Gitweb: http://git.kernel.org/tip/3e7a081796146f97f166d77a655c0eb585065077 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Tue, 1 Oct 2013 14:06:44 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Fri

[tip:perf/core] perf tools: Ignore 'perf timechart' output file

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: f3c236b0c7a84e5d59cc639a1673a20b0a59ecc0 Gitweb: http://git.kernel.org/tip/f3c236b0c7a84e5d59cc639a1673a20b0a59ecc0 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Thu, 3 Oct 2013 14:10:36 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Fri

[tip:perf/core] perf timechart: Add example in the documentation

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: d366c53e1d4fc9d7a5826fd82010b3cffaabe5f1 Gitweb: http://git.kernel.org/tip/d366c53e1d4fc9d7a5826fd82010b3cffaabe5f1 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Thu, 3 Oct 2013 14:45:16 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Fri

[tip:perf/core] perf trace: Improve the error messages

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 87f918685a452be514d060a09eeb4e0c91422e86 Gitweb: http://git.kernel.org/tip/87f918685a452be514d060a09eeb4e0c91422e86 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Fri, 4 Oct 2013 10:47:31 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon

[tip:perf/core] perf stat: Don't print bogus data on -e cycles

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: c458fe62ca31496664c1211a7906d261220b18f9 Gitweb: http://git.kernel.org/tip/c458fe62ca31496664c1211a7906d261220b18f9 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Mon, 30 Sep 2013 16:43:05 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Fri

[tip:perf/core] perf completion: Strip dependency on _filedir

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 7b6c48e16e5d312b0ebae78acfb3ff4f9c8c083c Gitweb: http://git.kernel.org/tip/7b6c48e16e5d312b0ebae78acfb3ff4f9c8c083c Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Thu, 4 Jul 2013 18:11:27 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Wed, 9

[tip:perf/core] perf completion: Update __ltrim_colon_completions

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 30079d1d5ebcb8d706c6e05cacebb7facc60cd95 Gitweb: http://git.kernel.org/tip/30079d1d5ebcb8d706c6e05cacebb7facc60cd95 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Thu, 4 Jul 2013 18:11:26 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Wed, 9

[tip:perf/core] perf kvm: introduce --list-cmds for use by scripts

2014-03-18 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 09a71b97cce70551356b13b668aa1d7d6da84457 Gitweb: http://git.kernel.org/tip/09a71b97cce70551356b13b668aa1d7d6da84457 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Mon, 3 Mar 2014 20:26:36 -0500 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Fri

[tip:perf/core] perf diff: Color the Weighted Diff column

2014-01-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: a5846e215bd47f61133383822422c683600efa7a Gitweb: http://git.kernel.org/tip/a5846e215bd47f61133383822422c683600efa7a Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Mon, 30 Dec 2013 13:32:35 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon

[tip:perf/core] perf diff: Color the Delta column

2014-01-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 01f10bc85f538cd681d0a3338b97a33f308d944b Gitweb: http://git.kernel.org/tip/01f10bc85f538cd681d0a3338b97a33f308d944b Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Mon, 30 Dec 2013 13:04:19 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon

[tip:perf/core] perf diff: Color the Ratio column

2014-01-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 1f513b2c1e8a2008b8ab767fdb6fa6c154591ed3 Gitweb: http://git.kernel.org/tip/1f513b2c1e8a2008b8ab767fdb6fa6c154591ed3 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Mon, 30 Dec 2013 13:04:20 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon

[tip:perf/core] perf tools: Generalize percent_color_snprintf()

2014-01-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: f77c6e9c8f9c444cd44423df0c2708e86a06a696 Gitweb: http://git.kernel.org/tip/f77c6e9c8f9c444cd44423df0c2708e86a06a696 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Mon, 30 Dec 2013 13:04:18 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Mon

[tip:perf/core] perf tools: Remove unused simple_strtoul() function

2014-03-19 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: a51e87cb5a0fbebee15a3373d951dbf6f59a76c2 Gitweb: http://git.kernel.org/tip/a51e87cb5a0fbebee15a3373d951dbf6f59a76c2 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Tue, 18 Mar 2014 17:05:15 -0400 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Tue

[tip:perf/core] perf timechart: Fix off-by-one error in 'record' argv handling

2014-03-19 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 263f89bf7d0f5ba98077dda8df1ff814862ad5ba Gitweb: http://git.kernel.org/tip/263f89bf7d0f5ba98077dda8df1ff814862ad5ba Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Sun, 16 Mar 2014 12:06:05 -0400 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Tue

[tip:perf/core] perf evsel: Update function names in debug messages

2014-03-19 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: a33f6efc43cb71795bbdaf0251544ff3edbfdb2f Gitweb: http://git.kernel.org/tip/a33f6efc43cb71795bbdaf0251544ff3edbfdb2f Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Tue, 18 Mar 2014 15:10:42 -0400 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Tue

[tip:perf/core] perf sched: Fixup header alignment in 'latency' output

2014-03-19 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 80790e0b7ef768b6591fdf764b62c572b76a5d80 Gitweb: http://git.kernel.org/tip/80790e0b7ef768b6591fdf764b62c572b76a5d80 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Mon, 17 Mar 2014 10:18:21 -0400 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Tue

[tip:perf/core] perf tools: Update some code references in design.txt

2014-03-19 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: b68eebd1c2a539256e373123cdefabfd1986bfe2 Gitweb: http://git.kernel.org/tip/b68eebd1c2a539256e373123cdefabfd1986bfe2 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Tue, 18 Mar 2014 15:10:04 -0400 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Tue

[tip:x86/asm] x86/ia32/asm: Remove unused argument in macro

2013-07-23 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: d2475b8ff81ebeed88d8fcbc22876aced5a0807a Gitweb: http://git.kernel.org/tip/d2475b8ff81ebeed88d8fcbc22876aced5a0807a Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Wed, 10 Jul 2013 23:34:28 +0530 Committer: Ingo Molnar mi...@kernel.org CommitDate: Tue, 23 Jul 2013

[tip:perf/core] perf completion: Complete 'perf kvm'

2013-12-16 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 8f2f5ada719560954174da30ce0a67261c616e39 Gitweb: http://git.kernel.org/tip/8f2f5ada719560954174da30ce0a67261c616e39 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Wed, 11 Dec 2013 16:04:15 +0530 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Fri

[tip:perf/core] perf lock: Introduce --list-cmds for use by scripts

2014-04-17 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: a2368c3199eba493d72c6d0e5b804f908a09706c Gitweb: http://git.kernel.org/tip/a2368c3199eba493d72c6d0e5b804f908a09706c Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Fri, 14 Mar 2014 23:17:53 -0400 Committer: Jiri Olsa jo...@redhat.com CommitDate: Wed, 16 Apr 2014 17

[tip:perf/core] perf kmem: Introduce --list-cmds for use by scripts

2014-04-17 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 3bca23543b910a84d3c58a819663e0a4fad72bb6 Gitweb: http://git.kernel.org/tip/3bca23543b910a84d3c58a819663e0a4fad72bb6 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Fri, 14 Mar 2014 23:17:51 -0400 Committer: Jiri Olsa jo...@redhat.com CommitDate: Wed, 16 Apr 2014 17

[tip:perf/core] perf mem: Introduce --list-cmds for use by scripts

2014-04-17 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 8d2a2a1d885d36e978c4619a3db8791f9768dd6a Gitweb: http://git.kernel.org/tip/8d2a2a1d885d36e978c4619a3db8791f9768dd6a Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Fri, 14 Mar 2014 23:17:52 -0400 Committer: Jiri Olsa jo...@redhat.com CommitDate: Wed, 16 Apr 2014 17

[tip:perf/core] perf sched: Introduce --list-cmds for use by scripts

2014-04-17 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: a83edb2dfc5989fbadc594109c933bae528a2809 Gitweb: http://git.kernel.org/tip/a83edb2dfc5989fbadc594109c933bae528a2809 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Fri, 14 Mar 2014 23:17:54 -0400 Committer: Jiri Olsa jo...@redhat.com CommitDate: Wed, 16 Apr 2014 17

[tip:perf/urgent] perf tools: Pick up libdw without explicit LIBDW_DIR

2014-04-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 2c529e4e6aab405aa52e8627cbd691ed28b56a0b Gitweb: http://git.kernel.org/tip/2c529e4e6aab405aa52e8627cbd691ed28b56a0b Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Wed, 26 Mar 2014 18:44:05 -0400 Committer: Jiri Olsa jo...@redhat.com CommitDate: Mon, 14 Apr 2014 12

[tip:perf/urgent] perf bench: Update manpage to mention numa and futex

2014-04-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 95a2b3c0a9e2a8038edbf3f9776d5a3d76146459 Gitweb: http://git.kernel.org/tip/95a2b3c0a9e2a8038edbf3f9776d5a3d76146459 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Thu, 27 Mar 2014 19:50:18 -0400 Committer: Jiri Olsa jo...@redhat.com CommitDate: Mon, 14 Apr 2014 12

[tip:perf/urgent] perf bench: Fix segfault at the end of an 'all' execution

2014-04-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 5673872d4afd2584e075cf2b1adb2cccec46a0f3 Gitweb: http://git.kernel.org/tip/5673872d4afd2584e075cf2b1adb2cccec46a0f3 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Thu, 27 Mar 2014 19:50:19 -0400 Committer: Jiri Olsa jo...@redhat.com CommitDate: Mon, 14 Apr 2014 12

[tip:perf/urgent] perf bench: Set more defaults in the 'numa' suite

2014-04-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 40ba93e3aa001246110320edbe8cf2eb488c1fe7 Gitweb: http://git.kernel.org/tip/40ba93e3aa001246110320edbe8cf2eb488c1fe7 Author: Ramkumar Ramachandra artag...@gmail.com AuthorDate: Thu, 27 Mar 2014 19:50:17 -0400 Committer: Jiri Olsa jo...@redhat.com CommitDate: Mon, 14 Apr 2014 12

[tip:x86/asm] x86/ia32/asm: Remove unused argument in macro

2013-07-23 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: d2475b8ff81ebeed88d8fcbc22876aced5a0807a Gitweb: http://git.kernel.org/tip/d2475b8ff81ebeed88d8fcbc22876aced5a0807a Author: Ramkumar Ramachandra AuthorDate: Wed, 10 Jul 2013 23:34:28 +0530 Committer: Ingo Molnar CommitDate: Tue, 23 Jul 2013 11:23:21 +0200 x86/ia32/asm

[tip:perf/core] perf completion: Introduce a layer of indirection

2013-11-30 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 2cf025e69543f5f4aa68e8549d60680515fef5ad Gitweb: http://git.kernel.org/tip/2cf025e69543f5f4aa68e8549d60680515fef5ad Author: Ramkumar Ramachandra AuthorDate: Sun, 17 Nov 2013 21:43:23 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 27 Nov 2013 14:58:35 -0300 perf

[tip:perf/core] perf completion: Factor out call to __ltrim_colon_completions

2013-11-30 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 37e72c31061521d6f0e4b7fe47cd5748280ed691 Gitweb: http://git.kernel.org/tip/37e72c31061521d6f0e4b7fe47cd5748280ed691 Author: Ramkumar Ramachandra AuthorDate: Sun, 17 Nov 2013 21:43:25 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 27 Nov 2013 14:58:35 -0300 perf

[tip:perf/core] perf completion: Introduce zsh support

2013-11-30 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: f38ab8af794c184c15f5e001d0eaa16f4a120978 Gitweb: http://git.kernel.org/tip/f38ab8af794c184c15f5e001d0eaa16f4a120978 Author: Ramkumar Ramachandra AuthorDate: Sun, 17 Nov 2013 21:43:26 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 27 Nov 2013 14:58:35 -0300 perf

[tip:perf/core] perf completion: Factor out compgen stuff

2013-11-30 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 12f9dd5042483698c74a133d9004ff1d1a6474f9 Gitweb: http://git.kernel.org/tip/12f9dd5042483698c74a133d9004ff1d1a6474f9 Author: Ramkumar Ramachandra AuthorDate: Sun, 17 Nov 2013 21:43:24 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 27 Nov 2013 14:58:35 -0300 perf

[tip:perf/core] perf completion: Rename file to reflect zsh support

2013-11-30 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: a8b4c7014cadfdacd4e1f4c963128593be6f20de Gitweb: http://git.kernel.org/tip/a8b4c7014cadfdacd4e1f4c963128593be6f20de Author: Ramkumar Ramachandra AuthorDate: Sun, 17 Nov 2013 21:43:27 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 27 Nov 2013 14:58:35 -0300 perf

[tip:perf/core] perf kvm: introduce --list-cmds for use by scripts

2014-03-18 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 09a71b97cce70551356b13b668aa1d7d6da84457 Gitweb: http://git.kernel.org/tip/09a71b97cce70551356b13b668aa1d7d6da84457 Author: Ramkumar Ramachandra AuthorDate: Mon, 3 Mar 2014 20:26:36 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 14 Mar 2014 18:08:41 -0300 perf

[tip:perf/core] perf tools: Remove unused simple_strtoul() function

2014-03-19 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: a51e87cb5a0fbebee15a3373d951dbf6f59a76c2 Gitweb: http://git.kernel.org/tip/a51e87cb5a0fbebee15a3373d951dbf6f59a76c2 Author: Ramkumar Ramachandra AuthorDate: Tue, 18 Mar 2014 17:05:15 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Mar 2014 18:17:07 -0300 perf

[tip:perf/core] perf timechart: Fix off-by-one error in 'record' argv handling

2014-03-19 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 263f89bf7d0f5ba98077dda8df1ff814862ad5ba Gitweb: http://git.kernel.org/tip/263f89bf7d0f5ba98077dda8df1ff814862ad5ba Author: Ramkumar Ramachandra AuthorDate: Sun, 16 Mar 2014 12:06:05 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Mar 2014 18:16:47 -0300 perf

[tip:perf/core] perf evsel: Update function names in debug messages

2014-03-19 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: a33f6efc43cb71795bbdaf0251544ff3edbfdb2f Gitweb: http://git.kernel.org/tip/a33f6efc43cb71795bbdaf0251544ff3edbfdb2f Author: Ramkumar Ramachandra AuthorDate: Tue, 18 Mar 2014 15:10:42 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Mar 2014 18:17:05 -0300 perf

[tip:perf/core] perf sched: Fixup header alignment in 'latency' output

2014-03-19 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 80790e0b7ef768b6591fdf764b62c572b76a5d80 Gitweb: http://git.kernel.org/tip/80790e0b7ef768b6591fdf764b62c572b76a5d80 Author: Ramkumar Ramachandra AuthorDate: Mon, 17 Mar 2014 10:18:21 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Mar 2014 18:16:55 -0300 perf

[tip:perf/core] perf tools: Update some code references in design.txt

2014-03-19 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: b68eebd1c2a539256e373123cdefabfd1986bfe2 Gitweb: http://git.kernel.org/tip/b68eebd1c2a539256e373123cdefabfd1986bfe2 Author: Ramkumar Ramachandra AuthorDate: Tue, 18 Mar 2014 15:10:04 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Mar 2014 18:17:06 -0300 perf

[tip:sched/core] sched: Remove bogus parameter in structured comment

2013-10-12 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 62e947cb0cd27c392aabe732c64f5023e272cf0e Gitweb: http://git.kernel.org/tip/62e947cb0cd27c392aabe732c64f5023e272cf0e Author: Ramkumar Ramachandra AuthorDate: Thu, 10 Oct 2013 15:50:33 +0530 Committer: Ingo Molnar CommitDate: Sat, 12 Oct 2013 19:01:24 +0200 sched: Remove

[tip:perf/core] perf completion: Strip function_exists ()

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 4685a6cfaeac6d2fe8ed10a9aa0cbff5026529cb Gitweb: http://git.kernel.org/tip/4685a6cfaeac6d2fe8ed10a9aa0cbff5026529cb Author: Ramkumar Ramachandra AuthorDate: Thu, 4 Jul 2013 18:11:29 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 9 Oct 2013 11:12:06 -0300 perf

[tip:perf/core] perf completion: Strip dependency on bash-completion

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: c3fb6717e90049b93d0f5f5714a4d878799d89c2 Gitweb: http://git.kernel.org/tip/c3fb6717e90049b93d0f5f5714a4d878799d89c2 Author: Ramkumar Ramachandra AuthorDate: Thu, 4 Jul 2013 18:11:30 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 9 Oct 2013 11:12:24 -0300 perf

[tip:perf/core] perf completion: Use more comp words

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 6e0dc374a2c912a8a967ea8a4f9696dd4b0a6d3e Gitweb: http://git.kernel.org/tip/6e0dc374a2c912a8a967ea8a4f9696dd4b0a6d3e Author: Ramkumar Ramachandra AuthorDate: Thu, 4 Jul 2013 18:11:31 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 9 Oct 2013 11:12:31 -0300 perf

[tip:perf/core] perf completion: Don' t dictate perf install location

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 1ba6e01782fd2a94481e18b91b363636f8171565 Gitweb: http://git.kernel.org/tip/1ba6e01782fd2a94481e18b91b363636f8171565 Author: Ramkumar Ramachandra AuthorDate: Thu, 4 Jul 2013 18:11:25 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 9 Oct 2013 11:11:40 -0300 perf

[tip:perf/core] perf stat: Don' t print bogus data on -e instructions

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 3e7a081796146f97f166d77a655c0eb585065077 Gitweb: http://git.kernel.org/tip/3e7a081796146f97f166d77a655c0eb585065077 Author: Ramkumar Ramachandra AuthorDate: Tue, 1 Oct 2013 14:06:44 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 11 Oct 2013 12:17:35 -0300 perf

[tip:perf/core] perf tools: Ignore 'perf timechart' output file

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: f3c236b0c7a84e5d59cc639a1673a20b0a59ecc0 Gitweb: http://git.kernel.org/tip/f3c236b0c7a84e5d59cc639a1673a20b0a59ecc0 Author: Ramkumar Ramachandra AuthorDate: Thu, 3 Oct 2013 14:10:36 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 11 Oct 2013 12:17:37 -0300 perf

[tip:perf/core] perf timechart: Add example in the documentation

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: d366c53e1d4fc9d7a5826fd82010b3cffaabe5f1 Gitweb: http://git.kernel.org/tip/d366c53e1d4fc9d7a5826fd82010b3cffaabe5f1 Author: Ramkumar Ramachandra AuthorDate: Thu, 3 Oct 2013 14:45:16 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 11 Oct 2013 12:18:13 -0300 perf

[tip:perf/core] perf trace: Improve the error messages

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 87f918685a452be514d060a09eeb4e0c91422e86 Gitweb: http://git.kernel.org/tip/87f918685a452be514d060a09eeb4e0c91422e86 Author: Ramkumar Ramachandra AuthorDate: Fri, 4 Oct 2013 10:47:31 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 14 Oct 2013 10:24:04 -0300 perf

[tip:perf/core] perf stat: Don't print bogus data on -e cycles

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: c458fe62ca31496664c1211a7906d261220b18f9 Gitweb: http://git.kernel.org/tip/c458fe62ca31496664c1211a7906d261220b18f9 Author: Ramkumar Ramachandra AuthorDate: Mon, 30 Sep 2013 16:43:05 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 11 Oct 2013 12:17:33 -0300 perf

[tip:perf/core] perf completion: Strip dependency on _filedir

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 7b6c48e16e5d312b0ebae78acfb3ff4f9c8c083c Gitweb: http://git.kernel.org/tip/7b6c48e16e5d312b0ebae78acfb3ff4f9c8c083c Author: Ramkumar Ramachandra AuthorDate: Thu, 4 Jul 2013 18:11:27 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 9 Oct 2013 11:11:55 -0300 perf

[tip:perf/core] perf completion: Update __ltrim_colon_completions

2013-10-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 30079d1d5ebcb8d706c6e05cacebb7facc60cd95 Gitweb: http://git.kernel.org/tip/30079d1d5ebcb8d706c6e05cacebb7facc60cd95 Author: Ramkumar Ramachandra AuthorDate: Thu, 4 Jul 2013 18:11:26 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 9 Oct 2013 11:11:48 -0300 perf

[tip:perf/core] perf diff: Color the Weighted Diff column

2014-01-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: a5846e215bd47f61133383822422c683600efa7a Gitweb: http://git.kernel.org/tip/a5846e215bd47f61133383822422c683600efa7a Author: Ramkumar Ramachandra AuthorDate: Mon, 30 Dec 2013 13:32:35 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 13 Jan 2014 11:38:25 -0300 perf

[tip:perf/core] perf diff: Color the Delta column

2014-01-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 01f10bc85f538cd681d0a3338b97a33f308d944b Gitweb: http://git.kernel.org/tip/01f10bc85f538cd681d0a3338b97a33f308d944b Author: Ramkumar Ramachandra AuthorDate: Mon, 30 Dec 2013 13:04:19 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 13 Jan 2014 11:36:46 -0300 perf

[tip:perf/core] perf diff: Color the Ratio column

2014-01-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 1f513b2c1e8a2008b8ab767fdb6fa6c154591ed3 Gitweb: http://git.kernel.org/tip/1f513b2c1e8a2008b8ab767fdb6fa6c154591ed3 Author: Ramkumar Ramachandra AuthorDate: Mon, 30 Dec 2013 13:04:20 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 13 Jan 2014 11:37:17 -0300 perf

[tip:perf/core] perf tools: Generalize percent_color_snprintf()

2014-01-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: f77c6e9c8f9c444cd44423df0c2708e86a06a696 Gitweb: http://git.kernel.org/tip/f77c6e9c8f9c444cd44423df0c2708e86a06a696 Author: Ramkumar Ramachandra AuthorDate: Mon, 30 Dec 2013 13:04:18 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 13 Jan 2014 10:46:39 -0300 perf

[tip:perf/core] perf completion: Complete 'perf kvm'

2013-12-16 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 8f2f5ada719560954174da30ce0a67261c616e39 Gitweb: http://git.kernel.org/tip/8f2f5ada719560954174da30ce0a67261c616e39 Author: Ramkumar Ramachandra AuthorDate: Wed, 11 Dec 2013 16:04:15 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 13 Dec 2013 10:30:21 -0300 perf

[tip:perf/core] perf lock: Introduce --list-cmds for use by scripts

2014-04-17 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: a2368c3199eba493d72c6d0e5b804f908a09706c Gitweb: http://git.kernel.org/tip/a2368c3199eba493d72c6d0e5b804f908a09706c Author: Ramkumar Ramachandra AuthorDate: Fri, 14 Mar 2014 23:17:53 -0400 Committer: Jiri Olsa CommitDate: Wed, 16 Apr 2014 17:16:04 +0200 perf lock: Introduce

[tip:perf/core] perf kmem: Introduce --list-cmds for use by scripts

2014-04-17 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 3bca23543b910a84d3c58a819663e0a4fad72bb6 Gitweb: http://git.kernel.org/tip/3bca23543b910a84d3c58a819663e0a4fad72bb6 Author: Ramkumar Ramachandra AuthorDate: Fri, 14 Mar 2014 23:17:51 -0400 Committer: Jiri Olsa CommitDate: Wed, 16 Apr 2014 17:16:04 +0200 perf kmem: Introduce

[tip:perf/core] perf mem: Introduce --list-cmds for use by scripts

2014-04-17 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 8d2a2a1d885d36e978c4619a3db8791f9768dd6a Gitweb: http://git.kernel.org/tip/8d2a2a1d885d36e978c4619a3db8791f9768dd6a Author: Ramkumar Ramachandra AuthorDate: Fri, 14 Mar 2014 23:17:52 -0400 Committer: Jiri Olsa CommitDate: Wed, 16 Apr 2014 17:16:04 +0200 perf mem: Introduce

[tip:perf/core] perf sched: Introduce --list-cmds for use by scripts

2014-04-17 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: a83edb2dfc5989fbadc594109c933bae528a2809 Gitweb: http://git.kernel.org/tip/a83edb2dfc5989fbadc594109c933bae528a2809 Author: Ramkumar Ramachandra AuthorDate: Fri, 14 Mar 2014 23:17:54 -0400 Committer: Jiri Olsa CommitDate: Wed, 16 Apr 2014 17:16:05 +0200 perf sched

[tip:perf/urgent] perf script: Fix broken include in Context.xs

2013-07-12 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 750ade7e82709c2835cb221a7b6a9ef0a6a9c0ac Gitweb: http://git.kernel.org/tip/750ade7e82709c2835cb221a7b6a9ef0a6a9c0ac Author: Ramkumar Ramachandra AuthorDate: Tue, 9 Jul 2013 15:30:30 +0530 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 10 Jul 2013 13:47:00 -0300 perf

[tip:perf/urgent] perf tools: Pick up libdw without explicit LIBDW_DIR

2014-04-14 Thread tip-bot for Ramkumar Ramachandra
Commit-ID: 2c529e4e6aab405aa52e8627cbd691ed28b56a0b Gitweb: http://git.kernel.org/tip/2c529e4e6aab405aa52e8627cbd691ed28b56a0b Author: Ramkumar Ramachandra AuthorDate: Wed, 26 Mar 2014 18:44:05 -0400 Committer: Jiri Olsa CommitDate: Mon, 14 Apr 2014 12:55:17 +0200 perf tools: Pick up

<    2   3   4   5   6   7   8   >