Message ID | 20230703024718.309452-1-masahisa.kojima@linaro.org |
---|---|
State | Superseded |
Headers | show |
Series | efi_driver: fix duplicate efiblk#0 issue | expand |
On Mon, Jul 03, 2023 at 11:47:18AM +0900, Masahisa Kojima wrote: > The devnum value of the blk_desc structure starts from 0, > current efi_bl_create_block_device() function creates > two "efiblk#0" devices for the cases that blk_find_max_devnum() > returns -ENODEV and blk_find_max_devnum() returns 0(one device > found in this case). > > The devnum value for the "efiblk" name needs to be incremented. > > Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org> > --- > lib/efi_driver/efi_block_device.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/lib/efi_driver/efi_block_device.c b/lib/efi_driver/efi_block_device.c > index add00eeebb..e37bfe6e80 100644 > --- a/lib/efi_driver/efi_block_device.c > +++ b/lib/efi_driver/efi_block_device.c > @@ -129,6 +129,8 @@ efi_bl_create_block_device(efi_handle_t handle, void *interface) > devnum = 0; > else if (devnum < 0) > return EFI_OUT_OF_RESOURCES; > + else > + devnum++; /* device found, note that devnum starts from 0 */ So we can use blk_next_free_devnum() instead. -Takahiro Akashi > name = calloc(1, 18); /* strlen("efiblk#2147483648") + 1 */ > if (!name) > -- > 2.34.1 >
Hi Akashi-san, On Mon, 3 Jul 2023 at 13:32, AKASHI Takahiro <takahiro.akashi@linaro.org> wrote: > > On Mon, Jul 03, 2023 at 11:47:18AM +0900, Masahisa Kojima wrote: > > The devnum value of the blk_desc structure starts from 0, > > current efi_bl_create_block_device() function creates > > two "efiblk#0" devices for the cases that blk_find_max_devnum() > > returns -ENODEV and blk_find_max_devnum() returns 0(one device > > found in this case). > > > > The devnum value for the "efiblk" name needs to be incremented. > > > > Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org> > > --- > > lib/efi_driver/efi_block_device.c | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/lib/efi_driver/efi_block_device.c b/lib/efi_driver/efi_block_device.c > > index add00eeebb..e37bfe6e80 100644 > > --- a/lib/efi_driver/efi_block_device.c > > +++ b/lib/efi_driver/efi_block_device.c > > @@ -129,6 +129,8 @@ efi_bl_create_block_device(efi_handle_t handle, void *interface) > > devnum = 0; > > else if (devnum < 0) > > return EFI_OUT_OF_RESOURCES; > > + else > > + devnum++; /* device found, note that devnum starts from 0 */ > > So we can use blk_next_free_devnum() instead. Yes, it is much simpler. I will revise the patch. Thanks, Masahisa Kojima > > -Takahiro Akashi > > > name = calloc(1, 18); /* strlen("efiblk#2147483648") + 1 */ > > if (!name) > > -- > > 2.34.1 > >
On 7/3/23 04:47, Masahisa Kojima wrote: > The devnum value of the blk_desc structure starts from 0, > current efi_bl_create_block_device() function creates > two "efiblk#0" devices for the cases that blk_find_max_devnum() > returns -ENODEV and blk_find_max_devnum() returns 0(one device > found in this case). > > The devnum value for the "efiblk" name needs to be incremented. > > Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org> > --- > lib/efi_driver/efi_block_device.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/lib/efi_driver/efi_block_device.c b/lib/efi_driver/efi_block_device.c > index add00eeebb..e37bfe6e80 100644 > --- a/lib/efi_driver/efi_block_device.c > +++ b/lib/efi_driver/efi_block_device.c > @@ -129,6 +129,8 @@ efi_bl_create_block_device(efi_handle_t handle, void *interface) > devnum = 0; > else if (devnum < 0) > return EFI_OUT_OF_RESOURCES; > + else > + devnum++; /* device found, note that devnum starts from 0 */ Shouldn't we simply use blk_next_free_devnum() instead of duplicating the logic here? Best regards Heinrich > > name = calloc(1, 18); /* strlen("efiblk#2147483648") + 1 */ > if (!name)
Hi Heinrich, On Mon, 3 Jul 2023 at 15:10, Heinrich Schuchardt <xypron.glpk@gmx.de> wrote: > > On 7/3/23 04:47, Masahisa Kojima wrote: > > The devnum value of the blk_desc structure starts from 0, > > current efi_bl_create_block_device() function creates > > two "efiblk#0" devices for the cases that blk_find_max_devnum() > > returns -ENODEV and blk_find_max_devnum() returns 0(one device > > found in this case). > > > > The devnum value for the "efiblk" name needs to be incremented. > > > > Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org> > > --- > > lib/efi_driver/efi_block_device.c | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/lib/efi_driver/efi_block_device.c b/lib/efi_driver/efi_block_device.c > > index add00eeebb..e37bfe6e80 100644 > > --- a/lib/efi_driver/efi_block_device.c > > +++ b/lib/efi_driver/efi_block_device.c > > @@ -129,6 +129,8 @@ efi_bl_create_block_device(efi_handle_t handle, void *interface) > > devnum = 0; > > else if (devnum < 0) > > return EFI_OUT_OF_RESOURCES; > > + else > > + devnum++; /* device found, note that devnum starts from 0 */ > > Shouldn't we simply use blk_next_free_devnum() instead of duplicating > the logic here? Yes, Akashi-san also already pointed out, and I already sent v2 with blk_next_free_devnum(). Thanks, Masahisa Kojima > > Best regards > > Heinrich > > > > > name = calloc(1, 18); /* strlen("efiblk#2147483648") + 1 */ > > if (!name) >
diff --git a/lib/efi_driver/efi_block_device.c b/lib/efi_driver/efi_block_device.c index add00eeebb..e37bfe6e80 100644 --- a/lib/efi_driver/efi_block_device.c +++ b/lib/efi_driver/efi_block_device.c @@ -129,6 +129,8 @@ efi_bl_create_block_device(efi_handle_t handle, void *interface) devnum = 0; else if (devnum < 0) return EFI_OUT_OF_RESOURCES; + else + devnum++; /* device found, note that devnum starts from 0 */ name = calloc(1, 18); /* strlen("efiblk#2147483648") + 1 */ if (!name)
The devnum value of the blk_desc structure starts from 0, current efi_bl_create_block_device() function creates two "efiblk#0" devices for the cases that blk_find_max_devnum() returns -ENODEV and blk_find_max_devnum() returns 0(one device found in this case). The devnum value for the "efiblk" name needs to be incremented. Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org> --- lib/efi_driver/efi_block_device.c | 2 ++ 1 file changed, 2 insertions(+)