builtin-probe.c (6288cf1e768ae73db5ddaaae54d85245cc1c2b56) builtin-probe.c (14a8fd7ceea6915c613746203d6e9a2bf273f16c)
1/*
2 * builtin-probe.c
3 *
4 * Builtin probe command: Set up probe events by C expression
5 *
6 * Written by Masami Hiramatsu <mhiramat@redhat.com>
7 *
8 * This program is free software; you can redistribute it and/or modify

--- 228 unchanged lines hidden (view full) ---

237 "Show accessible variables on PROBEDEF", opt_show_vars),
238 OPT_BOOLEAN('\0', "externs", &params.show_ext_vars,
239 "Show external variables too (with --vars only)"),
240 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
241 "file", "vmlinux pathname"),
242 OPT_STRING('s', "source", &symbol_conf.source_prefix,
243 "directory", "path to kernel source"),
244 OPT_STRING('m', "module", &params.target_module,
1/*
2 * builtin-probe.c
3 *
4 * Builtin probe command: Set up probe events by C expression
5 *
6 * Written by Masami Hiramatsu <mhiramat@redhat.com>
7 *
8 * This program is free software; you can redistribute it and/or modify

--- 228 unchanged lines hidden (view full) ---

237 "Show accessible variables on PROBEDEF", opt_show_vars),
238 OPT_BOOLEAN('\0', "externs", &params.show_ext_vars,
239 "Show external variables too (with --vars only)"),
240 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
241 "file", "vmlinux pathname"),
242 OPT_STRING('s', "source", &symbol_conf.source_prefix,
243 "directory", "path to kernel source"),
244 OPT_STRING('m', "module", &params.target_module,
245 "modname", "target module name"),
245 "modname|path",
246 "target module name (for online) or path (for offline)"),
246#endif
247 OPT__DRY_RUN(&probe_event_dry_run),
248 OPT_INTEGER('\0', "max-probes", &params.max_probe_points,
249 "Set how many probe points can be found for a probe."),
250 OPT_BOOLEAN('F', "funcs", &params.show_funcs,
251 "Show potential probe-able functions."),
252 OPT_CALLBACK('\0', "filter", NULL,
253 "[!]FILTER", "Set a filter (with --vars/funcs only)\n"

--- 145 unchanged lines hidden ---
247#endif
248 OPT__DRY_RUN(&probe_event_dry_run),
249 OPT_INTEGER('\0', "max-probes", &params.max_probe_points,
250 "Set how many probe points can be found for a probe."),
251 OPT_BOOLEAN('F', "funcs", &params.show_funcs,
252 "Show potential probe-able functions."),
253 OPT_CALLBACK('\0', "filter", NULL,
254 "[!]FILTER", "Set a filter (with --vars/funcs only)\n"

--- 145 unchanged lines hidden ---