From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756335Ab2CEIjW (ORCPT ); Mon, 5 Mar 2012 03:39:22 -0500 Received: from terminus.zytor.com ([198.137.202.10]:58664 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751204Ab2CEIjU (ORCPT ); Mon, 5 Mar 2012 03:39:20 -0500 Date: Mon, 5 Mar 2012 00:38:04 -0800 From: tip-bot for Joerg Roedel Message-ID: Cc: acme@redhat.com, linux-kernel@vger.kernel.org, paulus@samba.org, hpa@zytor.com, mingo@redhat.com, a.p.zijlstra@chello.nl, jasowang@redhat.com, joerg.roedel@amd.com, dsahern@gmail.com, tglx@linutronix.de, mingo@elte.hu Reply-To: mingo@redhat.com, hpa@zytor.com, paulus@samba.org, linux-kernel@vger.kernel.org, acme@redhat.com, joerg.roedel@amd.com, jasowang@redhat.com, a.p.zijlstra@chello.nl, dsahern@gmail.com, tglx@linutronix.de, mingo@elte.hu In-Reply-To: <1328893505-4115-3-git-send-email-joerg.roedel@amd.com> References: <1328893505-4115-3-git-send-email-joerg.roedel@amd.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf tools: Change perf_guest default back to false Git-Commit-ID: 8f54ed4a2d8cf001456d3779bdb33985a050bf03 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.6 (terminus.zytor.com [127.0.0.1]); Mon, 05 Mar 2012 00:38:33 -0800 (PST) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 8f54ed4a2d8cf001456d3779bdb33985a050bf03 Gitweb: http://git.kernel.org/tip/8f54ed4a2d8cf001456d3779bdb33985a050bf03 Author: Joerg Roedel AuthorDate: Fri, 10 Feb 2012 18:05:05 +0100 Committer: Arnaldo Carvalho de Melo CommitDate: Sat, 3 Mar 2012 12:13:41 -0300 perf tools: Change perf_guest default back to false Setting perf_guest to true by default makes no sense because the perf subcommands can not setup guest symbol information and thus not process and guest samples. The only exception is perf-kvm which changes the perf_guest value on its own. So change the default for perf_guest back to false. Cc: David Ahern Cc: Ingo Molnar Cc: Jason Wang Cc: Paul Mackerras Cc: Peter Zijlstra Link: http://lkml.kernel.org/r/1328893505-4115-3-git-send-email-joerg.roedel@amd.com Signed-off-by: Joerg Roedel Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/util/util.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/perf/util/util.c b/tools/perf/util/util.c index 8131410..fb25d13 100644 --- a/tools/perf/util/util.c +++ b/tools/perf/util/util.c @@ -6,7 +6,7 @@ * XXX We need to find a better place for these things... */ bool perf_host = true; -bool perf_guest = true; +bool perf_guest = false; void event_attr_init(struct perf_event_attr *attr) {