mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-04-29 20:24:00 +00:00
This patch fixes incorrect vm_id captured when sampling PMU data. Currently, the vm_id gets attributed to ACRN hypervisor, rather than actual guest vm_id. The issue is identified that the existing code captures the guest vm info after vmexit_hander function is completed, in which the profiling module points its context to VMM. When the vmexit happens by PMI, the guest context should be captured so that the attribution to proper guest vm can happen. This change will also allow to capture more accurate TSC when vmexit happens. Tracked-On: #2043 Signed-off-by: Min Lim <min.yeol.lim@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
20 lines
448 B
C
20 lines
448 B
C
/*
|
|
* Copyright (C) 2018 int32_tel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef PROFILING_H
|
|
#define PROFILING_H
|
|
|
|
#ifdef PROFILING_ON
|
|
#include <profiling_internal.h>
|
|
#endif
|
|
|
|
void profiling_vmenter_handler(struct acrn_vcpu *vcpu);
|
|
void profiling_pre_vmexit_handler(struct acrn_vcpu *vcpu);
|
|
void profiling_post_vmexit_handler(struct acrn_vcpu *vcpu);
|
|
void profiling_setup(void);
|
|
|
|
#endif /* PROFILING_H */
|