Re: [PATCH] openrisc: Add support for more module relocations

From: Stafford Horne
Date: Thu Apr 11 2024 - 13:23:16 EST


On Thu, Apr 11, 2024 at 02:12:59PM +0200, Geert Uytterhoeven wrote:
> Hi Stafford,
>
> On Wed, Apr 10, 2024 at 10:52 PM Stafford Horne <shorne@xxxxxxxxx> wrote:
> > This patch adds the relocations. Note, we use the old naming R_OR32_*
> > instead or the new naming R_OR1K_* to avoid change as this header is
> > exported as a user api.
>
> > --- a/arch/openrisc/include/uapi/asm/elf.h
> > +++ b/arch/openrisc/include/uapi/asm/elf.h
> > @@ -43,6 +43,8 @@
> > #define R_OR32_JUMPTARG 6
> > #define R_OR32_VTINHERIT 7
> > #define R_OR32_VTENTRY 8
> > +#define R_OR32_AHI16 35
> > +#define R_OR32_SLO16 39
>
> Would it make sense to switch to the new names, e.g.
>
> #define R_OR1K_NONE 0
>
> and add definitions for backwards compatibility?
>
> #define R_OR32_NONE R_OR1K_NONE
>

Hi Geert,

Actually I had a patch doing this and added all 38 or so relocation definitions.
But I dropped it at the last moment in favor of simplicity.

Let me rework it and add it back.

-Stafford