From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756284Ab2I1EgS (ORCPT ); Fri, 28 Sep 2012 00:36:18 -0400 Received: from mga11.intel.com ([192.55.52.93]:59149 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751615Ab2I1Eby (ORCPT ); Fri, 28 Sep 2012 00:31:54 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.80,498,1344236400"; d="scan'208";a="227581574" From: Andi Kleen To: linux-kernel@vger.kernel.org Cc: x86@kernel.org, a.p.zijlstra@chello.nl, eranian@google.com, acme@redhat.com, Andi Kleen Subject: [PATCH 14/31] perf, tools: Add abort,notx,intx branch filter options to perf report -j Date: Thu, 27 Sep 2012 21:31:19 -0700 Message-Id: <1348806696-31170-15-git-send-email-andi@firstfloor.org> X-Mailer: git-send-email 1.7.7.6 In-Reply-To: <1348806696-31170-1-git-send-email-andi@firstfloor.org> References: <1348806696-31170-1-git-send-email-andi@firstfloor.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Andi Kleen Make perf report -j aware of the new intx,notx,abort branch qualifiers. Signed-off-by: Andi Kleen --- tools/perf/builtin-record.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c index 4db6e1b..e851bf2 100644 --- a/tools/perf/builtin-record.c +++ b/tools/perf/builtin-record.c @@ -666,6 +666,9 @@ static const struct branch_mode branch_modes[] = { BRANCH_OPT("any_call", PERF_SAMPLE_BRANCH_ANY_CALL), BRANCH_OPT("any_ret", PERF_SAMPLE_BRANCH_ANY_RETURN), BRANCH_OPT("ind_call", PERF_SAMPLE_BRANCH_IND_CALL), + BRANCH_OPT("abort", PERF_SAMPLE_BRANCH_ABORT), + BRANCH_OPT("intx", PERF_SAMPLE_BRANCH_INTX), + BRANCH_OPT("notx", PERF_SAMPLE_BRANCH_NOTX), BRANCH_END }; -- 1.7.7.6