All of lore.kernel.org
 help / color / mirror / Atom feed
From: AKASHI Takahiro <takahiro.akashi@linaro.org>
To: Stefan Herbrechtsmeier <stefan.herbrechtsmeier-oss@weidmueller.com>
Cc: u-boot@lists.denx.de,
	Malte Schmidt <malte.schmidt-oss@weidmueller.com>,
	Malte Schmidt <malte.schmidt@weidmueller.com>,
	Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>,
	Etienne Carriere <etienne.carriere@linaro.org>,
	Ilias Apalodimas <ilias.apalodimas@linaro.org>,
	Masahisa Kojima <masahisa.kojima@linaro.org>,
	Sughosh Ganu <sughosh.ganu@linaro.org>
Subject: Re: [PATCH v1] mkeficapsule: fix efi_firmware_management_capsule_header data type
Date: Sat, 17 Jun 2023 09:33:00 +0900	[thread overview]
Message-ID: <ZIz_PBm5vKSr3MHo@laputa> (raw)
In-Reply-To: <20230616082805.4652-1-stefan.herbrechtsmeier-oss@weidmueller.com>

On Fri, Jun 16, 2023 at 10:28:05AM +0200, Stefan Herbrechtsmeier wrote:
> From: Malte Schmidt <malte.schmidt@weidmueller.com>
> 
> The data type of item_offset_list shall be UINT64 according to the UEFI [1]
> specifications.
> 
> In include/efi_api.h the correct data type is used. The bug was probably
> never noticed because of little endianness.

Thank you.
Just in case, tools/eficapsule.h has the same struct definition
because I didn't want to include U-Boot's corresponding header
to avoid including a conflicting header file.

Please fix it as well.

-Takahiro Akashi

> 
> [1] https://uefi.org/specs/UEFI/2.10/index.html
> 
> Signed-off-by: Malte Schmidt <malte.schmidt@weidmueller.com>
> 
> Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
> ---
> 
>  tools/eficapsule.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/eficapsule.h b/tools/eficapsule.h
> index 753fb73313..2099a2e9b8 100644
> --- a/tools/eficapsule.h
> +++ b/tools/eficapsule.h
> @@ -63,7 +63,7 @@ struct efi_firmware_management_capsule_header {
>  	uint32_t version;
>  	uint16_t embedded_driver_count;
>  	uint16_t payload_item_count;
> -	uint32_t item_offset_list[];
> +	uint64_t item_offset_list[];
>  } __packed;
>  
>  /* image_capsule_support */
> -- 
> 2.30.2
> 

  reply	other threads:[~2023-06-17  0:33 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-16  8:28 [PATCH v1] mkeficapsule: fix efi_firmware_management_capsule_header data type Stefan Herbrechtsmeier
2023-06-17  0:33 ` AKASHI Takahiro [this message]
2023-06-19  9:45   ` Schmidt, Malte
2023-06-19  9:53     ` AKASHI Takahiro
2023-06-19 10:37       ` Schmidt, Malte
2023-06-19 10:45         ` AKASHI Takahiro
2023-07-09  8:31 ` Heinrich Schuchardt
2023-07-10  6:26   ` AKASHI Takahiro
2023-07-10  6:41     ` Heinrich Schuchardt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ZIz_PBm5vKSr3MHo@laputa \
    --to=takahiro.akashi@linaro.org \
    --cc=etienne.carriere@linaro.org \
    --cc=ilias.apalodimas@linaro.org \
    --cc=malte.schmidt-oss@weidmueller.com \
    --cc=malte.schmidt@weidmueller.com \
    --cc=masahisa.kojima@linaro.org \
    --cc=stefan.herbrechtsmeier-oss@weidmueller.com \
    --cc=stefan.herbrechtsmeier@weidmueller.com \
    --cc=sughosh.ganu@linaro.org \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.