Linux EFI development
 help / color / mirror / Atom feed
* [PATCH] efi: vars: commonize the 512-byte name buffer quirk
@ 2026-08-15  7:48 Jonggeun Park
  2026-09-03  9:55 ` Ard Biesheuvel
  2026-09-03 11:55 ` [PATCH v2] " Jonggeun Park
  0 siblings, 2 replies; 5+ messages in thread
From: Jonggeun Park @ 2026-08-15  7:48 UTC (permalink / raw)
  To: ardb, jk
  Cc: kees, tony.luck, gpiccoli, ilias.apalodimas, linux-efi,
	linux-kernel, Jonggeun Park

Some old UEFI implementations reject GetNextVariableName() calls with
a name buffer size larger than 512 bytes. Both efivar_init() and
efi_pstore_read() open-code the same workaround of resetting the size
to 512 on every iteration.

Introduce efivar_get_next_variable_safe() which keeps this quirk in a
single place, resolving the TODO in efi-pstore.c.

No functional change intended.

Signed-off-by: Jonggeun Park <jakejgpark@gmail.com>
---
 drivers/firmware/efi/efi-pstore.c | 16 +++++-----------
 drivers/firmware/efi/vars.c       | 21 +++++++++++++++++++++
 fs/efivarfs/vars.c                |  4 +---
 include/linux/efi.h               |  4 ++++
 4 files changed, 31 insertions(+), 14 deletions(-)

diff --git a/drivers/firmware/efi/efi-pstore.c b/drivers/firmware/efi/efi-pstore.c
index a5db3534f..a135d6e2f 100644
--- a/drivers/firmware/efi/efi-pstore.c
+++ b/drivers/firmware/efi/efi-pstore.c
@@ -164,16 +164,6 @@ static ssize_t efi_pstore_read(struct pstore_record *record)
 	efi_status_t status;
 
 	for (;;) {
-		/*
-		 * A small set of old UEFI implementations reject sizes
-		 * above a certain threshold, the lowest seen in the wild
-		 * is 512.
-		 *
-		 * TODO: Commonize with the iteration implementation in
-		 *       fs/efivarfs to keep all the quirks in one place.
-		 */
-		varname_size = 512;
-
 		/*
 		 * If this is the first read() call in the pstore enumeration,
 		 * varname will be the empty string, and the GetNextVariable()
@@ -185,8 +175,12 @@ static ssize_t efi_pstore_read(struct pstore_record *record)
 		 * store varname in record->psi->data. Given that we only
 		 * enumerate variables with the efi-pstore GUID, there is no
 		 * need to record the guid return value.
+		 *
+		 * The 512-byte name buffer quirk is handled inside
+		 * efivar_get_next_variable_safe().
 		 */
-		status = efivar_get_next_variable(&varname_size, varname, &guid);
+		status = efivar_get_next_variable_safe(&varname_size, varname,
+						       &guid);
 		if (status == EFI_NOT_FOUND)
 			return 0;
 
diff --git a/drivers/firmware/efi/vars.c b/drivers/firmware/efi/vars.c
index 3700e9869..8e69f3632 100644
--- a/drivers/firmware/efi/vars.c
+++ b/drivers/firmware/efi/vars.c
@@ -265,3 +265,24 @@ efi_status_t efivar_query_variable_info(u32 attr,
 			remaining_space, max_variable_size);
 }
 EXPORT_SYMBOL_NS_GPL(efivar_query_variable_info, "EFIVAR");
