Home
last modified time | relevance | path

Searched refs:ctl_fd (Results 1 – 13 of 13) sorted by relevance

/Linux-v5.15/tools/virtio/virtio-trace/
Dtrace-agent-ctl.c34 int ctl_fd; in rw_ctl_init() local
36 ctl_fd = open(ctl_path, O_RDONLY); in rw_ctl_init()
37 if (ctl_fd == -1) { in rw_ctl_init()
42 return ctl_fd; in rw_ctl_init()
48 static int wait_order(int ctl_fd) in wait_order() argument
54 poll_fd.fd = ctl_fd; in wait_order()
89 void *rw_ctl_loop(int ctl_fd) in rw_ctl_loop() argument
102 ret = wait_order(ctl_fd); in rw_ctl_loop()
106 rlen = read(ctl_fd, buf, sizeof(buf)); in rw_ctl_loop()
Dtrace-agent.c61 s->ctl_fd = -1; in agent_info_new()
177 s->ctl_fd = rw_ctl_init((const char *)CTL_PATH); in agent_info_init()
227 rw_ctl_loop(s->ctl_fd); in agent_main_loop()
245 close(s->ctl_fd); in agent_info_free()
Dtrace-agent.h22 int ctl_fd; member
54 extern void *rw_ctl_loop(int ctl_fd);
/Linux-v5.15/tools/perf/util/
Devlist.c71 evlist->ctl_fd.fd = -1; in evlist__init()
72 evlist->ctl_fd.ack = -1; in evlist__init()
73 evlist->ctl_fd.pos = -1; in evlist__init()
1775 static int evlist__parse_control_fifo(const char *str, int *ctl_fd, int *ctl_fd_ack, bool *ctl_fd_c… in evlist__parse_control_fifo() argument
1805 *ctl_fd = fd; in evlist__parse_control_fifo()
1824 int evlist__parse_control(const char *str, int *ctl_fd, int *ctl_fd_ack, bool *ctl_fd_close) in evlist__parse_control() argument
1831 return evlist__parse_control_fifo(str, ctl_fd, ctl_fd_ack, ctl_fd_close); in evlist__parse_control()
1833 *ctl_fd = strtoul(&str[3], &endptr, 0); in evlist__parse_control()
1850 void evlist__close_control(int ctl_fd, int ctl_fd_ack, bool *ctl_fd_close) in evlist__close_control() argument
1854 close(ctl_fd); in evlist__close_control()
[all …]
Devlist.h80 } ctl_fd; member
370 int evlist__parse_control(const char *str, int *ctl_fd, int *ctl_fd_ack, bool *ctl_fd_close);
371 void evlist__close_control(int ctl_fd, int ctl_fd_ack, bool *ctl_fd_close);
372 int evlist__initialize_ctlfd(struct evlist *evlist, int ctl_fd, int ctl_fd_ack);
Drecord.h77 int ctl_fd; member
Dstat.h157 int ctl_fd; member
/Linux-v5.15/tools/testing/selftests/cgroup/
Dtest_memcontrol.c826 int sk, client_sk, ctl_fd, yes = 1, ret = -1; in tcp_server() local
829 ctl_fd = srv_args->ctl[1]; in tcp_server()
843 write(ctl_fd, &errno, sizeof(errno)); in tcp_server()
851 if (write(ctl_fd, &ret, sizeof(ret)) != sizeof(ret)) { in tcp_server()
/Linux-v5.15/tools/perf/bench/
Devlist-open-close.c40 .ctl_fd = -1,
/Linux-v5.15/tools/perf/Documentation/
Dperf-stat.txt239 exec {ctl_fd}<>${ctl_fifo}
247 --control fd:${ctl_fd},${ctl_fd_ack} \
251 sleep 5 && echo 'enable' >&${ctl_fd} && read -u ${ctl_fd_ack} e1 && echo "enabled(${e1})"
252 sleep 10 && echo 'disable' >&${ctl_fd} && read -u ${ctl_fd_ack} d1 && echo "disabled(${d1})"
257 exec {ctl_fd}>&-
Dperf-record.txt674 exec {ctl_fd}<>${ctl_fifo}
682 --control fd:${ctl_fd},${ctl_fd_ack} \
686 sleep 5 && echo 'enable' >&${ctl_fd} && read -u ${ctl_fd_ack} e1 && echo "enabled(${e1})"
687 sleep 10 && echo 'disable' >&${ctl_fd} && read -u ${ctl_fd_ack} d1 && echo "disabled(${d1})"
692 exec {ctl_fd}>&-
/Linux-v5.15/tools/perf/
Dbuiltin-stat.c220 .ctl_fd = -1,
1157 return evlist__parse_control(str, &config->ctl_fd, &config->ctl_fd_ack, &config->ctl_fd_close); in parse_control_option()
2532 if (evlist__initialize_ctlfd(evsel_list, stat_config.ctl_fd, stat_config.ctl_fd_ack)) in cmd_stat()
2608 evlist__close_control(stat_config.ctl_fd, stat_config.ctl_fd_ack, &stat_config.ctl_fd_close); in cmd_stat()
Dbuiltin-record.c1848 if (evlist__initialize_ctlfd(rec->evlist, opts->ctl_fd, opts->ctl_fd_ack)) in __cmd_record()
2267 return evlist__parse_control(str, &opts->ctl_fd, &opts->ctl_fd_ack, &opts->ctl_fd_close); in parse_control_option()
2417 .ctl_fd = -1,
2912 evlist__close_control(rec->opts.ctl_fd, rec->opts.ctl_fd_ack, &rec->opts.ctl_fd_close); in cmd_record()