diff options
author | Mark Wielaard <mark@klomp.org> | 2018-06-16 23:34:13 +0200 |
---|---|---|
committer | Mark Wielaard <mark@klomp.org> | 2018-06-21 18:38:06 +0200 |
commit | 61ab61c2fdf23875a473281d9711ae35473d93f7 (patch) | |
tree | e56ecd29e740c34a20a27b06104cef61546a428b /elf/elf.h | |
parent | f496b28e61d0342f579bf794c71b80e9c7d0b1b5 (diff) | |
download | glibc-61ab61c2fdf23875a473281d9711ae35473d93f7.tar glibc-61ab61c2fdf23875a473281d9711ae35473d93f7.tar.gz glibc-61ab61c2fdf23875a473281d9711ae35473d93f7.tar.bz2 glibc-61ab61c2fdf23875a473281d9711ae35473d93f7.zip |
elf.h: Add BPF relocation types.
The BPF ELF format has new relocation types R_BPF_64_64 and R_BPF_64_32.
The existing R_BPF_MAP_FD was an extension that never got implemented.
Remove it, because the constant conflicts with the official R_BPF_64_64.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'elf/elf.h')
-rw-r--r-- | elf/elf.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3850,7 +3850,8 @@ enum /* BPF specific declarations. */ #define R_BPF_NONE 0 /* No reloc */ -#define R_BPF_MAP_FD 1 /* Map fd to pointer */ +#define R_BPF_64_64 1 +#define R_BPF_64_32 10 /* Imagination Meta specific relocations. */ |