Home
last modified time | relevance | path

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

/kernel/trace/
Dftrace_internal.h34 int ftrace_startup(struct ftrace_ops *ops, int command);
35 int ftrace_shutdown(struct ftrace_ops *ops, int command);
43 # define ftrace_startup(ops, command) \ argument
50 # define ftrace_shutdown(ops, command) \ argument
Dftrace.c2531 void ftrace_modify_all_code(int command) in ftrace_modify_all_code() argument
2533 int update = command & FTRACE_UPDATE_TRACE_FUNC; in ftrace_modify_all_code()
2537 if (command & FTRACE_MAY_SLEEP) in ftrace_modify_all_code()
2556 if (command & FTRACE_UPDATE_CALLS) in ftrace_modify_all_code()
2558 else if (command & FTRACE_DISABLE_CALLS) in ftrace_modify_all_code()
2572 if (command & FTRACE_START_FUNC_RET) in ftrace_modify_all_code()
2574 else if (command & FTRACE_STOP_FUNC_RET) in ftrace_modify_all_code()
2581 int *command = data; in __ftrace_modify_code() local
2583 ftrace_modify_all_code(*command); in __ftrace_modify_code()
2595 void ftrace_run_stop_machine(int command) in ftrace_run_stop_machine() argument
[all …]
Dtrace_events_trigger.c218 char *command, *next = buff; in trigger_process_regex() local
222 command = strsep(&next, ": \t"); in trigger_process_regex()
223 command = (command[0] != '!') ? command : command + 1; in trigger_process_regex()
227 if (strcmp(p->name, command) == 0) { in trigger_process_regex()
228 ret = p->func(p, file, buff, command, next); in trigger_process_regex()
Dtrace_probe.c165 char *command, *p; in __trace_probe_log_err() local
177 command = kzalloc(len, GFP_KERNEL); in __trace_probe_log_err()
178 if (!command) in __trace_probe_log_err()
192 p = command; in __trace_probe_log_err()
201 tracing_log_err(NULL, trace_probe_log.subsystem, command, in __trace_probe_log_err()
204 kfree(command); in __trace_probe_log_err()
DKconfig427 on the kernel command line.
/kernel/debug/kdb/
Dkdb_main.c665 char **command; member
677 char **save_command = s->command; in kdb_defcmd2()
694 s->command = kcalloc(s->count + 1, sizeof(*(s->command)), GFP_KDB); in kdb_defcmd2()
695 if (!s->command) { in kdb_defcmd2()
701 memcpy(s->command, save_command, s->count * sizeof(*(s->command))); in kdb_defcmd2()
702 s->command[s->count++] = kdb_strdup(cmdstr, GFP_KDB); in kdb_defcmd2()
721 kdb_printf("%s", s->command[i]); in kdb_defcmd()
802 kdb_printf("[%s]kdb> %s\n", s->name, s->command[i]); in kdb_exec_defcmd()
803 ret = kdb_parse(s->command[i]); in kdb_exec_defcmd()
/kernel/power/
DKconfig48 after placing resume=/dev/swappartition on the kernel command line
64 be reloaded, then use the 'noresume' kernel command line argument.
/kernel/dma/
DKconfig88 You can disable CMA by specifying "cma=0" on the kernel's command
/kernel/bpf/
Doffload.c354 data.command = cmd; in bpf_map_offload_ndo()