Re: [PATCH v2 13/15] x86/hyperlaunch: add memory parsing to domain config

2025-01-30 Thread Jan Beulich
On 26.12.2024 17:57, Daniel P. Smith wrote: > --- a/xen/arch/x86/dom0_build.c > +++ b/xen/arch/x86/dom0_build.c > @@ -609,6 +609,14 @@ int __init construct_dom0(struct boot_domain *bd) > > process_pending_softirqs(); > > +/* If param dom0_size was not set and HL config provided memory

Re: [PATCH v2 13/15] x86/hyperlaunch: add memory parsing to domain config

2025-01-15 Thread Jason Andryuk
On 2024-12-26 11:57, Daniel P. Smith wrote: Add three properties, memory, mem-min, and mem-max, to the domain node device tree parsing to define the memory allocation for a domain. All three fields are expressed in kb and written as a u64 in the device tree entries. Signed-off-by: Daniel P. Smit

[PATCH v2 13/15] x86/hyperlaunch: add memory parsing to domain config

2024-12-26 Thread Daniel P. Smith
Add three properties, memory, mem-min, and mem-max, to the domain node device tree parsing to define the memory allocation for a domain. All three fields are expressed in kb and written as a u64 in the device tree entries. Signed-off-by: Daniel P. Smith --- Changes since v1 - moved common fdt par