mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-12-24 06:02:32 +00:00
for vmexit data sampling could affect HV performace profiling, so set it disabled by default. add a flag in HV bootargs to control vmexit data sampling. Tracked-On: #5232 Signed-off-by: Minggui Cao <minggui.cao@intel.com>
17 lines
298 B
C
17 lines
298 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef SHELL_H
|
|
#define SHELL_H
|
|
|
|
void shell_init(void);
|
|
void shell_kick(void);
|
|
|
|
void set_vmexit_sample_flag(bool to_enable);
|
|
bool is_vmexit_sample_enabled(void);
|
|
|
|
#endif /* SHELL_H */
|