/linux-4.1.27/tools/perf/ |
D | builtin-inject.c | 25 struct perf_tool tool; member 41 static int perf_event__repipe_synth(struct perf_tool *tool, in perf_event__repipe_synth() argument 44 struct perf_inject *inject = container_of(tool, struct perf_inject, tool); in perf_event__repipe_synth() 56 static int perf_event__repipe_oe_synth(struct perf_tool *tool, in perf_event__repipe_oe_synth() argument 60 return perf_event__repipe_synth(tool, event); in perf_event__repipe_oe_synth() 63 static int perf_event__repipe_op2_synth(struct perf_tool *tool, in perf_event__repipe_op2_synth() argument 68 return perf_event__repipe_synth(tool, event); in perf_event__repipe_op2_synth() 71 static int perf_event__repipe_attr(struct perf_tool *tool, in perf_event__repipe_attr() argument 75 struct perf_inject *inject = container_of(tool, struct perf_inject, in perf_event__repipe_attr() 76 tool); in perf_event__repipe_attr() [all …]
|
D | builtin-record.c | 37 struct perf_tool tool; member 61 static int process_synthesized_event(struct perf_tool *tool, in process_synthesized_event() argument 66 struct record *rec = container_of(tool, struct record, tool); in process_synthesized_event() 194 static int process_sample_event(struct perf_tool *tool, in process_sample_event() argument 200 struct record *rec = container_of(tool, struct record, tool); in process_sample_event() 204 return build_id__mark_dso_hit(tool, event, sample, evsel, machine); in process_sample_event() 235 struct perf_tool *tool = data; in perf_event__synthesize_guest_os() local 244 err = perf_event__synthesize_modules(tool, process_synthesized_event, in perf_event__synthesize_guest_os() 254 err = perf_event__synthesize_kernel_mmap(tool, process_synthesized_event, in perf_event__synthesize_guest_os() 333 struct perf_tool *tool = &rec->tool; in __cmd_record() local [all …]
|
D | builtin-mem.c | 14 struct perf_tool tool; member 61 dump_raw_samples(struct perf_tool *tool, in dump_raw_samples() argument 66 struct perf_mem *mem = container_of(tool, struct perf_mem, tool); in dump_raw_samples() 110 static int process_sample_event(struct perf_tool *tool, in process_sample_event() argument 116 return dump_raw_samples(tool, event, sample, machine); in process_sample_event() 129 &mem->tool); in report_raw_events() 263 .tool = { in cmd_mem()
|
D | builtin-script.c | 545 static int process_sample_event(struct perf_tool *tool __maybe_unused, in process_sample_event() 582 struct perf_tool tool; member 588 static int process_attr(struct perf_tool *tool, union perf_event *event, in process_attr() argument 591 struct perf_script *scr = container_of(tool, struct perf_script, tool); in process_attr() 596 err = perf_event__process_attr(tool, event, pevlist); in process_attr() 616 static int process_comm_event(struct perf_tool *tool, in process_comm_event() argument 622 struct perf_script *script = container_of(tool, struct perf_script, tool); in process_comm_event() 633 if (perf_event__process_comm(tool, event, sample, machine) < 0) in process_comm_event() 650 static int process_fork_event(struct perf_tool *tool, in process_fork_event() argument 656 struct perf_script *script = container_of(tool, struct perf_script, tool); in process_fork_event() [all …]
|
D | builtin-annotate.c | 38 struct perf_tool tool; member 79 static int process_sample_event(struct perf_tool *tool, in process_sample_event() argument 85 struct perf_annotate *ann = container_of(tool, struct perf_annotate, tool); in process_sample_event() 274 .tool = { in cmd_annotate() 345 annotate.session = perf_session__new(&file, false, &annotate.tool); in cmd_annotate()
|
D | builtin-sched.c | 125 struct perf_tool tool; member 1292 static int process_sched_wakeup_event(struct perf_tool *tool, in process_sched_wakeup_event() argument 1297 struct perf_sched *sched = container_of(tool, struct perf_sched, tool); in process_sched_wakeup_event() 1387 static int process_sched_switch_event(struct perf_tool *tool, in process_sched_switch_event() argument 1392 struct perf_sched *sched = container_of(tool, struct perf_sched, tool); in process_sched_switch_event() 1413 static int process_sched_runtime_event(struct perf_tool *tool, in process_sched_runtime_event() argument 1418 struct perf_sched *sched = container_of(tool, struct perf_sched, tool); in process_sched_runtime_event() 1426 static int perf_sched__process_fork_event(struct perf_tool *tool, in perf_sched__process_fork_event() argument 1431 struct perf_sched *sched = container_of(tool, struct perf_sched, tool); in perf_sched__process_fork_event() 1434 perf_event__process_fork(tool, event, sample, machine); in perf_sched__process_fork_event() [all …]
|
D | builtin-kvm.c | 627 static int process_lost_event(struct perf_tool *tool, in process_lost_event() argument 632 struct perf_kvm_stat *kvm = container_of(tool, struct perf_kvm_stat, tool); in process_lost_event() 648 static int process_sample_event(struct perf_tool *tool, in process_sample_event() argument 655 struct perf_kvm_stat *kvm = container_of(tool, struct perf_kvm_stat, in process_sample_event() 656 tool); in process_sample_event() 1053 kvm->tool = eops; in read_events() 1054 kvm->session = perf_session__new(&file, false, &kvm->tool); in read_events() 1324 kvm->tool.sample = process_sample_event; in kvm_events_live() 1325 kvm->tool.comm = perf_event__process_comm; in kvm_events_live() 1326 kvm->tool.exit = perf_event__process_exit; in kvm_events_live() [all …]
|
D | builtin-report.c | 43 struct perf_tool tool; member 131 static int process_sample_event(struct perf_tool *tool, in process_sample_event() argument 137 struct report *rep = container_of(tool, struct report, tool); in process_sample_event() 177 static int process_read_event(struct perf_tool *tool, in process_read_event() argument 183 struct report *rep = container_of(tool, struct report, tool); in process_read_event() 598 .tool = { in cmd_report() 755 session = perf_session__new(&file, false, &report.tool); in cmd_report()
|
D | builtin-timechart.c | 50 struct perf_tool tool; member 311 static int process_comm_event(struct perf_tool *tool, in process_comm_event() argument 316 struct timechart *tchart = container_of(tool, struct timechart, tool); in process_comm_event() 321 static int process_fork_event(struct perf_tool *tool, in process_fork_event() argument 326 struct timechart *tchart = container_of(tool, struct timechart, tool); in process_fork_event() 331 static int process_exit_event(struct perf_tool *tool, in process_exit_event() argument 336 struct timechart *tchart = container_of(tool, struct timechart, tool); in process_exit_event() 553 static int process_sample_event(struct perf_tool *tool, in process_sample_event() argument 559 struct timechart *tchart = container_of(tool, struct timechart, tool); in process_sample_event() 1606 &tchart->tool); in __cmd_timechart() [all …]
|
D | builtin-trace.c | 1217 struct perf_tool tool; member 1415 static int trace__tool_process(struct perf_tool *tool, in trace__tool_process() argument 1420 struct trace *trace = container_of(tool, struct trace, tool); in trace__tool_process() 1435 err = __machine__synthesize_threads(trace->host, &trace->tool, &trace->opts.target, in trace__symbols_init() 1986 static int trace__process_sample(struct perf_tool *tool, in trace__process_sample() argument 1992 struct trace *trace = container_of(tool, struct trace, tool); in trace__process_sample() 2361 trace->tool.sample = trace__process_sample; in trace__replay() 2362 trace->tool.mmap = perf_event__process_mmap; in trace__replay() 2363 trace->tool.mmap2 = perf_event__process_mmap2; in trace__replay() 2364 trace->tool.comm = perf_event__process_comm; in trace__replay() [all …]
|
D | builtin-top.c | 693 static void perf_event__process_sample(struct perf_tool *tool, in perf_event__process_sample() argument 699 struct perf_top *top = container_of(tool, struct perf_top, tool); in perf_event__process_sample() 855 perf_event__process_sample(&top->tool, event, evsel, in perf_top__mmap_read_idx()
|
D | builtin-diff.c | 323 static int diff__process_sample_event(struct perf_tool *tool __maybe_unused, in diff__process_sample_event() 357 static struct perf_tool tool = { variable 743 d->session = perf_session__new(&d->file, false, &tool); in __cmd_diff()
|
D | builtin-lock.c | 807 static int process_sample_event(struct perf_tool *tool __maybe_unused, in process_sample_event()
|
D | builtin-kmem.c | 475 static int process_sample_event(struct perf_tool *tool __maybe_unused, in process_sample_event()
|
/linux-4.1.27/tools/perf/util/ |
D | session.c | 23 struct perf_tool *tool, u64 file_offset); 109 &sample, session->tool, event->file_offset); in ordered_events__deliver_event() 113 bool repipe, struct perf_tool *tool) in perf_session__new() argument 121 session->tool = tool; in perf_session__new() 149 if (tool && tool->ordering_requires_timestamps && in perf_session__new() 150 tool->ordered_events && !perf_evlist__sample_id_all(session->evlist)) { in perf_session__new() 152 tool->ordered_events = false; in perf_session__new() 197 static int process_event_synth_tracing_data_stub(struct perf_tool *tool in process_event_synth_tracing_data_stub() 208 static int process_event_synth_attr_stub(struct perf_tool *tool __maybe_unused, in process_event_synth_attr_stub() 217 static int process_event_sample_stub(struct perf_tool *tool __maybe_unused, in process_event_sample_stub() [all …]
|
D | tool.h | 15 typedef int (*event_sample)(struct perf_tool *tool, union perf_event *event, 19 typedef int (*event_op)(struct perf_tool *tool, union perf_event *event, 22 typedef int (*event_attr_op)(struct perf_tool *tool, 26 typedef int (*event_op2)(struct perf_tool *tool, union perf_event *event, 29 typedef int (*event_oe)(struct perf_tool *tool, union perf_event *event,
|
D | event.h | 305 typedef int (*perf_event__handler_t)(struct perf_tool *tool, 310 int perf_event__synthesize_thread_map(struct perf_tool *tool, 314 int perf_event__synthesize_threads(struct perf_tool *tool, 317 int perf_event__synthesize_kernel_mmap(struct perf_tool *tool, 321 int perf_event__synthesize_modules(struct perf_tool *tool, 325 int perf_event__process_comm(struct perf_tool *tool, 329 int perf_event__process_lost(struct perf_tool *tool, 333 int perf_event__process_mmap(struct perf_tool *tool, 337 int perf_event__process_mmap2(struct perf_tool *tool, 341 int perf_event__process_fork(struct perf_tool *tool, [all …]
|
D | header.h | 125 int perf_event__synthesize_attr(struct perf_tool *tool, 128 int perf_event__synthesize_attrs(struct perf_tool *tool, 131 int perf_event__process_attr(struct perf_tool *tool, union perf_event *event, 134 int perf_event__synthesize_tracing_data(struct perf_tool *tool, 137 int perf_event__process_tracing_data(struct perf_tool *tool, 141 int perf_event__synthesize_build_id(struct perf_tool *tool, 145 int perf_event__process_build_id(struct perf_tool *tool,
|
D | event.c | 162 static pid_t perf_event__synthesize_comm(struct perf_tool *tool, in perf_event__synthesize_comm() argument 172 if (process(tool, event, &synth_sample, machine) != 0) in perf_event__synthesize_comm() 178 static int perf_event__synthesize_fork(struct perf_tool *tool, in perf_event__synthesize_fork() argument 204 if (process(tool, event, &synth_sample, machine) != 0) in perf_event__synthesize_fork() 210 int perf_event__synthesize_mmap_events(struct perf_tool *tool, in perf_event__synthesize_mmap_events() argument 312 if (process(tool, event, &synth_sample, machine) != 0) { in perf_event__synthesize_mmap_events() 322 int perf_event__synthesize_modules(struct perf_tool *tool, in perf_event__synthesize_modules() argument 368 if (process(tool, event, &synth_sample, machine) != 0) { in perf_event__synthesize_modules() 383 struct perf_tool *tool, in __event__synthesize_thread() argument 394 tgid = perf_event__synthesize_comm(tool, comm_event, pid, in __event__synthesize_thread() [all …]
|
D | session.h | 29 struct perf_tool *tool; member 42 bool repipe, struct perf_tool *tool); 57 void perf_tool__fill_defaults(struct perf_tool *tool); 124 int perf_event__process_id_index(struct perf_tool *tool, 128 int perf_event__synthesize_id_index(struct perf_tool *tool,
|
D | data-convert-bt.c | 63 struct perf_tool tool; member 384 static int process_sample_event(struct perf_tool *tool, in process_sample_event() argument 390 struct convert *c = container_of(tool, struct convert, tool); in process_sample_event() 803 .tool = { in bt_convert__perf2ctf() 825 session = perf_session__new(&file, 0, &c.tool); in bt_convert__perf2ctf()
|
D | top.h | 15 struct perf_tool tool; member
|
D | build-id.h | 16 int build_id__mark_dso_hit(struct perf_tool *tool, union perf_event *event,
|
D | kvm-stat.h | 73 struct perf_tool tool; member
|
D | header.c | 2566 int perf_event__synthesize_attr(struct perf_tool *tool, in perf_event__synthesize_attr() argument 2591 err = process(tool, ev, NULL, NULL); in perf_event__synthesize_attr() 2600 int perf_event__synthesize_attrs(struct perf_tool *tool, in perf_event__synthesize_attrs() argument 2608 err = perf_event__synthesize_attr(tool, &evsel->attr, evsel->ids, in perf_event__synthesize_attrs() 2619 int perf_event__process_attr(struct perf_tool *tool __maybe_unused, in perf_event__process_attr() 2659 int perf_event__synthesize_tracing_data(struct perf_tool *tool, int fd, in perf_event__synthesize_tracing_data() argument 2692 process(tool, &ev, NULL, NULL); in perf_event__synthesize_tracing_data() 2705 int perf_event__process_tracing_data(struct perf_tool *tool __maybe_unused, in perf_event__process_tracing_data() 2745 int perf_event__synthesize_build_id(struct perf_tool *tool, in perf_event__synthesize_build_id() argument 2768 err = process(tool, &ev, NULL, machine); in perf_event__synthesize_build_id() [all …]
|
D | build-id.c | 24 int build_id__mark_dso_hit(struct perf_tool *tool __maybe_unused, in build_id__mark_dso_hit() 49 static int perf_event__exit_del_thread(struct perf_tool *tool __maybe_unused, in perf_event__exit_del_thread()
|
D | machine.h | 212 int __machine__synthesize_threads(struct machine *machine, struct perf_tool *tool,
|
D | machine.c | 1772 int __machine__synthesize_threads(struct machine *machine, struct perf_tool *tool, in __machine__synthesize_threads() argument 1777 return perf_event__synthesize_thread_map(tool, threads, process, machine, data_mmap); in __machine__synthesize_threads() 1779 return perf_event__synthesize_threads(tool, process, machine, data_mmap); in __machine__synthesize_threads()
|
/linux-4.1.27/drivers/input/tablet/ |
D | wacom_serial4.c | 178 unsigned int tool; member 315 unsigned int tool; in wacom_handle_packet() local 336 tool = (button & wacom->eraser_mask) ? ERASER : STYLUS; in wacom_handle_packet() 338 tool = CURSOR; in wacom_handle_packet() 340 if (tool != wacom->tool && wacom->tool != 0) { in wacom_handle_packet() 341 input_report_key(wacom->dev, tools[wacom->tool].input_id, 0); in wacom_handle_packet() 344 wacom->tool = tool; in wacom_handle_packet() 346 input_report_key(wacom->dev, tools[tool].input_id, in_proximity_p); in wacom_handle_packet() 348 in_proximity_p ? tools[tool].device_id : 0); in wacom_handle_packet() 535 wacom->tool = wacom->idx = 0; in wacom_connect()
|
/linux-4.1.27/arch/mips/ |
D | Makefile | 21 32bit-tool-archpref = mipsel 22 64bit-tool-archpref = mips64el 28 32bit-tool-archpref = mips 29 64bit-tool-archpref = mips64 37 tool-archpref = $(32bit-tool-archpref) 41 tool-archpref = $(64bit-tool-archpref) 47 …CROSS_COMPILE := $(call cc-cross-prefix, $(tool-archpref)-linux- $(tool-archpref)-linux-gnu- $(t…
|
/linux-4.1.27/Documentation/s390/ |
D | zfcpdump.txt | 1 The s390 SCSI dump tool (zfcpdump) 4 dumps on SCSI disks. The dump process is initiated by booting a dump tool, which 6 not overwrite memory of the crashed Linux with data of the dump tool, the 8 dump tool is loaded. There exists an SCLP hardware interface to obtain the saved 12 a user space dump tool, which are loaded together into the saved memory region 34 The s390 zipl tool looks for the zfcpdump kernel and optional initrd/initramfs
|
D | 00-INDEX | 28 - information on the s390 SCSI dump tool.
|
D | kvm.txt | 109 its prefix page just like the dump tool that comes with zipl. This is useful
|
D | s390dbf.txt | 470 It is planned that the dump analysis tool lcrash gets an additional command 471 's390dbf' to display all the debug logs. With this tool it will be possible
|
D | Debugging390.txt | 1146 * a useful little tool for converting a hexadecimal command line to ascii
|
/linux-4.1.27/drivers/hid/ |
D | wacom_wac.c | 77 wacom->tool[0] = (data[5] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN; in wacom_penpartner_irq() 79 input_report_key(input, wacom->tool[0], 1); in wacom_penpartner_irq() 87 input_report_key(input, wacom->tool[0], 0); in wacom_penpartner_irq() 141 if (!wacom->tool[0]) { in wacom_pl_irq() 144 wacom->tool[1] = BTN_TOOL_RUBBER; in wacom_pl_irq() 147 wacom->tool[1] = (data[4] & 0x20) ? BTN_TOOL_RUBBER : BTN_TOOL_PEN; in wacom_pl_irq() 150 if (wacom->tool[1] == BTN_TOOL_RUBBER && !(data[4] & 0x20)) { in wacom_pl_irq() 152 input_report_key(input, wacom->tool[1], 0); in wacom_pl_irq() 154 wacom->tool[1] = BTN_TOOL_PEN; in wacom_pl_irq() 158 if (wacom->tool[1] != BTN_TOOL_RUBBER) { in wacom_pl_irq() [all …]
|
D | wacom_wac.h | 200 int tool[2]; member
|
/linux-4.1.27/Documentation/input/ |
D | multi-touch-protocol.txt | 167 of the contact area and approaching tool, respectively. 213 The ABS_MT_TOOL_TYPE may be used to specify whether the touching tool is a 239 tool. This should be understood as the size of the tool itself. The 240 orientation of the contact and the approaching tool are assumed to be the 246 tool. Omit if circular [4]. 296 The surface X coordinate of the center of the approaching tool. Omit if 298 tool itself. 302 The surface Y coordinate of the center of the approaching tool. Omit if the 303 device cannot distinguish between the intended touch point and the tool 307 from the position of the tool. If both positions are present, the major [all …]
|
D | event-codes.txt | 108 When an event occurs and a tool is used, the corresponding BTN_TOOL_<name> 109 code should be set to a value of 1. When the tool is no longer interacting 115 BTN_TOUCH is used for touch contact. While an input tool is determined to be 171 - Used to describe the distance of a tool from an interaction surface. This 172 event should only be emitted while the tool is hovering, meaning in close 339 BTN_TOOL_<name> events must be reported when a stylus or other tool is active on 340 the tablet. ABS_{X,Y} must be reported with the location of the tool. BTN_TOUCH 341 should be used to report when the tool is in contact with the tablet. 342 BTN_{STYLUS,STYLUS2} should be used to report buttons on the tool itself. Any
|
D | input.txt | 77 After that you have to point GPM (the textmode mouse cut&paste tool) and
|
/linux-4.1.27/drivers/staging/unisys/Documentation/ |
D | proc-entries.txt | 73 and the Linux-based installation and recovery tool. These values are 77 the tool. 80 next reboot will launch the installation and recovery tool. If set to 85 and recovery tool mode requested for the next boot. 88 and recovery tool to pass status and result information back to the
|
/linux-4.1.27/Documentation/isdn/ |
D | CREDITS | 15 For contribution of man-pages, the imontty-tool and a perfect 35 For contributing the imon-tool 38 For contribution of the isdnlog/isdnrep-tool
|
D | README.x25 | 157 the usual ifconfig tool. 161 But a special x25route tool (distributed with the x25-util package) 180 The x25-utility package also contains an x25trace tool that can be
|
D | README.syncppp | 51 'addlink' option of the isdnctrl tool. (rc.isdn.syncppp.MPPP is
|
D | README.act2000 | 56 by the actctrl tool later.
|
D | README.diversion | 7 The diversion kernel interface and controlling tool divertctrl were written
|
D | README.gigaset | 202 You can use some configuration tool of your distribution to configure this 227 If you have installed the command line tool gigacontr, you can enter
|
D | README.HiSax | 353 At the moment, debugging messages are enabled with the hisaxctrl tool: 418 The firmware is downloaded with the hisaxctrl tool:
|
D | README.sc | 58 tool kit from our web site.
|
/linux-4.1.27/drivers/input/touchscreen/ |
D | wacom_i2c.c | 43 int tool; member 117 wac_i2c->tool = (data[3] & 0x0c) ? in wacom_i2c_irq() 123 input_report_key(input, wac_i2c->tool, wac_i2c->prox); in wacom_i2c_irq()
|
D | atmel_mxt_ts.c | 824 int tool = 0; in mxt_proc_t100_message() local 844 tool = MT_TOOL_FINGER; in mxt_proc_t100_message() 854 tool = MT_TOOL_FINGER; in mxt_proc_t100_message() 869 tool = MT_TOOL_PEN; in mxt_proc_t100_message() 905 input_mt_report_slot_state(input_dev, tool, 1); in mxt_proc_t100_message()
|
/linux-4.1.27/Documentation/ia64/ |
D | err_inject.txt | 2 IPF Machine Check (MC) error inject tool 5 IPF Machine Check (MC) error inject tool is used to inject MC 6 errors from Linux. The tool is a test bed for IPF MC work flow including 10 The tool includes two parts: a kernel driver and a user application 17 The tool can be used to test Intel IPF machine MC handling capabilities. 19 tool to inject error. It's also very useful to integrate with other 22 Below is a sample application as part of the whole tool. The sample 23 can be used as a working test tool. Or it can be expanded to include 50 #corrected, data cache, hier-2, physical addr(assigned by tool code). 55 #corrected, data cache, hier-2, physical addr(assigned by tool code). [all …]
|
/linux-4.1.27/drivers/misc/altera-stapl/ |
D | Kconfig | 8 An Altera FPGA module. Say Y when you want to support this tool.
|
/linux-4.1.27/Documentation/arm/ |
D | CCN.txt | 19 events, that can be used with perf tool. For example "xp_valid_flit" 36 Example of perf tool use:
|
/linux-4.1.27/Documentation/ |
D | gcov.txt | 19 tool gcov [1] with the Linux kernel. Coverage data of a running kernel 108 tool. Resets file coverage data to zero when written to. 112 tool. This file is generated by gcc when compiling with 141 must be made, depending on where the gcov tool is used: 145 The gcov tool version on the test machine must be compatible with the
|
D | xz.txt | 21 and a gzip-like command line tool. XZ Utils can be downloaded from 42 scripts/xz_wrap.sh is a wrapper for the xz command line tool found 60 when encoding. With the xz command line tool, use --check=none or
|
D | kmemleak.txt | 12 Valgrind tool (memcheck --leak-check) to detect the memory leaks in 184 when the /sys/kernel/debug/kmemleak file is read. Anyway, this tool is 198 The tool can report false positives. These are cases where an allocated
|
D | SAK.txt | 4 An operating system's Secure Attention Key is a security tool which is
|
D | 00-INDEX | 123 - info on how to get and use the Coccinelle code checking tool. 201 - use of GCC's coverage testing tool "gcov" with the Linux kernel 419 - info on how to obtain and use the sparse tool for typechecking.
|
D | HOWTO | 208 tools. One such tool that is particularly recommended is the Linux 236 is using git (the kernel's source management tool, more information 314 process is tracked with the tool patchwork. Patchwork offers a web 338 tool. For details on how to use the kernel bugzilla, please see:
|
D | module-signing.txt | 180 To manually sign a module, use the scripts/sign-file tool available in
|
D | Changes | 114 ksymoops tool to decode it, but in most cases you don't.
|
D | applying-patches.txt | 308 tool) tree to be in a reasonably sane state adequate for testing.
|
D | md.txt | 102 An array should be created by a user-space tool. This will write
|
D | kmemcheck.txt | 383 "shared_pending" list. A crude, but efficient tool, is git grep:
|
D | devices.txt | 1178 are sent via ioctls (using the sdmount tool) to the master 1181 through the sdmount tool).
|
D | kernel-parameters.txt | 2015 However, its intended as a diagnostic tool; if
|
/linux-4.1.27/net/netlink/ |
D | Kconfig | 18 Support for NETLINK socket monitoring interface used by the ss tool.
|
/linux-4.1.27/Documentation/block/ |
D | ioprio.txt | 43 See below for a sample ionice tool. Usage: 60 ---> snip ionice.c tool <--- 180 ---> snip ionice.c tool <---
|
/linux-4.1.27/drivers/media/rc/keymaps/ |
D | Kconfig | 13 provide the tool and the same RC maps for load from
|
/linux-4.1.27/drivers/pci/pcie/aer/ |
D | Kconfig.debug | 16 help of a user space helper tool aer-inject, which can be
|
/linux-4.1.27/net/packet/ |
D | Kconfig | 23 Support for PF_PACKET sockets monitoring interface used by the ss tool.
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-trace.txt | 6 perf-trace - strace inspired tool 20 This is a live mode tool in addition to working with perf.data files like 110 Show tool stats such as number of times fd->pathname was discovered thru
|
D | perf-top.txt | 6 perf-top - System profiling tool.
|
/linux-4.1.27/fs/btrfs/ |
D | Kconfig | 45 bool "Btrfs with integrity check tool compiled in (DANGEROUS)" 54 If the integrity check tool is included and activated in
|
/linux-4.1.27/drivers/net/wireless/hostap/ |
D | Kconfig | 45 Firmware image downloading needs a user space tool, prism2_srec. 57 Firmware image downloading needs a user space tool, prism2_srec.
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | debugfs-ec | 12 The io file is binary and a userspace tool located here:
|
D | sysfs-bus-event_source-devices-events | 19 using the 'perf(1)' tool.
|
/linux-4.1.27/net/unix/ |
D | Kconfig | 27 Support for UNIX socket monitoring interface used by the ss tool.
|
/linux-4.1.27/fs/autofs4/ |
D | Kconfig | 4 The automounter is a tool to automatically mount remote file systems
|
/linux-4.1.27/Documentation/networking/ |
D | ipddp.txt | 43 MacGate. In this distribution there will be a tool called MacRoute 45 Also the tool MacRegGateWay is included to register the
|
D | igb.txt | 111 rate limit using the IProute2 tool. Download the latest version of the 112 iproute2 tool from Sourceforge if your version does not have all the
|
D | iphase.txt | 128 Run "ttcp_atm -h" to display more options of the ttcp_atm tool.
|
D | cxgb.txt | 305 tool such as Tim Hockin's procstate utilities (runon) 318 etc., you may want to try the runon tool provided by Tim Hockin's
|
D | altera_tse.txt | 21 this driver was tested against. The sopc2dts tool is used to create the
|
D | filter.txt | 172 Under tools/net/ there's a small helper tool called bpf_asm which can 344 then be passed to the bpf_asm tool for generating opcodes, output that xt_bpf 361 attaching to a live system. For that purpose, there's a small tool called
|
D | vortex.txt | 434 3) Download you card's diagnostic tool from Donald
|
D | README.ipw2200 | 368 An Ad-Hoc networks is created using the syntax of the Wireless tool.
|
D | can.txt | 983 removal of vcan network devices can be managed with the ip(8) tool:
|
/linux-4.1.27/drivers/gpu/drm/msm/ |
D | Kconfig | 36 that can be parsed by envytools demsm tool. If enabled, register
|
D | NOTES | 84 These files are used both for a parser tool (in the same tree) to
|
/linux-4.1.27/tools/perf/tests/ |
D | dwarf-unwind.c | 17 static int mmap_handler(struct perf_tool *tool __maybe_unused, in mmap_handler()
|
/linux-4.1.27/tools/power/cpupower/ |
D | README | 41 to Dave Jones for his feedback and his dump_psb tool; to Bruno Ducrot for his
|
/linux-4.1.27/Documentation/i2c/busses/ |
D | i2c-taos-evm | 24 inputattach tool, which is part of the input-utils package. The following
|
/linux-4.1.27/Documentation/development-process/ |
D | 7.AdvancedTopics | 17 as its tool of choice. 21 edges and poses certain hazards; it is a young and powerful tool which is 106 perform test merges in a private branch. The git "rerere" tool can be 133 authorship information; the git "am" tool does its best in this regard, but
|
D | 4.Coding | 168 enough to pick the right tool for the job. Code which shows a lack of 256 This tool will track the acquisition and release of every lock (spinlock or 284 Other kinds of errors can be found with the "sparse" static analysis tool. 293 The "Coccinelle" tool (http://coccinelle.lip6.fr/) is able to find a wide 389 justification is solid. Note that the Coccinelle tool can help with
|
D | 2.Process | 219 tool. Tools like git (and related tools like quilt or mercurial) allow 359 The other tool worth knowing about is Quilt: 368 quilt is the best tool for the job.
|
D | 5.Posting | 102 scenario when the "git bisect" tool is used to find regressions; if the
|
/linux-4.1.27/tools/thermal/tmon/ |
D | README | 21 TMON is conceived as a tool to help visualize, tune, and test the
|
/linux-4.1.27/drivers/net/wireless/ |
D | Kconfig | 247 tristate "Simulated radio testing tool for mac80211" 250 This driver is a developer testing tool that can be used to test 254 to use this tool.
|
/linux-4.1.27/Documentation/ABI/stable/ |
D | sysfs-bus-usb | 74 USB PM tool 75 git://git.moblin.org/users/sarah/usb-pm-tool/
|
/linux-4.1.27/drivers/staging/gs_fpgaboot/ |
D | README | 42 a. As a FPGA development support tool,
|
/linux-4.1.27/Documentation/devicetree/bindings/nios2/ |
D | nios2.txt | 6 Users can use sopc2dts tool for generating device tree sources (dts) from a
|
/linux-4.1.27/Documentation/device-mapper/ |
D | verity.txt | 132 It is expected that a user-space tool will verify the integrity of the 160 A command line tool veritysetup is available to compute or verify
|
D | log-writes.txt | 93 There is a userspace tool that will replay the log for you in various ways.
|
/linux-4.1.27/Documentation/power/ |
D | drivers-testing.txt | 41 f) Attempt to suspend to RAM using the s2ram tool with the driver loaded
|
D | basic-pm-debugging.txt | 183 tool available from http://suspend.sf.net and documented at
|
/linux-4.1.27/tools/perf/config/ |
D | Makefile | 243 …msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libe… 360 …msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or li… 448 …$(call disable-python,No 'python-config' tool was found: disables Python support - please install …
|
/linux-4.1.27/Documentation/fb/ |
D | fbcon.txt | 21 configuration tool. It is under Device Drivers->Graphics Support->Support for 36 you don't do anything, the kernel configuration tool will select one for you, 198 distributions nowadays, and is usually part of the suspend/resume tool.
|
D | viafb.txt | 179 [Configure viafb with "fbset" tool]
|
/linux-4.1.27/Documentation/networking/mac80211_hwsim/ |
D | README | 17 to mac80211 are needed to use this testing tool.
|
/linux-4.1.27/Documentation/scsi/ |
D | megaraid.txt | 45 redirecting userspace tool ioctls to the appropriate driver."
|
D | sym53c8xx_2.txt | 109 scsiinfo: command line tool 110 scsi-config: TCL/Tk tool using scsiinfo 227 from the user setup tool. The Tekram Setup program allows to tune the
|
D | ChangeLog.megaraid | 577 redirecting userspace tool ioctls to the appropriate driver."
|
D | ncr53c8xx.txt | 255 from the user setup tool. The Tekram Setup program allows to tune the 1188 - Use the 'scsidev' tool from Eric Youngdale.
|
/linux-4.1.27/Documentation/filesystems/ |
D | f2fs.txt | 21 The following git tree provides the file system formatting tool (mkfs.f2fs), 22 a consistency checking tool (fsck.f2fs), and a debugging tool (dump.f2fs). 284 The fsck.f2fs is a tool to check the consistency of an f2fs-formatted 287 Note that, initial version of the tool does not fix any inconsistency.
|
D | btrfs.txt | 262 * btrfs: a single tool to manage the filesystems, refer to the manpage for more details
|
D | ext4.txt | 577 online resize tool (e.g. resize2fs). 603 bitmaps and inode table, the userspace tool thus
|
D | proc.txt | 748 useful tool for helping diagnose these problems. Buddyinfo will give you a
|
/linux-4.1.27/firmware/ |
D | whiteheat_loader.HEX | 298 * Fixed my intel hex processing tool, so now the firmware actually
|
D | whiteheat_loader_debug.HEX | 387 * Fixed my intel hex processing tool, so now the firmware actually
|
D | whiteheat.HEX | 1081 * Fixed my intel hex processing tool, so now the firmware actually
|
/linux-4.1.27/Documentation/acpi/ |
D | initrd_table_override.txt | 92 This tool is also part of the acpica package on SUSE.
|
D | video_extension.txt | 94 Once user space tool receives this event, it can modify the backlight
|
/linux-4.1.27/drivers/staging/unisys/Documentation/ABI/ |
D | sysfs-platform-visorchipset | 45 Description: This field is used to tell s-Par which type of recovery tool
|
/linux-4.1.27/Documentation/hwmon/ |
D | w83627hf | 75 you can obtain the same result by using the isaset tool (part of
|
/linux-4.1.27/Documentation/filesystems/cifs/ |
D | TODO | 44 j) Add GUI tool to configure /proc/fs/cifs settings and for display of
|
/linux-4.1.27/Documentation/cdrom/ |
D | packet-writing.txt | 97 and can be controlled by it. For example the "pktcdvd" tool uses
|
/linux-4.1.27/tools/lguest/ |
D | lguest.txt | 52 - A tool called "lguest" is available in this directory: type "make"
|
/linux-4.1.27/Documentation/trace/ |
D | tracepoint-analysis.txt | 21 assumed that the PCL tool tools/perf has been installed and is in your path. 40 are available with the perf tool. Getting a list of available events is a
|
D | mmiotrace.txt | 10 Jeff Muizelaar created a tool for tracing MMIO accesses with the Nouveau
|
/linux-4.1.27/tools/virtio/virtio-trace/ |
D | README | 4 Trace agent is a user tool for sending trace data of a guest to a Host in low
|
/linux-4.1.27/Documentation/powerpc/ |
D | firmware-assisted-dump.txt | 18 - Unlike phyp dump, userspace tool does not need to refer any sysfs 81 -- Once the userspace tool is done saving dump, it will echo
|
/linux-4.1.27/Documentation/laptops/ |
D | sony-laptop.txt | 142 * spicctrl, which is the userspace tool used to communicate with the
|
D | laptop-mode.txt | 25 * Monitoring tool 778 Monitoring tool
|
D | thinkpad-acpi.txt | 719 exported just as a debug tool. 915 a userspace tool which can be found here: 922 - use above mentioned tool to read out the EC
|
/linux-4.1.27/Documentation/video4linux/ |
D | si4713.txt | 172 The tool can be found in v4l-dvb repository under v4l2-apps/util directory.
|
D | fimc.txt | 140 or retrieve the information from /dev/media? with help of the media-ctl tool:
|
D | vivid.txt | 235 needed in order to run a tool like v4l2-compliance. Tools like that 973 qv4l2 test tool and you will see these dependencies.
|
/linux-4.1.27/Documentation/vm/ |
D | pagemap.txt | 134 The page-types tool in the tools/vm directory can be used to query the
|
D | slub.txt | 99 order to do so you must have the slabinfo tool. Then you can do
|
D | numa_memory_policy.txt | 419 a command line tool, numactl(8), exists that allows one to: 426 The numactl(8) tool is packaged with the run-time version of the library
|
/linux-4.1.27/Documentation/dvb/ |
D | faq.txt | 52 ts2ps tool from the Metzler Brother's dvb-mpegtools package.
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | Sound-FAQ | 82 values used by the windows driver. A tool to do this is available
|
/linux-4.1.27/drivers/cpufreq/ |
D | Kconfig | 13 (see below) after boot, or use a userspace tool.
|
/linux-4.1.27/ |
D | README | 162 "make xconfig" X windows (Qt) based configuration tool. 164 "make gconfig" X windows (Gtk) based configuration tool.
|
D | CREDITS | 1156 D: Author of installation tool LISA 1789 D: Author of a menu based configuration tool, kmenu, which 3078 D: Author of menu based configuration tool, Menuconfig.
|
/linux-4.1.27/Documentation/devicetree/bindings/ |
D | xilinx.txt | 11 control how the core is synthesized. Historically, the EDK tool would
|
/linux-4.1.27/Documentation/prctl/ |
D | seccomp_filter.txt | 34 a tool for sandbox developers to use. Beyond that, policy for logical
|
/linux-4.1.27/drivers/media/usb/pwc/ |
D | philips.txt | 70 grabbing with a tool that uses mmap(), you might want to increase if.
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | am335x-evmsk.dts | 11 * http://www.ti.com/tool/tmdssk3358
|
/linux-4.1.27/Documentation/PCI/ |
D | pcieaer-howto.txt | 265 Then, you need a user space tool named aer-inject, which can be gotten
|
/linux-4.1.27/drivers/message/fusion/lsi/ |
D | mpi_history.txt | 707 * 02-09-05 01.05.03 Added frame size option to FC management tool. 708 * Added Beacon tool to the Toolbox.
|
/linux-4.1.27/Documentation/RCU/ |
D | rcu_dereference.txt | 316 As always, use the right tool for the job!
|
D | checklist.txt | 14 tool for the job. Yes, RCU does reduce read-side overhead by
|
D | whatisRCU.txt | 927 the right tool for your job.
|
/linux-4.1.27/Documentation/usb/ |
D | usbmon.txt | 6 or Ethereal. Similarly, it is expected that a tool such as usbdump or
|
/linux-4.1.27/scripts/ |
D | spelling.txt | 1 # Originally from Debian's Lintian tool. Various false positives have been
|
/linux-4.1.27/arch/ia64/ |
D | Kconfig | 514 This is a useful tool for MCA testing.
|
/linux-4.1.27/arch/ |
D | Kconfig | 236 thus are a key power management tool on many systems.
|
/linux-4.1.27/init/ |
D | Kconfig | 49 string "Cross-compiler tool prefix" 193 A preliminary version of LZ4 de/compression tool is available at 1803 tool to add (and sometimes remove) them. If you say Y here, 1901 modules must be signed manually, using the scripts/sign-file tool.
|
/linux-4.1.27/Documentation/sound/oss/ |
D | Introduction | 107 configuration tool).
|
D | README.OSS | 371 PnP isolation tool. When writing this there is a pre alpha test version 372 of such a tool available from ftp://ftp.demon.co.uk/pub/unix/linux/utils. The 373 file is called isapnptools-*. Please note that this tool is just a temporary
|
/linux-4.1.27/Documentation/kdump/ |
D | kdump.txt | 53 use analysis tools such as the GNU Debugger (GDB) and the Crash tool to
|
/linux-4.1.27/drivers/misc/ |
D | Kconfig | 135 device for analysis with a debugging tool (Lauterbach or Fido).
|
/linux-4.1.27/Documentation/scheduler/ |
D | sched-deadline.txt | 362 is a valuable tool, as it can be used to synthetically recreate certain
|
/linux-4.1.27/Documentation/filesystems/configfs/ |
D | configfs.txt | 83 arbitrary, but likely the tool will make some use of the name. Perhaps
|
/linux-4.1.27/net/netfilter/ |
D | Kconfig | 97 tool which uses Netlink. 1378 is a powerful tool for packet classification.
|
/linux-4.1.27/net/ipv4/ |
D | Kconfig | 450 Support for UDP socket monitoring interface used by the ss tool.
|
/linux-4.1.27/tools/power/cpupower/po/ |
D | de.po | 518 "The argument passed to this tool can't be combined with passing a --cpu "
|
D | cs.po | 510 "The argument passed to this tool can't be combined with passing a --cpu "
|
D | it.po | 512 "The argument passed to this tool can't be combined with passing a --cpu "
|
D | fr.po | 510 "The argument passed to this tool can't be combined with passing a --cpu "
|
D | pt.po | 513 "The argument passed to this tool can't be combined with passing a --cpu "
|
/linux-4.1.27/Documentation/arm64/ |
D | arm-acpi.txt | 39 able to encode behavior is a key tool used in supporting operating
|
/linux-4.1.27/lib/ |
D | Kconfig.debug | 157 Any tool that packages or reads debug information would need 1506 Enable this option if you want to use the LatencyTOP tool
|
/linux-4.1.27/Documentation/sysctl/ |
D | vm.txt | 698 panic_on_oom=2+kdump gives you very strong tool to investigate
|
/linux-4.1.27/drivers/video/fbdev/ |
D | Kconfig | 1265 The driver starts in monitor mode. You must use the matroxset tool 1316 tool (available at
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | HD-Audio.txt | 701 The script `alsa-info.sh` is a very useful tool to gather the audio
|
/linux-4.1.27/drivers/i2c/busses/ |
D | Kconfig | 1029 use this driver, you will need the inputattach tool, which is part
|
/linux-4.1.27/Documentation/m68k/ |
D | kernel-options.txt | 190 rebooting, they can be read under AmigaOS with the tool
|
/linux-4.1.27/arch/arm/ |
D | Kconfig.debug | 958 nvflash, or other flashing tool. When bits 19:18 are 3,
|
/linux-4.1.27/Documentation/devicetree/ |
D | booting-without-of.txt | 1092 The syntax of the dtc tool is
|
/linux-4.1.27/arch/x86/ |
D | Kconfig | 1461 It is, however, intended as a diagnostic tool; if repeatable
|
/linux-4.1.27/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 397 o tunctl - Configuration tool to create and delete tap devices
|