public inbox for bpf@vger.kernel.org
 help / color / mirror / Atom feed
From: Anton Protopopov <a.s.protopopov@gmail.com>
To: Eduard Zingerman <eddyz87@gmail.com>
Cc: bpf@vger.kernel.org, Alexei Starovoitov <ast@kernel.org>,
	Andrii Nakryiko <andrii@kernel.org>,
	Anton Protopopov <aspsk@isovalent.com>,
	Daniel Borkmann <daniel@iogearbox.net>,
	Quentin Monnet <qmo@kernel.org>,
	Yonghong Song <yonghong.song@linux.dev>
Subject: Re: [PATCH v5 bpf-next 13/15] libbpf: support llvm-generated indirect jumps
Date: Fri, 3 Oct 2025 07:19:47 +0000	[thread overview]
Message-ID: <aN95EzJhLkH3M54Z@mail.gmail.com> (raw)
In-Reply-To: <b5fd31c3e703c8c84c6710f5536510fbce04b36f.camel@gmail.com>

On 25/10/02 02:01PM, Eduard Zingerman wrote:
> On Tue, 2025-09-30 at 12:51 +0000, Anton Protopopov wrote:
> > For v5 instruction set LLVM is allowed to generate indirect jumps for
> > switch statements and for 'goto *rX' assembly. Every such a jump will
> > be accompanied by necessary metadata, e.g. (`llvm-objdump -Sr ...`):
> > 
> >        0:       r2 = 0x0 ll
> >                 0000000000000030:  R_BPF_64_64  BPF.JT.0.0
> > 
> > Here BPF.JT.1.0 is a symbol residing in the .jumptables section:
> > 
> >     Symbol table:
> >        4: 0000000000000000   240 OBJECT  GLOBAL DEFAULT     4 BPF.JT.0.0
> > 
> > The -bpf-min-jump-table-entries llvm option may be used to control the
> > minimal size of a switch which will be converted to an indirect jumps.
> > 
> > Signed-off-by: Anton Protopopov <a.s.protopopov@gmail.com>
> > ---
> 
> I think structurally this is fine.
> Left a few nitpicks below.
> 
> >  tools/lib/bpf/libbpf.c        | 221 +++++++++++++++++++++++++++++++++-
> >  tools/lib/bpf/libbpf_probes.c |   4 +
> >  tools/lib/bpf/linker.c        |  10 +-
> >  3 files changed, 232 insertions(+), 3 deletions(-)
> > 
> > diff --git a/tools/lib/bpf/libbpf.c b/tools/lib/bpf/libbpf.c
> > index 083ec3ca4813..b6fbba1a42d5 100644
> > --- a/tools/lib/bpf/libbpf.c
> > +++ b/tools/lib/bpf/libbpf.c
> > @@ -192,6 +192,7 @@ static const char * const map_type_name[] = {
> >  	[BPF_MAP_TYPE_USER_RINGBUF]             = "user_ringbuf",
> >  	[BPF_MAP_TYPE_CGRP_STORAGE]		= "cgrp_storage",
> >  	[BPF_MAP_TYPE_ARENA]			= "arena",
> > +	[BPF_MAP_TYPE_INSN_ARRAY]		= "insn_array",
> >  };
> >  
> >  static const char * const prog_type_name[] = {
> > @@ -373,6 +374,7 @@ enum reloc_type {
> >  	RELO_EXTERN_CALL,
> >  	RELO_SUBPROG_ADDR,
> >  	RELO_CORE,
> > +	RELO_INSN_ARRAY,
> >  };
> >  
> >  struct reloc_desc {
> > @@ -383,7 +385,10 @@ struct reloc_desc {
> >  		struct {
> >  			int map_idx;
> >  			int sym_off;
> > -			int ext_idx;
> > +			union {
> > +				int ext_idx;
> > +				int sym_size;
> 
> Nit: maybe add a comment, stating when each alternative is active?

Sure.

> > +			};
> >  		};
> >  	};
> >  };
> > @@ -425,6 +430,11 @@ struct bpf_sec_def {
> >  	libbpf_prog_attach_fn_t prog_attach_fn;
> >  };
> >  
> > +struct bpf_light_subprog {
> > +	__u32 sec_insn_off;
> > +	__u32 sub_insn_off;
> > +};
> > +
> >  /*
> >   * bpf_prog should be a better name but it has been used in
> >   * linux/filter.h.
> > @@ -498,6 +508,9 @@ struct bpf_program {
> >  	__u32 line_info_cnt;
> >  	__u32 prog_flags;
> >  	__u8  hash[SHA256_DIGEST_LENGTH];
> > +
> > +	struct bpf_light_subprog *subprogs;
> > +	__u32 subprog_cnt;
> 
> Just to clarify: this cannot be an array of bpf_program pointers,
> because bpf_object__append_subprog_code() mutates subprog->sub_insn_off
> between bpf_object__reloc_code() and bpf_object__relocate_data()
> calls, right?

Yes, it's private (and just the data we need, thus "light")

> >  };
> >  
> >  struct bpf_struct_ops {
> > @@ -527,6 +540,7 @@ struct bpf_struct_ops {
> >  #define STRUCT_OPS_SEC ".struct_ops"
> >  #define STRUCT_OPS_LINK_SEC ".struct_ops.link"
> >  #define ARENA_SEC ".addr_space.1"
> > +#define JUMPTABLES_SEC ".jumptables"
> >  
> >  enum libbpf_map_type {
> >  	LIBBPF_MAP_UNSPEC,
> > @@ -671,6 +685,7 @@ struct elf_state {
> >  	int symbols_shndx;
> >  	bool has_st_ops;
> >  	int arena_data_shndx;
> > +	int jumptables_data_shndx;
> >  };
> >  
> >  struct usdt_manager;
> > @@ -742,6 +757,16 @@ struct bpf_object {
> >  	void *arena_data;
> >  	size_t arena_data_sz;
> >  
> > +	void *jumptables_data;
> > +	size_t jumptables_data_sz;
> > +
> > +	struct {
> > +		struct bpf_program *prog;
> > +		int off;
> > +		int fd;
> > +	} *jumptable_maps;
> > +	size_t jumptable_map_cnt;
> > +
> >  	struct kern_feature_cache *feat_cache;
> >  	char *token_path;
> >  	int token_fd;
> > @@ -768,6 +793,7 @@ void bpf_program__unload(struct bpf_program *prog)
> >  
> >  	zfree(&prog->func_info);
> >  	zfree(&prog->line_info);
> > +	zfree(&prog->subprogs);
> 
> Maybe move this to bpf_object__free_relocs()?
> `subprogs` are only needed during relocation resolution,
> and free_relocs() is called from bpf_object__load_progs().

I've put it here because it simplifies error paths. Say,
if realloc for subprogs failed, then bpf_object__free_relocs()
will not be called, but bpf_program__unload() will be.

> >  }
> >  
> >  static void bpf_program__exit(struct bpf_program *prog)
> > @@ -3946,6 +3972,13 @@ static int bpf_object__elf_collect(struct bpf_object *obj)
> >  			} else if (strcmp(name, ARENA_SEC) == 0) {
> >  				obj->efile.arena_data = data;
> >  				obj->efile.arena_data_shndx = idx;
> > +			} else if (strcmp(name, JUMPTABLES_SEC) == 0) {
> > +				obj->jumptables_data = malloc(data->d_size);
> > +				if (!obj->jumptables_data)
> > +					return -ENOMEM;
> > +				memcpy(obj->jumptables_data, data->d_buf, data->d_size);
> > +				obj->jumptables_data_sz = data->d_size;
> > +				obj->efile.jumptables_data_shndx = idx;
> >  			} else {
> >  				pr_info("elf: skipping unrecognized data section(%d) %s\n",
> >  					idx, name);
> > @@ -4638,6 +4671,16 @@ static int bpf_program__record_reloc(struct bpf_program *prog,
> >  		return 0;
> >  	}
> >  
> > +	/* jump table data relocation */
> > +	if (shdr_idx == obj->efile.jumptables_data_shndx) {
> > +		reloc_desc->type = RELO_INSN_ARRAY;
> > +		reloc_desc->insn_idx = insn_idx;
> > +		reloc_desc->map_idx = -1;
> > +		reloc_desc->sym_off = sym->st_value;
> > +		reloc_desc->sym_size = sym->st_size;
> > +		return 0;
> > +	}
> > +
> >  	/* generic map reference relocation */
> >  	if (type == LIBBPF_MAP_UNSPEC) {
> >  		if (!bpf_object__shndx_is_maps(obj, shdr_idx)) {
> > @@ -6148,6 +6191,131 @@ static void poison_kfunc_call(struct bpf_program *prog, int relo_idx,
> >  	insn->imm = POISON_CALL_KFUNC_BASE + ext_idx;
> >  }
> >  
> > +static int find_jt_map(struct bpf_object *obj, struct bpf_program *prog, int off)
> > +{
> > +	size_t i;
> > +
> > +	for (i = 0; i < obj->jumptable_map_cnt; i++) {
> > +		/*
> > +		 * This might happen that same offset is used for two different
> > +		 * programs (as jump tables can be the same). However, for
> > +		 * different programs different maps should be created.
> > +		 */
> > +		if (obj->jumptable_maps[i].off == off &&
> > +		    obj->jumptable_maps[i].prog == prog)
> > +			return obj->jumptable_maps[i].fd;
> > +	}
> > +
> > +	return -ENOENT;
> > +}
> > +
> > +static int add_jt_map(struct bpf_object *obj, struct bpf_program *prog, int off, int map_fd)
> > +{
> > +	size_t new_cnt = obj->jumptable_map_cnt + 1;
> > +	size_t size = sizeof(obj->jumptable_maps[0]);
> > +	void *tmp;
> > +
> > +	tmp = libbpf_reallocarray(obj->jumptable_maps, new_cnt, size);
> > +	if (!tmp)
> > +		return -ENOMEM;
> > +
> > +	obj->jumptable_maps = tmp;
> > +	obj->jumptable_maps[new_cnt - 1].prog = prog;
> > +	obj->jumptable_maps[new_cnt - 1].off = off;
>                                          ^^^
> Nit:             Could you please rename this and corresponding
>                  parameters of `{create,add}_jt_map` to `sym_off`?

Yes, sure.

> > +	obj->jumptable_maps[new_cnt - 1].fd = map_fd;
> > +	obj->jumptable_map_cnt = new_cnt;
> > +
> > +	return 0;
> > +}
> > +
> > +static int create_jt_map(struct bpf_object *obj, struct bpf_program *prog,
> > +			 int off, int size, int adjust_off)
> > +{
> > +	const __u32 value_size = sizeof(struct bpf_insn_array_value);
> > +	const __u32 max_entries = size / value_size;
> > +	struct bpf_insn_array_value val = {};
> > +	int map_fd, err;
> > +	__u64 xlated_off;
> > +	__u64 *jt;
> > +	__u32 i;
> > +
> > +	map_fd = find_jt_map(obj, prog, off);
> > +	if (map_fd >= 0)
> > +		return map_fd;
> > +
> > +	map_fd = bpf_map_create(BPF_MAP_TYPE_INSN_ARRAY, ".jumptables",
> > +				4, value_size, max_entries, NULL);
> > +	if (map_fd < 0)
> > +		return map_fd;
> > +
> > +	if (!obj->jumptables_data) {
> > +		pr_warn("map '.jumptables': ELF file is missing jump table data\n");
> > +		err = -EINVAL;
> > +		goto err_close;
> > +	}
> > +	if (off + size > obj->jumptables_data_sz) {
> > +		pr_warn("jumptables_data size is %zd, trying to access %d\n",
> > +			obj->jumptables_data_sz, off + size);
> > +		err = -EINVAL;
> > +		goto err_close;
> > +	}
> 
> Maybe also check that `size` and `off` are 8-bytes aligned?

Will do, thanks.

> > +
> > +	jt = (__u64 *)(obj->jumptables_data + off);
> > +	for (i = 0; i < max_entries; i++) {
> > +		/*
> > +		 * LLVM-generated jump tables contain u64 records, however
> > +		 * should contain values that fit in u32.
> > +		 * The adjust_off provided by the caller adjusts the offset to
> > +		 * be relative to the beginning of the main function
> > +		 */
> > +		xlated_off = jt[i]/sizeof(struct bpf_insn) + adjust_off;
> > +		if (xlated_off > UINT32_MAX) {
> > +			pr_warn("invalid jump table value %llx at offset %d (adjust_off %d)\n",
> > +				jt[i], off + i, adjust_off);
> > +			err = -EINVAL;
> > +			goto err_close;
> > +		}
> > +
> > +		val.xlated_off = xlated_off;
> > +		err = bpf_map_update_elem(map_fd, &i, &val, 0);
> > +		if (err)
> > +			goto err_close;
> > +	}
> > +
> > +	err = bpf_map_freeze(map_fd);
> > +	if (err)
> > +		goto err_close;
> > +
> > +	err = add_jt_map(obj, prog, off, map_fd);
> > +	if (err)
> > +		goto err_close;
> > +
> > +	return map_fd;
> > +
> > +err_close:
> > +	close(map_fd);
> > +	return err;
> > +}
> > +
> > +/*
> > + * In LLVM the .jumptables section contains jump tables entries relative to the
> > + * section start. The BPF kernel-side code expects jump table offsets relative
> > + * to the beginning of the program (passed in bpf(BPF_PROG_LOAD)). This helper
> > + * computes a delta to be added when creating a map.
> > + */
> > +static int jt_adjust_off(struct bpf_program *prog, int insn_idx)
> > +{
> > +	int i;
> > +
> > +	for (i = prog->subprog_cnt - 1; i >= 0; i--) {
> > +		if (insn_idx >= prog->subprogs[i].sub_insn_off)
> > +			return prog->subprogs[i].sub_insn_off - prog->subprogs[i].sec_insn_off;
> > +	}
> > +
> > +	return -prog->sec_insn_off;
> > +}
> 
> Nit: the docstring for sub_insn_off says that it is 0 for main sub-program.

But this is not sub in the last line, it's sec?

Anyway, I got it that this is still not super developer-friendly
(Andrii also had questions around here). I will take another look,
thanks for the suggestions below.

>      meaning that last return is unreachable. I'd rewrite the above as follows:
> 
>        static int jt_adjust_off(struct bpf_program *prog, int insn_idx)
>        {
>          int i;
> 
>          for (i = prog->subprog_cnt - 1; i >= 0; i--)
>                 if (insn_idx >= prog->subprogs[i].sub_insn_off)
>                         break;
> 
>          return prog->subprogs[i].sub_insn_off - prog->subprogs[i].sec_insn_off;
>        }
> 
>     Or rename this thing to find_subprog_idx(), pass relo object into
>     create_jt_map(), call find_subprog_idx() there, and do the following:
> 
>       xlated_off = jt[i] / sizeof(struct bpf_insn);
>       /* make xlated_off relative to subprogram start */
>       xlated_off -= prog->subprogs[subprog_idx].sec_insn_off;
>       /* make xlated_off relative to main subprogram start */
>       xlated_off += prog->subprogs[subprog_idx].sub_insn_off;
> 
>    I think it's easier to grasp what this adjustment does this way.
> 
> > +
> > +
> >  /* Relocate data references within program code:
> >   *  - map references;
> >   *  - global variable references;
> > @@ -6239,6 +6407,21 @@ bpf_object__relocate_data(struct bpf_object *obj, struct bpf_program *prog)
> >  		case RELO_CORE:
> >  			/* will be handled by bpf_program_record_relos() */
> >  			break;
> > +		case RELO_INSN_ARRAY: {
> > +			int map_fd;
> > +
> > +			map_fd = create_jt_map(obj, prog, relo->sym_off, relo->sym_size,
> > +					       jt_adjust_off(prog, relo->insn_idx));
> > +			if (map_fd < 0) {
> > +				pr_warn("prog '%s': relo #%d: can't create jump table: sym_off %u\n",
> > +						prog->name, i, relo->sym_off);
> > +				return map_fd;
> > +			}
> > +			insn[0].src_reg = BPF_PSEUDO_MAP_VALUE;
> > +			insn->imm = map_fd;
> > +			insn->off = 0;
> > +		}
> > +			break;
> >  		default:
> >  			pr_warn("prog '%s': relo #%d: bad relo type %d\n",
> >  				prog->name, i, relo->type);
> > @@ -6436,6 +6619,24 @@ static int append_subprog_relos(struct bpf_program *main_prog, struct bpf_progra
> >  	return 0;
> >  }
> >  
> > +static int save_subprog_offsets(struct bpf_program *main_prog, struct bpf_program *subprog)
> > +{
> > +	size_t size = sizeof(main_prog->subprogs[0]);
> > +	int new_cnt = main_prog->subprog_cnt + 1;
> > +	void *tmp;
> > +
> > +	tmp = libbpf_reallocarray(main_prog->subprogs, new_cnt, size);
> > +	if (!tmp)
> > +		return -ENOMEM;
> > +
> > +	main_prog->subprogs = tmp;
> > +	main_prog->subprogs[new_cnt - 1].sec_insn_off = subprog->sec_insn_off;
> > +	main_prog->subprogs[new_cnt - 1].sub_insn_off = subprog->sub_insn_off;
> > +	main_prog->subprog_cnt = new_cnt;
> > +
> > +	return 0;
> > +}
> > +
> >  static int
> >  bpf_object__append_subprog_code(struct bpf_object *obj, struct bpf_program *main_prog,
> >  				struct bpf_program *subprog)
> > @@ -6465,6 +6666,15 @@ bpf_object__append_subprog_code(struct bpf_object *obj, struct bpf_program *main
> >  	err = append_subprog_relos(main_prog, subprog);
> >  	if (err)
> >  		return err;
> > +
> > +	/* Save subprogram offsets */
> > +	err = save_subprog_offsets(main_prog, subprog);
> > +	if (err) {
> > +		pr_warn("prog '%s': failed to add subprog offsets: %s\n",
> > +			main_prog->name, errstr(err));
> > +		return err;
> > +	}
> > +
> >  	return 0;
> >  }
> >  
> > @@ -9232,6 +9442,15 @@ void bpf_object__close(struct bpf_object *obj)
> >  
> >  	zfree(&obj->arena_data);
> >  
> > +	zfree(&obj->jumptables_data);
> > +	obj->jumptables_data_sz = 0;
> > +
> > +	if (obj->jumptable_maps && obj->jumptable_map_cnt) {
> > +		for (i = 0; i < obj->jumptable_map_cnt; i++)
> > +			close(obj->jumptable_maps[i].fd);
> > +	}
> > +	zfree(&obj->jumptable_maps);
> > +
> >  	free(obj);
> >  }
> >  
> > diff --git a/tools/lib/bpf/libbpf_probes.c b/tools/lib/bpf/libbpf_probes.c
> > index 9dfbe7750f56..bccf4bb747e1 100644
> > --- a/tools/lib/bpf/libbpf_probes.c
> > +++ b/tools/lib/bpf/libbpf_probes.c
> > @@ -364,6 +364,10 @@ static int probe_map_create(enum bpf_map_type map_type)
> >  	case BPF_MAP_TYPE_SOCKHASH:
> >  	case BPF_MAP_TYPE_REUSEPORT_SOCKARRAY:
> >  		break;
> > +	case BPF_MAP_TYPE_INSN_ARRAY:
> > +		key_size	= sizeof(__u32);
> > +		value_size	= sizeof(struct bpf_insn_array_value);
> > +		break;
> >  	case BPF_MAP_TYPE_UNSPEC:
> >  	default:
> >  		return -EOPNOTSUPP;
> > diff --git a/tools/lib/bpf/linker.c b/tools/lib/bpf/linker.c
> > index a469e5d4fee7..60dbf3edfa54 100644
> > --- a/tools/lib/bpf/linker.c
> > +++ b/tools/lib/bpf/linker.c
> > @@ -28,6 +28,8 @@
> >  #include "str_error.h"
> >  
> >  #define BTF_EXTERN_SEC ".extern"
> > +#define JUMPTABLES_SEC ".jumptables"
> > +#define JUMPTABLES_REL_SEC ".rel.jumptables"
> >  
> >  struct src_sec {
> >  	const char *sec_name;
> > @@ -2026,6 +2028,9 @@ static int linker_append_elf_sym(struct bpf_linker *linker, struct src_obj *obj,
> >  			obj->sym_map[src_sym_idx] = dst_sec->sec_sym_idx;
> >  			return 0;
> >  		}
> > +
> > +		if (strcmp(src_sec->sec_name, JUMPTABLES_SEC) == 0)
> > +			goto add_sym;
> >  	}
> >  
> >  	if (sym_bind == STB_LOCAL)
> > @@ -2272,8 +2277,9 @@ static int linker_append_elf_relos(struct bpf_linker *linker, struct src_obj *ob
> >  						insn->imm += sec->dst_off / sizeof(struct bpf_insn);
> >  					else
> >  						insn->imm += sec->dst_off;
> > -				} else {
> > -					pr_warn("relocation against STT_SECTION in non-exec section is not supported!\n");
> > +				} else if (strcmp(src_sec->sec_name, JUMPTABLES_REL_SEC) != 0) {
> > +					pr_warn("relocation against STT_SECTION in section %s is not supported!\n",
> > +						src_sec->sec_name);
> >  					return -EINVAL;
> >  				}
> >  			}

  reply	other threads:[~2025-10-03  7:13 UTC|newest]

Thread overview: 48+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-30 12:50 [PATCH v5 bpf-next 00/15] BPF indirect jumps Anton Protopopov
2025-09-30 12:50 ` [PATCH v5 bpf-next 01/15] bpf: fix the return value of push_stack Anton Protopopov
2025-09-30 12:50 ` [PATCH v5 bpf-next 02/15] bpf: save the start of functions in bpf_prog_aux Anton Protopopov
2025-10-01 21:53   ` Eduard Zingerman
2025-09-30 12:50 ` [PATCH v5 bpf-next 03/15] bpf: generalize and export map_get_next_key for arrays Anton Protopopov
2025-10-01 21:56   ` Eduard Zingerman
2025-09-30 12:51 ` [PATCH v5 bpf-next 04/15] bpf, x86: add new map type: instructions array Anton Protopopov
2025-10-03  0:50   ` Eduard Zingerman
2025-10-03  7:39     ` Anton Protopopov
2025-10-03  8:48       ` Eduard Zingerman
2025-10-03  9:13         ` Anton Protopopov
2025-10-03 17:22           ` Eduard Zingerman
2025-09-30 12:51 ` [PATCH v5 bpf-next 05/15] selftests/bpf: add selftests for new insn_array map Anton Protopopov
2025-10-03  1:16   ` Eduard Zingerman
2025-10-03  7:46     ` Anton Protopopov
2025-10-03  8:15       ` Eduard Zingerman
2025-09-30 12:51 ` [PATCH v5 bpf-next 06/15] bpf: support instructions arrays with constants blinding Anton Protopopov
2025-10-03 17:38   ` Eduard Zingerman
2025-09-30 12:51 ` [PATCH v5 bpf-next 07/15] selftests/bpf: test instructions arrays with blinding Anton Protopopov
2025-10-03  9:00   ` Eduard Zingerman
2025-09-30 12:51 ` [PATCH v5 bpf-next 08/15] bpf, x86: allow indirect jumps to r8...r15 Anton Protopopov
2025-10-01 22:03   ` Eduard Zingerman
2025-09-30 12:51 ` [PATCH v5 bpf-next 09/15] bpf: make bpf_insn_successors to return a pointer Anton Protopopov
2025-10-01 22:39   ` Eduard Zingerman
2025-10-01 23:49     ` Alexei Starovoitov
2025-10-02  8:19       ` Anton Protopopov
2025-10-02 16:07         ` Alexei Starovoitov
2025-10-02  8:16     ` Anton Protopopov
2025-10-02 19:35       ` Eduard Zingerman
2025-09-30 12:51 ` [PATCH v5 bpf-next 10/15] bpf, x86: add support for indirect jumps Anton Protopopov
2025-10-02  0:15   ` Eduard Zingerman
2025-10-02  9:27     ` Anton Protopopov
2025-10-02 19:52       ` Eduard Zingerman
2025-10-03  7:04         ` Anton Protopopov
2025-09-30 12:51 ` [PATCH v5 bpf-next 11/15] bpf: disasm: add support for BPF_JMP|BPF_JA|BPF_X Anton Protopopov
2025-10-02  0:18   ` Eduard Zingerman
2025-10-02  7:49     ` Anton Protopopov
2025-09-30 12:51 ` [PATCH v5 bpf-next 12/15] libbpf: fix formatting of bpf_object__append_subprog_code Anton Protopopov
2025-09-30 12:51 ` [PATCH v5 bpf-next 13/15] libbpf: support llvm-generated indirect jumps Anton Protopopov
2025-10-02 21:01   ` Eduard Zingerman
2025-10-03  7:19     ` Anton Protopopov [this message]
2025-10-15 15:32   ` Yonghong Song
2025-10-15 17:35     ` Anton Protopopov
2025-09-30 12:51 ` [PATCH v5 bpf-next 14/15] bpftool: Recognize insn_array map type Anton Protopopov
2025-09-30 12:51 ` [PATCH v5 bpf-next 15/15] selftests/bpf: add selftests for indirect jumps Anton Protopopov
2025-10-02 21:07   ` Eduard Zingerman
2025-10-03  7:22     ` Anton Protopopov
2025-10-03  7:29       ` Eduard Zingerman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=aN95EzJhLkH3M54Z@mail.gmail.com \
    --to=a.s.protopopov@gmail.com \
    --cc=andrii@kernel.org \
    --cc=aspsk@isovalent.com \
    --cc=ast@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=eddyz87@gmail.com \
    --cc=qmo@kernel.org \
    --cc=yonghong.song@linux.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox