Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932678Ab2JBXzL (ORCPT ); Tue, 2 Oct 2012 19:55:11 -0400 Received: from mga01.intel.com ([192.55.52.88]:19881 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756803Ab2JBXs7 (ORCPT ); Tue, 2 Oct 2012 19:48:59 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.80,525,1344236400"; d="scan'208";a="229791139" From: Andi Kleen To: linux-kernel@vger.kernel.org Cc: acme@redhat.com, x86@vger.kernel.org, eranian@google.com, jolsa@redhat.com, a.p.zijlstra@chello.nl, Andi Kleen Subject: [PATCH 11/31] perf, tools: Add abort,notx,intx branch filter options to perf report -j Date: Tue, 2 Oct 2012 16:48:31 -0700 Message-Id: <1349221731-15665-12-git-send-email-andi@firstfloor.org> X-Mailer: git-send-email 1.7.7.6 In-Reply-To: <1349221731-15665-1-git-send-email-andi@firstfloor.org> References: <1349221731-15665-1-git-send-email-andi@firstfloor.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1080 Lines: 31 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 f14cb5f..068965a 100644 --- a/tools/perf/builtin-record.c +++ b/tools/perf/builtin-record.c @@ -734,6 +734,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 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/