Home
last modified time | relevance | path

Searched refs:record (Results 1 – 200 of 250) sorted by relevance

12

/linux-4.4.14/tools/perf/tests/attr/
DREADME35 perf record kill (test-record-basic)
36 perf record -b kill (test-record-branch-any)
37 perf record -j any kill (test-record-branch-filter-any)
38 perf record -j any_call kill (test-record-branch-filter-any_call)
39 perf record -j any_ret kill (test-record-branch-filter-any_ret)
40 perf record -j hv kill (test-record-branch-filter-hv)
41 perf record -j ind_call kill (test-record-branch-filter-ind_call)
42 perf record -j k kill (test-record-branch-filter-k)
43 perf record -j u kill (test-record-branch-filter-u)
44 perf record -c 123 kill (test-record-count)
[all …]
Dtest-record-group2 command = record
5 [event-1:base-record]
11 [event-2:base-record]
Dtest-record-group12 command = record
5 [event-1:base-record]
11 [event-2:base-record]
Dtest-record-group-sampling2 command = record
5 [event-1:base-record]
12 [event-2:base-record]
Dtest-record-basic2 command = record
5 [event:base-record]
Dtest-record-freq2 command = record
5 [event:base-record]
Dtest-record-no-samples2 command = record
5 [event:base-record]
Dtest-record-graph-default2 command = record
5 [event:base-record]
Dtest-record-no-inherit2 command = record
5 [event:base-record]
Dtest-record-raw2 command = record
5 [event:base-record]
Dtest-record-branch-any2 command = record
5 [event:base-record]
Dtest-record-graph-fp2 command = record
5 [event:base-record]
Dtest-record-count2 command = record
5 [event:base-record]
Dtest-record-period2 command = record
5 [event:base-record]
Dtest-record-branch-filter-hv2 command = record
5 [event:base-record]
Dtest-record-branch-filter-u2 command = record
5 [event:base-record]
Dtest-record-branch-filter-k2 command = record
5 [event:base-record]
Dtest-record-branch-filter-ind_call2 command = record
5 [event:base-record]
Dtest-record-branch-filter-any2 command = record
5 [event:base-record]
Dtest-record-branch-filter-any_ret2 command = record
5 [event:base-record]
Dtest-record-branch-filter-any_call2 command = record
5 [event:base-record]
Dtest-record-no-delay2 command = record
5 [event:base-record]
Dtest-record-data2 command = record
5 [event:base-record]
Dtest-record-graph-dwarf2 command = record
5 [event:base-record]
Dtest-record-C02 command = record
5 [event:base-record]
/linux-4.4.14/sound/usb/6fire/
Dfirmware.c84 static bool usb6fire_fw_ihex_next_record(struct ihex_record *record) in usb6fire_fw_ihex_next_record() argument
90 record->error = false; in usb6fire_fw_ihex_next_record()
93 while (record->txt_offset < record->txt_length in usb6fire_fw_ihex_next_record()
94 && record->txt_data[record->txt_offset] != ':') in usb6fire_fw_ihex_next_record()
95 record->txt_offset++; in usb6fire_fw_ihex_next_record()
96 if (record->txt_offset == record->txt_length) in usb6fire_fw_ihex_next_record()
100 record->txt_offset++; in usb6fire_fw_ihex_next_record()
101 if (record->txt_offset + 8 > record->txt_length) { in usb6fire_fw_ihex_next_record()
102 record->error = true; in usb6fire_fw_ihex_next_record()
106 record->len = usb6fire_fw_ihex_hex(record->txt_data + in usb6fire_fw_ihex_next_record()
[all …]
/linux-4.4.14/firmware/
Dihex2fw.c53 static void file_record(struct ihex_binrec *record);
133 struct ihex_binrec *record; in process_ihex() local
160 record = malloc((sizeof (*record) + len + 3) & ~3); in process_ihex()
161 if (!record) { in process_ihex()
165 memset(record, 0, (sizeof(*record) + len + 3) & ~3); in process_ihex()
166 record->len = len; in process_ihex()
169 if (i + 8 + (record->len * 2) > size) { in process_ihex()
175 record->addr = hex(data + i, &crc) << 8; i += 2; in process_ihex()
176 record->addr |= hex(data + i, &crc); i += 2; in process_ihex()
179 for (j = 0; j < record->len; j++, i += 2) in process_ihex()
[all …]
Datmsar11.HEX204 First record is start address in a __be32.
/linux-4.4.14/drivers/usb/misc/
Dezusb.c79 const struct ihex_binrec *record; in ezusb_ihex_firmware_download() local
93 record = (const struct ihex_binrec *)firmware->data; in ezusb_ihex_firmware_download()
94 for (; record; record = ihex_next_binrec(record)) { in ezusb_ihex_firmware_download()
95 if (be32_to_cpu(record->addr) > fx.max_internal_adress) { in ezusb_ihex_firmware_download()
96 ret = ezusb_writememory(dev, be32_to_cpu(record->addr), in ezusb_ihex_firmware_download()
97 (unsigned char *)record->data, in ezusb_ihex_firmware_download()
98 be16_to_cpu(record->len), WRITE_EXT_RAM); in ezusb_ihex_firmware_download()
103 be32_to_cpu(record->addr), record->data, in ezusb_ihex_firmware_download()
104 be16_to_cpu(record->len)); in ezusb_ihex_firmware_download()
113 record = (const struct ihex_binrec *)firmware->data; in ezusb_ihex_firmware_download()
[all …]
/linux-4.4.14/fs/jbd2/
Drevoke.c143 struct jbd2_revoke_record_s *record; in insert_revoke_hash() local
148 record = kmem_cache_alloc(jbd2_revoke_record_cache, gfp_mask); in insert_revoke_hash()
149 if (!record) in insert_revoke_hash()
152 record->sequence = seq; in insert_revoke_hash()
153 record->blocknr = blocknr; in insert_revoke_hash()
156 list_add(&record->hash, hash_list); in insert_revoke_hash()
167 struct jbd2_revoke_record_s *record; in find_revoke_record() local
172 record = (struct jbd2_revoke_record_s *) hash_list->next; in find_revoke_record()
173 while (&(record->hash) != hash_list) { in find_revoke_record()
174 if (record->blocknr == blocknr) { in find_revoke_record()
[all …]
/linux-4.4.14/tools/perf/
Dbuiltin-record.c41 struct record { struct
56 static int record__write(struct record *rec, void *bf, size_t size) in record__write() argument
72 struct record *rec = container_of(tool, struct record, tool); in process_synthesized_event()
76 static int record__mmap_read(struct record *rec, int idx) in record__mmap_read()
151 struct record *rec = container_of(tool, struct record, tool); in record__process_auxtrace()
184 static int record__auxtrace_mmap_read(struct record *rec, in record__auxtrace_mmap_read()
200 static int record__auxtrace_mmap_read_snapshot(struct record *rec, in record__auxtrace_mmap_read_snapshot()
217 static int record__auxtrace_read_snapshot_all(struct record *rec) in record__auxtrace_read_snapshot_all()
238 static void record__read_auxtrace_snapshot(struct record *rec) in record__read_auxtrace_snapshot()
253 int record__auxtrace_mmap_read(struct record *rec __maybe_unused, in record__auxtrace_mmap_read()
[all …]
Dperf-with-kcore.sh53 ("$PERF" record -o perf.data.junk "${PERF_OPTIONS[@]}" -- sleep 60) >/dev/null 2>/dev/null &
153 record() function
197 "$PERF" record -o "$PERF_DATA_DIR/perf.data" "${PERF_OPTIONS[@]}" -- "$@" || true
245 record "$@"
D.gitignore9 perf-record
Dcommand-list.txt20 perf-record mainporcelain common
DBuild10 perf-y += builtin-record.o
Dperf-completion.sh163 $prev_skip_opts == @(record|stat|top) ]]; then
Dbuiltin-top.c1056 struct record_opts *record = (struct record_opts *)opt->value; in parse_callchain_opt() local
1058 record->callgraph_set = true; in parse_callchain_opt()
/linux-4.4.14/tools/lib/traceevent/
Dplugin_hrtimer.c28 struct pevent_record *record, in timer_expire_handler() argument
34 record, 0) == -1) in timer_expire_handler()
36 record, 1); in timer_expire_handler()
40 pevent_print_num_field(s, "%llu", event, "now", record, 1); in timer_expire_handler()
43 record, 0); in timer_expire_handler()
48 struct pevent_record *record, in timer_start_handler() argument
54 record, 0) == -1) in timer_start_handler()
56 record, 1); in timer_start_handler()
59 record, 0); in timer_start_handler()
62 pevent_print_num_field(s, "%llu", event, "expires", record, 1); in timer_start_handler()
[all …]
Dplugin_sched_switch.c48 struct pevent_record *record, in write_and_save_comm() argument
54 comm = (char *)(record->data + field->offset); in write_and_save_comm()
68 struct pevent_record *record, in sched_wakeup_handler() argument
74 if (pevent_get_field_val(s, event, "pid", record, &val, 1)) in sched_wakeup_handler()
79 write_and_save_comm(field, record, s, val); in sched_wakeup_handler()
84 if (pevent_get_field_val(s, event, "prio", record, &val, 0) == 0) in sched_wakeup_handler()
87 if (pevent_get_field_val(s, event, "success", record, &val, 1) == 0) in sched_wakeup_handler()
90 if (pevent_get_field_val(s, event, "target_cpu", record, &val, 0) == 0) in sched_wakeup_handler()
97 struct pevent_record *record, in sched_switch_handler() argument
103 if (pevent_get_field_val(s, event, "prev_pid", record, &val, 1)) in sched_switch_handler()
[all …]
Dplugin_kvm.c250 static int print_exit_reason(struct trace_seq *s, struct pevent_record *record, in print_exit_reason() argument
257 if (pevent_get_field_val(s, event, field, record, &val, 1) < 0) in print_exit_reason()
260 if (pevent_get_field_val(s, event, "isa", record, &isa, 0) < 0) in print_exit_reason()
271 static int kvm_exit_handler(struct trace_seq *s, struct pevent_record *record, in kvm_exit_handler() argument
276 if (print_exit_reason(s, record, event, "exit_reason") < 0) in kvm_exit_handler()
279 pevent_print_num_field(s, " rip 0x%lx", event, "guest_rip", record, 1); in kvm_exit_handler()
281 if (pevent_get_field_val(s, event, "info1", record, &info1, 0) >= 0 in kvm_exit_handler()
282 && pevent_get_field_val(s, event, "info2", record, &info2, 0) >= 0) in kvm_exit_handler()
294 struct pevent_record *record, in kvm_emulate_insn_handler() argument
302 if (pevent_get_field_val(s, event, "rip", record, &rip, 1) < 0) in kvm_emulate_insn_handler()
[all …]
Dplugin_mac80211.c56 #define SF(fn) pevent_print_num_field(s, fn ":%d", event, fn, record, 0)
57 #define SFX(fn) pevent_print_num_field(s, fn ":%#x", event, fn, record, 0)
61 struct pevent_record *record, in drv_bss_info_changed() argument
64 void *data = record->data; in drv_bss_info_changed()
69 pevent_print_num_field(s, "(%d)", event, "vif_type", record, 1); in drv_bss_info_changed()
Dparse-filter.c1694 struct pevent_record *record, enum pevent_errno *err);
1697 get_comm(struct event_format *event, struct pevent_record *record) in get_comm() argument
1702 pid = pevent_data_pid(event->pevent, record); in get_comm()
1709 struct format_field *field, struct pevent_record *record) in get_value() argument
1717 name = get_comm(event, record); in get_value()
1721 pevent_read_number_field(field, record->data, &val); in get_value()
1741 struct pevent_record *record, enum pevent_errno *err);
1745 struct pevent_record *record, enum pevent_errno *err) in get_exp_value() argument
1749 lval = get_arg_value(event, arg->exp.left, record, err); in get_exp_value()
1750 rval = get_arg_value(event, arg->exp.right, record, err); in get_exp_value()
[all …]
Dplugin_function.c125 static int function_handler(struct trace_seq *s, struct pevent_record *record, in function_handler() argument
135 if (pevent_get_field_val(s, event, "ip", record, &function, 1)) in function_handler()
140 if (pevent_get_field_val(s, event, "parent_ip", record, &pfunction, 1)) in function_handler()
146 index = add_and_get_index(parent, func, record->cpu); in function_handler()
Devent-parse.h105 struct pevent_record *record,
632 struct pevent_record *record, bool use_trace_clock);
647 const char *name, struct pevent_record *record,
651 const char *name, struct pevent_record *record,
654 const char *name, struct pevent_record *record,
657 const char *name, struct pevent_record *record,
662 struct pevent_record *record, int err);
666 struct pevent_record *record, int err);
698 struct trace_seq *s, struct pevent_record *record);
709 struct pevent_record *record);
[all …]
Dplugin_kmem.c26 static int call_site_handler(struct trace_seq *s, struct pevent_record *record, in call_site_handler() argument
31 void *data = record->data; in call_site_handler()
Devent-parse.c5075 struct trace_seq *s, struct pevent_record *record) in pevent_data_lat_fmt() argument
5087 void *data = record->data; in pevent_data_lat_fmt()
5299 struct pevent_record *record) in pevent_event_info() argument
5304 print_event_fields(s, record->data, record->size, event); in pevent_event_info()
5308 print_pretty = event->handler(s, record, event, in pevent_event_info()
5312 pretty_print(s, record->data, record->size, event); in pevent_event_info()
5332 struct pevent_record *record, bool use_trace_clock) in pevent_print_event() argument
5340 void *data = record->data; in pevent_print_event()
5350 secs = record->ts / NSECS_PER_SEC; in pevent_print_event()
5351 nsecs = record->ts - secs * NSECS_PER_SEC; in pevent_print_event()
[all …]
/linux-4.4.14/arch/m68k/kernel/
Dsetup_mm.c145 static void __init m68k_parse_bootinfo(const struct bi_record *record) in m68k_parse_bootinfo() argument
149 save_bootinfo(record); in m68k_parse_bootinfo()
151 while ((tag = be16_to_cpu(record->tag)) != BI_LAST) { in m68k_parse_bootinfo()
153 const void *data = record->data; in m68k_parse_bootinfo()
154 uint16_t size = be16_to_cpu(record->size); in m68k_parse_bootinfo()
192 unknown = amiga_parse_bootinfo(record); in m68k_parse_bootinfo()
194 unknown = atari_parse_bootinfo(record); in m68k_parse_bootinfo()
196 unknown = mac_parse_bootinfo(record); in m68k_parse_bootinfo()
198 unknown = q40_parse_bootinfo(record); in m68k_parse_bootinfo()
200 unknown = bvme6000_parse_bootinfo(record); in m68k_parse_bootinfo()
[all …]
/linux-4.4.14/fs/hfs/
Dbfind.c83 fd->record = e; in __hfs_brec_find()
128 if (fd->record < 0) in hfs_brec_find()
173 while (cnt > fd->record) { in hfs_brec_goto()
174 cnt -= fd->record + 1; in hfs_brec_goto()
175 fd->record = bnode->num_recs - 1; in hfs_brec_goto()
189 fd->record -= cnt; in hfs_brec_goto()
191 while (cnt >= bnode->num_recs - fd->record) { in hfs_brec_goto()
192 cnt -= bnode->num_recs - fd->record; in hfs_brec_goto()
193 fd->record = 0; in hfs_brec_goto()
207 fd->record += cnt; in hfs_brec_goto()
[all …]
Dbrec.c80 fd->record = -1; in hfs_brec_insert()
86 rec = fd->record + 1; in hfs_brec_insert()
184 rec_off = tree->node_size - (fd->record + 2) * 2; in hfs_brec_remove()
193 fd->record, fd->keylength + fd->entrylength); in hfs_brec_remove()
224 if (!fd->record) in hfs_brec_remove()
280 if (fd->record + 1 < num_recs) { in hfs_bnode_split()
291 fd->record -= num_recs; in hfs_bnode_split()
369 if (fd->record < 0) in hfs_brec_update_parent()
372 rec = fd->record; in hfs_brec_update_parent()
397 rec = fd->record; in hfs_brec_update_parent()
Dbtree.h74 int record; member
/linux-4.4.14/tools/hv/
Dhv_kvp_daemon.c179 struct kvp_record *record = kvp_file_info[pool].records; in kvp_update_mem_state() local
194 readp = &record[records_read]; in kvp_update_mem_state()
209 record = realloc(record, alloc_unit * num_blocks); in kvp_update_mem_state()
211 if (record == NULL) { in kvp_update_mem_state()
221 kvp_file_info[pool].records = record; in kvp_update_mem_state()
233 struct kvp_record *record; in kvp_file_init() local
264 record = malloc(alloc_unit * num_blocks); in kvp_file_init()
265 if (record == NULL) { in kvp_file_init()
271 readp = &record[records_read]; in kvp_file_init()
287 record = realloc(record, alloc_unit * in kvp_file_init()
[all …]
/linux-4.4.14/fs/hfsplus/
Dbfind.c151 fd->record = e; in __hfs_brec_find()
197 if (fd->record < 0) in hfs_brec_find()
242 while (cnt > fd->record) { in hfs_brec_goto()
243 cnt -= fd->record + 1; in hfs_brec_goto()
244 fd->record = bnode->num_recs - 1; in hfs_brec_goto()
258 fd->record -= cnt; in hfs_brec_goto()
260 while (cnt >= bnode->num_recs - fd->record) { in hfs_brec_goto()
261 cnt -= bnode->num_recs - fd->record; in hfs_brec_goto()
262 fd->record = 0; in hfs_brec_goto()
276 fd->record += cnt; in hfs_brec_goto()
[all …]
Dbrec.c78 fd->record = -1; in hfs_brec_insert()
84 rec = fd->record + 1; in hfs_brec_insert()
186 rec_off = tree->node_size - (fd->record + 2) * 2; in hfs_brec_remove()
195 fd->record, fd->keylength + fd->entrylength); in hfs_brec_remove()
228 if (!fd->record) in hfs_brec_remove()
284 if (fd->record + 1 < num_recs) { in hfs_bnode_split()
295 fd->record -= num_recs; in hfs_bnode_split()
373 if (fd->record < 0) in hfs_brec_update_parent()
376 rec = fd->record; in hfs_brec_update_parent()
402 rec = fd->record; in hfs_brec_update_parent()
Dhfsplus_fs.h290 int record; member
/linux-4.4.14/kernel/
Dlatencytop.c114 unsigned long record = lat->backtrace[q]; in account_global_scheduler_latency() local
116 if (latency_record[i].backtrace[q] != record) { in account_global_scheduler_latency()
122 if (record == 0 || record == ULONG_MAX) in account_global_scheduler_latency()
204 unsigned long record = lat.backtrace[q]; in __account_scheduler_latency() local
206 if (mylat->backtrace[q] != record) { in __account_scheduler_latency()
212 if (record == 0 || record == ULONG_MAX) in __account_scheduler_latency()
/linux-4.4.14/drivers/infiniband/ulp/ipoib/
Dipoib_verbs.c287 struct ib_event *record) in ipoib_event() argument
292 if (record->element.port_num != priv->port) in ipoib_event()
295 ipoib_dbg(priv, "Event %d on device %s port %d\n", record->event, in ipoib_event()
296 record->device->name, record->element.port_num); in ipoib_event()
298 if (record->event == IB_EVENT_SM_CHANGE || in ipoib_event()
299 record->event == IB_EVENT_CLIENT_REREGISTER) { in ipoib_event()
301 } else if (record->event == IB_EVENT_PORT_ERR || in ipoib_event()
302 record->event == IB_EVENT_PORT_ACTIVE || in ipoib_event()
303 record->event == IB_EVENT_LID_CHANGE) { in ipoib_event()
305 } else if (record->event == IB_EVENT_PKEY_CHANGE) { in ipoib_event()
Dipoib.h560 struct ib_event *record);
/linux-4.4.14/tools/perf/Documentation/
Dperf-timechart.txt11 'perf timechart' [<timechart options>] {record} [<record options>]
17 'perf timechart record <command>' to record the system level events
20 but it's possible to record IO (disk, network) activity using -I argument.
99 $ perf timechart record git pull
101 [ perf record: Woken up 13 times to write data ]
102 [ perf record: Captured and wrote 4.253 MB perf.data (~185801 samples) ]
110 $ perf timechart record
118 $ perf timechart record -I
126 linkperf:perf-record[1]
Dperf-mem.txt11 'perf mem' [<options>] (record [<command>] | report)
15 "perf mem record" runs a command and gathers memory operation data
16 from it, into perf.data. Perf record options are accepted and are passed through.
48 option can be passed in record mode. It will be interpreted the same way as perf
49 record.
53 linkperf:perf-record[1], linkperf:perf-report[1]
Dperf-sched.txt11 'perf sched' {record|latency|map|replay|script}
17 'perf sched record <command>' to record the scheduling events
27 via perf sched record. (this is done by starting up mockup threads
34 workload captured via perf sched record. Columns stand for
55 linkperf:perf-record[1]
Dperf-kvm.txt13 {top|record|report|diff|buildid-list} [<options>]
15 | --guestvmlinux=<path>] {top|record|report|diff|buildid-list|stat} [<options>]
16 'perf kvm stat [record|report|live] [<options>]
26 'perf kvm record <command>' to record the performance counter profile
30 the perf data file name is perf.data.kvm. If you want to record data into
40 recorded via perf kvm record.
43 files captured via perf record.
49 was captured with --guestmount in perf kvm record.
53 Especially, perf 'kvm stat record/report' generates a statistical analysis
55 events are supported. 'perf kvm stat record <command>' records kvm events
[all …]
Dperf-script.txt6 perf-script - Read perf.data (created by perf record) and display trace output
12 'perf script' [<options>] record <script> [<record-options>] <command>
14 'perf script' [<options>] <script> <required-script-args> [<record-options>] <command>
29 record and run those scripts:
31 'perf script record <script> <command>' to record the events required
35 recorded using the -a (system-wide) 'perf record' option.
41 record <script>' is used and should be present for this command to
46 record the events required for <script> and to run the <script>
51 'perf record' option. If <script> has any required args, they
54 desired, they can be specified using separate 'perf script record'
[all …]
Dperf-kmem.txt11 'perf kmem' {record|stat} [<options>]
17 'perf kmem record <command>' to record the kmem events
66 linkperf:perf-record[1]
Dperf-script-python.txt75 that, but first we need to record the data that will be processed by
92 don't care how it exited, so we'll use 'perf record' to record only
96 # perf record -a -e raw_syscalls:sys_enter
98 ^C[ perf record: Woken up 1 times to write data ]
99 [ perf record: Captured and wrote 56.545 MB perf.data (~2470503 samples) ]
171 every event in the 'perf record' output. The handler functions take
181 mean either that the record step recorded event types that it wasn't
325 detailed event and field info, record the corresponding trace data
326 using 'perf record', passing it the list of interesting events,
345 probably lengthy 'perf record' command needed to record the events for
[all …]
Dperf-trace.txt12 'perf trace record'
21 the other perf tools. Files can be generated using the 'perf record' command
23 Alternatively, 'perf trace record' can be used as a shortcut to
26 The following options apply to perf trace; options to perf trace record are
27 found in the perf record man page.
168 linkperf:perf-record[1], linkperf:perf-script[1]
Dperf-lock.txt11 'perf lock' {record|report|script|info}
18 'perf lock record <command>' records lock events
Dintel-pt.txt16 Trace data is collected by 'perf record' and stored within the perf.data file.
17 See below for options to 'perf record'.
52 Data is captured with 'perf record' e.g. to trace 'ls' userspace-only:
54 perf record -e intel_pt//u ls
67 ~/libexec/perf-core/perf-with-kcore record pt_ls -e intel_pt// -- ls
94 perf record -e intel_pt//u ls
125 perf record
264 $ perf record -e intel_pt/psb_period=15/u uname
281 packets. MTC packets record time using the hardware crystal
316 $ perf record -e intel_pt/mtc_period=15/u uname
[all …]
Dintel-bts.txt18 'perf record'.
21 perf record
27 The Intel BTS kernel driver creates a new PMU for Intel BTS. The perf record
Dperf-list.txt56 perf record -a -e cpu-cycles:p ... # use ibs op counting cycles
57 perf record -a -e r076:p ... # same as -e cpu-cycles:p
58 perf record -a -e r0C1:p ... # use ibs op counting micro-ops
89 perf record -e r1a8 ...
143 linkperf:perf-record[1],
Dperf-inject.txt15 perf-inject reads a perf-record event stream and repipes it to stdout. At any
58 linkperf:perf-record[1], linkperf:perf-report[1], linkperf:perf-archive[1]
Dexamples.txt69 titan:~/git> perf record -e kmem:mm_page_alloc -c 1 ./git gc
75 [ perf record: Captured and wrote 0.267 MB perf.data (~11679 samples) ]
123 titan:~/git> perf record -g -e kmem:mm_page_alloc -c 1 ./git gc
129 [ perf record: Captured and wrote 0.963 MB perf.data (~42069 samples) ]
Dperf-annotate.txt6 perf-annotate - Read perf.data (created by perf record) and display annotated code
101 linkperf:perf-record[1], linkperf:perf-report[1]
Dperf-archive.txt22 linkperf:perf-record[1], linkperf:perf-buildid-list[1], linkperf:perf-report[1]
Dperf-evlist.txt37 linkperf:perf-record[1], linkperf:perf-list[1],
Dperf-buildid-list.txt42 linkperf:perf-record[1], linkperf:perf-top[1],
Dperf-record.txt1 perf-record(1)
6 perf-record - Run a command and record its profile into perf.data
11 'perf record' [-e <EVENT> | --event=EVENT] [-l] [-a] <command>
12 'perf record' [-e <EVENT> | --event=EVENT] [-l] [-a] -- <command> [<options>]
84 Don't record events issued by perf itself. This option should follow
Dperf.txt48 linkperf:perf-record[1], linkperf:perf-report[1],
Dperf-report.txt6 perf-report - Read perf.data (created by perf record) and display the profile
16 via perf record.
291 perf.data file must have been obtained using perf record -b or
292 perf record --branch-filter xxx where xxx is a branch filter option.
318 file must have been obtained using perf record -d -W and using a
Dperf-script-perl.txt49 As an example, the following perf record command can be used to record
52 # perf record -a -e sched:sched_wakeup
Dperf-diff.txt16 files captured via perf record.
214 linkperf:perf-record[1], linkperf:perf-report[1]
Dperf-buildid-cache.txt63 linkperf:perf-record[1], linkperf:perf-report[1], linkperf:perf-buildid-list[1]
Dperf-top.txt165 implies -g. See `--call-graph` section in perf-record and
223 For a full list of modifiers please see the perf record manpage.
/linux-4.4.14/tools/perf/util/
Dtrace-event-parse.c118 struct pevent_record record; in event_format__fprintf() local
121 memset(&record, 0, sizeof(record)); in event_format__fprintf()
122 record.cpu = cpu; in event_format__fprintf()
123 record.size = size; in event_format__fprintf()
124 record.data = data; in event_format__fprintf()
127 pevent_event_info(&s, event, &record); in event_format__fprintf()
DBuild76 libperf-y += record.o
/linux-4.4.14/kernel/gcov/
Dgcc_3_4.c337 int record; member
401 iter->record = 0; in gcov_iter_start()
434 switch (iter->record) { in gcov_iter_next()
442 iter->record++; in gcov_iter_next()
450 iter->record = 9; in gcov_iter_next()
460 iter->record = 7; in gcov_iter_next()
469 iter->record = 3; in gcov_iter_next()
471 iter->record = -1; in gcov_iter_next()
475 if (iter->record == -1) in gcov_iter_next()
525 switch (iter->record) { in gcov_iter_write()
/linux-4.4.14/drivers/fmc/
Dfmc-sdb.c51 arr->record = kzalloc(sizeof(arr->record[0]) * n, GFP_KERNEL); in __fmc_scan_sdb_tree()
53 if (!arr->record || !arr->subtree) { in __fmc_scan_sdb_tree()
54 kfree(arr->record); in __fmc_scan_sdb_tree()
66 for (j = 0; j < sizeof(arr->record[0]); j += 4) { in __fmc_scan_sdb_tree()
67 *(uint32_t *)((void *)(arr->record + i) + j) = in __fmc_scan_sdb_tree()
70 r = &arr->record[i]; in __fmc_scan_sdb_tree()
116 kfree(arr->record); in __fmc_sdb_free()
179 r = &arr->record[i]; in __fmc_show_sdb_tree()
265 r = &tree->record[i]; in fmc_find_sdb_device()
Dfmc-dump.c95 line = (void *)fmc->sdb->record; in fmc_dump_sdb()
/linux-4.4.14/drivers/pci/
Dpci-acpi.c44 static acpi_status decode_type0_hpx_record(union acpi_object *record, in decode_type0_hpx_record() argument
48 union acpi_object *fields = record->package.elements; in decode_type0_hpx_record()
53 if (record->package.count != 6) in decode_type0_hpx_record()
74 static acpi_status decode_type1_hpx_record(union acpi_object *record, in decode_type1_hpx_record() argument
78 union acpi_object *fields = record->package.elements; in decode_type1_hpx_record()
83 if (record->package.count != 5) in decode_type1_hpx_record()
103 static acpi_status decode_type2_hpx_record(union acpi_object *record, in decode_type2_hpx_record() argument
107 union acpi_object *fields = record->package.elements; in decode_type2_hpx_record()
112 if (record->package.count != 18) in decode_type2_hpx_record()
149 union acpi_object *package, *record, *fields; in acpi_run_hpx() local
[all …]
/linux-4.4.14/drivers/net/ethernet/intel/igb/
De1000_i210.c465 u32 *record = NULL; in igb_read_invm_version() local
483 record = &buffer[invm_blocks - i]; in igb_read_invm_version()
487 if ((i == 1) && ((*record & E1000_INVM_VER_FIELD_ONE) == 0)) { in igb_read_invm_version()
494 ((*record & E1000_INVM_VER_FIELD_TWO) == 0)) { in igb_read_invm_version()
495 version = (*record & E1000_INVM_VER_FIELD_ONE) >> 3; in igb_read_invm_version()
502 else if ((((*record & E1000_INVM_VER_FIELD_ONE) == 0) && in igb_read_invm_version()
503 ((*record & 0x3) == 0)) || (((*record & 0x3) != 0) && in igb_read_invm_version()
513 else if (((*record & E1000_INVM_VER_FIELD_TWO) == 0) && in igb_read_invm_version()
514 ((*record & 0x3) == 0)) { in igb_read_invm_version()
515 version = (*record & E1000_INVM_VER_FIELD_ONE) >> 3; in igb_read_invm_version()
[all …]
/linux-4.4.14/drivers/net/wireless/ath/ath10k/
Dhtc.c237 struct ath10k_htc_record *record; in ath10k_htc_process_trailer() local
246 record = (struct ath10k_htc_record *)buffer; in ath10k_htc_process_trailer()
248 if (length < sizeof(record->hdr)) { in ath10k_htc_process_trailer()
253 if (record->hdr.len > length) { in ath10k_htc_process_trailer()
256 record->hdr.len); in ath10k_htc_process_trailer()
261 switch (record->hdr.id) { in ath10k_htc_process_trailer()
264 if (record->hdr.len < len) { in ath10k_htc_process_trailer()
270 record->credit_report, in ath10k_htc_process_trailer()
271 record->hdr.len, in ath10k_htc_process_trailer()
276 record->hdr.id, record->hdr.len); in ath10k_htc_process_trailer()
[all …]
/linux-4.4.14/drivers/gpu/drm/amd/amdgpu/
Damdgpu_atombios.c360 ATOM_COMMON_RECORD_HEADER *record = (ATOM_COMMON_RECORD_HEADER *) in amdgpu_atombios_get_connector_info_from_object_table() local
366 while (record->ucRecordSize > 0 && in amdgpu_atombios_get_connector_info_from_object_table()
367 record->ucRecordType > 0 && in amdgpu_atombios_get_connector_info_from_object_table()
368 record->ucRecordType <= ATOM_MAX_OBJECT_RECORD_NUMBER) { in amdgpu_atombios_get_connector_info_from_object_table()
369 switch (record->ucRecordType) { in amdgpu_atombios_get_connector_info_from_object_table()
372 record; in amdgpu_atombios_get_connector_info_from_object_table()
376 record = (ATOM_COMMON_RECORD_HEADER *) in amdgpu_atombios_get_connector_info_from_object_table()
377 ((char *)record + record->ucRecordSize); in amdgpu_atombios_get_connector_info_from_object_table()
388 ATOM_COMMON_RECORD_HEADER *record = (ATOM_COMMON_RECORD_HEADER *) in amdgpu_atombios_get_connector_info_from_object_table() local
412 while (record->ucRecordSize > 0 && in amdgpu_atombios_get_connector_info_from_object_table()
[all …]
Datombios_encoders.c1986 u8 *record; in amdgpu_atombios_encoder_get_lcd_info() local
1990 record = (u8 *)(mode_info->atom_context->bios + in amdgpu_atombios_encoder_get_lcd_info()
1994 record = (u8 *)(mode_info->atom_context->bios + in amdgpu_atombios_encoder_get_lcd_info()
1997 while (*record != ATOM_RECORD_END_TYPE) { in amdgpu_atombios_encoder_get_lcd_info()
1998 switch (*record) { in amdgpu_atombios_encoder_get_lcd_info()
2000 record += sizeof(ATOM_PATCH_RECORD_MODE); in amdgpu_atombios_encoder_get_lcd_info()
2003 record += sizeof(ATOM_LCD_RTS_RECORD); in amdgpu_atombios_encoder_get_lcd_info()
2006 record += sizeof(ATOM_LCD_MODE_CONTROL_CAP); in amdgpu_atombios_encoder_get_lcd_info()
2009 fake_edid_record = (ATOM_FAKE_EDID_PATCH_RECORD *)record; in amdgpu_atombios_encoder_get_lcd_info()
2026 record += fake_edid_record->ucFakeEDIDLength ? in amdgpu_atombios_encoder_get_lcd_info()
[all …]
/linux-4.4.14/tools/perf/scripts/perl/bin/
Dfailed-syscalls-record2 (perf record -e raw_syscalls:sys_exit $@ || \
3 perf record -e syscalls:sys_exit $@) 2> /dev/null
Dwakeup-latency-record2 perf record -e sched:sched_switch -e sched:sched_wakeup $@
Drw-by-file-record2 perf record -e syscalls:sys_enter_read -e syscalls:sys_enter_write $@
Dcheck-perf-trace-record2 perf record -a -e kmem:kmalloc -e irq:softirq_entry -e kmem:kfree
Drw-by-pid-record2 perf record -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e sys…
Drwtop-record2 perf record -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e sys…
/linux-4.4.14/tools/perf/scripts/python/bin/
Dfailed-syscalls-by-pid-record2 (perf record -e raw_syscalls:sys_exit $@ || \
3 perf record -e syscalls:sys_exit $@) 2> /dev/null
Dsctop-record2 (perf record -e raw_syscalls:sys_enter $@ || \
3 perf record -e syscalls:sys_enter $@) 2> /dev/null
Dsyscall-counts-by-pid-record2 (perf record -e raw_syscalls:sys_enter $@ || \
3 perf record -e syscalls:sys_enter $@) 2> /dev/null
Dsyscall-counts-record2 (perf record -e raw_syscalls:sys_enter $@ || \
3 perf record -e syscalls:sys_enter $@) 2> /dev/null
Dexport-to-postgresql-record8 perf record $@
Devent_analyzing_sample-record8 perf record $@
Dnet_dropmonitor-record2 perf record -e skb:kfree_skb $@
Dfutex-contention-record2 perf record -e syscalls:sys_enter_futex -e syscalls:sys_exit_futex $@
Dsched-migration-record2 perf record -m 16384 -e sched:sched_wakeup -e sched:sched_wakeup_new -e sched:sched_switch -e sched…
Dcompaction-times-record2 perf record -e compaction:mm_compaction_begin -e compaction:mm_compaction_end -e compaction:mm_comp…
Dnetdev-times-record2 perf record -e net:net_dev_xmit -e net:net_dev_queue \
/linux-4.4.14/include/acpi/
Dapei.h36 int erst_write(const struct cper_record_header *record);
41 ssize_t erst_read(u64 record_id, struct cper_record_header *record,
/linux-4.4.14/Documentation/ABI/testing/
Ddev-kmsg24 Every read() from the opened device node receives one record
32 Every read() will receive the next available record. If no more
36 Messages in the record ring buffer get overwritten as whole,
41 and the seek position be updated to the next available record.
44 Unlike the classic syslog() interface, the 64 bit record
56 seek after the last record available at the time
Dsysfs-class-cxl114 configuration record.
122 configuration record.
130 configuration record.
138 record. The format is expected to match the either the standard
Dpstore39 multiple) files based on the record size of the underlying
/linux-4.4.14/fs/btrfs/
Ddelayed-ref.c764 struct btrfs_qgroup_extent_record *record = NULL; in btrfs_add_delayed_tree_ref() local
776 record = kmalloc(sizeof(*record), GFP_NOFS); in btrfs_add_delayed_tree_ref()
777 if (!record) in btrfs_add_delayed_tree_ref()
790 head_ref = add_delayed_ref_head(fs_info, trans, &head_ref->node, record, in btrfs_add_delayed_tree_ref()
820 struct btrfs_qgroup_extent_record *record = NULL; in btrfs_add_delayed_data_ref() local
834 record = kmalloc(sizeof(*record), GFP_NOFS); in btrfs_add_delayed_data_ref()
835 if (!record) { in btrfs_add_delayed_data_ref()
852 head_ref = add_delayed_ref_head(fs_info, trans, &head_ref->node, record, in btrfs_add_delayed_data_ref()
Dqgroup.c1428 struct btrfs_qgroup_extent_record *record; in btrfs_qgroup_prepare_account_extents() local
1443 record = rb_entry(node, struct btrfs_qgroup_extent_record, in btrfs_qgroup_prepare_account_extents()
1445 ret = btrfs_find_all_roots(NULL, fs_info, record->bytenr, 0, in btrfs_qgroup_prepare_account_extents()
1446 &record->old_roots); in btrfs_qgroup_prepare_account_extents()
1450 ulist_del(record->old_roots, qgroup_to_skip, 0); in btrfs_qgroup_prepare_account_extents()
1458 struct btrfs_qgroup_extent_record *record) in btrfs_qgroup_insert_dirty_extent() argument
1463 u64 bytenr = record->bytenr; in btrfs_qgroup_insert_dirty_extent()
1479 rb_link_node(&record->node, parent_node, p); in btrfs_qgroup_insert_dirty_extent()
1480 rb_insert_color(&record->node, &delayed_refs->dirty_extent_root); in btrfs_qgroup_insert_dirty_extent()
1742 struct btrfs_qgroup_extent_record *record; in btrfs_qgroup_account_extents() local
[all …]
Dqgroup.h68 struct btrfs_qgroup_extent_record *record);
/linux-4.4.14/arch/m68k/apollo/
Dconfig.c49 int __init apollo_parse_bootinfo(const struct bi_record *record) in apollo_parse_bootinfo() argument
52 const void *data = record->data; in apollo_parse_bootinfo()
54 switch (be16_to_cpu(record->tag)) { in apollo_parse_bootinfo()
/linux-4.4.14/drivers/acpi/apei/
Derst.c762 static int __erst_write_to_nvram(const struct cper_record_header *record) in __erst_write_to_nvram() argument
780 int erst_write(const struct cper_record_header *record) in erst_write() argument
789 if (memcmp(record->signature, CPER_SIG_RECORD, CPER_SIG_SIZE)) in erst_write()
795 rc = __erst_write_to_nvram(record); in erst_write()
800 if (record->record_length > erst_erange.size) in erst_write()
805 memcpy(erst_erange.vaddr, record, record->record_length); in erst_write()
833 static ssize_t __erst_read(u64 record_id, struct cper_record_header *record, in __erst_read() argument
846 memcpy(record, rcd_tmp, len); in __erst_read()
856 ssize_t erst_read(u64 record_id, struct cper_record_header *record, in erst_read() argument
866 len = __erst_read(record_id, record, buflen); in erst_read()
/linux-4.4.14/arch/m68k/hp300/
Dconfig.c72 int __init hp300_parse_bootinfo(const struct bi_record *record) in hp300_parse_bootinfo() argument
75 const void *data = record->data; in hp300_parse_bootinfo()
77 switch (be16_to_cpu(record->tag)) { in hp300_parse_bootinfo()
/linux-4.4.14/drivers/gpu/drm/radeon/
Dradeon_atombios.c662 ATOM_COMMON_RECORD_HEADER *record = (ATOM_COMMON_RECORD_HEADER *) in radeon_get_atom_connector_info_from_object_table() local
668 while (record->ucRecordSize > 0 && in radeon_get_atom_connector_info_from_object_table()
669 record->ucRecordType > 0 && in radeon_get_atom_connector_info_from_object_table()
670 record->ucRecordType <= ATOM_MAX_OBJECT_RECORD_NUMBER) { in radeon_get_atom_connector_info_from_object_table()
671 switch (record->ucRecordType) { in radeon_get_atom_connector_info_from_object_table()
674 record; in radeon_get_atom_connector_info_from_object_table()
678 record = (ATOM_COMMON_RECORD_HEADER *) in radeon_get_atom_connector_info_from_object_table()
679 ((char *)record + record->ucRecordSize); in radeon_get_atom_connector_info_from_object_table()
693 ATOM_COMMON_RECORD_HEADER *record = (ATOM_COMMON_RECORD_HEADER *) in radeon_get_atom_connector_info_from_object_table() local
717 while (record->ucRecordSize > 0 && in radeon_get_atom_connector_info_from_object_table()
[all …]
/linux-4.4.14/drivers/staging/wlan-ng/
Dprism2fw.c856 static int read_fwfile(const struct ihex_binrec *record) in read_fwfile() argument
866 while (record) { in read_fwfile()
870 len = be16_to_cpu(record->len); in read_fwfile()
871 addr = be32_to_cpu(record->addr); in read_fwfile()
874 ptr32 = (u32 *) record->data; in read_fwfile()
875 ptr16 = (u16 *) record->data; in read_fwfile()
949 s3data[ns3data].data = (uint8_t *) record->data; in read_fwfile()
957 record = ihex_next_binrec(record); in read_fwfile()
/linux-4.4.14/drivers/net/wireless/ath/ath6kl/
Dhtc_pipe.c858 struct htc_record_hdr *record; in htc_process_trailer() local
873 record = (struct htc_record_hdr *) buffer; in htc_process_trailer()
877 if (record->len > len) { in htc_process_trailer()
881 record->len, record->rec_id, len); in htc_process_trailer()
889 switch (record->rec_id) { in htc_process_trailer()
891 if (record->len < sizeof(struct htc_credit_report)) { in htc_process_trailer()
898 record->len / sizeof(*report), in htc_process_trailer()
904 record->rec_id, record->len); in htc_process_trailer()
912 buffer += record->len; in htc_process_trailer()
913 len -= record->len; in htc_process_trailer()
Dhtc_mbox.c1671 struct htc_record_hdr *record, in htc_parse_trailer() argument
1680 switch (record->rec_id) { in htc_parse_trailer()
1682 len = record->len / sizeof(struct htc_credit_report); in htc_parse_trailer()
1693 len = record->len / sizeof(*lk_ahd); in htc_parse_trailer()
1717 len = record->len / sizeof(*bundle_lkahd_rpt); in htc_parse_trailer()
1730 "", record_buf, record->len); in htc_parse_trailer()
1743 record->rec_id, record->len); in htc_parse_trailer()
1754 struct htc_record_hdr *record; in htc_proc_trailer() local
1773 record = (struct htc_record_hdr *) buf; in htc_proc_trailer()
1777 if (record->len > len) { in htc_proc_trailer()
[all …]
/linux-4.4.14/samples/kfifo/
DMakefile1 obj-$(CONFIG_SAMPLE_KFIFO) += bytestream-example.o dma-example.o inttype-example.o record-example.o
/linux-4.4.14/Documentation/blockdev/drbd/
Ddrbd-connection-state-overview.dot15 CommTrouble [ shape=record,
48 …cluster_resync [ shape=record,label="{<any>resynchronisation process running\l'concurrent' applica…
/linux-4.4.14/sound/soc/dwc/
DKconfig8 maximum of 8 channels each for play and record.
/linux-4.4.14/include/linux/
Dfmc-sdb.h30 union sdb_record *record; /* copies of the struct */ member
Dperf_event.h1008 extern void perf_tp_event(u64 addr, u64 count, void *record,
/linux-4.4.14/Documentation/s390/
Dmonreader.txt128 contains information on the type of the following record set (sample/event
130 of the record set in the monitor DCSS. The start and end address can be used
131 to determine the size of the record set, the end address is the address of the
133 correctly (domain 1, record 13), i.e. it can be used to determine the record
151 There may be more than one combination of MCE and corresponding record set
DDASD35 partition table in the label record.
/linux-4.4.14/Documentation/filesystems/caching/
Dbackend-api.txt153 (*) FS-Cache operation record:
176 (*) FS-Cache retrieval operation record:
185 A structure of this type is allocated by FS-Cache to record retrieval and
201 (*) FS-Cache storage operation record:
209 A structure of this type is allocated by FS-Cache to record outstanding
430 The retrieval record pointed to by op should be retained for each page
434 The retrieval record may be used to get CPU time via the FS-Cache thread
439 The to_do field in the retrieval record is provided to aid in this.
559 This is called to record the fact that one or more pages have been dealt
569 This is called to record the completion of an operation. This deducts
[all …]
Doperations.txt11 (*) Operation record initialisation.
74 There are a number of parameters that can be set in the operation record's flag
/linux-4.4.14/Documentation/networking/
Dpolicy-routing.txt37 Rule is a record of (src prefix, src interface, tos, dst prefix)
85 info. record. This approach is not appropriate for automated
120 Area classes must be terminated with reject record.
Dray_cs.txt118 1 = sniffer which can be used to record all
129 interpret the contents, but it can record to a file. This is only
Ddns_resolver.txt31 (*) Dns query support for AFSDB resource record.
/linux-4.4.14/scripts/
Dobjdiff143 record)
Danalyze_suspend.py3042 record = struct.unpack('HBBIQQQQQ', recdata)
3045 print(' Reset END : %u ns' % record[4])
3046 print(' OS Loader LoadImage Start : %u ns' % record[5])
3047 print(' OS Loader StartImage Start : %u ns' % record[6])
3048 print(' ExitBootServices Entry : %u ns' % record[7])
3049 print(' ExitBootServices Exit : %u ns' % record[8])
3059 record = struct.unpack('IIQQ', recdata[j:j+prechead[1]])
3060 fwData[1] = record[2]
3064 record[1])
3066 record[2])
[all …]
/linux-4.4.14/Documentation/
Dramoops.txt38 The module uses a counter to record multiple dumps but the counter gets reset
104 files is "dmesg-ramoops-N", where N is the record number in memory. To delete
105 a stored record from RAM, simply unlink the respective pstore file.
Diostats.txt130 record of the partition-relative address is kept, the subsequent success
144 keep record of the partition-relative address, an operation is attributed to
Dmd-cluster.txt7 The bitmaps record all writes that may have been started on that node,
Dkasan.txt145 of kmemcheck: use shadow memory to record whether each byte of memory is safe
/linux-4.4.14/drivers/misc/cxl/
Dvphb.c105 int record = cxl_pcie_cfg_record(bus, devfn); in cxl_pcie_cfg_addr() local
107 return (unsigned long)phb->cfg_addr + ((unsigned long)phb->cfg_data * record) + offset; in cxl_pcie_cfg_addr()
/linux-4.4.14/Documentation/filesystems/
Dqnx6.txt101 Eeach filename record additionally got a filename length field.
105 record plus the longfile inode number also stored in that record.
117 no block pointers and the directory file record pointing to the target file
Dxfs-delayed-logging-design.txt246 Now that we can record transactional changes in memory in a form that allows
306 formatted log items and a commit record at the tail. From a recovery
317 the transaction commit record, but tracking this requires us to have a
394 attached to the log buffer that the commit record was written to along with a
423 To do this, transactions need to record the LSN of the commit record of the
449 the checkpoint context records the LSN of the commit record for the checkpoint,
450 we can also wait on the log buffer that contains the commit record, thereby
486 usage of the transaction. The reservation accounts for log record headers,
514 problematic. Typically log record headers use at least 16KB of log space per
661 The final serialisation point is the checkpoint commit record ordering code
[all …]
/linux-4.4.14/Documentation/trace/
Dtracepoint-analysis.txt210 o When receiving an event about a PID, it can record who the parent was so
222 $ perf record -c 1 \
227 [ perf record: Captured and wrote 0.733 MB perf.data (~32010 samples) ]
233 This record outputted a file called perf.data which can be analysed using
262 $ perf record -c 1 -f \
Dmmiotrace.txt125 The raw log is text and easily filtered with e.g. grep and awk. One record is
126 one line in the log. A record starts with a keyword, followed by keyword-
Dftrace.txt130 Some of the tracers record the max latency.
140 Some latency tracers will record a trace whenever the
740 record-cmd
866 record-cmd - When any event or tracer is enabled, a hook is enabled
1210 The irqsoff tracer will record the total length of
1214 The preemptoff tracer will record the total length of
1220 not schedule. To record this time, use the preemptirqsoff
1451 to record the worst case wakeups of RT tasks. Non-RT tasks are
1714 record. For this reason, it is sometimes better to disable
2636 record max latency, such as "irqsoff" or "wakeup", can't use
/linux-4.4.14/arch/m68k/atari/
Dconfig.c131 int __init atari_parse_bootinfo(const struct bi_record *record) in atari_parse_bootinfo() argument
134 const void *data = record->data; in atari_parse_bootinfo()
136 switch (be16_to_cpu(record->tag)) { in atari_parse_bootinfo()
/linux-4.4.14/drivers/usb/serial/
Dio_ti.c1126 u8 *record; in do_download_mode() local
1180 record = kmalloc(1, GFP_KERNEL); in do_download_mode()
1181 if (!record) { in do_download_mode()
1200 *record = I2C_DESC_TYPE_FIRMWARE_BLANK; in do_download_mode()
1207 sizeof(*record), record); in do_download_mode()
1209 kfree(record); in do_download_mode()
1223 sizeof(*record), in do_download_mode()
1224 record); in do_download_mode()
1226 kfree(record); in do_download_mode()
1233 if (*record != I2C_DESC_TYPE_FIRMWARE_BLANK) { in do_download_mode()
[all …]
/linux-4.4.14/sound/usb/line6/
DKconfig20 * Signal routing (record clean/processed guitar signal,
/linux-4.4.14/Documentation/cpuidle/
Dgovernor.txt18 by the governor for some record keeping.
/linux-4.4.14/arch/arm/boot/dts/
Domap443x.dtsi64 /* Default unused, just provide register info for record */
Dspear1340.dtsi86 record;
/linux-4.4.14/arch/powerpc/perf/
Dcore-fsl-emb.c611 int record = 0; in record_and_restart() local
634 record = 1; in record_and_restart()
649 if (record) { in record_and_restart()
Dcore-book3s.c1957 int record = 0; in record_and_restart() local
1982 record = siar_valid(regs); in record_and_restart()
1997 if (record) { in record_and_restart()
/linux-4.4.14/arch/m68k/amiga/
Dconfig.c145 int __init amiga_parse_bootinfo(const struct bi_record *record) in amiga_parse_bootinfo() argument
148 const void *data = record->data; in amiga_parse_bootinfo()
150 switch (be16_to_cpu(record->tag)) { in amiga_parse_bootinfo()
/linux-4.4.14/drivers/infiniband/hw/mthca/
Dmthca_eq.c248 struct ib_event record; in port_change() local
253 record.device = &dev->ib_dev; in port_change()
254 record.event = active ? IB_EVENT_PORT_ACTIVE : IB_EVENT_PORT_ERR; in port_change()
255 record.element.port_num = port; in port_change()
257 ib_dispatch_event(&record); in port_change()
/linux-4.4.14/sound/pci/
Dsis7019.c600 u32 record = 0; in sis_pcm_trigger() local
630 record |= 1 << voice->num; in sis_pcm_trigger()
644 if (record) in sis_pcm_trigger()
645 outl(record, io + SIS_RECORD_START_REG); in sis_pcm_trigger()
651 if (record) in sis_pcm_trigger()
652 outl(record, io + SIS_RECORD_STOP_REG); in sis_pcm_trigger()
/linux-4.4.14/drivers/net/ethernet/sfc/
Dsiena_sriov.c247 MCDI_DECLARE_STRUCT_PTR(record); in efx_siena_sriov_memcpy()
260 record = MCDI_ARRAY_STRUCT_PTR(inbuf, MEMCPY_IN_RECORD, index); in efx_siena_sriov_memcpy()
261 MCDI_SET_DWORD(record, MEMCPY_RECORD_TYPEDEF_NUM_RECORDS, in efx_siena_sriov_memcpy()
263 MCDI_SET_DWORD(record, MEMCPY_RECORD_TYPEDEF_TO_RID, in efx_siena_sriov_memcpy()
265 MCDI_SET_QWORD(record, MEMCPY_RECORD_TYPEDEF_TO_ADDR, in efx_siena_sriov_memcpy()
284 MCDI_SET_DWORD(record, MEMCPY_RECORD_TYPEDEF_FROM_RID, from_rid); in efx_siena_sriov_memcpy()
285 MCDI_SET_QWORD(record, MEMCPY_RECORD_TYPEDEF_FROM_ADDR, in efx_siena_sriov_memcpy()
287 MCDI_SET_DWORD(record, MEMCPY_RECORD_TYPEDEF_LENGTH, in efx_siena_sriov_memcpy()
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/
Dmarvell,armada-370-xp-mpic.txt15 support, the "virtual" must be use (For the record, these registers
/linux-4.4.14/arch/arm/kernel/
Dhyp-stub.S60 strne \reg1, [\reg2, \reg3] @ record what happened and give up
/linux-4.4.14/sound/soc/rockchip/
DKconfig16 8 channels each for play and record.
/linux-4.4.14/drivers/s390/block/
Ddasd_eckd.h101 __u8 record; member
120 __u8 record; member
Ddasd_eckd.c475 data->search_arg.record = rec_on_trk; in fill_LRE_data()
730 data->search_arg.record = rec_on_trk; in locate_record()
2024 private->count_area[i].record != count_area_rec[i]) { in dasd_eckd_end_analysis()
2039 private->count_area[i].record != count_area_rec[i]) in dasd_eckd_end_analysis()
2045 if (private->count_area[3].record == 1) in dasd_eckd_end_analysis()
2315 ect->record = 0; in dasd_eckd_build_format()
2330 ect->record = 1; in dasd_eckd_build_format()
2344 ect->record = i + 1; in dasd_eckd_build_format()
3091 lredata->search_arg.record = rec_on_trk; in prepare_itcw()
/linux-4.4.14/Documentation/input/
Datarikbd.txt32 0xF7 absolute mouse position record
69 The relative mouse position record is a three byte record of the form
71 %111110xy ; mouse position record flag
106 In this mode, the ikbd generates a record whenever the joystick position is
109 The joystick event record is two bytes of the form:
389 joystick switch or trigger causes a joystick event record to be generated.
402 Return a record indicating the current state of the joysticks. This command
Duserio.txt66 The userio userspace tools are able to record PS/2 devices using some of the
Dyealink.txt12 - audio record full support, snd_usb_audio.ko / alsa API
/linux-4.4.14/tools/perf/tests/
DBuild10 perf-y += perf-record.o
/linux-4.4.14/sound/oss/dmasound/
Ddmasound.h127 void (*record)(void); /* optional */ member
/linux-4.4.14/arch/blackfin/
DKconfig.debug122 two entries. Omitting one of these entries from the record prevents
138 The trace buffer does not record single loops - helpful if trace
144 The trace buffer does not record loops two levels deep. Helpful if
/linux-4.4.14/arch/m68k/mac/
Dconfig.c83 int __init mac_parse_bootinfo(const struct bi_record *record) in mac_parse_bootinfo() argument
86 const void *data = record->data; in mac_parse_bootinfo()
88 switch (be16_to_cpu(record->tag)) { in mac_parse_bootinfo()
/linux-4.4.14/arch/s390/
DKconfig813 APPLDATA monitor record, i.e. enables or disables monitoring this record
830 APPLDATA monitor record, i.e. enables or disables monitoring this record
846 APPLDATA monitor record, i.e. enables or disables monitoring this record
/linux-4.4.14/Documentation/arm/
DCCN.txt54 The driver does not support sampling, therefore "perf record" will
/linux-4.4.14/Documentation/blackfin/
Dbfin-gpio-notes.txt45 The request functions will record the function state for a certain pin,
/linux-4.4.14/arch/arm/include/debug/
Dtegra.S85 mov \rv, #0 @ yes; record init is done
/linux-4.4.14/drivers/net/fjes/
Dfjes_hw.h258 } record[]; member
/linux-4.4.14/Documentation/device-mapper/
Dera.txt89 The target uses a bitset to record writes in the current era. It also
/linux-4.4.14/Documentation/fmc/
Dfmc-chardev.txt55 SDB record from a SPEC device programmed with its golden image:
Didentifiers.txt112 record at address 256, 512 and 1024.
/linux-4.4.14/Documentation/devicetree/
Doverlay-notes.txt42 /plugin/; /* allow undefined label references and record them */
/linux-4.4.14/Documentation/sound/alsa/
DMIXART.txt67 - mono record
/linux-4.4.14/Documentation/sound/oss/
DALS52 - Software selection of record source (line in, CD, FM, mic, master)
/linux-4.4.14/Documentation/acpi/apei/
Doutput_format.txt7 <error record> :=
/linux-4.4.14/drivers/s390/char/
Dvmur.c466 static int diag_position_to_record(int devno, int record) in diag_position_to_record() argument
470 cc = diag14(record, devno, 0x28); in diag_position_to_record()
DKconfig197 prompt "z/VM unit record device driver"
/linux-4.4.14/Documentation/filesystems/nfs/
Drpc-cache.txt191 Each request or response record should be printable ASCII
193 Fields within the record should be separated by spaces, normally one.
/linux-4.4.14/Documentation/video4linux/
DREADME.cpia2118 (http://mjpeg.sourceforge.net) can also be used to record from the camera.
/linux-4.4.14/kernel/trace/
DKconfig412 Those events can be inserted wherever kprobes can probe, and record
431 can probe, and record various registers.
547 run), and calls the tracepoint. Each iteration will record the time
/linux-4.4.14/arch/m68k/ifpsp060/
Dilsp.doc134 to record that such an event occurred if desired.
Dfplsp.doc116 to record that the event occurred.
/linux-4.4.14/sound/soc/blackfin/
DKconfig83 Note: This driver assumes that the ADAV80X digital record and playback
/linux-4.4.14/arch/frv/mm/
Dtlb-miss.S612 # map this PTD instead and record coverage address
/linux-4.4.14/Documentation/dvb/
Dfaq.txt30 TV watching and record/playback, have a look at VDR.
/linux-4.4.14/Documentation/watchdog/
Dconvert_drivers_to_kernel_api.txt157 have their own record-keeping for things like bootstatus and timeout using
Dwatchdog-api.txt111 interrupt, or other mechanism. This allows Linux to record useful
/linux-4.4.14/Documentation/driver-model/
Ddevres.txt88 /* record size, vaddr, dma_handle in dr */
/linux-4.4.14/Documentation/spi/
Dspidev66 of devices at a time. Just provide one spi_board_info record for each such
/linux-4.4.14/Documentation/cgroups/
Dmemcg_test.txt11 0. How to record usage ?
/linux-4.4.14/Documentation/accounting/
Dtaskstats.txt42 an additional record containing the per-tgid stats is also sent to userspace.
/linux-4.4.14/Documentation/isdn/
DREADME.hysdn164 0x00000020 Log firmware record parser

12