Re: [PATCH 1/1] efi_loader: implement non-blocking file services

2021-04-30 Thread Michal Simek
pá 30. 4. 2021 v 12:42 odesílatel Heinrich Schuchardt napsal: > > On 30.04.21 12:09, Michal Simek wrote: > > Hi Heinrich, > > > > pá 1. 1. 2021 v 19:29 odesílatel Heinrich Schuchardt > > napsal: > >> > >> Implement services OpenEx(), ReadEx(), WriteEx(), FlushEx() of the > >> EFI_FILE_PROTOCOL. >

Re: [PATCH 1/1] efi_loader: implement non-blocking file services

2021-04-30 Thread Heinrich Schuchardt
On 30.04.21 12:09, Michal Simek wrote: > Hi Heinrich, > > pá 1. 1. 2021 v 19:29 odesílatel Heinrich Schuchardt > napsal: >> >> Implement services OpenEx(), ReadEx(), WriteEx(), FlushEx() of the >> EFI_FILE_PROTOCOL. >> >> Signed-off-by: Heinrich Schuchardt >> --- >> include/efi_api.h |

Re: [PATCH 1/1] efi_loader: implement non-blocking file services

2021-04-30 Thread Michal Simek
Hi Heinrich, pá 1. 1. 2021 v 19:29 odesílatel Heinrich Schuchardt napsal: > > Implement services OpenEx(), ReadEx(), WriteEx(), FlushEx() of the > EFI_FILE_PROTOCOL. > > Signed-off-by: Heinrich Schuchardt > --- > include/efi_api.h | 28 ++-- > lib/efi_loader/efi_file.c | 317 ++

[PATCH 1/1] efi_loader: implement non-blocking file services

2021-01-01 Thread Heinrich Schuchardt
Implement services OpenEx(), ReadEx(), WriteEx(), FlushEx() of the EFI_FILE_PROTOCOL. Signed-off-by: Heinrich Schuchardt --- include/efi_api.h | 28 ++-- lib/efi_loader/efi_file.c | 317 -- 2 files changed, 280 insertions(+), 65 deletions(-) diff --g