From e402823ef3852704296cd775c58e4bc633c07f20 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Mon, 20 Jun 2016 15:49:32 -0700 Subject: elf.h: Add declarations for BPF The EM_BPF number has been officially assigned, though it has not yet been posted to the gabi webpage yet. * elf/elf.h (EM_BPF): New. (EM_NUM): Update. (R_BPF_NONE, R_BPF_MAP_FD): New. --- elf/elf.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'elf/elf.h') diff --git a/elf/elf.h b/elf/elf.h index 7fc09b9531..b6112d9d55 100644 --- a/elf/elf.h +++ b/elf/elf.h @@ -359,7 +359,9 @@ typedef struct /* reserved 225-242 */ #define EM_RISCV 243 /* RISC-V */ -#define EM_NUM 244 +#define EM_BPF 247 /* Linux BPF -- in-kernel virtual machine */ + +#define EM_NUM 248 /* Old spellings/synonyms. */ @@ -3675,6 +3677,10 @@ enum #define R_TILEGX_NUM 130 +/* BPF specific declarations. */ + +#define R_BPF_NONE 0 /* No reloc */ +#define R_BPF_MAP_FD 1 /* Map fd to pointer */ __END_DECLS -- cgit v1.2.1