mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-03 12:49:45 +00:00
The hypercall HC_SETUP_HV_NPK_LOG is added to enable/disable/configure the hypervisor NPK log. Signed-off-by: Zhi Jin <zhi.jin@intel.com> Signed-off-by: Zhonghua Sun <zhonghua.sun@intel.com> Reviewed-by: CHEN Gang <gang.c.chen@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
19 lines
314 B
C
19 lines
314 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef HV_DEBUG_H
|
|
#define HV_DEBUG_H
|
|
|
|
#include <logmsg.h>
|
|
#include <vuart.h>
|
|
#include <console.h>
|
|
#include <dump.h>
|
|
#include <trace.h>
|
|
#include <sbuf.h>
|
|
#include <npk_log.h>
|
|
|
|
#endif /* HV_DEBUG_H */
|