[PATCH v02 2/5] perf/x86/intel: fix for MSR_LAST_BRANCH_FROM_x bug when no TSX

2016-06-21 Thread David Carrillo-Cisneros
ext switch, that would be required if LBR callstack is to be enabled for ring 0. Signed-off-by: David Carrillo-Cisneros Reviewed-by: Stephane Eranian --- arch/x86/events/intel/core.c | 18 arch/x86/events/intel/lbr.c | 49 arch/

[PATCH v02 1/5] perf/x86/intel: output LBR support statement after validation

2016-06-21 Thread David Carrillo-Cisneros
commit 338b522ca43c ("perf/x86/intel: Protect LBR and extra_regs against KVM lying") added an additional test to LBR support detection that is performed after printing the LBR support statement to dmesg. Move the LBR support output after the very last test. Signed-off-by: Davi

[PATCH v02 3/5] perf/x86/intel: trivial format and style fix

2016-06-21 Thread David Carrillo-Cisneros
Replace spaces by tabs in LBR_FROM_* constants to align with newly defined constant. Use BIT_ULL. Signed-off-by: David Carrillo-Cisneros Reviewed-by: Stephane Eranian --- arch/x86/events/intel/lbr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/x86/events/intel

[PATCH v02 4/5] perf/x86/intel: MSR_LAST_BRANCH_FROM_x quirk for ctx switch

2016-06-21 Thread David Carrillo-Cisneros
[ 411.354229] [] exit_to_usermode_loop+0x39/0x89 [ 411.360246] [] prepare_exit_to_usermode+0x2e/0x30 [ 411.366524] [] retint_user+0x8/0x10 [ 411.371599] ---[ end trace 1ed61b8a551e95d3 ]--- Signed-off-by: David Carrillo-Cisneros Reviewed-by: Stephane Eranian --- arch/x86/events/intel

[PATCH v02 5/5] not required, used to test ctxsw, do not merge

2016-06-21 Thread David Carrillo-Cisneros
DO NOT MERGE. Provided only to verify bug fix. Change kernel and perf tool to activate tracking and context switch for kernel branches. Signed-off-by: David Carrillo-Cisneros --- arch/x86/events/intel/lbr.c | 3 ++- tools/perf/util/evsel.c | 17 ++--- 2 files changed, 16

Re: [PATCH 06/32] x86/intel_rdt: Hot cpu support for Cache Allocation

