• Anton Blanchard's avatar
    perf: Fix hypervisor sample reporting · 7fbfc683
    Anton Blanchard authored
    cpumode bits are defined as such:
    
     #define PERF_RECORD_MISC_KERNEL                 (1 << 0)
     #define PERF_RECORD_MISC_USER                   (2 << 0)
     #define PERF_RECORD_MISC_HYPERVISOR             (3 << 0)
    
    We need to compare against the complete value of cpumode,
    otherwise hypervisor samples get incorrectly attributed as
    userspace.
    Signed-off-by: default avatarAnton Blanchard <anton@samba.org>
    Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
    Cc: Paul Mackerras <paulus@samba.org>
    Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
    Cc: fweisbec@gmail.com
    LKML-Reference: <20100209034304.GA3702@kryten>
    Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
    7fbfc683
event.c 10.5 KB