This patch adds hypervisor operations for LoongArch architecture. In fact, these operations are currently not supported on LoongArch.
Signed-off-by: Min Zhou <zhou...@loongson.cn> --- lib/eal/loongarch/rte_hypervisor.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/eal/loongarch/rte_hypervisor.c diff --git a/lib/eal/loongarch/rte_hypervisor.c b/lib/eal/loongarch/rte_hypervisor.c new file mode 100644 index 0000000000..d044906f71 --- /dev/null +++ b/lib/eal/loongarch/rte_hypervisor.c @@ -0,0 +1,11 @@ +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright(c) 2022 Loongson Technology Corporation Limited + */ + +#include "rte_hypervisor.h" + +enum rte_hypervisor +rte_hypervisor_get(void) +{ + return RTE_HYPERVISOR_UNKNOWN; +} -- 2.31.1