Home
last modified time | relevance | path

Searched refs:record (Results 1 – 25 of 494) sorted by relevance

12345678910>>...20

/linux/tools/perf/tests/attr/
H A 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 …]
/linux/sound/usb/6fire/
H A Dfirmware.c80 static bool usb6fire_fw_ihex_next_record(struct ihex_record *record) in usb6fire_fw_ihex_next_record() argument
86 record->error = false; in usb6fire_fw_ihex_next_record()
89 while (record->txt_offset < record->txt_length in usb6fire_fw_ihex_next_record()
90 && record->txt_data[record->txt_offset] != ':') in usb6fire_fw_ihex_next_record()
91 record->txt_offset++; in usb6fire_fw_ihex_next_record()
92 if (record->txt_offset == record->txt_length) in usb6fire_fw_ihex_next_record()
96 record->txt_offset++; in usb6fire_fw_ihex_next_record()
97 if (record->txt_offset + 8 > record->txt_length) { in usb6fire_fw_ihex_next_record()
98 record->error = true; in usb6fire_fw_ihex_next_record()
102 record->len = usb6fire_fw_ihex_hex(record->txt_data + in usb6fire_fw_ihex_next_record()
[all …]
/linux/drivers/usb/misc/
H A Dezusb.c64 const struct ihex_binrec *record; in ezusb_ihex_firmware_download() local
78 record = (const struct ihex_binrec *)firmware->data; in ezusb_ihex_firmware_download()
79 for (; record; record = ihex_next_binrec(record)) { in ezusb_ihex_firmware_download()
80 if (be32_to_cpu(record->addr) > fx.max_internal_adress) { in ezusb_ihex_firmware_download()
81 ret = ezusb_writememory(dev, be32_to_cpu(record->addr), in ezusb_ihex_firmware_download()
82 (unsigned char *)record->data, in ezusb_ihex_firmware_download()
83 be16_to_cpu(record->len), WRITE_EXT_RAM); in ezusb_ihex_firmware_download()
88 be32_to_cpu(record->addr), record->data, in ezusb_ihex_firmware_download()
89 be16_to_cpu(record->len)); in ezusb_ihex_firmware_download()
98 record = (const struct ihex_binrec *)firmware->data; in ezusb_ihex_firmware_download()
[all …]
/linux/tools/perf/util/arm-spe-decoder/
H A Darm-spe-decoder.c157 memset(&decoder->record, 0x0, sizeof(decoder->record)); in arm_spe_read_record()
158 decoder->record.context_id = (u64)-1; in arm_spe_read_record()
170 decoder->record.timestamp = payload; in arm_spe_read_record()
177 decoder->record.from_ip = ip; in arm_spe_read_record()
179 decoder->record.to_ip = ip; in arm_spe_read_record()
181 decoder->record.virt_addr = ip; in arm_spe_read_record()
183 decoder->record.phys_addr = ip; in arm_spe_read_record()
187 decoder->record.latency = payload; in arm_spe_read_record()
190 decoder->record.context_id = payload; in arm_spe_read_record()
195 decoder->record.op |= ARM_SPE_OP_LDST; in arm_spe_read_record()
[all …]
/linux/tools/firmware/
H A Dihex2fw.c54 static void file_record(struct ihex_binrec *record);
134 struct ihex_binrec *record; in process_ihex() local
162 record_size = ALIGN(sizeof(*record) + len, 4); in process_ihex()
163 record = malloc(record_size); in process_ihex()
164 if (!record) { in process_ihex()
168 memset(record, 0, record_size); in process_ihex()
169 record->len = len; in process_ihex()
172 if (i + 8 + (record->len * 2) > size) { in process_ihex()
178 record->addr = hex(data + i, &crc) << 8; i += 2; in process_ihex()
179 record->addr |= hex(data + i, &crc); i += 2; in process_ihex()
[all …]
/linux/fs/jbd2/
H A Drevoke.c140 struct jbd2_revoke_record_s *record; in insert_revoke_hash() local
145 record = kmem_cache_alloc(jbd2_revoke_record_cache, gfp_mask); in insert_revoke_hash()
146 if (!record) in insert_revoke_hash()
149 record->sequence = seq; in insert_revoke_hash()
150 record->blocknr = blocknr; in insert_revoke_hash()
153 list_add(&record->hash, hash_list); in insert_revoke_hash()
164 struct jbd2_revoke_record_s *record; in find_revoke_record() local
169 record = (struct jbd2_revoke_record_s *) hash_list->next; in find_revoke_record()
170 while (&(record->hash) != hash_list) { in find_revoke_record()
171 if (record->blocknr == blocknr) { in find_revoke_record()
[all …]
/linux/drivers/md/dm-vdo/indexer/
H A Dvolume-index.c132 get_zone_for_record(const struct volume_index_record *record) in get_zone_for_record() argument
134 return &record->sub_index->zones[record->zone_number]; in get_zone_for_record()
137 static inline u64 convert_index_to_virtual(const struct volume_index_record *record, in convert_index_to_virtual() argument
140 const struct volume_sub_index_zone *volume_index_zone = get_zone_for_record(record); in convert_index_to_virtual()
142 record->sub_index->chapter_mask); in convert_index_to_virtual()
153 static inline bool is_virtual_chapter_indexed(const struct volume_index_record *record, in is_virtual_chapter_indexed() argument
156 const struct volume_sub_index_zone *volume_index_zone = get_zone_for_record(record); in is_virtual_chapter_indexed()
387 static inline int flush_invalid_entries(struct volume_index_record *record, in flush_invalid_entries() argument
393 result = uds_next_delta_index_entry(&record->delta_entry); in flush_invalid_entries()
397 while (!record->delta_entry.at_end) { in flush_invalid_entries()
[all …]
H A Dopen-chapter.c102 struct uds_volume_record *record; in probe_chapter_slots() local
122 record = &open_chapter->records[record_number]; in probe_chapter_slots()
123 if ((memcmp(&record->name, name, UDS_RECORD_NAME_SIZE) == 0) && in probe_chapter_slots()
159 struct uds_volume_record *record; in uds_put_open_chapter() local
172 record = &open_chapter->records[record_number]; in uds_put_open_chapter()
173 record->name = *name; in uds_put_open_chapter()
174 record->data = *metadata; in uds_put_open_chapter()
237 struct uds_volume_record *record = &collated_records[records]; in fill_delta_chapter_index() local
248 *record = *fill_record; in fill_delta_chapter_index()
252 *record = open_chapter->records[record_index]; in fill_delta_chapter_index()
[all …]
/linux/fs/pstore/
H A Dinode.c43 struct pstore_record *record; member
59 if (private->record) { in free_pstore_private()
60 kvfree(private->record->buf); in free_pstore_private()
61 kfree(private->record->priv); in free_pstore_private()
62 kfree(private->record); in free_pstore_private()
112 rec = (struct pstore_ftrace_record *)(ps->record->buf + data->off); in pstore_ftrace_seq_show()
136 if (ps->record->type == PSTORE_TYPE_FTRACE) in pstore_file_read()
139 ps->record->buf, ps->total_size); in pstore_file_read()
149 if (ps->record->type == PSTORE_TYPE_FTRACE) in pstore_file_open()
185 struct pstore_record *record = p->record; in pstore_unlink() local
[all …]
H A Dram.c124 struct pstore_record *record) in ramoops_get_next_prz() argument
143 record->type = prz->type; in ramoops_get_next_prz()
144 record->id = id; in ramoops_get_next_prz()
182 static ssize_t ramoops_pstore_read(struct pstore_record *record) in ramoops_pstore_read() argument
185 struct ramoops_context *cxt = record->psi->data; in ramoops_pstore_read()
195 record->time.tv_sec = 0; in ramoops_pstore_read()
196 record->time.tv_nsec = 0; in ramoops_pstore_read()
197 record->compressed = false; in ramoops_pstore_read()
202 record); in ramoops_pstore_read()
206 &record->time, in ramoops_pstore_read()
[all …]
H A Dzone.c658 struct pstore_zone *zone, struct pstore_record *record) in psz_kmsg_erase() argument
669 if (record->count != hdr->counter) in psz_kmsg_erase()
699 static int psz_pstore_erase(struct pstore_record *record) in psz_pstore_erase() argument
701 struct psz_context *cxt = record->psi->data; in psz_pstore_erase()
703 switch (record->type) { in psz_pstore_erase()
705 if (record->id >= cxt->kmsg_max_cnt) in psz_pstore_erase()
707 return psz_kmsg_erase(cxt, cxt->kpszs[record->id], record); in psz_pstore_erase()
713 if (record->id >= cxt->ftrace_max_cnt) in psz_pstore_erase()
715 return psz_record_erase(cxt, cxt->fpszs[record->id]); in psz_pstore_erase()
721 struct pstore_record *record) in psz_write_kmsg_hdr() argument
[all …]
/linux/drivers/net/ethernet/broadcom/bnxt/
H A Dbnxt_coredump.c197 static void bnxt_fill_cmdline(struct bnxt_coredump_record *record) in bnxt_fill_cmdline() argument
204 sizeof(record->commandline) - 1); in bnxt_fill_cmdline()
205 if (len && !copy_from_user(record->commandline, in bnxt_fill_cmdline()
208 if (record->commandline[i]) in bnxt_fill_cmdline()
211 record->commandline[i] = ' '; in bnxt_fill_cmdline()
213 record->commandline[last + 1] = 0; in bnxt_fill_cmdline()
218 strscpy(record->commandline, current->comm, TASK_COMM_LEN); in bnxt_fill_cmdline()
222 bnxt_fill_coredump_record(struct bnxt *bp, struct bnxt_coredump_record *record, in bnxt_fill_coredump_record() argument
231 memset(record, 0, sizeof(*record)); in bnxt_fill_coredump_record()
232 memcpy(record->signature, "cOrE", 4); in bnxt_fill_coredump_record()
[all …]
/linux/lib/pldmfw/
H A Dpldmfw.c259 pldm_parse_desc_tlvs(struct pldmfw_priv *data, struct pldmfw_record *record, u8 desc_count) in pldm_parse_desc_tlvs() argument
298 list_add_tail(&desc->entry, &record->descs); in pldm_parse_desc_tlvs()
323 struct pldmfw_record *record; in pldm_parse_one_record() local
331 record = kzalloc(sizeof(*record), GFP_KERNEL); in pldm_parse_one_record()
332 if (!record) in pldm_parse_one_record()
335 INIT_LIST_HEAD(&record->descs); in pldm_parse_one_record()
336 list_add_tail(&record->entry, &data->records); in pldm_parse_one_record()
344 record->package_data_len = get_unaligned_le16(&__record->package_data_len); in pldm_parse_one_record()
345 record->version_len = __record->version_len; in pldm_parse_one_record()
346 record->version_type = __record->version_type; in pldm_parse_one_record()
[all …]
/linux/arch/m68k/include/asm/
H A Dconfig.h11 extern int amiga_parse_bootinfo(const struct bi_record *record);
12 extern int apollo_parse_bootinfo(const struct bi_record *record);
13 extern int atari_parse_bootinfo(const struct bi_record *record);
14 extern int bvme6000_parse_bootinfo(const struct bi_record *record);
15 extern int hp300_parse_bootinfo(const struct bi_record *record);
16 extern int mac_parse_bootinfo(const struct bi_record *record);
17 extern int mvme147_parse_bootinfo(const struct bi_record *record);
18 extern int mvme16x_parse_bootinfo(const struct bi_record *record);
19 extern int q40_parse_bootinfo(const struct bi_record *record);
20 extern int virt_parse_bootinfo(const struct bi_record *record);
/linux/tools/tracing/rtla/src/
H A Dtimerlat_aa.c149 struct trace_seq *s, struct tep_record *record, in timerlat_aa_irq_latency() argument
157 taa_data->tlat_irq_timstamp = record->ts; in timerlat_aa_irq_latency()
180 tep_get_field_val(s, event, "timer_latency", record, &taa_data->tlat_irq_latency, 1); in timerlat_aa_irq_latency()
181 tep_get_field_val(s, event, "seqnum", record, &taa_data->tlat_irq_seqnum, 1); in timerlat_aa_irq_latency()
184 tep_get_common_field_val(s, event, "common_pid", record, &taa_data->run_thread_pid, 1); in timerlat_aa_irq_latency()
217 struct trace_seq *s, struct tep_record *record, in timerlat_aa_thread_latency() argument
225 taa_data->tlat_thread_timstamp = record->ts; in timerlat_aa_thread_latency()
228 tep_get_field_val(s, event, "timer_latency", record, &taa_data->tlat_thread_latency, 1); in timerlat_aa_thread_latency()
229 tep_get_field_val(s, event, "seqnum", record, &taa_data->tlat_thread_seqnum, 1); in timerlat_aa_thread_latency()
241 static int timerlat_aa_handler(struct trace_seq *s, struct tep_record *record, in timerlat_aa_handler() argument
[all …]
/linux/drivers/gpu/drm/vboxvideo/
H A Dvbva_base.c64 struct vbva_record *record; in vbva_write() local
69 record = vbva_ctx->record; in vbva_write()
72 !record || !(record->len_and_flags & VBVA_F_RECORD_PARTIAL)) in vbva_write()
98 record->len_and_flags += chunk; in vbva_write()
158 vbva_ctx->record = NULL; in vbva_disable()
167 struct vbva_record *record; in vbva_buffer_begin_update() local
174 WARN_ON(vbva_ctx->buffer_overflow || vbva_ctx->record); in vbva_buffer_begin_update()
186 record = &vbva_ctx->vbva->records[vbva_ctx->vbva->record_free_index]; in vbva_buffer_begin_update()
187 record->len_and_flags = VBVA_F_RECORD_PARTIAL; in vbva_buffer_begin_update()
190 vbva_ctx->record = record; in vbva_buffer_begin_update()
[all …]
/linux/tools/perf/Documentation/
H A Djitdump-specification.txt29 …xed size header describing the type of record and its size. It is, itself, followed by the payload…
53 …ader is immediately followed by records. Each record starts with a fixed size header describing th…
55 The record header is specified in order as follows:
56 * uint32_t id : a value identifying the record type (see below)
57 * uint32_t total_size: the size in bytes of the record including the header.
58 * uint64_t timestamp : a timestamp of when the record was created.
60 The following record types are defined:
61 * Value 0 : JIT_CODE_LOAD : record describing a jitted function
62 * Value 1 : JIT_CODE_MOVE : record describing an already jitted function which is moved
63 * Value 2 : JIT_CODE_DEBUG_INFO: record describing the debug information for a jitted function
[all …]
H A Dtips.txt2 Sample related events with: perf record -e '{cycles,instructions}:S'
8 Save output of perf stat using: perf stat record <target workload>
19 Profiling branch (mis)predictions with: perf record -b / perf report
20 To show assembler sample context control flow use perf record -b / perf report --samples 10 and the…
22 Treat branches as callchains: perf record -b ... ; perf report --branch-history
23 Show estimate cycles per function and IPC in annotate use perf record -b ... ; perf report --total-…
27 For memory address profiling, try: perf mem record / perf mem report
29 To record callchains for each sample: perf record -g
30 If call chains don't work try perf record --call-graph dwarf or --call-graph lbr
31 To record every process run by a user: perf record -u <user>
[all …]
H A Dperf-daemon.txt7 perf-daemon - Run record sessions on background
24 monitors configured record sessions.
27 'perf record' child tasks, like:
32 …916507 916508 ... \_ perf record --control=fifo:control,ack -m 10M -e cycles --overwrite --switc…
33 …916507 916509 ... \_ perf record --control=fifo:control,ack -m 20M -e sched:* --overwrite --swit…
35 Not every 'perf record' session is suitable for running under daemon.
41 Each session is started with control setup (with perf record --control
106 Defines new record session. The value is record's command
107 line without the 'record' keyword.
109 Each perf record session is run in daemon.base/<NAME> directory.
[all …]
/linux/tools/perf/
H A Dbuiltin-record.c3 * builtin-record.c
5 * Builtin record command: Record the profile of a workload
30 #include "util/record.h"
113 struct record *rec;
152 struct record { struct
213 static int record__threads_enabled(struct record *rec)
218 static bool switch_output_signal(struct record *rec) in switch_output_size()
224 static bool switch_output_size(struct record *rec) in switch_output_time()
231 static bool switch_output_time(struct record *rec)
237 static u64 record__bytes_written(struct record *re in record__output_max_size_exceeded()
154 optsrecord global() argument
158 itrrecord global() argument
180 thread_datarecord global() argument
203 index_map_cntrecord record__threads_enabled() argument
1522 process_comp_header(void * record,size_t increment) process_comp_header() argument
2886 record_opts__parse_callchain(struct record_opts * record,struct callchain_param * callchain,const char * arg,bool unset) record_opts__parse_callchain() argument
3312 static struct record record = { global() variable
[all...]
/linux/tools/perf/util/
H A Darm-spe.c276 static struct simd_flags arm_spe__synth_simd_flags(const struct arm_spe_record *record) in arm_spe__synth_simd_flags() argument
280 if ((record->op & ARM_SPE_OP_LDST) && (record->op & ARM_SPE_OP_SVE_LDST)) in arm_spe__synth_simd_flags()
283 if ((record->op & ARM_SPE_OP_OTHER) && (record->op & ARM_SPE_OP_SVE_OTHER)) in arm_spe__synth_simd_flags()
286 if (record->type & ARM_SPE_SVE_PARTIAL_PRED) in arm_spe__synth_simd_flags()
289 if (record->type & ARM_SPE_SVE_EMPTY_PRED) in arm_spe__synth_simd_flags()
300 struct arm_spe_record *record = &speq->decoder->record; in arm_spe_prep_sample() local
303 sample->time = tsc_to_perf_time(record in arm_spe_prep_sample()
349 struct arm_spe_record *record = &speq->decoder->record; arm_spe__synth_mem_sample() local
369 struct arm_spe_record *record = &speq->decoder->record; arm_spe__synth_branch_sample() local
387 struct arm_spe_record *record = &speq->decoder->record; arm_spe__synth_instruction_sample() local
419 arm_spe__synth_data_source_neoverse(const struct arm_spe_record * record,union perf_mem_data_src * data_src) arm_spe__synth_data_source_neoverse() argument
495 arm_spe__synth_data_source_generic(const struct arm_spe_record * record,union perf_mem_data_src * data_src) arm_spe__synth_data_source_generic() argument
518 arm_spe__synth_data_source(const struct arm_spe_record * record,u64 midr) arm_spe__synth_data_source() argument
549 const struct arm_spe_record *record = &speq->decoder->record; arm_spe_sample() local
640 struct arm_spe_record *record; arm_spe_run_decoder() local
721 struct arm_spe_record *record; arm_spe__setup_queue() local
[all...]
/linux/drivers/misc/cxl/
H A Dvphb.c100 int record; in cxl_pcie_config_info() local
102 record = cxl_pcie_cfg_record(bus->number, devfn); in cxl_pcie_config_info()
103 if (record > afu->crs_num) in cxl_pcie_config_info()
106 *_record = record; in cxl_pcie_config_info()
113 int rc, record; in cxl_pcie_read_config() local
124 rc = cxl_pcie_config_info(bus, devfn, afu, &record); in cxl_pcie_read_config()
130 rc = cxl_ops->afu_cr_read8(afu, record, offset, &val8); in cxl_pcie_read_config()
134 rc = cxl_ops->afu_cr_read16(afu, record, offset, &val16); in cxl_pcie_read_config()
138 rc = cxl_ops->afu_cr_read32(afu, record, offset, &val32); in cxl_pcie_read_config()
153 int rc, record; in cxl_pcie_write_config() local
[all …]
/linux/drivers/acpi/apei/
H A Derst.c782 static int __erst_write_to_nvram(const struct cper_record_header *record) in __erst_write_to_nvram() argument
800 int erst_write(const struct cper_record_header *record) in erst_write() argument
809 if (memcmp(record->signature, CPER_SIG_RECORD, CPER_SIG_SIZE)) in erst_write()
815 rc = __erst_write_to_nvram(record); in erst_write()
820 if (record->record_length > erst_erange.size) in erst_write()
825 memcpy(erst_erange.vaddr, record, record->record_length); in erst_write()
853 static ssize_t __erst_read(u64 record_id, struct cper_record_header *record, in __erst_read() argument
866 memcpy(record, rcd_tmp, len); in __erst_read()
876 ssize_t erst_read(u64 record_id, struct cper_record_header *record, in erst_read() argument
886 len = __erst_read(record_id, record, buflen); in erst_read()
[all …]
/linux/tools/perf/tests/shell/
H A Drecord.sh2 # perf record tests
50 if ! perf record -o /dev/null --quiet ${testprog} 2> /dev/null
52 echo "Per-thread record [Skipped event not supported]"
55 if ! perf record --per-thread -o "${perfdata}" ${testprog} 2> /dev/null
57 echo "Per-thread record [Failed record]"
63 echo "Per-thread record [Failed missing output]"
75 perf record -p "${TESTPID}" --per-thread -o "${perfdata}" sleep 1 2> /dev/null
80 echo "Per-thread record [Failed record
[all...]
/linux/tools/bpf/bpftool/
H A Dxlated_dumper.c228 struct bpf_func_info *record; in dump_xlated_json() local
237 record = dd->func_info; in dump_xlated_json()
247 if (btf && record) { in dump_xlated_json()
248 if (record->insn_off == i) { in dump_xlated_json()
249 btf_dumper_type_only(btf, record->type_id, in dump_xlated_json()
256 record = (void *)record + dd->finfo_rec_size; in dump_xlated_json()
313 struct bpf_func_info *record; in dump_xlated_plain() local
321 record = dd->func_info; in dump_xlated_plain()
328 if (btf && record) { in dump_xlated_plain()
379 struct bpf_func_info *record = dd->func_info; dump_xlated_for_graph() local
[all...]

12345678910>>...20