Re: [PATCH 3/3] tools/libxl: Only allocate 64 bytes for RSDP

2021-09-10 Thread Jan Beulich
On 09.09.2021 18:34, Kevin Stefanov wrote: > RSDP's size is 64 bytes and later in the function, its buffer is > hardcoded to be 64 bytes long. Don't bother to allocate a whole page. > > Signed-off-by: Kevin Stefanov Purely technically and within the constraints of the present code: Reviewed-by:

[PATCH 3/3] tools/libxl: Only allocate 64 bytes for RSDP

2021-09-09 Thread Kevin Stefanov
RSDP's size is 64 bytes and later in the function, its buffer is hardcoded to be 64 bytes long. Don't bother to allocate a whole page. Signed-off-by: Kevin Stefanov --- CC: Andrew Cooper CC: Ian Jackson CC: Wei Liu CC: Anthony PERARD --- tools/libs/light/libxl_x86_acpi.c | 2 +- 1 file chang