Re: [U-Boot] [PATCH 1/1] efi_loader: efi_allocate_pages is too restrictive

2018-05-27 Thread Heinrich Schuchardt
On 03/12/2018 11:48 AM, Alexander Graf wrote: > On 03/09/2018 05:35 PM, Heinrich Schuchardt wrote: >> On 03/09/2018 05:19 PM, Alexander Graf wrote: >>> On 03/09/2018 04:58 PM, Heinrich Schuchardt wrote: On 03/09/2018 01:48 PM, Alexander Graf wrote: > On 03/03/2018 03:48 PM, Heinrich

Re: [U-Boot] [PATCH 1/1] efi_loader: efi_allocate_pages is too restrictive

2018-03-12 Thread Alexander Graf
On 03/09/2018 05:35 PM, Heinrich Schuchardt wrote: On 03/09/2018 05:19 PM, Alexander Graf wrote: On 03/09/2018 04:58 PM, Heinrich Schuchardt wrote: On 03/09/2018 01:48 PM, Alexander Graf wrote: On 03/03/2018 03:48 PM, Heinrich Schuchardt wrote: When running on the sandbox the stack is not

Re: [U-Boot] [PATCH 1/1] efi_loader: efi_allocate_pages is too restrictive

2018-03-09 Thread Heinrich Schuchardt
On 03/09/2018 05:19 PM, Alexander Graf wrote: > On 03/09/2018 04:58 PM, Heinrich Schuchardt wrote: >> On 03/09/2018 01:48 PM, Alexander Graf wrote: >>> On 03/03/2018 03:48 PM, Heinrich Schuchardt wrote: When running on the sandbox the stack is not necessarily at a higher memory

Re: [U-Boot] [PATCH 1/1] efi_loader: efi_allocate_pages is too restrictive

2018-03-09 Thread Alexander Graf
On 03/09/2018 04:58 PM, Heinrich Schuchardt wrote: On 03/09/2018 01:48 PM, Alexander Graf wrote: On 03/03/2018 03:48 PM, Heinrich Schuchardt wrote: When running on the sandbox the stack is not necessarily at a higher memory address than the highest free memory. There is no reason why the

Re: [U-Boot] [PATCH 1/1] efi_loader: efi_allocate_pages is too restrictive

2018-03-09 Thread Heinrich Schuchardt
On 03/09/2018 01:48 PM, Alexander Graf wrote: > On 03/03/2018 03:48 PM, Heinrich Schuchardt wrote: >> When running on the sandbox the stack is not necessarily at a higher >> memory >> address than the highest free memory. >> >> There is no reason why the checking of the highest memory address >>

Re: [U-Boot] [PATCH 1/1] efi_loader: efi_allocate_pages is too restrictive

2018-03-09 Thread Alexander Graf
On 03/03/2018 03:48 PM, Heinrich Schuchardt wrote: When running on the sandbox the stack is not necessarily at a higher memory address than the highest free memory. There is no reason why the checking of the highest memory address should be more restrictive for EFI_ALLOCATE_ANY_PAGES than for

[U-Boot] [PATCH 1/1] efi_loader: efi_allocate_pages is too restrictive

2018-03-03 Thread Heinrich Schuchardt
When running on the sandbox the stack is not necessarily at a higher memory address than the highest free memory. There is no reason why the checking of the highest memory address should be more restrictive for EFI_ALLOCATE_ANY_PAGES than for EFI_ALLOCATE_MAX_ADDRESS. Signed-off-by: Heinrich