Home
last modified time | relevance | path

Searched refs:notes (Results 1 – 25 of 145) sorted by relevance

123456

/linux/tools/perf/util/
A Dannotate.c151 notes->src->nr_histograms * sizeof(*notes->src->histograms)); in symbol__annotate_zero_histograms()
154 if (notes->branch && notes->branch->cycles_hist) { in symbol__annotate_zero_histograms()
262 if (notes == NULL) in annotation__get_branch()
266 notes->branch = zalloc(sizeof(*notes->branch)); in annotation__get_branch()
512 if (!notes->branch || !notes->branch->cycles_hist) in annotation__compute_ipc()
983 if (notes->src && !list_empty(&notes->src->source)) in symbol__annotate()
1528 notes->src->widths.addr = notes->src->widths.target = in annotation__init_column_widths()
1538 notes->src->widths.target = notes->src->widths.min_addr; in annotation__update_column_widths()
1542 notes->src->widths.target = notes->src->widths.max_addr; in annotation__update_column_widths()
1544 notes->src->widths.addr = notes->src->widths.target; in annotation__update_column_widths()
[all …]
A Dannotate.h191 int __annotation__scnprintf_samples_period(struct annotation *notes,
338 void annotation__exit(struct annotation *notes);
340 void annotation__lock(struct annotation *notes) EXCLUSIVE_LOCK_FUNCTION(*notes);
341 void annotation__unlock(struct annotation *notes) UNLOCK_FUNCTION(*notes);
342 bool annotation__trylock(struct annotation *notes) EXCLUSIVE_TRYLOCK_FUNCTION(true, *notes);
344 static inline int annotation__cycles_width(struct annotation *notes) in annotation__cycles_width() argument
346 if (notes->branch && annotate_opts.show_minmax_cycle) in annotation__cycles_width()
352 static inline int annotation__pcnt_width(struct annotation *notes) in annotation__pcnt_width() argument
354 return (symbol_conf.show_total_period ? 12 : 8) * notes->src->nr_events; in annotation__pcnt_width()
367 void annotation__update_column_widths(struct annotation *notes);
[all …]
A Ddisasm_bpf.c30 struct annotation *notes = symbol__annotation(sym); in symbol__disassemble_bpf() local
149 &notes->src->source); in symbol__disassemble_bpf()
160 annotation_line__add(&dl->al, &notes->src->source); in symbol__disassemble_bpf()
182 struct annotation *notes = symbol__annotation(sym); in symbol__disassemble_bpf_image() local
191 annotation_line__add(&dl->al, &notes->src->source); in symbol__disassemble_bpf_image()
A Ddisasm.c1044 int nr = notes->src->nr_events; in disasm_line__new()
1117 struct annotation *notes = symbol__annotation(sym); in symbol__parse_objdump_line() local
1174 annotation_line__add(&dl->al, &notes->src->source); in symbol__parse_objdump_line()
1180 struct annotation *notes = symbol__annotation(sym); in delete_last_nop() local
1181 struct list_head *list = &notes->src->source; in delete_last_nop()
1487 struct annotation *notes = symbol__annotation(sym); in symbol__disassemble_capstone_powerpc() local
1557 annotation_line__add(&dl->al, &notes->src->source); in symbol__disassemble_capstone_powerpc()
1585 struct list_head *list = &notes->src->source; in symbol__disassemble_capstone_powerpc()
1625 struct annotation *notes = symbol__annotation(sym); in symbol__disassemble_capstone() local
1692 struct list_head *list = &notes->src->source; in symbol__disassemble_capstone()
[all …]
A Dblock-info.c132 struct annotation *notes; in block_info__process_sym() local
144 notes = symbol__annotation(he->ms.sym); in block_info__process_sym()
145 if (!notes || !notes->branch || !notes->branch->cycles_hist) in block_info__process_sym()
147 ch = notes->branch->cycles_hist; in block_info__process_sym()
159 notes->branch->br_cntr, in block_info__process_sym()
/linux/tools/perf/ui/browsers/
A Dannotate.c52 if (nr == notes->src->max_jump_sources) in ui_browser__jumps_percent_color()
115 annotation_line__write(al, notes, &ops); in annotate_browser__write()
205 width = annotation__cycles_width(notes); in annotate_browser__draw_current_jump()
314 annotation__lock(notes); in annotate_browser__calc_percent()
343 annotation__unlock(notes); in annotate_browser__calc_percent()
461 struct annotation *notes; in annotate_browser__callq() local
470 annotation__lock(notes); in annotate_browser__callq()
473 annotation__unlock(notes); in annotate_browser__callq()
482 annotation__unlock(notes); in annotate_browser__callq()
863 notes->src->nr_asm_entries); in annotate_browser__run()
[all …]
/linux/fs/netfs/
A Dwrite_collect.c84 unsigned int *notes) in netfs_writeback_unlock_folios() argument
92 *notes |= MADE_PROGRESS; in netfs_writeback_unlock_folios()
128 *notes |= MADE_PROGRESS; in netfs_writeback_unlock_folios()
380 unsigned int notes; in netfs_collect_write_results() local
394 notes = BUFFERED; in netfs_collect_write_results()
396 notes = 0; in netfs_collect_write_results()
422 notes |= HIT_PENDING; in netfs_collect_write_results()
435 notes |= MADE_PROGRESS; in netfs_collect_write_results()
491 if (notes & BUFFERED) { in netfs_collect_write_results()
500 if (notes & NEED_RETRY) in netfs_collect_write_results()
[all …]
/linux/Documentation/ABI/stable/
A Dsysfs-kernel-notes1 What: /sys/kernel/notes
4 Description: The /sys/kernel/notes file contains the binary representation
5 of the running vmlinux's .notes section.
/linux/kernel/module/
A Dsysfs.c150 unsigned int notes; member
151 struct bin_attribute attrs[] __counted_by(notes);
168 unsigned int notes, loaded, i; in add_notes_attrs() local
174 notes = 0; in add_notes_attrs()
178 ++notes; in add_notes_attrs()
180 if (notes == 0) in add_notes_attrs()
183 notes_attrs = kzalloc(struct_size(notes_attrs, attrs, notes), in add_notes_attrs()
188 notes_attrs->notes = notes; in add_notes_attrs()
211 for (i = 0; i < notes; ++i) { in add_notes_attrs()
228 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes); in remove_notes_attrs()
/linux/tools/perf/ui/gtk/
A Dannotate.c31 struct annotation *notes; in perf_gtk__get_percent() local
44 notes = symbol__annotation(sym); in perf_gtk__get_percent()
45 symhist = annotation__histogram(notes, evidx); in perf_gtk__get_percent()
46 entry = annotated_source__hist_entry(notes->src, evidx, dl->al.offset); in perf_gtk__get_percent()
108 struct annotation *notes; in perf_gtk__annotate_symbol() local
116 notes = symbol__annotation(sym); in perf_gtk__annotate_symbol()
135 list_for_each_entry(pos, &notes->src->source, al.node) { in perf_gtk__annotate_symbol()
164 list_for_each_entry_safe(pos, n, &notes->src->source, al.node) { in perf_gtk__annotate_symbol()
/linux/fs/proc/
A Dkcore.c312 struct elf_note *note = (struct elf_note *)&notes[*i]; in append_kcore_note()
318 memcpy(&notes[*i], name, note->n_namesz); in append_kcore_note()
320 memcpy(&notes[*i], desc, descsz); in append_kcore_note()
435 char *notes; in read_kcore_iter() local
441 notes = kzalloc(notes_len, GFP_KERNEL); in read_kcore_iter()
442 if (!notes) { in read_kcore_iter()
447 append_kcore_note(notes, &i, CORE_STR, NT_PRSTATUS, &prstatus, in read_kcore_iter()
449 append_kcore_note(notes, &i, CORE_STR, NT_PRPSINFO, &prpsinfo, in read_kcore_iter()
460 append_kcore_note(notes, &i, VMCOREINFO_NOTE_NAME, 0, in read_kcore_iter()
466 kfree(notes); in read_kcore_iter()
[all …]
/linux/Documentation/devicetree/
A Dindex.rst22 dynamic-resolution-notes
23 overlay-notes
/linux/Documentation/translations/zh_CN/devicetree/
A Dindex.rst35 dynamic-resolution-notes
36 overlay-notes
A Doverlay-notes.rst4 :Original: Documentation/devicetree/overlay-notes.rst
17 Documentation/devicetree/dynamic-resolution-notes.rst[1]的配套文档。
A Ddynamic-resolution-notes.rst4 :Original: Documentation/devicetree/dynamic-resolution-notes.rst
/linux/Documentation/userspace-api/ioctl/
A Dcdrom.rst164 notes:
195 notes:
252 notes:
279 notes:
304 notes:
331 notes:
358 notes:
436 notes:
469 notes:
487 notes:
[all …]
/linux/Documentation/bpf/
A Dindex.rst32 clang-notes
33 linux-notes
/linux/fs/
A Dbinfmt_elf.c1711 struct memelfnote notes[]; member
1764 info->size += notesize(&t->notes[0]); in fill_thread_core_info()
1818 info->size += notesize(&t->notes[0]); in fill_thread_core_info()
1828 info->size += notesize(&t->notes[1]); in fill_thread_core_info()
1885 notes[info->thread_notes]), in fill_note_info()
1893 notes[info->thread_notes]), in fill_note_info()
1941 if (!writenote(&t->notes[0], cprm)) in write_note_info()
1955 if (t->notes[i].data && in write_note_info()
1956 !writenote(&t->notes[i], cprm)) in write_note_info()
1973 WARN_ON(t->notes[0].data && t->notes[0].data != &t->prstatus); in free_note_info()
[all …]
/linux/tools/perf/
A Dbuiltin-top.c115 struct annotation *notes; in perf_top__parse_source() local
139 notes = symbol__annotation(sym); in perf_top__parse_source()
140 annotation__lock(notes); in perf_top__parse_source()
143 annotation__unlock(notes); in perf_top__parse_source()
159 annotation__unlock(notes); in perf_top__parse_source()
203 struct annotation *notes; in perf_top__record_precise_ip() local
219 annotation__unlock(notes); in perf_top__record_precise_ip()
244 struct annotation *notes; in perf_top__show_details() local
256 annotation__lock(notes); in perf_top__show_details()
260 if (notes->src == NULL) in perf_top__show_details()
[all …]
/linux/arch/arm/mach-pxa/
A Dsleep.S66 @ Intel PXA270 Specification Update notes problems sleeping
103 @ Intel PXA255 Specification Update notes problems
159 @ Intel PXA270 Specification Update notes problems performing
/linux/Documentation/devicetree/bindings/iio/cdc/
A Dadi,ad7746.yaml42 application notes for more details
43 https://www.analog.com/media/en/technical-documentation/application-notes/AN-1585.pdf
/linux/Documentation/driver-api/80211/
A Dmac80211-advanced.rst72 Insert notes about VLAN interfaces with hw crypto here or in the hw
99 Insert notes about having multiple virtual interfaces with different MAC
101 notes about supporting hw crypto with it.
/linux/Documentation/sound/hd-audio/
A Dindex.rst7 notes
/linux/Documentation/arch/arm/nwfpe/
A Dindex.rst12 notes
/linux/kernel/
A Dwatch_queue.c119 page = wqueue->notes[note / WATCH_QUEUE_NOTES_PER_PAGE]; in post_one_notification()
248 if (wqueue->notes) in watch_queue_set_size()
289 wqueue->notes = pages; in watch_queue_set_size()
394 __free_page(wqueue->notes[i]); in __put_watch_queue()
395 kfree(wqueue->notes); in __put_watch_queue()

Completed in 59 milliseconds

123456