builtin-probe.c (ddb2f58f9f8febaf817496a010130f108bb9a431) builtin-probe.c (6cfd1f6805ca0b4a341794d67eb605089435f938)
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

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

374 "Show external variables too (with --vars only)"),
375 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
376 "file", "vmlinux pathname"),
377 OPT_STRING('s', "source", &symbol_conf.source_prefix,
378 "directory", "path to kernel source"),
379 OPT_CALLBACK('m', "module", NULL, "modname|path",
380 "target module name (for online) or path (for offline)",
381 opt_set_target),
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

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

374 "Show external variables too (with --vars only)"),
375 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
376 "file", "vmlinux pathname"),
377 OPT_STRING('s', "source", &symbol_conf.source_prefix,
378 "directory", "path to kernel source"),
379 OPT_CALLBACK('m', "module", NULL, "modname|path",
380 "target module name (for online) or path (for offline)",
381 opt_set_target),
382 OPT_BOOLEAN('\0', "no-inlines", &probe_conf.no_inlines,
383 "Don't search inlined functions"),
382#endif
383 OPT__DRY_RUN(&probe_event_dry_run),
384 OPT_INTEGER('\0', "max-probes", &probe_conf.max_probes,
385 "Set how many probe points can be found for a probe."),
386 OPT_CALLBACK_DEFAULT('F', "funcs", NULL, "[FILTER]",
387 "Show potential probe-able functions.",
388 opt_set_filter_with_command, DEFAULT_FUNC_FILTER),
389 OPT_CALLBACK('\0', "filter", NULL,

--- 130 unchanged lines hidden ---
384#endif
385 OPT__DRY_RUN(&probe_event_dry_run),
386 OPT_INTEGER('\0', "max-probes", &probe_conf.max_probes,
387 "Set how many probe points can be found for a probe."),
388 OPT_CALLBACK_DEFAULT('F', "funcs", NULL, "[FILTER]",
389 "Show potential probe-able functions.",
390 opt_set_filter_with_command, DEFAULT_FUNC_FILTER),
391 OPT_CALLBACK('\0', "filter", NULL,

--- 130 unchanged lines hidden ---