Re: [PATCH v3 4/5] eficonfig: use efi_get_next_variable_name_int()

2022-12-06 Thread Masahisa Kojima
On Tue, 6 Dec 2022 at 23:12, Ilias Apalodimas wrote: > > On Sat, Dec 03, 2022 at 09:56:20AM +0900, Masahisa Kojima wrote: > > On Fri, 2 Dec 2022 at 16:36, Ilias Apalodimas > > wrote: > > > > > > On Fri, Dec 02, 2022 at 01:59:36PM +0900, Masahisa Kojima wrote: > > > > eficonfig command reads all

Re: [PATCH v3 4/5] eficonfig: use efi_get_next_variable_name_int()

2022-12-06 Thread Ilias Apalodimas
On Sat, Dec 03, 2022 at 09:56:20AM +0900, Masahisa Kojima wrote: > On Fri, 2 Dec 2022 at 16:36, Ilias Apalodimas > wrote: > > > > On Fri, Dec 02, 2022 at 01:59:36PM +0900, Masahisa Kojima wrote: > > > eficonfig command reads all possible UEFI load options > > > from 0x to 0x to construct

Re: [PATCH v3 4/5] eficonfig: use efi_get_next_variable_name_int()

2022-12-02 Thread Masahisa Kojima
On Fri, 2 Dec 2022 at 16:36, Ilias Apalodimas wrote: > > On Fri, Dec 02, 2022 at 01:59:36PM +0900, Masahisa Kojima wrote: > > eficonfig command reads all possible UEFI load options > > from 0x to 0x to construct the menu. This takes too much > > time in some environment. > > This commit

Re: [PATCH v3 4/5] eficonfig: use efi_get_next_variable_name_int()

2022-12-02 Thread Heinrich Schuchardt
On 12/2/22 08:35, Ilias Apalodimas wrote: On Fri, Dec 02, 2022 at 01:59:36PM +0900, Masahisa Kojima wrote: eficonfig command reads all possible UEFI load options from 0x to 0x to construct the menu. This takes too much time in some environment. This commit uses

Re: [PATCH v3 4/5] eficonfig: use efi_get_next_variable_name_int()

2022-12-01 Thread Ilias Apalodimas
On Fri, Dec 02, 2022 at 01:59:36PM +0900, Masahisa Kojima wrote: > eficonfig command reads all possible UEFI load options > from 0x to 0x to construct the menu. This takes too much > time in some environment. > This commit uses efi_get_next_variable_name_int() to read all > existing UEFI

[PATCH v3 4/5] eficonfig: use efi_get_next_variable_name_int()

2022-12-01 Thread Masahisa Kojima
eficonfig command reads all possible UEFI load options from 0x to 0x to construct the menu. This takes too much time in some environment. This commit uses efi_get_next_variable_name_int() to read all existing UEFI load options to significantlly reduce the count of efi_get_var() call.