+
+/*
+ * efivar_get_next_variable_safe() - enumerate the next name/vendor pair
+ *
+ * Wrapper around efivar_get_next_variable() that keeps the 512-byte name
+ * buffer quirk in one place. Some old UEFI implementations reject name buffer
+ * sizes larger than 512 bytes (the lowest seen in the wild), so this always
+ * requests 512 bytes; callers must provide a buffer of at least that size.
+ *
+ * Must be called with efivars_lock held.
+ */
+efi_status_t efivar_get_next_variable_safe(unsigned long *name_size,
+					   efi_char16_t *name,
+					   efi_guid_t *vendor)
+{
+	BUILD_BUG_ON(EFI_VAR_NAME_LEN < 512);
+	*name_size = 512;
+
+	return efivar_get_next_variable(name_size, name, vendor);
+}
+EXPORT_SYMBOL_NS_GPL(efivar_get_next_variable_safe, "EFIVAR");
diff --git a/fs/efivarfs/vars.c b/fs/efivarfs/vars.c
index 6833c3d24..ee55a26cb 100644
--- a/fs/efivarfs/vars.c
+++ b/fs/efivarfs/vars.c
@@ -398,10 +398,8 @@ int efivar_init(int (*func)(efi_char16_t *, efi_guid_t, unsigned long, void *),
 	 */
 
 	do {
-		variable_name_size = 512;
-		BUILD_BUG_ON(EFI_VAR_NAME_LEN < 512);
 
-		status = efivar_get_next_variable(&variable_name_size,
+		status = efivar_get_next_variable_safe(&variable_name_size,
 						  variable_name,
 						  &vendor_guid);
 		switch (status) {
diff --git a/include/linux/efi.h b/include/linux/efi.h
index ccbc35479..f36505aa0 100644
--- a/include/linux/efi.h
+++ b/include/linux/efi.h
@@ -1076,6 +1076,10 @@ efi_status_t efivar_get_variable(efi_char16_t *name, efi_guid_t *vendor,
 efi_status_t efivar_get_next_variable(unsigned long *name_size,
 				      efi_char16_t *name, efi_guid_t *vendor);
 
+efi_status_t efivar_get_next_variable_safe(unsigned long *name_size,
+					   efi_char16_t *name,
+					   efi_guid_t *vendor);
+
 efi_status_t efivar_set_variable_locked(efi_char16_t *name, efi_guid_t *vendor,
 					u32 attr, unsigned long data_size,
 					void *data, bool nonblocking);
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] efi: vars: commonize the 512-byte name buffer quirk
  2026-08-15  7:48 [PATCH] efi: vars: commonize the 512-byte name buffer quirk Jonggeun Park
@ 2026-09-03  9:55 ` Ard Biesheuvel
  2026-09-03 11:55 ` [PATCH v2] " Jonggeun Park
  1 sibling, 0 replies; 5+ messages in thread
From: Ard Biesheuvel @ 2026-09-03  9:55 UTC (permalink / raw)
  To: Jonggeun Park, Jeremy Kerr
  Cc: Kees Cook, Tony Luck, Guilherme G. Piccoli, Ilias Apalodimas,
	linux-efi, linux-kernel

Hello Jonggeun,


On Sat, 15 Aug 2026, at 09:48, Jonggeun Park wrote:
> Some old UEFI implementations reject GetNextVariableName() calls with
> a name buffer size larger than 512 bytes. Both efivar_init() and
> efi_pstore_read() open-code the same workaround of resetting the size
> to 512 on every iteration.
>
> Introduce efivar_get_next_variable_safe() which keeps this quirk in a
> single place, resolving the TODO in efi-pstore.c.
>
> No functional change intended.
>
> Signed-off-by: Jonggeun Park <jakejgpark@gmail.com>
> ---
>  drivers/firmware/efi/efi-pstore.c | 16 +++++-----------
>  drivers/firmware/efi/vars.c       | 21 +++++++++++++++++++++
>  fs/efivarfs/vars.c                |  4 +---
>  include/linux/efi.h               |  4 ++++
>  4 files changed, 31 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/firmware/efi/efi-pstore.c 
> b/drivers/firmware/efi/efi-pstore.c
> index a5db3534f..a135d6e2f 100644
> --- a/drivers/firmware/efi/efi-pstore.c
> +++ b/drivers/firmware/efi/efi-pstore.c
> @@ -164,16 +164,6 @@ static ssize_t efi_pstore_read(struct 
> pstore_record *record)
>  	efi_status_t status;
> 
>  	for (;;) {
> -		/*
> -		 * A small set of old UEFI implementations reject sizes
> -		 * above a certain threshold, the lowest seen in the wild
> -		 * is 512.
> -		 *
> -		 * TODO: Commonize with the iteration implementation in
> -		 *       fs/efivarfs to keep all the quirks in one place.
> -		 */
> -		varname_size = 512;
> -
>  		/*
>  		 * If this is the first read() call in the pstore enumeration,
>  		 * varname will be the empty string, and the GetNextVariable()
> @@ -185,8 +175,12 @@ static ssize_t efi_pstore_read(struct 
> pstore_record *record)
>  		 * store varname in record->psi->data. Given that we only
>  		 * enumerate variables with the efi-pstore GUID, there is no
>  		 * need to record the guid return value.
> +		 *
> +		 * The 512-byte name buffer quirk is handled inside
> +		 * efivar_get_next_variable_safe().
>  		 */
> -		status = efivar_get_next_variable(&varname_size, varname, &guid);
> +		status = efivar_get_next_variable_safe(&varname_size, varname,
> +						       &guid);
>  		if (status == EFI_NOT_FOUND)
>  			return 0;
> 
> diff --git a/drivers/firmware/efi/vars.c b/drivers/firmware/efi/vars.c
> index 3700e9869..8e69f3632 100644
> --- a/drivers/firmware/efi/vars.c
> +++ b/drivers/firmware/efi/vars.c
> @@ -265,3 +265,24 @@ efi_status_t efivar_query_variable_info(u32 attr,
>  			remaining_space, max_variable_size);
>  }
>  EXPORT_SYMBOL_NS_GPL(efivar_query_variable_info, "EFIVAR");
> +
> +/*
> + * efivar_get_next_variable_safe() - enumerate the next name/vendor 
> pair
> + *
> + * Wrapper around efivar_get_next_variable() that keeps the 512-byte 
> name
> + * buffer quirk in one place. Some old UEFI implementations reject 
> name buffer
> + * sizes larger than 512 bytes (the lowest seen in the wild), so this 
> always
> + * requests 512 bytes; callers must provide a buffer of at least that 
> size.
> + *
> + * Must be called with efivars_lock held.
> + */
> +efi_status_t efivar_get_next_variable_safe(unsigned long *name_size,
> +					   efi_char16_t *name,
> +					   efi_guid_t *vendor)
> +{
> +	BUILD_BUG_ON(EFI_VAR_NAME_LEN < 512);
> +	*name_size = 512;
> +
> +	return efivar_get_next_variable(name_size, name, vendor);
> +}
> +EXPORT_SYMBOL_NS_GPL(efivar_get_next_variable_safe, "EFIVAR");

Don't add a new function here - just move the logic into the existing
efivar_get_next_variable(), which has only two callers.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v2] efi: vars: commonize the 512-byte name buffer quirk
  2026-08-15  7:48 [PATCH] efi: vars: commonize the 512-byte name buffer quirk Jonggeun Park
  2026-09-03  9:55 ` Ard Biesheuvel
@ 2026-09-03 11:55 ` Jonggeun Park
  2026-09-03 20:03   ` Ard Biesheuvel
  1 sibling, 1 reply; 5+ messages in thread
From: Jonggeun Park @ 2026-09-03 11:55 UTC (permalink / raw)
  To: ardb, jk
  Cc: kees, tony.luck, gpiccoli, ilias.apalodimas, linux-efi,
	linux-kernel, jakejgpark

Some old UEFI implementations reject GetNextVariableName() calls with
a name buffer size larger than 512 bytes. Both efivar_init() and
efi_pstore_read() open-code the same workaround of resetting the size
to 512 on every iteration.

Move this workaround into efivar_get_next_variable(), which keeps this
quirk in one place, resolving the TODO in efi-pstore.c.

No functional change intended.

Signed-off-by: Jonggeun Park <jakejgpark@gmail.com>
---
v2:
- Move the workaround into the existing efivar_get_next_variable().
---
 drivers/firmware/efi/efi-pstore.c | 10 ----------
 drivers/firmware/efi/vars.c       |  7 +++++++
 fs/efivarfs/vars.c                | 12 +-----------
 3 files changed, 8 insertions(+), 21 deletions(-)

diff --git a/drivers/firmware/efi/efi-pstore.c b/drivers/firmware/efi/efi-pstore.c
index a5db3534f..4f2594d08 100644
--- a/drivers/firmware/efi/efi-pstore.c
+++ b/drivers/firmware/efi/efi-pstore.c
@@ -164,16 +164,6 @@ static ssize_t efi_pstore_read(struct pstore_record *record)
 	efi_status_t status;
 
 	for (;;) {
-		/*
-		 * A small set of old UEFI implementations reject sizes
-		 * above a certain threshold, the lowest seen in the wild
-		 * is 512.
-		 *
-		 * TODO: Commonize with the iteration implementation in
-		 *       fs/efivarfs to keep all the quirks in one place.
-		 */
-		varname_size = 512;
-
 		/*
 		 * If this is the first read() call in the pstore enumeration,
 		 * varname will be the empty string, and the GetNextVariable()
diff --git a/drivers/firmware/efi/vars.c b/drivers/firmware/efi/vars.c
index 3700e9869..0f95fc60d 100644
--- a/drivers/firmware/efi/vars.c
+++ b/drivers/firmware/efi/vars.c
@@ -191,11 +191,18 @@ EXPORT_SYMBOL_NS_GPL(efivar_get_variable, "EFIVAR");
 /*
  * efivar_get_next_variable() - enumerate the next name/vendor pair
  *
+ * A small set of old UEFI implementations reject sizes above a certain
+ * threshold, the lowest seen in the wild is 512. Set the name buffer size
+ * to 512 on each call.
+ *
  * Must be called with efivars_lock held.
  */
 efi_status_t efivar_get_next_variable(unsigned long *name_size,
 				      efi_char16_t *name, efi_guid_t *vendor)
 {
+	BUILD_BUG_ON(EFI_VAR_NAME_LEN < 512);
+	*name_size = 512;
+
 	return __efivars->ops->get_next_variable(name_size, name, vendor);
 }
 EXPORT_SYMBOL_NS_GPL(efivar_get_next_variable, "EFIVAR");
diff --git a/fs/efivarfs/vars.c b/fs/efivarfs/vars.c
index 6833c3d24..5a01833a6 100644
--- a/fs/efivarfs/vars.c
+++ b/fs/efivarfs/vars.c
@@ -391,18 +391,8 @@ int efivar_init(int (*func)(efi_char16_t *, efi_guid_t, unsigned long, void *),
 	if (err)
 		goto free;
 
-	/*
-	 * A small set of old UEFI implementations reject sizes
-	 * above a certain threshold, the lowest seen in the wild
-	 * is 512.
-	 */
-
 	do {
-		variable_name_size = 512;
-		BUILD_BUG_ON(EFI_VAR_NAME_LEN < 512);
-
-		status = efivar_get_next_variable(&variable_name_size,
-						  variable_name,
+		status = efivar_get_next_variable(&variable_name_size, variable_name,
 						  &vendor_guid);
 		switch (status) {
 		case EFI_SUCCESS:
-- 
2.43.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] efi: vars: commonize the 512-byte name buffer quirk
  2026-09-03 11:55 ` [PATCH v2] " Jonggeun Park
@ 2026-09-03 20:03   ` Ard Biesheuvel
  2026-09-03 21:28     ` David Laight
  0 siblings, 1 reply; 5+ messages in thread
From: Ard Biesheuvel @ 2026-09-03 20:03 UTC (permalink / raw)
  To: Jonggeun Park, Jeremy Kerr
  Cc: Kees Cook, Tony Luck, Guilherme G. Piccoli, Ilias Apalodimas,
	linux-efi, linux-kernel

Thanks for respinning this.

Some additional thoughts below.

On Thu, 3 Sep 2026, at 13:55, Jonggeun Park wrote:
> Some old UEFI implementations reject GetNextVariableName() calls with
> a name buffer size larger than 512 bytes. Both efivar_init() and
> efi_pstore_read() open-code the same workaround of resetting the size
> to 512 on every iteration.
>
> Move this workaround into efivar_get_next_variable(), which keeps this
> quirk in one place, resolving the TODO in efi-pstore.c.
>
> No functional change intended.
>
> Signed-off-by: Jonggeun Park <jakejgpark@gmail.com>
> ---
> v2:
> - Move the workaround into the existing efivar_get_next_variable().
> ---
>  drivers/firmware/efi/efi-pstore.c | 10 ----------
>  drivers/firmware/efi/vars.c       |  7 +++++++
>  fs/efivarfs/vars.c                | 12 +-----------
>  3 files changed, 8 insertions(+), 21 deletions(-)
>
> diff --git a/drivers/firmware/efi/efi-pstore.c 
> b/drivers/firmware/efi/efi-pstore.c
> index a5db3534f..4f2594d08 100644
> --- a/drivers/firmware/efi/efi-pstore.c
> +++ b/drivers/firmware/efi/efi-pstore.c
> @@ -164,16 +164,6 @@ static ssize_t efi_pstore_read(struct 
> pstore_record *record)
>  	efi_status_t status;
> 
>  	for (;;) {
> -		/*
> -		 * A small set of old UEFI implementations reject sizes
> -		 * above a certain threshold, the lowest seen in the wild
> -		 * is 512.
> -		 *
> -		 * TODO: Commonize with the iteration implementation in
> -		 *       fs/efivarfs to keep all the quirks in one place.
> -		 */
> -		varname_size = 512;
> -
>  		/*
>  		 * If this is the first read() call in the pstore enumeration,
>  		 * varname will be the empty string, and the GetNextVariable()
> diff --git a/drivers/firmware/efi/vars.c b/drivers/firmware/efi/vars.c
> index 3700e9869..0f95fc60d 100644
> --- a/drivers/firmware/efi/vars.c
> +++ b/drivers/firmware/efi/vars.c
> @@ -191,11 +191,18 @@ EXPORT_SYMBOL_NS_GPL(efivar_get_variable, 
> "EFIVAR");
>  /*
>   * efivar_get_next_variable() - enumerate the next name/vendor pair
>   *
> + * A small set of old UEFI implementations reject sizes above a certain
> + * threshold, the lowest seen in the wild is 512. Set the name buffer 
> size
> + * to 512 on each call.
> + *
>   * Must be called with efivars_lock held.
>   */
>  efi_status_t efivar_get_next_variable(unsigned long *name_size,
>  				      efi_char16_t *name, efi_guid_t *vendor)
>  {
> +	BUILD_BUG_ON(EFI_VAR_NAME_LEN < 512);
> +	*name_size = 512;
> +

This should really be

  *name_size = min(*name_size, 512UL);

so that a smaller buffer size provided by the caller is respected.

That also removes the need for the BUILD_BUG_ON().

No need to send a v3, I can fix that up when applying.

>  	return __efivars->ops->get_next_variable(name_size, name, vendor);
>  }
>  EXPORT_SYMBOL_NS_GPL(efivar_get_next_variable, "EFIVAR");
> diff --git a/fs/efivarfs/vars.c b/fs/efivarfs/vars.c
> index 6833c3d24..5a01833a6 100644
> --- a/fs/efivarfs/vars.c
> +++ b/fs/efivarfs/vars.c
> @@ -391,18 +391,8 @@ int efivar_init(int (*func)(efi_char16_t *, 
> efi_guid_t, unsigned long, void *),
>  	if (err)
>  		goto free;
> 
> -	/*
> -	 * A small set of old UEFI implementations reject sizes
> -	 * above a certain threshold, the lowest seen in the wild
> -	 * is 512.
> -	 */
> -
>  	do {
> -		variable_name_size = 512;
> -		BUILD_BUG_ON(EFI_VAR_NAME_LEN < 512);
> -
> -		status = efivar_get_next_variable(&variable_name_size,
> -						  variable_name,
> +		status = efivar_get_next_variable(&variable_name_size, variable_name,
>  						  &vendor_guid);
>  		switch (status) {
>  		case EFI_SUCCESS:
> -- 
> 2.43.0

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] efi: vars: commonize the 512-byte name buffer quirk
  2026-09-03 20:03   ` Ard Biesheuvel
@ 2026-09-03 21:28     ` David Laight
  0 siblings, 0 replies; 5+ messages in thread
From: David Laight @ 2026-09-03 21:28 UTC (permalink / raw)
  To: Ard Biesheuvel
  Cc: Jonggeun Park, Jeremy Kerr, Kees Cook, Tony Luck,
	Guilherme G. Piccoli, Ilias Apalodimas, linux-efi, linux-kernel

On Thu, 03 Sep 2026 22:03:18 +0200
"Ard Biesheuvel" <ardb@kernel.org> wrote:

> Thanks for respinning this.
> 
> Some additional thoughts below.
> 
> On Thu, 3 Sep 2026, at 13:55, Jonggeun Park wrote:
> > Some old UEFI implementations reject GetNextVariableName() calls with
> > a name buffer size larger than 512 bytes. Both efivar_init() and
> > efi_pstore_read() open-code the same workaround of resetting the size
> > to 512 on every iteration.
> >
> > Move this workaround into efivar_get_next_variable(), which keeps this
> > quirk in one place, resolving the TODO in efi-pstore.c.
> >
> > No functional change intended.
> >
> > Signed-off-by: Jonggeun Park <jakejgpark@gmail.com>
> > ---
> > v2:
> > - Move the workaround into the existing efivar_get_next_variable().
> > ---
> >  drivers/firmware/efi/efi-pstore.c | 10 ----------
> >  drivers/firmware/efi/vars.c       |  7 +++++++
> >  fs/efivarfs/vars.c                | 12 +-----------
> >  3 files changed, 8 insertions(+), 21 deletions(-)
> >
> > diff --git a/drivers/firmware/efi/efi-pstore.c 
> > b/drivers/firmware/efi/efi-pstore.c
> > index a5db3534f..4f2594d08 100644
> > --- a/drivers/firmware/efi/efi-pstore.c
> > +++ b/drivers/firmware/efi/efi-pstore.c
> > @@ -164,16 +164,6 @@ static ssize_t efi_pstore_read(struct 
> > pstore_record *record)
> >  	efi_status_t status;
> > 
> >  	for (;;) {
> > -		/*
> > -		 * A small set of old UEFI implementations reject sizes
> > -		 * above a certain threshold, the lowest seen in the wild
> > -		 * is 512.
> > -		 *
> > -		 * TODO: Commonize with the iteration implementation in
> > -		 *       fs/efivarfs to keep all the quirks in one place.
> > -		 */
> > -		varname_size = 512;
> > -
> >  		/*
> >  		 * If this is the first read() call in the pstore enumeration,
> >  		 * varname will be the empty string, and the GetNextVariable()
> > diff --git a/drivers/firmware/efi/vars.c b/drivers/firmware/efi/vars.c
> > index 3700e9869..0f95fc60d 100644
> > --- a/drivers/firmware/efi/vars.c
> > +++ b/drivers/firmware/efi/vars.c
> > @@ -191,11 +191,18 @@ EXPORT_SYMBOL_NS_GPL(efivar_get_variable, 
> > "EFIVAR");
> >  /*
> >   * efivar_get_next_variable() - enumerate the next name/vendor pair
> >   *
> > + * A small set of old UEFI implementations reject sizes above a certain
> > + * threshold, the lowest seen in the wild is 512. Set the name buffer 
> > size
> > + * to 512 on each call.
> > + *
> >   * Must be called with efivars_lock held.
> >   */
> >  efi_status_t efivar_get_next_variable(unsigned long *name_size,
> >  				      efi_char16_t *name, efi_guid_t *vendor)
> >  {
> > +	BUILD_BUG_ON(EFI_VAR_NAME_LEN < 512);
> > +	*name_size = 512;
> > +  
> 
> This should really be
> 
>   *name_size = min(*name_size, 512UL);

You don't need the UL suffix.

> 
> so that a smaller buffer size provided by the caller is respected.
> 
> That also removes the need for the BUILD_BUG_ON().
> 
> No need to send a v3, I can fix that up when applying.
> 
> >  	return __efivars->ops->get_next_variable(name_size, name, vendor);
> >  }
> >  EXPORT_SYMBOL_NS_GPL(efivar_get_next_variable, "EFIVAR");
> > diff --git a/fs/efivarfs/vars.c b/fs/efivarfs/vars.c
> > index 6833c3d24..5a01833a6 100644
> > --- a/fs/efivarfs/vars.c
> > +++ b/fs/efivarfs/vars.c
> > @@ -391,18 +391,8 @@ int efivar_init(int (*func)(efi_char16_t *, 
> > efi_guid_t, unsigned long, void *),
> >  	if (err)
> >  		goto free;
> > 
> > -	/*
> > -	 * A small set of old UEFI implementations reject sizes
> > -	 * above a certain threshold, the lowest seen in the wild
> > -	 * is 512.
> > -	 */
> > -
> >  	do {
> > -		variable_name_size = 512;
> > -		BUILD_BUG_ON(EFI_VAR_NAME_LEN < 512);
> > -
> > -		status = efivar_get_next_variable(&variable_name_size,
> > -						  variable_name,
> > +		status = efivar_get_next_variable(&variable_name_size, variable_name,
> >  						  &vendor_guid);
> >  		switch (status) {
> >  		case EFI_SUCCESS:
> > -- 
> > 2.43.0  
> 


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2026-09-03 21:28 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-15  7:48 [PATCH] efi: vars: commonize the 512-byte name buffer quirk Jonggeun Park
2026-09-03  9:55 ` Ard Biesheuvel
2026-09-03 11:55 ` [PATCH v2] " Jonggeun Park
2026-09-03 20:03   ` Ard Biesheuvel
2026-09-03 21:28     ` David Laight

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox