/linux-4.4.14/tools/perf/tests/attr/ |
D | README | 35 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 …]
|
D | test-record-group | 2 command = record 5 [event-1:base-record] 11 [event-2:base-record]
|
D | test-record-group1 | 2 command = record 5 [event-1:base-record] 11 [event-2:base-record]
|
D | test-record-group-sampling | 2 command = record 5 [event-1:base-record] 12 [event-2:base-record]
|
D | test-record-basic | 2 command = record 5 [event:base-record]
|
D | test-record-freq | 2 command = record 5 [event:base-record]
|
D | test-record-no-samples | 2 command = record 5 [event:base-record]
|
D | test-record-graph-default | 2 command = record 5 [event:base-record]
|
D | test-record-no-inherit | 2 command = record 5 [event:base-record]
|
D | test-record-raw | 2 command = record 5 [event:base-record]
|
D | test-record-branch-any | 2 command = record 5 [event:base-record]
|
D | test-record-graph-fp | 2 command = record 5 [event:base-record]
|
D | test-record-count | 2 command = record 5 [event:base-record]
|
D | test-record-period | 2 command = record 5 [event:base-record]
|
D | test-record-branch-filter-hv | 2 command = record 5 [event:base-record]
|
D | test-record-branch-filter-u | 2 command = record 5 [event:base-record]
|
D | test-record-branch-filter-k | 2 command = record 5 [event:base-record]
|
D | test-record-branch-filter-ind_call | 2 command = record 5 [event:base-record]
|
D | test-record-branch-filter-any | 2 command = record 5 [event:base-record]
|
D | test-record-branch-filter-any_ret | 2 command = record 5 [event:base-record]
|
D | test-record-branch-filter-any_call | 2 command = record 5 [event:base-record]
|
D | test-record-no-delay | 2 command = record 5 [event:base-record]
|
D | test-record-data | 2 command = record 5 [event:base-record]
|
D | test-record-graph-dwarf | 2 command = record 5 [event:base-record]
|
D | test-record-C0 | 2 command = record 5 [event:base-record]
|
/linux-4.4.14/sound/usb/6fire/ |
D | firmware.c | 84 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/ |
D | ihex2fw.c | 53 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 …]
|
D | atmsar11.HEX | 204 First record is start address in a __be32.
|
/linux-4.4.14/drivers/usb/misc/ |
D | ezusb.c | 79 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/ |
D | revoke.c | 143 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/ |
D | builtin-record.c | 41 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 …]
|
D | perf-with-kcore.sh | 53 ("$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 | .gitignore | 9 perf-record
|
D | command-list.txt | 20 perf-record mainporcelain common
|
D | Build | 10 perf-y += builtin-record.o
|
D | perf-completion.sh | 163 $prev_skip_opts == @(record|stat|top) ]]; then
|
D | builtin-top.c | 1056 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/ |
D | plugin_hrtimer.c | 28 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 …]
|
D | plugin_sched_switch.c | 48 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 …]
|
D | plugin_kvm.c | 250 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 …]
|
D | plugin_mac80211.c | 56 #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()
|
D | parse-filter.c | 1694 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 …]
|
D | plugin_function.c | 125 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()
|
D | event-parse.h | 105 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 …]
|
D | plugin_kmem.c | 26 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()
|
D | event-parse.c | 5075 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/ |
D | setup_mm.c | 145 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/ |
D | bfind.c | 83 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 …]
|
D | brec.c | 80 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()
|
D | btree.h | 74 int record; member
|
/linux-4.4.14/tools/hv/ |
D | hv_kvp_daemon.c | 179 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/ |
D | bfind.c | 151 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 …]
|
D | brec.c | 78 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()
|
D | hfsplus_fs.h | 290 int record; member
|
/linux-4.4.14/kernel/ |
D | latencytop.c | 114 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/ |
D | ipoib_verbs.c | 287 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()
|
D | ipoib.h | 560 struct ib_event *record);
|
/linux-4.4.14/tools/perf/Documentation/ |
D | perf-timechart.txt | 11 '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]
|
D | perf-mem.txt | 11 '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]
|
D | perf-sched.txt | 11 '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]
|
D | perf-kvm.txt | 13 {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 …]
|
D | perf-script.txt | 6 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 …]
|
D | perf-kmem.txt | 11 'perf kmem' {record|stat} [<options>] 17 'perf kmem record <command>' to record the kmem events 66 linkperf:perf-record[1]
|
D | perf-script-python.txt | 75 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 …]
|
D | perf-trace.txt | 12 '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]
|
D | perf-lock.txt | 11 'perf lock' {record|report|script|info} 18 'perf lock record <command>' records lock events
|
D | intel-pt.txt | 16 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 …]
|
D | intel-bts.txt | 18 'perf record'. 21 perf record 27 The Intel BTS kernel driver creates a new PMU for Intel BTS. The perf record
|
D | perf-list.txt | 56 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],
|
D | perf-inject.txt | 15 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]
|
D | examples.txt | 69 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) ]
|
D | perf-annotate.txt | 6 perf-annotate - Read perf.data (created by perf record) and display annotated code 101 linkperf:perf-record[1], linkperf:perf-report[1]
|
D | perf-archive.txt | 22 linkperf:perf-record[1], linkperf:perf-buildid-list[1], linkperf:perf-report[1]
|
D | perf-evlist.txt | 37 linkperf:perf-record[1], linkperf:perf-list[1],
|
D | perf-buildid-list.txt | 42 linkperf:perf-record[1], linkperf:perf-top[1],
|
D | perf-record.txt | 1 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
|
D | perf.txt | 48 linkperf:perf-record[1], linkperf:perf-report[1],
|
D | perf-report.txt | 6 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
|
D | perf-script-perl.txt | 49 As an example, the following perf record command can be used to record 52 # perf record -a -e sched:sched_wakeup
|
D | perf-diff.txt | 16 files captured via perf record. 214 linkperf:perf-record[1], linkperf:perf-report[1]
|
D | perf-buildid-cache.txt | 63 linkperf:perf-record[1], linkperf:perf-report[1], linkperf:perf-buildid-list[1]
|
D | perf-top.txt | 165 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/ |
D | trace-event-parse.c | 118 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()
|
D | Build | 76 libperf-y += record.o
|
/linux-4.4.14/kernel/gcov/ |
D | gcc_3_4.c | 337 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/ |
D | fmc-sdb.c | 51 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()
|
D | fmc-dump.c | 95 line = (void *)fmc->sdb->record; in fmc_dump_sdb()
|
/linux-4.4.14/drivers/pci/ |
D | pci-acpi.c | 44 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/ |
D | e1000_i210.c | 465 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/ |
D | htc.c | 237 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/ |
D | amdgpu_atombios.c | 360 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 …]
|
D | atombios_encoders.c | 1986 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/ |
D | failed-syscalls-record | 2 (perf record -e raw_syscalls:sys_exit $@ || \ 3 perf record -e syscalls:sys_exit $@) 2> /dev/null
|
D | wakeup-latency-record | 2 perf record -e sched:sched_switch -e sched:sched_wakeup $@
|
D | rw-by-file-record | 2 perf record -e syscalls:sys_enter_read -e syscalls:sys_enter_write $@
|
D | check-perf-trace-record | 2 perf record -a -e kmem:kmalloc -e irq:softirq_entry -e kmem:kfree
|
D | rw-by-pid-record | 2 perf record -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e sys…
|
D | rwtop-record | 2 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/ |
D | failed-syscalls-by-pid-record | 2 (perf record -e raw_syscalls:sys_exit $@ || \ 3 perf record -e syscalls:sys_exit $@) 2> /dev/null
|
D | sctop-record | 2 (perf record -e raw_syscalls:sys_enter $@ || \ 3 perf record -e syscalls:sys_enter $@) 2> /dev/null
|
D | syscall-counts-by-pid-record | 2 (perf record -e raw_syscalls:sys_enter $@ || \ 3 perf record -e syscalls:sys_enter $@) 2> /dev/null
|
D | syscall-counts-record | 2 (perf record -e raw_syscalls:sys_enter $@ || \ 3 perf record -e syscalls:sys_enter $@) 2> /dev/null
|
D | export-to-postgresql-record | 8 perf record $@
|
D | event_analyzing_sample-record | 8 perf record $@
|
D | net_dropmonitor-record | 2 perf record -e skb:kfree_skb $@
|
D | futex-contention-record | 2 perf record -e syscalls:sys_enter_futex -e syscalls:sys_exit_futex $@
|
D | sched-migration-record | 2 perf record -m 16384 -e sched:sched_wakeup -e sched:sched_wakeup_new -e sched:sched_switch -e sched…
|
D | compaction-times-record | 2 perf record -e compaction:mm_compaction_begin -e compaction:mm_compaction_end -e compaction:mm_comp…
|
D | netdev-times-record | 2 perf record -e net:net_dev_xmit -e net:net_dev_queue \
|
/linux-4.4.14/include/acpi/ |
D | apei.h | 36 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/ |
D | dev-kmsg | 24 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
|
D | sysfs-class-cxl | 114 configuration record. 122 configuration record. 130 configuration record. 138 record. The format is expected to match the either the standard
|
D | pstore | 39 multiple) files based on the record size of the underlying
|
/linux-4.4.14/fs/btrfs/ |
D | delayed-ref.c | 764 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()
|
D | qgroup.c | 1428 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 …]
|
D | qgroup.h | 68 struct btrfs_qgroup_extent_record *record);
|
/linux-4.4.14/arch/m68k/apollo/ |
D | config.c | 49 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/ |
D | erst.c | 762 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/ |
D | config.c | 72 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/ |
D | radeon_atombios.c | 662 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/ |
D | prism2fw.c | 856 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/ |
D | htc_pipe.c | 858 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()
|
D | htc_mbox.c | 1671 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/ |
D | Makefile | 1 obj-$(CONFIG_SAMPLE_KFIFO) += bytestream-example.o dma-example.o inttype-example.o record-example.o
|
/linux-4.4.14/Documentation/blockdev/drbd/ |
D | drbd-connection-state-overview.dot | 15 CommTrouble [ shape=record, 48 …cluster_resync [ shape=record,label="{<any>resynchronisation process running\l'concurrent' applica…
|
/linux-4.4.14/sound/soc/dwc/ |
D | Kconfig | 8 maximum of 8 channels each for play and record.
|
/linux-4.4.14/include/linux/ |
D | fmc-sdb.h | 30 union sdb_record *record; /* copies of the struct */ member
|
D | perf_event.h | 1008 extern void perf_tp_event(u64 addr, u64 count, void *record,
|
/linux-4.4.14/Documentation/s390/ |
D | monreader.txt | 128 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
|
D | DASD | 35 partition table in the label record.
|
/linux-4.4.14/Documentation/filesystems/caching/ |
D | backend-api.txt | 153 (*) 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 …]
|
D | operations.txt | 11 (*) 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/ |
D | policy-routing.txt | 37 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.
|
D | ray_cs.txt | 118 1 = sniffer which can be used to record all 129 interpret the contents, but it can record to a file. This is only
|
D | dns_resolver.txt | 31 (*) Dns query support for AFSDB resource record.
|
/linux-4.4.14/scripts/ |
D | objdiff | 143 record)
|
D | analyze_suspend.py | 3042 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/ |
D | ramoops.txt | 38 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.
|
D | iostats.txt | 130 record of the partition-relative address is kept, the subsequent success 144 keep record of the partition-relative address, an operation is attributed to
|
D | md-cluster.txt | 7 The bitmaps record all writes that may have been started on that node,
|
D | kasan.txt | 145 of kmemcheck: use shadow memory to record whether each byte of memory is safe
|
/linux-4.4.14/drivers/misc/cxl/ |
D | vphb.c | 105 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/ |
D | qnx6.txt | 101 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
|
D | xfs-delayed-logging-design.txt | 246 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/ |
D | tracepoint-analysis.txt | 210 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 \
|
D | mmiotrace.txt | 125 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-
|
D | ftrace.txt | 130 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/ |
D | config.c | 131 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/ |
D | io_ti.c | 1126 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/ |
D | Kconfig | 20 * Signal routing (record clean/processed guitar signal,
|
/linux-4.4.14/Documentation/cpuidle/ |
D | governor.txt | 18 by the governor for some record keeping.
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | omap443x.dtsi | 64 /* Default unused, just provide register info for record */
|
D | spear1340.dtsi | 86 record;
|
/linux-4.4.14/arch/powerpc/perf/ |
D | core-fsl-emb.c | 611 int record = 0; in record_and_restart() local 634 record = 1; in record_and_restart() 649 if (record) { in record_and_restart()
|
D | core-book3s.c | 1957 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/ |
D | config.c | 145 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/ |
D | mthca_eq.c | 248 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/ |
D | sis7019.c | 600 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/ |
D | siena_sriov.c | 247 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/ |
D | marvell,armada-370-xp-mpic.txt | 15 support, the "virtual" must be use (For the record, these registers
|
/linux-4.4.14/arch/arm/kernel/ |
D | hyp-stub.S | 60 strne \reg1, [\reg2, \reg3] @ record what happened and give up
|
/linux-4.4.14/sound/soc/rockchip/ |
D | Kconfig | 16 8 channels each for play and record.
|
/linux-4.4.14/drivers/s390/block/ |
D | dasd_eckd.h | 101 __u8 record; member 120 __u8 record; member
|
D | dasd_eckd.c | 475 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/ |
D | atarikbd.txt | 32 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
|
D | userio.txt | 66 The userio userspace tools are able to record PS/2 devices using some of the
|
D | yealink.txt | 12 - audio record full support, snd_usb_audio.ko / alsa API
|
/linux-4.4.14/tools/perf/tests/ |
D | Build | 10 perf-y += perf-record.o
|
/linux-4.4.14/sound/oss/dmasound/ |
D | dmasound.h | 127 void (*record)(void); /* optional */ member
|
/linux-4.4.14/arch/blackfin/ |
D | Kconfig.debug | 122 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/ |
D | config.c | 83 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/ |
D | Kconfig | 813 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/ |
D | CCN.txt | 54 The driver does not support sampling, therefore "perf record" will
|
/linux-4.4.14/Documentation/blackfin/ |
D | bfin-gpio-notes.txt | 45 The request functions will record the function state for a certain pin,
|
/linux-4.4.14/arch/arm/include/debug/ |
D | tegra.S | 85 mov \rv, #0 @ yes; record init is done
|
/linux-4.4.14/drivers/net/fjes/ |
D | fjes_hw.h | 258 } record[]; member
|
/linux-4.4.14/Documentation/device-mapper/ |
D | era.txt | 89 The target uses a bitset to record writes in the current era. It also
|
/linux-4.4.14/Documentation/fmc/ |
D | fmc-chardev.txt | 55 SDB record from a SPEC device programmed with its golden image:
|
D | identifiers.txt | 112 record at address 256, 512 and 1024.
|
/linux-4.4.14/Documentation/devicetree/ |
D | overlay-notes.txt | 42 /plugin/; /* allow undefined label references and record them */
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | MIXART.txt | 67 - mono record
|
/linux-4.4.14/Documentation/sound/oss/ |
D | ALS | 52 - Software selection of record source (line in, CD, FM, mic, master)
|
/linux-4.4.14/Documentation/acpi/apei/ |
D | output_format.txt | 7 <error record> :=
|
/linux-4.4.14/drivers/s390/char/ |
D | vmur.c | 466 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()
|
D | Kconfig | 197 prompt "z/VM unit record device driver"
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | rpc-cache.txt | 191 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/ |
D | README.cpia2 | 118 (http://mjpeg.sourceforge.net) can also be used to record from the camera.
|
/linux-4.4.14/kernel/trace/ |
D | Kconfig | 412 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/ |
D | ilsp.doc | 134 to record that such an event occurred if desired.
|
D | fplsp.doc | 116 to record that the event occurred.
|
/linux-4.4.14/sound/soc/blackfin/ |
D | Kconfig | 83 Note: This driver assumes that the ADAV80X digital record and playback
|
/linux-4.4.14/arch/frv/mm/ |
D | tlb-miss.S | 612 # map this PTD instead and record coverage address
|
/linux-4.4.14/Documentation/dvb/ |
D | faq.txt | 30 TV watching and record/playback, have a look at VDR.
|
/linux-4.4.14/Documentation/watchdog/ |
D | convert_drivers_to_kernel_api.txt | 157 have their own record-keeping for things like bootstatus and timeout using
|
D | watchdog-api.txt | 111 interrupt, or other mechanism. This allows Linux to record useful
|
/linux-4.4.14/Documentation/driver-model/ |
D | devres.txt | 88 /* record size, vaddr, dma_handle in dr */
|
/linux-4.4.14/Documentation/spi/ |
D | spidev | 66 of devices at a time. Just provide one spi_board_info record for each such
|
/linux-4.4.14/Documentation/cgroups/ |
D | memcg_test.txt | 11 0. How to record usage ?
|
/linux-4.4.14/Documentation/accounting/ |
D | taskstats.txt | 42 an additional record containing the per-tgid stats is also sent to userspace.
|
/linux-4.4.14/Documentation/isdn/ |
D | README.hysdn | 164 0x00000020 Log firmware record parser
|