Home
last modified time | relevance | path

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

/linux/tools/testing/selftests/drivers/net/hw/
H A Ddevlink_port_split.py26 def run_command(cmd, should_fail=False): function
58 stdout, stderr = run_command(cmd)
82 stdout, stderr = run_command(cmd)
100 stdout, stderr = run_command(cmd)
116 stdout, stderr = run_command(cmd, should_fail=should_fail)
136 stdout, stderr = run_command(cmd)
215 stdout, stderr = run_command(cmd)
263 stdout, stderr = run_command(cmd)
271 stdout, stderr = run_command(cmd)
H A Dncdevmem.c315 static int run_command(const char *cmd, ...) in configure_headersplit()
402 run_command("ethtool -N %s delete %d", in bind_rx_queue()
545 return run_command("ethtool -X %s equal %d >&2", ifname, start_queue); in do_server()
550 run_command("ethtool -X %s default >&2", ifname, start_queue); in do_server()
273 #define run_command( global() macro
/linux/tools/testing/ktest/
H A Dktest.pl581 sub run_command;
1494 run_command "$power_cycle";
1513 if (run_command $reboot) {
1516 run_command "$power_cycle";
1520 run_command "$power_cycle";
1535 run_command "$power_cycle";
1552 run_command $switch_to_good;
1635 run_command $post_test;
1886 run_command $post_test;
1892 sub run_command { subroutine
[all …]
H A Dconfig-bisect.pl159 sub run_command { subroutine
235 if (!run_command "$make olddefconfig") {
239 if (!run_command "$make oldnoconfig") {
242 run_command "yes '' | $make oldconfig" or
734 run_command "cp $good_start $good" or die "failed to copy to $good\n";
735 run_command "cp $bad_start $bad" or die "failed to copy to $bad\n";
744 run_command "cp $output_config $good" or die "failed to copy $output_config to $good\n";
746 run_command "cp $output_config $bad" or die "failed to copy $output_config to $bad\n";
760 run_command "rm $good";
761 run_command "rm $bad";
/linux/tools/tracing/rtla/src/
H A Drtla.c46 int run_command(int argc, char **argv, int start_position) in run_command() function
69 retval = run_command(argc, argv, 0); in main()
82 retval = run_command(argc, argv, 1); in main()
/linux/tools/testing/selftests/bpf/
H A Dxdp_hw_metadata.c81 #define run_command(cmd, ...) \ macro
719 if (run_command("sudo tc qdisc show dev %s | grep -q 'qdisc mqprio 8001:'", ifname) == 0) in clean_existing_configurations()
720 run_command("sudo tc qdisc del dev %s root", ifname); in clean_existing_configurations()
723 if (run_command("sudo tc qdisc show dev %s | grep -q 'qdisc ingress ffff:'", ifname) == 0) in clean_existing_configurations()
724 run_command("sudo tc qdisc del dev %s ingress", ifname); in clean_existing_configurations()
727 if (run_command("sudo ethtool -n %s | grep -q 'Filter:'", ifname) == 0) { in clean_existing_configurations()
728run_command("sudo ethtool -n %s | grep 'Filter:' | awk '{print $2}' | xargs -n1 sudo ethtool -N %s… in clean_existing_configurations()
806run_command("sudo tc qdisc add dev %s handle 8001: parent root mqprio num_tc %d map %squeues %shw … in main()
812run_command("sudo tc qdisc replace dev %s parent 8001:%d etf offload clockid CLOCK_TAI delta 50000… in main()
817 if (run_command("sudo ethtool -N %s flow-type ether vlan 0x2000 vlan-mask 0x1FFF action %d", in main()
[all …]
/linux/kernel/trace/
H A Dtrace_dynevent.c422 dynevent_create_fn_t run_command) in dynevent_cmd_init() argument
428 cmd->run_command = run_command; in dynevent_cmd_init()
497 return cmd->run_command(cmd); in dynevent_create()
H A Dtrace_dynevent.h125 dynevent_create_fn_t run_command);
/linux/tools/usb/usbip/src/
H A Dusbip.c127 static int run_command(const struct command *cmd, int argc, char *argv[]) in run_command() function
182 rc = run_command(&cmds[i], argc, argv); in main()
/linux/tools/lib/subcmd/
H A Drun-command.h59 int run_command(struct child_process *);
H A Drun-command.c273 int run_command(struct child_process *cmd) in run_command() function
296 return run_command(&cmd); in run_command_v_opt()
/linux/drivers/net/wireless/ath/wil6210/
H A Ddebugfs.c1510 static const char run_command[] = "run"; in wil_write_file_recovery() local
1511 char buf[sizeof(run_command) + 1]; /* to detect "runx" */ in wil_write_file_recovery()
1534 if (0 == strcmp(buf, run_command)) in wil_write_file_recovery()
/linux/include/linux/
H A Dtrace_events.h514 dynevent_create_fn_t run_command; member