Home
last modified time | relevance | path

Searched refs:BPF_MAXINSNS (Results 1 – 9 of 9) sorted by relevance

/tools/include/uapi/linux/
Dbpf_common.h53 #ifndef BPF_MAXINSNS
54 #define BPF_MAXINSNS 4096 macro
/tools/bpf/
Dbpf_exp.y468 static struct sock_filter out[BPF_MAXINSNS];
473 if (curr_instr >= BPF_MAXINSNS) { in bpf_assert_max()
474 fprintf(stderr, "only max %u insns allowed!\n", BPF_MAXINSNS); in bpf_assert_max()
603 labels = calloc(BPF_MAXINSNS, sizeof(*labels)); in bpf_init()
605 labels_jt = calloc(BPF_MAXINSNS, sizeof(*labels_jt)); in bpf_init()
607 labels_jf = calloc(BPF_MAXINSNS, sizeof(*labels_jf)); in bpf_init()
609 labels_k = calloc(BPF_MAXINSNS, sizeof(*labels_k)); in bpf_init()
Dbpf_dbg.c131 static struct sock_filter bpf_image[BPF_MAXINSNS + 1];
135 static struct bpf_regs bpf_regs[BPF_MAXINSNS + 1];
1014 sp != separator || bpf_len > BPF_MAXINSNS || bpf_len == 0) { in cmd_load_bpf()
/tools/testing/selftests/bpf/
Dtest_tag.c25 static struct bpf_insn prog[BPF_MAXINSNS];
170 for (i = start_insns; i <= BPF_MAXINSNS; i++) { in do_test()
Dtest_verifier.c50 #define MAX_INSNS BPF_MAXINSNS
/tools/perf/util/
Dbpf-prologue.c372 if (cnt_space > BPF_MAXINSNS) in bpf__gen_prologue()
373 cnt_space = BPF_MAXINSNS; in bpf__gen_prologue()
Dbpf-loader.c453 BPF_MAXINSNS - orig_insns_cnt); in preproc_gen_prologue()
611 priv->insns_buf = malloc(sizeof(struct bpf_insn) * BPF_MAXINSNS); in hook_load_preprocessor()
/tools/testing/selftests/seccomp/
Dseccomp_bpf.c313 int count = BPF_MAXINSNS + 1; in TEST()
350 int count = BPF_MAXINSNS; in TEST()
/tools/lib/bpf/
Dlibbpf.c3428 } else if (load_attr.insns_cnt >= BPF_MAXINSNS) { in load_program()
3430 load_attr.insns_cnt, BPF_MAXINSNS); in load_program()