Skip to content

Commit

Permalink
perf tools: Change perf_guest default back to false
Browse files Browse the repository at this point in the history
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 <dsahern@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Jason Wang <jasowang@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1328893505-4115-3-git-send-email-joerg.roedel@amd.com
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
  • Loading branch information
Joerg Roedel authored and Arnaldo Carvalho de Melo committed Mar 3, 2012
1 parent 6e557a6 commit 8f54ed4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/perf/util/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 8f54ed4

Please sign in to comment.