2016-07-13 Thread David Carrillo-Cisneros
> +static inline void intel_rdt_cpu_start(int cpu) > +{ > + struct intel_pqr_state *state = _cpu(pqr_state, cpu); > + > + state->closid = 0; > + mutex_lock(_group_mutex); > + if (rdt_cpumask_update(cpu)) > + smp_call_function_single(cpu, cbm_update_msrs, NULL,

Re: [PATCH 30/32] x86/intel_rdt_rdtgroup.c: Process schemas input from rscctrl interface

2016-07-13 Thread David Carrillo-Cisneros
> +static int get_res_type(char **res, enum resource_type *res_type) > +{ > + char *tok; > + > + tok = strsep(res, ":"); > + if (tok == NULL) > + return -EINVAL; > + > + if (!strcmp(tok, "L3")) { Maybe use strstrip to allow a more readable input ? i.e. "L3 :

Re: [PATCH v2 11/32] perf/x86/intel/cqm: add per-package RMID rotation

2016-05-24 Thread David Carrillo-Cisneros
On Wed, May 18, 2016 at 2:39 PM Thomas Gleixner wrote: > > On Wed, 11 May 2016, David Carrillo-Cisneros wrote: > > @@ -216,6 +216,9 @@ static int pkg_data_init_cpu(int cpu) > > INIT_LIST_HEAD(_data->istate_pmonrs_lru); > > INIT_LIST_HEA

Re: [PATCH v2 10/32] perf/x86/intel/cqm: introduce (I)state and limbo prmids

2016-05-24 Thread David Carrillo-Cisneros
>> +static inline bool __pmonr__in_instate(struct pmonr *pmonr) >> +{ >> + lockdep_assert_held(&__pkg_data(pmonr, pkg_data_lock)); >> + return __pmonr__in_istate(pmonr) && !__pmonr__in_ilstate(pmonr); >> } > > This state tracking sucks. It's completely non obvious which combinations of >

[PATCH] perf/core: make account/unaccount_sb_event consistent

2016-06-01 Thread David Carrillo-Cisneros
oup event to terminate, e.g.: $ mkdir /dev/cgroup/devices/test $ perf stat -e cycles -a -G test sleep 0 ... see crash ... Patch rebased on peterz/queue/perf/core . Reviewed-by: Stephane Eranian Signed-off-by: David Carrillo-Cisneros --- kernel/events/core.c | 34 ++

[PATCH 0/3] fix MSR_LAST_BRANCH_FROM Haswell support

2016-06-01 Thread David Carrillo-Cisneros
BRS_ON_PMI work-around by allowing LBR call-stack for kernel addresses. This series is rebased at torvalds/linux/master . David Carrillo-Cisneros (3): perf/x86/intel: output LBR support statement after validation perf/x86/intel: fix for MSR_LAST_BRANCH_FROM_x quirk when no TSX perf, perf/too

[PATCH 3/3] perf, perf/tool: trigger lbr_from signext bug

2016-06-01 Thread David Carrillo-Cisneros
Change kernel and perf tool to activate tracking and context switch for kernel branches. Signed-off-by: David Carrillo-Cisneros --- arch/x86/events/intel/lbr.c | 3 ++- tools/perf/util/evsel.c | 17 ++--- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/arch/x86

[PATCH 2/3] perf/x86/intel: fix for MSR_LAST_BRANCH_FROM_x quirk when no TSX

2016-06-01 Thread David Carrillo-Cisneros
r+0x8/0x10 [ 411.371599] ---[ end trace 1ed61b8a551e95d3 ]--- Reviewed-by: Stephane Eranian Signed-off-by: David Carrillo-Cisneros --- arch/x86/events/intel/core.c | 18 +++ arch/x86/events/intel/lbr.c | 73 +--- arch/x86/events/perf_event.h | 2 ++ 3 fil

[PATCH 1/3] perf/x86/intel: output LBR support statement after validation

2016-06-01 Thread David Carrillo-Cisneros
Commit "perf/x86/intel: Protect LBR and extra_regs against KVM lying" added an additional test to LBR support detection is performed after printing the LBR support statement to dmesg. Move the LRB support output after very last test. Reviewed-by: Stephane Eranian Signed-off-by: Davi

[PATCH 2/2] x86/intel_rdt: Fix bug in initialization, locks and write cbm mask.

2015-11-04 Thread David Carrillo-Cisneros
en's masks (as it should). Signed-off-by: David Carrillo-Cisneros --- arch/x86/include/asm/intel_rdt.h | 12 +--- arch/x86/kernel/cpu/intel_rdt.c | 24 ++-- 2 files changed, 27 insertions(+), 9 deletions(-) diff --git a/arch/x86/include/asm/intel_rdt.h b/arch/x86/i

[PATCH 1/2] x86/intel_rdt,intel_cqm: Remove build dependency of RDT code on CQM code.

2015-11-04 Thread David Carrillo-Cisneros
Minor code move to remove build dependency of RDT code on perf_event_intel_cqm.c . Signed-off-by: David Carrillo-Cisneros --- arch/x86/include/asm/pqr_common.h | 3 +++ arch/x86/kernel/cpu/Makefile | 6 +- arch/x86/kernel/cpu/perf_event_intel_cqm.c | 8

[tip:perf/core] perf/core: Fix crash due to account/unaccount_sb_event() inconsistency

2016-06-08 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: a4f144ebbdf6f7807c477bce8e136047ed27321f Gitweb: http://git.kernel.org/tip/a4f144ebbdf6f7807c477bce8e136047ed27321f Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Wed, 1 Jun 2016 12:33:05 -0700 Committer: Ingo Molnar <mi...@kernel.org> CommitDate

[tip:perf/core] perf/core: Set cgroup in CPU contexts for new cgroup events

2016-08-10 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: db4a835601b73cf8d6cd8986381d966b8e13d2d9 Gitweb: http://git.kernel.org/tip/db4a835601b73cf8d6cd8986381d966b8e13d2d9 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Tue, 2 Aug 2016 00:48:12 -0700 Committer: Ingo Molnar <mi...@kernel.org> CommitDate:

[tip:perf/core] perf/x86/intel: Add MSR_LAST_BRANCH_FROM_x quirk for ctx switch

2016-06-27 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 71adae99ed187de9fcf988cc8873ee2c3af3385f Gitweb: http://git.kernel.org/tip/71adae99ed187de9fcf988cc8873ee2c3af3385f Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Tue, 21 Jun 2016 11:31:13 -0700 Committer: Ingo Molnar <mi...@kernel.org> CommitD

[tip:perf/core] perf/x86/intel: Fix trivial formatting and style bug

2016-06-27 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 3812bba84f3d721ff7dc3bb90360bc5ed6771994 Gitweb: http://git.kernel.org/tip/3812bba84f3d721ff7dc3bb90360bc5ed6771994 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Tue, 21 Jun 2016 11:31:12 -0700 Committer: Ingo Molnar <mi...@kernel.org> CommitD

[tip:perf/core] perf/x86/intel: Fix MSR_LAST_BRANCH_FROM_x bug when no TSX

2016-06-27 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 19fc9ddd61e059cc45464bdf6e8fa304bb94080f Gitweb: http://git.kernel.org/tip/19fc9ddd61e059cc45464bdf6e8fa304bb94080f Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Tue, 21 Jun 2016 11:31:11 -0700 Committer: Ingo Molnar <mi...@kernel.org> CommitD

[tip:perf/core] perf/x86/intel: Print LBR support statement after validation

2016-06-27 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: f09509b9398b23ca53360ca57106555698ec2e93 Gitweb: http://git.kernel.org/tip/f09509b9398b23ca53360ca57106555698ec2e93 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Tue, 21 Jun 2016 11:31:10 -0700 Committer: Ingo Molnar <mi...@kernel.org> CommitD

[tip:perf/core] perf/core: Remove perf_cpu_context::unique_pmu

2017-01-30 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 1fd7e416995401ec082fc0fe6090a223969beda5 Gitweb: http://git.kernel.org/tip/1fd7e416995401ec082fc0fe6090a223969beda5 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Wed, 18 Jan 2017 11:24:54 -0800 Committer: Ingo Molnar <mi...@kernel.org> CommitD

[tip:perf/core] perf/core: Make cgroup switch visit only cpuctxs with cgroup events

2017-01-30 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 058fe1c0440e68a1ba3c2270ae43e9f0298b27d8 Gitweb: http://git.kernel.org/tip/058fe1c0440e68a1ba3c2270ae43e9f0298b27d8 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Wed, 18 Jan 2017 11:24:53 -0800 Committer: Ingo Molnar <mi...@kernel.org> CommitD

[tip:perf/core] tools lib traceevent: Robustify do_generate_dynamic_list_file

2017-02-10 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 6467753d613993f30965d4e0717f7304eb933ef7 Gitweb: http://git.kernel.org/tip/6467753d613993f30965d4e0717f7304eb933ef7 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Tue, 7 Feb 2017 21:28:40 -0800 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf tools: Remove unneccessary feature-dwarf warning

2017-01-18 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 2484c4c58fd1bc0d7711d294c530a1518da6a172 Gitweb: http://git.kernel.org/tip/2484c4c58fd1bc0d7711d294c530a1518da6a172 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Thu, 12 Jan 2017 13:01:59 -0800 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf/core: Introduce PMU_EV_CAP_READ_ACTIVE_PKG

2016-08-18 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: d6a2f9035bfc27d0e9d78b13635dda9fb017ac01 Gitweb: http://git.kernel.org/tip/d6a2f9035bfc27d0e9d78b13635dda9fb017ac01 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Wed, 17 Aug 2016 13:55:06 -0700 Committer: Ingo Molnar <mi...@kernel.org> CommitD

[tip:perf/core] perf/x86: Use PMUEF_READ_CPU_PKG in uncore events

2016-08-18 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: e64cd6f73ff5a7eb4f8f759049ee24a3fe55e731 Gitweb: http://git.kernel.org/tip/e64cd6f73ff5a7eb4f8f759049ee24a3fe55e731 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Wed, 17 Aug 2016 13:55:07 -0700 Committer: Ingo Molnar <mi...@kernel.org> CommitD

[tip:perf/core] perf/core: Generalize event->group_flags

2016-08-18 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 4ff6a8debf48a7bf48e93c01da720785070d3a25 Gitweb: http://git.kernel.org/tip/4ff6a8debf48a7bf48e93c01da720785070d3a25 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Wed, 17 Aug 2016 13:55:05 -0700 Committer: Ingo Molnar <mi...@kernel.org> CommitD

[tip:perf/core] perf/core: Check return value of the perf_event_read() IPI

2016-08-18 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 71e7bc2bab77e64882c031c2af943c3256c1adb0 Gitweb: http://git.kernel.org/tip/71e7bc2bab77e64882c031c2af943c3256c1adb0 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Wed, 17 Aug 2016 13:55:04 -0700 Committer: Ingo Molnar <mi...@kernel.org> CommitD

[tip:perf/urgent] perf/core: Do not set cpuctx->cgrp for unscheduled cgroups

2016-11-16 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 864c2357ca898c6171fe5284f5ecc795c8ce27a8 Gitweb: http://git.kernel.org/tip/864c2357ca898c6171fe5284f5ecc795c8ce27a8 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Tue, 1 Nov 2016 11:52:58 -0700 Committer: Ingo Molnar <mi...@kernel.org> CommitDate:

[tip:perf/urgent] perf/core: Remove invalid warning from list_update_cgroup_even()t

2016-12-06 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 8fc31ce8896fc3cea1d79688c8ff950ad4e73afe Gitweb: http://git.kernel.org/tip/8fc31ce8896fc3cea1d79688c8ff950ad4e73afe Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Sun, 4 Dec 2016 00:46:17 -0800 Committer: Ingo Molnar <mi...@kernel.org> CommitDate

[tip:perf/urgent] perf/x86: Set pmu->module in Intel PMU modules

2017-01-05 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 74545f63890e38520eb4d1dbedcadaa9c0dbc824 Gitweb: http://git.kernel.org/tip/74545f63890e38520eb4d1dbedcadaa9c0dbc824 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Thu, 22 Dec 2016 17:17:40 -0800 Committer: Ingo Molnar <mi...@kernel.org> CommitDate

[tip:perf/core] perf inject: Copy events when reordering events in pipe mode

2017-04-11 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 1e0d4f0200e4dbdfc38d818f329d8a0955f7c6f5 Gitweb: http://git.kernel.org/tip/1e0d4f0200e4dbdfc38d818f329d8a0955f7c6f5 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 10 Apr 2017 13:14:27 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf tools: Describe pipe mode in perf.data-file-fomat.txt

2017-04-11 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 6d13491e2d4944180c9b4fb6ddca4e34b1537836 Gitweb: http://git.kernel.org/tip/6d13491e2d4944180c9b4fb6ddca4e34b1537836 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 10 Apr 2017 13:14:28 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf inject: Don't proceed if perf_session__process_event() fails

2017-04-11 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: bb8d521f77f3e68a713456b7fb1e99f52ff3342c Gitweb: http://git.kernel.org/tip/bb8d521f77f3e68a713456b7fb1e99f52ff3342c Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 10 Apr 2017 13:14:26 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf annotate: Process attr and build_id records

2017-04-11 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 6ab11f3a35aa07be2ff167b9de37e6c1eb58396b Gitweb: http://git.kernel.org/tip/6ab11f3a35aa07be2ff167b9de37e6c1eb58396b Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 10 Apr 2017 13:14:29 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf session: Don't rely on evlist in pipe mode

2017-04-11 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 0973ad97c187e06aece61f685b9c3b2d93290a73 Gitweb: http://git.kernel.org/tip/0973ad97c187e06aece61f685b9c3b2d93290a73 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 10 Apr 2017 13:14:30 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf tools: Do not print missing features in pipe-mode

2017-04-11 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: c9d1c93421e3b3c7051b193c9cf648a3bc55cb3e Gitweb: http://git.kernel.org/tip/c9d1c93421e3b3c7051b193c9cf648a3bc55cb3e Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 10 Apr 2017 13:14:32 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] Revert "perf tools: Fix include of linux/mman.h"

2017-04-17 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 16eb81365b70266c17d1141ef9b32c3110b22d17 Gitweb: http://git.kernel.org/tip/16eb81365b70266c17d1141ef9b32c3110b22d17 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Tue, 11 Apr 2017 23:49:19 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf util: Hint missing file when tool tips fail to load

2017-04-17 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 570eda03213a216a88566c0da7bfe175832cfaa4 Gitweb: http://git.kernel.org/tip/570eda03213a216a88566c0da7bfe175832cfaa4 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Tue, 11 Apr 2017 23:49:16 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] tools build: Fix feature detection redefinion of build flags

2017-04-17 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 9961aa665b70e47d6c80141c4a2482266010f246 Gitweb: http://git.kernel.org/tip/9961aa665b70e47d6c80141c4a2482266010f246 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Tue, 11 Apr 2017 23:49:14 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf tools: Disable JVMTI if no ELF support available

2017-04-17 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: e5e992a7c184c2121adf37bdf292a516af81dbbb Gitweb: http://git.kernel.org/tip/e5e992a7c184c2121adf37bdf292a516af81dbbb Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Wed, 12 Apr 2017 10:07:45 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf tools: Pass PYTHON config to feature detection

2017-04-17 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 7be6b3166ebf2c10c28ef5777d1b31a937ed8f7a Gitweb: http://git.kernel.org/tip/7be6b3166ebf2c10c28ef5777d1b31a937ed8f7a Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Tue, 11 Apr 2017 23:49:13 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf header: Use struct feat_fd in read header records

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 48e5fcea386009fb2515158fdaf8586ce72d86ce Gitweb: http://git.kernel.org/tip/48e5fcea386009fb2515158fdaf8586ce72d86ce Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 17 Jul 2017 21:25:43 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf header: Change FEAT_OP* macros

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: a4d8c9855a260359655f2a302ee2b231cad379ca Gitweb: http://git.kernel.org/tip/a4d8c9855a260359655f2a302ee2b231cad379ca Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 17 Jul 2017 21:25:46 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf header: Use struct feat_fd for print

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: cfc654209e27ecaa36f550a0934f3c78f9c9179f Gitweb: http://git.kernel.org/tip/cfc654209e27ecaa36f550a0934f3c78f9c9179f Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 17 Jul 2017 21:25:40 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf header: Don't pass struct perf_file_section to process_##_feat

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 625524572391326b83f906efe02abbaac9debce6 Gitweb: http://git.kernel.org/tip/625524572391326b83f906efe02abbaac9debce6 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 17 Jul 2017 21:25:42 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf header: Use struct feat_fd to process header records

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 1a22275449f4bd6255e24f0c5b6c7fa61b263417 Gitweb: http://git.kernel.org/tip/1a22275449f4bd6255e24f0c5b6c7fa61b263417 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 17 Jul 2017 21:25:41 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf header: Add struct feat_fd for write

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: ccebbeb6b69e4e172450d32f1059fefd1659ad8c Gitweb: http://git.kernel.org/tip/ccebbeb6b69e4e172450d32f1059fefd1659ad8c Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 17 Jul 2017 21:25:39 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf tools: Add feature header record to pipe-mode

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: e9def1b2e74e3d2134133f70d2a84c242446bbe7 Gitweb: http://git.kernel.org/tip/e9def1b2e74e3d2134133f70d2a84c242446bbe7 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 17 Jul 2017 21:25:48 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf header: Make write_pmu_mappings pipe-mode friendly

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: a02c39595e40b4c506c78857e24fdb049096 Gitweb: http://git.kernel.org/tip/a02c39595e40b4c506c78857e24fdb049096 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 17 Jul 2017 21:25:44 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf header: Add a buffer to struct feat_fd

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 0b3d34106c18e5d9ebba004f52a2ce8b264c493e Gitweb: http://git.kernel.org/tip/0b3d34106c18e5d9ebba004f52a2ce8b264c493e Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 17 Jul 2017 21:25:45 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf tool: Add show_feature_header to perf_tool

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 114f709e01e62760a6d03de1358188293dfefdda Gitweb: http://git.kernel.org/tip/114f709e01e62760a6d03de1358188293dfefdda Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 17 Jul 2017 21:25:47 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf header: Add event desc to pipe-mode header

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: f9ebdccf2b78e643d1ba2c979fa293c9d1e8ba86 Gitweb: http://git.kernel.org/tip/f9ebdccf2b78e643d1ba2c979fa293c9d1e8ba86 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 17 Jul 2017 21:25:49 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf util: Add const modifier to buf in "writen" function

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 7c72440506e2108494bab3b68a4118fa61a9dbf4 Gitweb: http://git.kernel.org/tip/7c72440506e2108494bab3b68a4118fa61a9dbf4 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 17 Jul 2017 21:25:37 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf header: Fail on write_padded error

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 2ff5365d75e164032f64133914046fd6be213d94 Gitweb: http://git.kernel.org/tip/2ff5365d75e164032f64133914046fd6be213d94 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 17 Jul 2017 21:25:36 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf header: Encapsulate read and swap

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 6200e49423f8023eba54cf0b01076d6f8c0af6ae Gitweb: http://git.kernel.org/tip/6200e49423f8023eba54cf0b01076d6f8c0af6ae Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 17 Jul 2017 21:25:34 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf header: Revamp do_write()

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 3b8f51a677ce574f69671e3f7822b4d8f8634ef3 Gitweb: http://git.kernel.org/tip/3b8f51a677ce574f69671e3f7822b4d8f8634ef3 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 17 Jul 2017 21:25:38 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf header: Add PROCESS_STR_FUN macro

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: dfaa1580efcfb6b9537043ba0447747d7179fb26 Gitweb: http://git.kernel.org/tip/dfaa1580efcfb6b9537043ba0447747d7179fb26 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Mon, 17 Jul 2017 21:25:35 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf annotate: Process tracing data in pipe mode

2017-07-26 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: f4849599086c6462d65543637058c9b55f4803e4 Gitweb: http://git.kernel.org/tip/f4849599086c6462d65543637058c9b55f4803e4 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Tue, 18 Jul 2017 18:18:38 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf tools: Add EXCLUDE_EXTLIBS and EXTRA_PERFLIBS to makefile

2017-07-26 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: cb281fea4b0a326d2a2104f8ffae2b6895c561fd Gitweb: http://git.kernel.org/tip/cb281fea4b0a326d2a2104f8ffae2b6895c561fd Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Tue, 18 Jul 2017 18:18:37 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf tools: Pass full path of FEATURES_DUMP

2017-08-29 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 70ff7c6caa2f2cee4a7621f5cb3b73b0a38327f1 Gitweb: http://git.kernel.org/tip/70ff7c6caa2f2cee4a7621f5cb3b73b0a38327f1 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Sun, 27 Aug 2017 00:54:42 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf tools: Robustify detection of clang binary

2017-08-29 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 3866058ef15b6ae6f4ff48e088428b46bcc43fa1 Gitweb: http://git.kernel.org/tip/3866058ef15b6ae6f4ff48e088428b46bcc43fa1 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Sun, 27 Aug 2017 00:54:40 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] perf tools: Allow external definition of flex and bison binary names

2017-08-29 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 39a59f1e3ea541035637432db39158a461f29146 Gitweb: http://git.kernel.org/tip/39a59f1e3ea541035637432db39158a461f29146 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Sun, 27 Aug 2017 00:54:38 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] tools lib: Allow external definition of CC, AR and LD

2017-08-29 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 12024aacb0170779cd0b976b06d2e9b1767cf142 Gitweb: http://git.kernel.org/tip/12024aacb0170779cd0b976b06d2e9b1767cf142 Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Sun, 27 Aug 2017 00:54:39 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] tools build tests: Don't hardcode gcc name

2017-08-29 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: ba5d1a48aab56a2677113d071b5b1446877b9a1a Gitweb: http://git.kernel.org/tip/ba5d1a48aab56a2677113d071b5b1446877b9a1a Author: David Carrillo-Cisneros <davi...@google.com> AuthorDate: Sun, 27 Aug 2017 00:54:37 -0700 Committer: Arnaldo Carvalho de Melo <a...@redhat.com>

[tip:perf/core] tools build tests: Don't hardcode gcc name

2017-08-29 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: ba5d1a48aab56a2677113d071b5b1446877b9a1a Gitweb: http://git.kernel.org/tip/ba5d1a48aab56a2677113d071b5b1446877b9a1a Author: David Carrillo-Cisneros AuthorDate: Sun, 27 Aug 2017 00:54:37 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 28 Aug 2017 16:44:44 -0300

[tip:perf/core] perf tools: Allow external definition of flex and bison binary names

2017-08-29 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 39a59f1e3ea541035637432db39158a461f29146 Gitweb: http://git.kernel.org/tip/39a59f1e3ea541035637432db39158a461f29146 Author: David Carrillo-Cisneros AuthorDate: Sun, 27 Aug 2017 00:54:38 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 28 Aug 2017 16:44:45 -0300

[tip:perf/core] tools lib: Allow external definition of CC, AR and LD

2017-08-29 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 12024aacb0170779cd0b976b06d2e9b1767cf142 Gitweb: http://git.kernel.org/tip/12024aacb0170779cd0b976b06d2e9b1767cf142 Author: David Carrillo-Cisneros AuthorDate: Sun, 27 Aug 2017 00:54:39 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 28 Aug 2017 16:44:45 -0300

[tip:perf/core] perf tools: Pass full path of FEATURES_DUMP

2017-08-29 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 70ff7c6caa2f2cee4a7621f5cb3b73b0a38327f1 Gitweb: http://git.kernel.org/tip/70ff7c6caa2f2cee4a7621f5cb3b73b0a38327f1 Author: David Carrillo-Cisneros AuthorDate: Sun, 27 Aug 2017 00:54:42 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 28 Aug 2017 16:44:46 -0300

[tip:perf/core] perf tools: Robustify detection of clang binary

2017-08-29 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 3866058ef15b6ae6f4ff48e088428b46bcc43fa1 Gitweb: http://git.kernel.org/tip/3866058ef15b6ae6f4ff48e088428b46bcc43fa1 Author: David Carrillo-Cisneros AuthorDate: Sun, 27 Aug 2017 00:54:40 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 28 Aug 2017 16:44:46 -0300

[tip:perf/core] perf annotate: Process tracing data in pipe mode

2017-07-26 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: f4849599086c6462d65543637058c9b55f4803e4 Gitweb: http://git.kernel.org/tip/f4849599086c6462d65543637058c9b55f4803e4 Author: David Carrillo-Cisneros AuthorDate: Tue, 18 Jul 2017 18:18:38 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 25 Jul 2017 11:23:52 -0300

[tip:perf/core] perf tools: Add EXCLUDE_EXTLIBS and EXTRA_PERFLIBS to makefile

2017-07-26 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: cb281fea4b0a326d2a2104f8ffae2b6895c561fd Gitweb: http://git.kernel.org/tip/cb281fea4b0a326d2a2104f8ffae2b6895c561fd Author: David Carrillo-Cisneros AuthorDate: Tue, 18 Jul 2017 18:18:37 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 25 Jul 2017 11:23:51 -0300

[tip:perf/core] perf header: Add PROCESS_STR_FUN macro

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: dfaa1580efcfb6b9537043ba0447747d7179fb26 Gitweb: http://git.kernel.org/tip/dfaa1580efcfb6b9537043ba0447747d7179fb26 Author: David Carrillo-Cisneros AuthorDate: Mon, 17 Jul 2017 21:25:35 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Jul 2017 23:14:28 -0300

[tip:perf/core] perf util: Add const modifier to buf in "writen" function

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 7c72440506e2108494bab3b68a4118fa61a9dbf4 Gitweb: http://git.kernel.org/tip/7c72440506e2108494bab3b68a4118fa61a9dbf4 Author: David Carrillo-Cisneros AuthorDate: Mon, 17 Jul 2017 21:25:37 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Jul 2017 23:14:29 -0300

[tip:perf/core] perf header: Fail on write_padded error

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 2ff5365d75e164032f64133914046fd6be213d94 Gitweb: http://git.kernel.org/tip/2ff5365d75e164032f64133914046fd6be213d94 Author: David Carrillo-Cisneros AuthorDate: Mon, 17 Jul 2017 21:25:36 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Jul 2017 23:14:29 -0300

[tip:perf/core] perf header: Encapsulate read and swap

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 6200e49423f8023eba54cf0b01076d6f8c0af6ae Gitweb: http://git.kernel.org/tip/6200e49423f8023eba54cf0b01076d6f8c0af6ae Author: David Carrillo-Cisneros AuthorDate: Mon, 17 Jul 2017 21:25:34 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Jul 2017 23:14:27 -0300

[tip:perf/core] perf header: Revamp do_write()

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 3b8f51a677ce574f69671e3f7822b4d8f8634ef3 Gitweb: http://git.kernel.org/tip/3b8f51a677ce574f69671e3f7822b4d8f8634ef3 Author: David Carrillo-Cisneros AuthorDate: Mon, 17 Jul 2017 21:25:38 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Jul 2017 23:14:30 -0300

[tip:perf/core] perf header: Use struct feat_fd to process header records

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 1a22275449f4bd6255e24f0c5b6c7fa61b263417 Gitweb: http://git.kernel.org/tip/1a22275449f4bd6255e24f0c5b6c7fa61b263417 Author: David Carrillo-Cisneros AuthorDate: Mon, 17 Jul 2017 21:25:41 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Jul 2017 23:14:32 -0300

[tip:perf/core] perf header: Use struct feat_fd for print

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: cfc654209e27ecaa36f550a0934f3c78f9c9179f Gitweb: http://git.kernel.org/tip/cfc654209e27ecaa36f550a0934f3c78f9c9179f Author: David Carrillo-Cisneros AuthorDate: Mon, 17 Jul 2017 21:25:40 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Jul 2017 23:14:31 -0300

[tip:perf/core] perf header: Don't pass struct perf_file_section to process_##_feat

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 625524572391326b83f906efe02abbaac9debce6 Gitweb: http://git.kernel.org/tip/625524572391326b83f906efe02abbaac9debce6 Author: David Carrillo-Cisneros AuthorDate: Mon, 17 Jul 2017 21:25:42 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Jul 2017 23:14:33 -0300

[tip:perf/core] perf header: Use struct feat_fd in read header records

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 48e5fcea386009fb2515158fdaf8586ce72d86ce Gitweb: http://git.kernel.org/tip/48e5fcea386009fb2515158fdaf8586ce72d86ce Author: David Carrillo-Cisneros AuthorDate: Mon, 17 Jul 2017 21:25:43 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Jul 2017 23:14:33 -0300

[tip:perf/core] perf header: Make write_pmu_mappings pipe-mode friendly

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: a02c39595e40b4c506c78857e24fdb049096 Gitweb: http://git.kernel.org/tip/a02c39595e40b4c506c78857e24fdb049096 Author: David Carrillo-Cisneros AuthorDate: Mon, 17 Jul 2017 21:25:44 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Jul 2017 23:14:34 -0300

[tip:perf/core] perf header: Add a buffer to struct feat_fd

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 0b3d34106c18e5d9ebba004f52a2ce8b264c493e Gitweb: http://git.kernel.org/tip/0b3d34106c18e5d9ebba004f52a2ce8b264c493e Author: David Carrillo-Cisneros AuthorDate: Mon, 17 Jul 2017 21:25:45 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Jul 2017 23:14:34 -0300

[tip:perf/core] perf tool: Add show_feature_header to perf_tool

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 114f709e01e62760a6d03de1358188293dfefdda Gitweb: http://git.kernel.org/tip/114f709e01e62760a6d03de1358188293dfefdda Author: David Carrillo-Cisneros AuthorDate: Mon, 17 Jul 2017 21:25:47 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Jul 2017 23:14:36 -0300

[tip:perf/core] perf header: Add struct feat_fd for write

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: ccebbeb6b69e4e172450d32f1059fefd1659ad8c Gitweb: http://git.kernel.org/tip/ccebbeb6b69e4e172450d32f1059fefd1659ad8c Author: David Carrillo-Cisneros AuthorDate: Mon, 17 Jul 2017 21:25:39 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Jul 2017 23:14:31 -0300

[tip:perf/core] perf tools: Add feature header record to pipe-mode

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: e9def1b2e74e3d2134133f70d2a84c242446bbe7 Gitweb: http://git.kernel.org/tip/e9def1b2e74e3d2134133f70d2a84c242446bbe7 Author: David Carrillo-Cisneros AuthorDate: Mon, 17 Jul 2017 21:25:48 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Jul 2017 23:14:36 -0300

[tip:perf/core] perf header: Add event desc to pipe-mode header

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: f9ebdccf2b78e643d1ba2c979fa293c9d1e8ba86 Gitweb: http://git.kernel.org/tip/f9ebdccf2b78e643d1ba2c979fa293c9d1e8ba86 Author: David Carrillo-Cisneros AuthorDate: Mon, 17 Jul 2017 21:25:49 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Jul 2017 23:14:37 -0300

[tip:perf/core] perf header: Change FEAT_OP* macros

2017-07-20 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: a4d8c9855a260359655f2a302ee2b231cad379ca Gitweb: http://git.kernel.org/tip/a4d8c9855a260359655f2a302ee2b231cad379ca Author: David Carrillo-Cisneros AuthorDate: Mon, 17 Jul 2017 21:25:46 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Jul 2017 23:14:35 -0300

[tip:perf/urgent] perf/core: Remove invalid warning from list_update_cgroup_even()t

2016-12-06 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 8fc31ce8896fc3cea1d79688c8ff950ad4e73afe Gitweb: http://git.kernel.org/tip/8fc31ce8896fc3cea1d79688c8ff950ad4e73afe Author: David Carrillo-Cisneros AuthorDate: Sun, 4 Dec 2016 00:46:17 -0800 Committer: Ingo Molnar CommitDate: Tue, 6 Dec 2016 09:44:29 +0100 perf/core: Remove

[tip:perf/urgent] perf/x86: Set pmu->module in Intel PMU modules

2017-01-05 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 74545f63890e38520eb4d1dbedcadaa9c0dbc824 Gitweb: http://git.kernel.org/tip/74545f63890e38520eb4d1dbedcadaa9c0dbc824 Author: David Carrillo-Cisneros AuthorDate: Thu, 22 Dec 2016 17:17:40 -0800 Committer: Ingo Molnar CommitDate: Thu, 5 Jan 2017 09:13:55 +0100 perf/x86: Set

[tip:perf/urgent] perf/core: Do not set cpuctx->cgrp for unscheduled cgroups

2016-11-16 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 864c2357ca898c6171fe5284f5ecc795c8ce27a8 Gitweb: http://git.kernel.org/tip/864c2357ca898c6171fe5284f5ecc795c8ce27a8 Author: David Carrillo-Cisneros AuthorDate: Tue, 1 Nov 2016 11:52:58 -0700 Committer: Ingo Molnar CommitDate: Tue, 15 Nov 2016 14:18:22 +0100 perf/core: Do

[tip:perf/core] perf tools: Pass PYTHON config to feature detection

2017-04-17 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 7be6b3166ebf2c10c28ef5777d1b31a937ed8f7a Gitweb: http://git.kernel.org/tip/7be6b3166ebf2c10c28ef5777d1b31a937ed8f7a Author: David Carrillo-Cisneros AuthorDate: Tue, 11 Apr 2017 23:49:13 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 12 Apr 2017 10:45:21 -0300

[tip:perf/core] perf tools: Disable JVMTI if no ELF support available

2017-04-17 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: e5e992a7c184c2121adf37bdf292a516af81dbbb Gitweb: http://git.kernel.org/tip/e5e992a7c184c2121adf37bdf292a516af81dbbb Author: David Carrillo-Cisneros AuthorDate: Wed, 12 Apr 2017 10:07:45 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Thu, 13 Apr 2017 11:47:43 -0300

[tip:perf/core] tools build: Fix feature detection redefinion of build flags

2017-04-17 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 9961aa665b70e47d6c80141c4a2482266010f246 Gitweb: http://git.kernel.org/tip/9961aa665b70e47d6c80141c4a2482266010f246 Author: David Carrillo-Cisneros AuthorDate: Tue, 11 Apr 2017 23:49:14 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Thu, 13 Apr 2017 11:48:48 -0300

[tip:perf/core] Revert "perf tools: Fix include of linux/mman.h"

2017-04-17 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 16eb81365b70266c17d1141ef9b32c3110b22d17 Gitweb: http://git.kernel.org/tip/16eb81365b70266c17d1141ef9b32c3110b22d17 Author: David Carrillo-Cisneros AuthorDate: Tue, 11 Apr 2017 23:49:19 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Thu, 13 Apr 2017 11:54:46 -0300

[tip:perf/core] perf util: Hint missing file when tool tips fail to load

2017-04-17 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 570eda03213a216a88566c0da7bfe175832cfaa4 Gitweb: http://git.kernel.org/tip/570eda03213a216a88566c0da7bfe175832cfaa4 Author: David Carrillo-Cisneros AuthorDate: Tue, 11 Apr 2017 23:49:16 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Thu, 13 Apr 2017 11:52:51 -0300

[tip:perf/core] perf tools: Remove unneccessary feature-dwarf warning

2017-01-18 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 2484c4c58fd1bc0d7711d294c530a1518da6a172 Gitweb: http://git.kernel.org/tip/2484c4c58fd1bc0d7711d294c530a1518da6a172 Author: David Carrillo-Cisneros AuthorDate: Thu, 12 Jan 2017 13:01:59 -0800 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 16 Jan 2017 14:59:15 -0300

[tip:perf/core] tools lib traceevent: Robustify do_generate_dynamic_list_file

2017-02-10 Thread tip-bot for David Carrillo-Cisneros
Commit-ID: 6467753d613993f30965d4e0717f7304eb933ef7 Gitweb: http://git.kernel.org/tip/6467753d613993f30965d4e0717f7304eb933ef7 Author: David Carrillo-Cisneros AuthorDate: Tue, 7 Feb 2017 21:28:40 -0800 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 8 Feb 2017 10:27:45 -0300

<    4   5   6   7   8   9   10   >