|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen staging] xen/arm: Print correct domid in allocate_memory_11
commit 7c02572c37eaafbb64bb498d6b4499db7365c7b4
Author: Michal Orzel <michal.orzel@xxxxxxx>
AuthorDate: Mon Jan 12 11:42:32 2026 +0100
Commit: Michal Orzel <michal.orzel@xxxxxxx>
CommitDate: Fri Jan 16 09:38:30 2026 +0100
xen/arm: Print correct domid in allocate_memory_11
allocate_memory_11() can be called for dom0 and direct-mapped hwdom
domU. In the latter scenario, a log message would still mention dom0
instead of the correct domid.
Fixes: 52cb53f1816a ("xen/arm: dom0less hwdom construction")
Signed-off-by: Michal Orzel <michal.orzel@xxxxxxx>
Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
Acked-by: Stefano Stabellini <sstabellini@xxxxxxxxxx>
---
xen/arch/arm/domain_build.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/xen/arch/arm/domain_build.c b/xen/arch/arm/domain_build.c
index 986a456f17..e8795745dd 100644
--- a/xen/arch/arm/domain_build.c
+++ b/xen/arch/arm/domain_build.c
@@ -296,9 +296,9 @@ static void __init allocate_memory_11(struct domain *d,
*/
BUG_ON(!is_domain_direct_mapped(d));
- printk("Allocating 1:1 mappings totalling %ldMB for dom0:\n",
+ printk("Allocating 1:1 mappings totalling %ldMB for %pd:\n",
/* Don't want format this as PRIpaddr (16 digit hex) */
- (unsigned long)(kinfo->unassigned_mem >> 20));
+ (unsigned long)(kinfo->unassigned_mem >> 20), d);
mem->nr_banks = 0;
--
generated by git-patchbot for /home/xen/git/xen.git#staging
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |