/Linux-v5.10/tools/bpf/bpftool/ |
D | cgroup.c | 128 __u32 attach_flags; in show_attached_bpf_progs() local 133 ret = bpf_prog_query(cgroup_fd, type, query_flags, &attach_flags, in show_attached_bpf_progs() 141 switch (attach_flags) { in show_attached_bpf_progs() 152 snprintf(buf, sizeof(buf), "unknown(%x)", attach_flags); in show_attached_bpf_progs() 383 int attach_flags = 0; in do_attach() local 412 attach_flags |= BPF_F_ALLOW_MULTI; in do_attach() 414 attach_flags |= BPF_F_ALLOW_OVERRIDE; in do_attach() 421 if (bpf_prog_attach(prog_fd, cgroup_fd, attach_type, attach_flags)) { in do_attach()
|
D | net.c | 487 __u32 attach_flags; in query_flow_dissector() local 501 &attach_flags, prog_ids, &prog_cnt); in query_flow_dissector()
|
/Linux-v5.10/tools/testing/selftests/bpf/prog_tests/ |
D | cgroup_link.c | 41 __u32 prog_ids[ARRAY_SIZE(cgs)], prog_cnt = 0, attach_flags, prog_id; in test_cgroup_link() local 77 BPF_F_QUERY_EFFECTIVE, &attach_flags, NULL, in test_cgroup_link() 80 CHECK_FAIL(attach_flags != BPF_F_ALLOW_MULTI); in test_cgroup_link() 89 CHECK_FAIL(attach_flags != BPF_F_ALLOW_MULTI); in test_cgroup_link() 96 BPF_F_QUERY_EFFECTIVE, &attach_flags, in test_cgroup_link() 99 CHECK_FAIL(attach_flags != BPF_F_ALLOW_MULTI); in test_cgroup_link()
|
D | cgroup_attach_multi.c | 79 __u32 prog_ids[4], prog_cnt = 0, attach_flags, saved_prog_id; in test_cgroup_attach_multi() local 160 BPF_F_QUERY_EFFECTIVE, &attach_flags, in test_cgroup_attach_multi() 163 CHECK_FAIL(attach_flags != 0); in test_cgroup_attach_multi() 169 BPF_F_QUERY_EFFECTIVE, &attach_flags, in test_cgroup_attach_multi() 274 BPF_F_QUERY_EFFECTIVE, &attach_flags, in test_cgroup_attach_multi() 277 CHECK_FAIL(attach_flags != 0); in test_cgroup_attach_multi()
|
D | cgroup_attach_autodetach.c | 26 __u32 duration = 0, prog_cnt = 4, attach_flags; in test_cgroup_attach_autodetach() local 59 if (CHECK(bpf_prog_query(cg, BPF_CGROUP_INET_EGRESS, 0, &attach_flags, in test_cgroup_attach_autodetach()
|
D | sk_lookup.c | 478 __u32 attach_flags = 0; in query_lookup_prog() local 502 &attach_flags, prog_ids, &prog_cnt); in query_lookup_prog() 509 if (CHECK(attach_flags != 0, "bpf_prog_query", in query_lookup_prog() 510 "wrong attach_flags on query: %u", attach_flags)) in query_lookup_prog()
|
/Linux-v5.10/drivers/media/rc/ |
D | bpf-lirc.c | 249 if (attr->attach_flags) in lirc_prog_attach() 269 if (attr->attach_flags) in lirc_prog_detach() 323 if (copy_to_user(&uattr->query.attach_flags, &flags, sizeof(flags))) { in lirc_prog_query()
|
/Linux-v5.10/tools/lib/bpf/ |
D | bpf.c | 556 attr.attach_flags = OPTS_GET(opts, flags, 0); in bpf_prog_attach_xattr() 656 __u32 *attach_flags, __u32 *prog_ids, __u32 *prog_cnt) in bpf_prog_query() argument 669 if (attach_flags) in bpf_prog_query() 670 *attach_flags = attr.query.attach_flags; in bpf_prog_query()
|
D | bpf.h | 235 __u32 query_flags, __u32 *attach_flags,
|
/Linux-v5.10/kernel/bpf/ |
D | net_namespace.c | 259 if (copy_to_user(&uattr->query.attach_flags, &flags, sizeof(flags))) in __netns_bpf_prog_query() 304 if (attr->target_fd || attr->attach_flags || attr->replace_bpf_fd) in netns_bpf_prog_attach()
|
D | cgroup.c | 731 if (copy_to_user(&uattr->query.attach_flags, &flags, sizeof(flags))) in __cgroup_bpf_query() 773 if ((attr->attach_flags & BPF_F_ALLOW_MULTI) && in cgroup_bpf_prog_attach() 774 (attr->attach_flags & BPF_F_REPLACE)) { in cgroup_bpf_prog_attach() 783 attr->attach_type, attr->attach_flags); in cgroup_bpf_prog_attach()
|
D | syscall.c | 2977 if (attr->attach_flags & ~BPF_F_ATTACH_MASK) in bpf_prog_attach()
|
/Linux-v5.10/tools/include/uapi/linux/ |
D | bpf.h | 572 __u32 attach_flags; member 624 __u32 attach_flags; member
|
/Linux-v5.10/include/uapi/linux/ |
D | bpf.h | 572 __u32 attach_flags; member 624 __u32 attach_flags; member
|
/Linux-v5.10/net/core/ |
D | sock_map.c | 74 if (attr->attach_flags || attr->replace_bpf_fd) in sock_map_get_from_fd() 94 if (attr->attach_flags || attr->replace_bpf_fd) in sock_map_prog_detach()
|