From f60896951b9e919ecefbc714cfca1cf98e12a7d6 Mon Sep 17 00:00:00 2001 From: Yuan Liu Date: Tue, 11 Aug 2020 09:26:04 +0800 Subject: [PATCH] hv: change log level for find_match_mmio_node Replace pr_fatal with pr_info to reduce printing logs Tracked-On: #4853 Signed-off-by: Yuan Liu Acked-by: Eddie Dong --- hypervisor/dm/io_req.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypervisor/dm/io_req.c b/hypervisor/dm/io_req.c index 006018053..f9f69e56c 100644 --- a/hypervisor/dm/io_req.c +++ b/hypervisor/dm/io_req.c @@ -633,7 +633,7 @@ static inline struct mem_io_node *find_match_mmio_node(struct acrn_vm *vm, } if (!found) { - pr_fatal("%s, vm[%d] no match mmio region [0x%lx, 0x%lx] is found", + pr_info("%s, vm[%d] no match mmio region [0x%lx, 0x%lx] is found", __func__, vm->vm_id, start, end); mmio_node = NULL; }