Re: [PATCH 16/24] ARM64:ILP32: Support core dump for ILP32

From: Catalin Marinas
Date: Wed Oct 01 2014 - 09:22:17 EST


On Wed, Sep 03, 2014 at 10:19:10PM +0100, Andrew Pinski wrote:
> +/*
> + * If ILP32 is turned on, we want to define the compat_elf_greg_t to the non compat
> + * one and define PR_REG_SIZE/PRSTATUS_SIZE/SET_PR_FPVALID so we pick up the correct
> + * ones for AARCH32.
> + */
> +#ifdef CONFIG_ARM64_ILP32
> +typedef elf_greg_t compat_elf_greg_t;
> +typedef elf_gregset_t compat_elf_gregset_t;
> +#define COMPAT_PR_REG_SIZE(S) (is_a32_compat_task() ? 72 : 272)
> +#define COMPAT_PRSTATUS_SIZE(S) (is_a32_compat_task() ? 124 : 352)

Could you not use some sizeof() here instead of these magic numbers?

--
Catalin
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/