Re: [PATCH v2 3/7] xen/common: Move Arm's bootfdt to common

2023-12-20 Thread Jan Beulich
On 20.12.2023 23:08, Julien Grall wrote: > Hi, > > On 20/12/2023 20:58, Shawn Anastasio wrote: >> On 12/20/23 2:09 AM, Jan Beulich wrote: >>> On 19.12.2023 19:29, Julien Grall wrote: On 19/12/2023 17:03, Jan Beulich wrote: > On 15.12.2023 03:43, Shawn Anastasio wrote: >> --- a/xen/arc

Re: [PATCH v2 3/7] xen/common: Move Arm's bootfdt to common

2023-12-20 Thread Timothy Pearson
- Original Message - > From: "Julien Grall" > To: "Shawn Anastasio" , "Jan Beulich" > > Cc: "Timothy Pearson" , "xen-devel" > > Sent: Wednesday, December 20, 2023 4:08:30 PM > Subject: Re: [PATCH v2 3/7] x

Re: [PATCH v2 3/7] xen/common: Move Arm's bootfdt to common

2023-12-20 Thread Julien Grall
Hi, On 20/12/2023 20:58, Shawn Anastasio wrote: On 12/20/23 2:09 AM, Jan Beulich wrote: On 19.12.2023 19:29, Julien Grall wrote: On 19/12/2023 17:03, Jan Beulich wrote: On 15.12.2023 03:43, Shawn Anastasio wrote: --- a/xen/arch/arm/bootfdt.c +++ b/xen/common/device-tree/bootfdt.c @@ -431,12

Re: [PATCH v2 3/7] xen/common: Move Arm's bootfdt to common

2023-12-20 Thread Shawn Anastasio
On 12/20/23 2:09 AM, Jan Beulich wrote: > On 19.12.2023 19:29, Julien Grall wrote: >> On 19/12/2023 17:03, Jan Beulich wrote: >>> On 15.12.2023 03:43, Shawn Anastasio wrote: --- a/xen/arch/arm/bootfdt.c +++ b/xen/common/device-tree/bootfdt.c @@ -431,12 +431,15 @@ static int __init ea

Re: [PATCH v2 3/7] xen/common: Move Arm's bootfdt to common

2023-12-20 Thread Julien Grall
Hi Shawn, On 15/12/2023 02:43, Shawn Anastasio wrote: Move Arm's bootfdt.c to xen/common so that it can be used by other device tree architectures like PPC and RISCV. Only a minor change to conditionalize a call to a function only available on EFI-supporting targets was made to the code itself.

Re: [PATCH v2 3/7] xen/common: Move Arm's bootfdt to common

2023-12-20 Thread Jan Beulich
On 19.12.2023 19:29, Julien Grall wrote: > On 19/12/2023 17:03, Jan Beulich wrote: >> On 15.12.2023 03:43, Shawn Anastasio wrote: >>> --- a/xen/arch/arm/bootfdt.c >>> +++ b/xen/common/device-tree/bootfdt.c >>> @@ -431,12 +431,15 @@ static int __init early_scan_node(const void *fdt, >>> { >>>

Re: [PATCH v2 3/7] xen/common: Move Arm's bootfdt to common

2023-12-19 Thread Julien Grall
Hi Jan, On 19/12/2023 17:03, Jan Beulich wrote: On 15.12.2023 03:43, Shawn Anastasio wrote: Move Arm's bootfdt.c to xen/common so that it can be used by other device tree architectures like PPC and RISCV. Only a minor change to conditionalize a call to a function only available on EFI-supportin

Re: [PATCH v2 3/7] xen/common: Move Arm's bootfdt to common

2023-12-19 Thread Jan Beulich
On 15.12.2023 03:43, Shawn Anastasio wrote: > Move Arm's bootfdt.c to xen/common so that it can be used by other > device tree architectures like PPC and RISCV. Only a minor change to > conditionalize a call to a function only available on EFI-supporting > targets was made to the code itself. > >

[PATCH v2 3/7] xen/common: Move Arm's bootfdt to common

2023-12-14 Thread Shawn Anastasio
Move Arm's bootfdt.c to xen/common so that it can be used by other device tree architectures like PPC and RISCV. Only a minor change to conditionalize a call to a function only available on EFI-supporting targets was made to the code itself. Suggested-by: Julien Grall Signed-off-by: Shawn Anastas