Re: [PATCH v2 07/15] x86/hyperlaunch: initial support for hyperlaunch device tree

2025-01-30 Thread Jan Beulich
On 26.12.2024 17:57, Daniel P. Smith wrote: > --- a/xen/arch/x86/domain-builder/fdt.c > +++ b/xen/arch/x86/domain-builder/fdt.c > @@ -13,14 +13,77 @@ > > #include "fdt.h" > > +static int __init find_hyperlaunch_node(const void *fdt) > +{ > +int hv_node = fdt_path_offset(fdt, "/chosen/hyper

Re: [PATCH v2 07/15] x86/hyperlaunch: initial support for hyperlaunch device tree

2025-01-15 Thread Daniel P. Smith
On 1/10/25 17:20, Jason Andryuk wrote: On 2024-12-26 11:57, Daniel P. Smith wrote: Add the ability to detect both a formal hyperlaunch device tree or a dom0less device tree. If the hyperlaunch device tree is found, then count the number of domain entries, reporting an error if more than one is

Re: [PATCH v2 07/15] x86/hyperlaunch: initial support for hyperlaunch device tree

2025-01-10 Thread Jason Andryuk
On 2024-12-26 11:57, Daniel P. Smith wrote: Add the ability to detect both a formal hyperlaunch device tree or a dom0less device tree. If the hyperlaunch device tree is found, then count the number of domain entries, reporting an error if more than one is found. Signed-off-by: Daniel P. Smith