| /linux/tools/perf/util/ |
| A D | annotate.c | 151 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(¬es->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 D | annotate.h | 191 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 D | disasm_bpf.c | 30 struct annotation *notes = symbol__annotation(sym); in symbol__disassemble_bpf() local 149 ¬es->src->source); in symbol__disassemble_bpf() 160 annotation_line__add(&dl->al, ¬es->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, ¬es->src->source); in symbol__disassemble_bpf_image()
|
| A D | disasm.c | 1044 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, ¬es->src->source); in symbol__parse_objdump_line() 1180 struct annotation *notes = symbol__annotation(sym); in delete_last_nop() local 1181 struct list_head *list = ¬es->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, ¬es->src->source); in symbol__disassemble_capstone_powerpc() 1585 struct list_head *list = ¬es->src->source; in symbol__disassemble_capstone_powerpc() 1625 struct annotation *notes = symbol__annotation(sym); in symbol__disassemble_capstone() local 1692 struct list_head *list = ¬es->src->source; in symbol__disassemble_capstone() [all …]
|
| A D | block-info.c | 132 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 D | annotate.c | 52 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 D | write_collect.c | 84 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 D | sysfs-kernel-notes | 1 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 D | sysfs.c | 150 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 D | annotate.c | 31 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, ¬es->src->source, al.node) { in perf_gtk__annotate_symbol() 164 list_for_each_entry_safe(pos, n, ¬es->src->source, al.node) { in perf_gtk__annotate_symbol()
|
| /linux/fs/proc/ |
| A D | kcore.c | 312 struct elf_note *note = (struct elf_note *)¬es[*i]; in append_kcore_note() 318 memcpy(¬es[*i], name, note->n_namesz); in append_kcore_note() 320 memcpy(¬es[*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 D | index.rst | 22 dynamic-resolution-notes 23 overlay-notes
|
| /linux/Documentation/translations/zh_CN/devicetree/ |
| A D | index.rst | 35 dynamic-resolution-notes 36 overlay-notes
|
| A D | overlay-notes.rst | 4 :Original: Documentation/devicetree/overlay-notes.rst 17 Documentation/devicetree/dynamic-resolution-notes.rst[1]的配套文档。
|
| A D | dynamic-resolution-notes.rst | 4 :Original: Documentation/devicetree/dynamic-resolution-notes.rst
|
| /linux/Documentation/userspace-api/ioctl/ |
| A D | cdrom.rst | 164 notes: 195 notes: 252 notes: 279 notes: 304 notes: 331 notes: 358 notes: 436 notes: 469 notes: 487 notes: [all …]
|
| /linux/Documentation/bpf/ |
| A D | index.rst | 32 clang-notes 33 linux-notes
|
| /linux/fs/ |
| A D | binfmt_elf.c | 1711 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 D | builtin-top.c | 115 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 D | sleep.S | 66 @ 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 D | adi,ad7746.yaml | 42 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 D | mac80211-advanced.rst | 72 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 D | index.rst | 7 notes
|
| /linux/Documentation/arch/arm/nwfpe/ |
| A D | index.rst | 12 notes
|
| /linux/kernel/ |
| A D | watch_queue.c | 119 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()
|