[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v4 10/13] error: Use format code PRIxGRUB_UINT64_T for 64-bit
From: |
Daniel Kiper |
Subject: |
Re: [PATCH v4 10/13] error: Use format code PRIxGRUB_UINT64_T for 64-bit arg in grub_error |
Date: |
Sat, 27 Feb 2021 12:48:11 +0100 |
User-agent: |
NeoMutt/20170113 (1.7.2) |
On Thu, Feb 18, 2021 at 08:47:11PM -0600, Glenn Washburn wrote:
> The macro ELF_R_TYPE does not change the underlying type. Here its argument
> is a 64-bit Elf64_Xword. Make sure the format code matches.
>
> For the riscv architecture, rel->r_info could be either Elf32_Xword or
> Elf64_Xword depending on if 32 or 64-bit risc is being built. So cast to
> 64-bit value regardless.
>
> Signed-off-by: Glenn Washburn <development@efficientek.com>
> ---
> grub-core/efiemu/i386/loadcore64.c | 3 ++-
> grub-core/kern/arm64/dl.c | 3 ++-
> grub-core/kern/ia64/dl.c | 3 ++-
> grub-core/kern/riscv/dl.c | 5 +++--
> grub-core/kern/sparc64/dl.c | 3 ++-
> grub-core/kern/x86_64/dl.c | 3 ++-
> 6 files changed, 13 insertions(+), 7 deletions(-)
>
> diff --git a/grub-core/efiemu/i386/loadcore64.c
> b/grub-core/efiemu/i386/loadcore64.c
> index 18facf47f..3e9a71cfd 100644
> --- a/grub-core/efiemu/i386/loadcore64.c
> +++ b/grub-core/efiemu/i386/loadcore64.c
> @@ -122,7 +122,8 @@ grub_arch_efiemu_relocate_symbols64
> (grub_efiemu_segment_t segs,
> break;
> default:
> return grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET,
> - N_("relocation 0x%x is not implemented
> yet"),
> + N_("relocation 0x%"PRIxGRUB_UINT64_T
Next time please add space between '"' and PRIxGRUB_UINT64_T.
I will fix this before committing.
> + " is not implemented yet"),
> ELF_R_TYPE (rel->r_info));
> }
> }
> diff --git a/grub-core/kern/arm64/dl.c b/grub-core/kern/arm64/dl.c
> index fb0337319..b04fed18a 100644
> --- a/grub-core/kern/arm64/dl.c
> +++ b/grub-core/kern/arm64/dl.c
> @@ -184,7 +184,8 @@ grub_arch_dl_relocate_symbols (grub_dl_t mod, void *ehdr,
>
> default:
> return grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET,
> - N_("relocation 0x%x is not implemented yet"),
> + N_("relocation 0x%"PRIxGRUB_UINT64_T
Ditto and below...
> + " is not implemented yet"),
> ELF_R_TYPE (rel->r_info));
> }
> }
> diff --git a/grub-core/kern/ia64/dl.c b/grub-core/kern/ia64/dl.c
> index ebcf31629..ddf240976 100644
> --- a/grub-core/kern/ia64/dl.c
> +++ b/grub-core/kern/ia64/dl.c
> @@ -137,7 +137,8 @@ grub_arch_dl_relocate_symbols (grub_dl_t mod, void *ehdr,
> break;
> default:
> return grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET,
> - N_("relocation 0x%x is not implemented yet"),
> + N_("relocation 0x%"PRIxGRUB_UINT64_T
> + " is not implemented yet"),
> ELF_R_TYPE (rel->r_info));
> }
> }
> diff --git a/grub-core/kern/riscv/dl.c b/grub-core/kern/riscv/dl.c
> index 6fb8385ef..77f5b7648 100644
> --- a/grub-core/kern/riscv/dl.c
> +++ b/grub-core/kern/riscv/dl.c
> @@ -331,8 +331,9 @@ grub_arch_dl_relocate_symbols (grub_dl_t mod, void *ehdr,
> break;
> default:
> return grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET,
> - N_("relocation 0x%x is not implemented yet"),
> - ELF_R_TYPE (rel->r_info));
> + N_("relocation 0x%"PRIxGRUB_UINT64_T
> + " is not implemented yet"),
> + (grub_uint64_t)ELF_R_TYPE (rel->r_info));
Missing space between "(grub_uint64_t)" and ELF_R_TYPE().
Daniel
- [PATCH v4 01/13] misc: Format string for grub_error should be a literal, (continued)
- [PATCH v4 01/13] misc: Format string for grub_error should be a literal, Glenn Washburn, 2021/02/18
- [PATCH v4 02/13] error: grub_error missing format string argument, Glenn Washburn, 2021/02/18
- [PATCH v4 04/13] dmraid_nvidia: Format string error in grub_error, Glenn Washburn, 2021/02/18
- [PATCH v4 03/13] error: grub_error format string add missing format code, Glenn Washburn, 2021/02/18
- [PATCH v4 08/13] error: Use %p format code for pointer types, Glenn Washburn, 2021/02/18
- [PATCH v4 07/13] efi: Format string error in grub_error, Glenn Washburn, 2021/02/18
- [PATCH v4 06/13] pgp: Format code for grub_error is incorrect, Glenn Washburn, 2021/02/18
- [PATCH v4 10/13] error: Use format code PRIxGRUB_UINT64_T for 64-bit arg in grub_error, Glenn Washburn, 2021/02/18
- Re: [PATCH v4 10/13] error: Use format code PRIxGRUB_UINT64_T for 64-bit arg in grub_error,
Daniel Kiper <=
- [PATCH v4 09/13] error: Use format code PRIxGRUB_UINT64_T for 64-bit uint argument in grub_error, Glenn Washburn, 2021/02/18
- [PATCH v4 13/13] error: Do compile-time format string checking on grub_error, Glenn Washburn, 2021/02/18
- [PATCH v4 05/13] grub_error: Use format code PRIuGRUB_SIZE for variables of type grub_size_t, Glenn Washburn, 2021/02/18
- [PATCH v4 12/13] error: Use format code llu for 64-bit uint bp->blk_prop in grub_error, Glenn Washburn, 2021/02/18
- [PATCH v4 11/13] error: Use format code PRIuGRUB_UINT64_T for 64-bit typed fileblock in grub_error, Glenn Washburn, 2021/02/18
- Re: [PATCH v4 00/13] error: Do compile-time format string checking on grub_error, Daniel Kiper, 2021/02/27