Home
last modified time | relevance | path

Searched refs:target_fd (Results 1 – 19 of 19) sorted by relevance

/linux-6.6.21/tools/testing/selftests/proc/
Dfd-001-lookup.c102 unsigned int fd, target_fd; in main() local
156 target_fd = 1023; in main()
157 while (target_fd > 0) { in main()
158 if (dup2(fd, target_fd) == target_fd) in main()
160 target_fd /= 2; in main()
162 assert(target_fd > 0); in main()
164 test_lookup(target_fd); in main()
165 close(target_fd); in main()
/linux-6.6.21/tools/hv/
Dhv_fcopy_daemon.c24 static int target_fd; variable
74 target_fd = open(target_fname, in hv_start_fcopy()
76 if (target_fd == -1) { in hv_start_fcopy()
93 bytes_written = pwrite(target_fd, cpmsg->data, cpmsg->size, in hv_copy_data()
125 close(target_fd); in hv_copy_finished()
131 close(target_fd); in hv_copy_cancel()
/linux-6.6.21/tools/testing/selftests/bpf/prog_tests/
Dtc_redirect.c961 static int tun_relay_loop(int src_fd, int target_fd) in tun_relay_loop() argument
973 FD_SET(target_fd, &rfds); in tun_relay_loop()
975 if (select(1 + MAX(src_fd, target_fd), &rfds, NULL, NULL, NULL) < 0) { in tun_relay_loop()
982 nread = read(direction == SRC_TO_TARGET ? src_fd : target_fd, buf, sizeof(buf)); in tun_relay_loop()
988 nwrite = write(direction == SRC_TO_TARGET ? target_fd : src_fd, buf, nread); in tun_relay_loop()
1004 int src_fd, target_fd = -1; in test_tc_redirect_peer_l3() local
1028 target_fd = tun_open("tun_fwd"); in test_tc_redirect_peer_l3()
1029 if (!ASSERT_GE(target_fd, 0, "tun_open tun_fwd")) in test_tc_redirect_peer_l3()
1037 exit(tun_relay_loop(src_fd, target_fd)); in test_tc_redirect_peer_l3()
1101 if (target_fd >= 0) in test_tc_redirect_peer_l3()
[all …]
/linux-6.6.21/tools/lib/bpf/
Dbpf.c622 int bpf_prog_attach(int prog_fd, int target_fd, enum bpf_attach_type type, in bpf_prog_attach() argument
629 return bpf_prog_attach_opts(prog_fd, target_fd, type, &opts); in bpf_prog_attach()
652 attr.target_fd = target; in bpf_prog_attach_opts()
690 attr.target_fd = target; in bpf_prog_detach_opts()
707 int bpf_prog_detach(int target_fd, enum bpf_attach_type type) in bpf_prog_detach() argument
709 return bpf_prog_detach_opts(0, target_fd, type, NULL); in bpf_prog_detach()
712 int bpf_prog_detach2(int prog_fd, int target_fd, enum bpf_attach_type type) in bpf_prog_detach2() argument
714 return bpf_prog_detach_opts(prog_fd, target_fd, type, NULL); in bpf_prog_detach2()
717 int bpf_link_create(int prog_fd, int target_fd, in bpf_link_create() argument
742 attr.link_create.target_fd = target_fd; in bpf_link_create()
[all …]
Dskel_internal.h289 static inline int skel_link_create(int prog_fd, int target_fd, in skel_link_create() argument
297 attr.link_create.target_fd = target_fd; in skel_link_create()
Dbpf.h423 LIBBPF_API int bpf_link_create(int prog_fd, int target_fd,
584 LIBBPF_API int bpf_prog_query(int target_fd, enum bpf_attach_type type,
Dlibbpf.h771 int target_fd, const char *attach_func_name);
Dlibbpf.c11907 int target_fd, const char *target_name, in bpf_program_attach_fd() argument
11927 link_fd = bpf_link_create(prog_fd, target_fd, attach_type, opts); in bpf_program_attach_fd()
11994 int target_fd, in bpf_program__attach_freplace() argument
11999 if (!!target_fd != !!attach_func_name) { in bpf_program__attach_freplace()
12011 if (target_fd) { in bpf_program__attach_freplace()
12014 btf_id = libbpf_find_prog_btf_id(attach_func_name, target_fd); in bpf_program__attach_freplace()
12020 return bpf_program_attach_fd(prog, target_fd, "freplace", in bpf_program__attach_freplace()
12038 __u32 target_fd = 0; in bpf_program__attach_iter() local
12057 link_fd = bpf_link_create(prog_fd, target_fd, BPF_TRACE_ITER, in bpf_program__attach_iter()
/linux-6.6.21/drivers/media/rc/
Dbpf-lirc.c256 rcdev = rc_dev_get_from_fd(attr->target_fd, true); in lirc_prog_attach()
281 rcdev = rc_dev_get_from_fd(attr->target_fd, true); in lirc_prog_detach()
306 rcdev = rc_dev_get_from_fd(attr->query.target_fd, false); in lirc_prog_query()
/linux-6.6.21/kernel/bpf/
Dnet_namespace.c285 net = get_net_ns_by_fd(attr->query.target_fd); in netns_bpf_prog_query()
305 if (attr->target_fd || attr->attach_flags || attr->replace_bpf_fd) in netns_bpf_prog_attach()
389 if (attr->target_fd) in netns_bpf_prog_detach()
494 net = get_net_ns_by_fd(attr->link_create.target_fd); in netns_bpf_link_create()
Dcgroup.c1137 cgrp = cgroup_get_from_fd(attr->target_fd); in cgroup_bpf_prog_attach()
1165 cgrp = cgroup_get_from_fd(attr->target_fd); in cgroup_bpf_prog_detach()
1284 cgrp = cgroup_get_from_fd(attr->link_create.target_fd); in cgroup_bpf_link_attach()
1324 cgrp = cgroup_get_from_fd(attr->query.target_fd); in cgroup_bpf_prog_query()
Dbpf_iter.c518 if (attr->link_create.target_fd || attr->link_create.flags) in bpf_iter_link_attach()
Dsyscall.c3572 perf_file = perf_event_get(attr->link_create.target_fd); in bpf_perf_link_attach()
4967 attr->link_create.target_fd, in link_create()
4985 attr->link_create.target_fd, in link_create()
/linux-6.6.21/drivers/android/
Dbinder_internal.h511 int target_fd; member
Dbinder.c1558 if (fixup->target_fd >= 0) in binder_free_txn_fixups()
1559 put_unused_fd(fixup->target_fd); in binder_free_txn_fixups()
2315 fixup->target_fd = -1; in binder_translate_fd()
4363 fixup->target_fd = fd; in binder_apply_fd_fixups()
4372 fd_install(fixup->target_fd, fixup->file); in binder_apply_fd_fixups()
/linux-6.6.21/Documentation/bpf/
Dprog_sk_lookup.rst38 netns FD as attachment ``target_fd``.
/linux-6.6.21/tools/include/uapi/linux/
Dbpf.h1472 __u32 target_fd; /* target object to attach to or ... */ member
1530 __u32 target_fd; /* target object to query or ... */ member
1591 __u32 target_fd; /* target object to attach to or ... */ member
/linux-6.6.21/include/uapi/linux/
Dbpf.h1472 __u32 target_fd; /* target object to attach to or ... */ member
1530 __u32 target_fd; /* target object to query or ... */ member
1591 __u32 target_fd; /* target object to attach to or ... */ member
/linux-6.6.21/net/core/
Dsock_map.c62 u32 ufd = attr->target_fd; in sock_map_get_from_fd()
81 u32 ufd = attr->target_fd; in sock_map_prog_detach()
1512 u32 prog_cnt = 0, flags = 0, ufd = attr->target_fd; in sock_map_bpf_prog_query()