41 lines
1.4 KiB
Diff
41 lines
1.4 KiB
Diff
|
|
From 39eae397a6b573505c0e84cc808cd9765a950908 Mon Sep 17 00:00:00 2001
|
||
|
|
From: guping <guping_yewu@cmss.chinamobile.com>
|
||
|
|
Date: Mon, 15 Jul 2024 00:54:12 +0000
|
||
|
|
Subject: [PATCH] physmem: Bail out qemu_ram_block_from_host() for invalid ram
|
||
|
|
addrs cherry-pick from 596ccccdbfa124adb42be8c2faf0c74f4849c7a6
|
||
|
|
MIME-Version: 1.0
|
||
|
|
Content-Type: text/plain; charset=UTF-8
|
||
|
|
Content-Transfer-Encoding: 8bit
|
||
|
|
|
||
|
|
Bail out in qemu_ram_block_from_host() when
|
||
|
|
xen_ram_addr_from_mapcache() does not find an existing
|
||
|
|
mapping.
|
||
|
|
|
||
|
|
Signed-off-by: default avatarEdgar E. Iglesias <edgar.iglesias@amd.com>
|
||
|
|
Reviewed-by: default avatarAlex Bennée <alex.bennee@linaro.org>
|
||
|
|
Reviewed-by: default avatarStefano Stabellini <sstabellini@kernel.org>
|
||
|
|
|
||
|
|
Signed-off-by: guping <guping_yewu@cmss.chinamobile.com>
|
||
|
|
---
|
||
|
|
system/physmem.c | 4 ++++
|
||
|
|
1 file changed, 4 insertions(+)
|
||
|
|
|
||
|
|
diff --git a/system/physmem.c b/system/physmem.c
|
||
|
|
index cbe838f203..0c629233bd 100644
|
||
|
|
--- a/system/physmem.c
|
||
|
|
+++ b/system/physmem.c
|
||
|
|
@@ -2263,6 +2263,10 @@ RAMBlock *qemu_ram_block_from_host(void *ptr, bool round_offset,
|
||
|
|
ram_addr_t ram_addr;
|
||
|
|
RCU_READ_LOCK_GUARD();
|
||
|
|
ram_addr = xen_ram_addr_from_mapcache(ptr);
|
||
|
|
+ if (ram_addr == RAM_ADDR_INVALID) {
|
||
|
|
+ return NULL;
|
||
|
|
+ }
|
||
|
|
+
|
||
|
|
block = qemu_get_ram_block(ram_addr);
|
||
|
|
if (block) {
|
||
|
|
*offset = ram_addr - block->offset;
|
||
|
|
--
|
||
|
|
2.41.0.windows.1
|
||
|
|
|