Home
last modified time | relevance | path

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

/linux-4.4.14/tools/perf/util/
Dannotate.c445 struct annotation *notes = symbol__annotation(sym); in symbol__annotate_init() local
446 pthread_mutex_init(&notes->lock, NULL); in symbol__annotate_init()
452 struct annotation *notes = symbol__annotation(sym); in symbol__alloc_hist() local
463 if (sizeof_sym_hist > (SIZE_MAX - sizeof(*notes->src)) in symbol__alloc_hist()
467 notes->src = zalloc(sizeof(*notes->src) + symbol_conf.nr_events * sizeof_sym_hist); in symbol__alloc_hist()
468 if (notes->src == NULL) in symbol__alloc_hist()
470 notes->src->sizeof_sym_hist = sizeof_sym_hist; in symbol__alloc_hist()
471 notes->src->nr_histograms = symbol_conf.nr_events; in symbol__alloc_hist()
472 INIT_LIST_HEAD(&notes->src->source); in symbol__alloc_hist()
479 struct annotation *notes = symbol__annotation(sym); in symbol__alloc_hist_cycles() local
[all …]
Dannotate.h76 double disasm__calc_percent(struct annotation *notes, int evidx, s64 offset,
135 static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx) in annotation__histogram() argument
137 return (((void *)&notes->src->histograms) + in annotation__histogram()
138 (notes->src->sizeof_sym_hist * idx)); in annotation__histogram()
Dbuild-id.c99 char notes[PATH_MAX]; in sysfs__sprintf_build_id() local
106 scnprintf(notes, sizeof(notes), "%s/sys/kernel/notes", root_dir); in sysfs__sprintf_build_id()
108 ret = sysfs__read_build_id(notes, build_id, sizeof(build_id)); in sysfs__sprintf_build_id()
/linux-4.4.14/fs/proc/
Dkcore.c325 struct memelfnote notes[3]; in elf_kcore_store_hdr() local
388 notes[0].name = CORE_STR; in elf_kcore_store_hdr()
389 notes[0].type = NT_PRSTATUS; in elf_kcore_store_hdr()
390 notes[0].datasz = sizeof(struct elf_prstatus); in elf_kcore_store_hdr()
391 notes[0].data = &prstatus; in elf_kcore_store_hdr()
395 nhdr->p_filesz = notesize(&notes[0]); in elf_kcore_store_hdr()
396 bufp = storenote(&notes[0], bufp); in elf_kcore_store_hdr()
399 notes[1].name = CORE_STR; in elf_kcore_store_hdr()
400 notes[1].type = NT_PRPSINFO; in elf_kcore_store_hdr()
401 notes[1].datasz = sizeof(struct elf_prpsinfo); in elf_kcore_store_hdr()
[all …]
/linux-4.4.14/Documentation/leds/
D00-INDEX8 - notes on how to use the leds-lp3944 driver.
10 - notes on how to use the leds-lp5521 driver.
12 - notes on how to use the leds-lp5523 driver.
14 - notes on how to use the leds-lp5562 driver.
18 - notes on how to use the leds-lm3556 driver.
/linux-4.4.14/tools/perf/ui/browsers/
Dannotate.c383 struct annotation *notes = symbol__annotation(sym); in annotate_browser__calc_percent() local
389 pthread_mutex_lock(&notes->lock); in annotate_browser__calc_percent()
391 list_for_each_entry(pos, &notes->src->source, node) { in annotate_browser__calc_percent()
402 next = disasm__get_next_ip_line(&notes->src->source, pos); in annotate_browser__calc_percent()
407 bpos->samples[i].percent = disasm__calc_percent(notes, in annotate_browser__calc_percent()
425 pthread_mutex_unlock(&notes->lock); in annotate_browser__calc_percent()
489 struct annotation *notes; in annotate_browser__callq() local
507 notes = symbol__annotation(target.sym); in annotate_browser__callq()
508 pthread_mutex_lock(&notes->lock); in annotate_browser__callq()
510 if (notes->src == NULL && symbol__alloc_hist(target.sym) < 0) { in annotate_browser__callq()
[all …]
Dhists.c1451 struct annotation *notes; in do_annotate() local
1458 notes = symbol__annotation(act->ms.sym); in do_annotate()
1459 if (!notes->src) in do_annotate()
/linux-4.4.14/fs/
Dbinfmt_elf.c1593 struct memelfnote notes[0]; member
1652 fill_note(&t->notes[0], "CORE", NT_PRSTATUS, in fill_thread_core_info()
1654 *total += notesize(&t->notes[0]); in fill_thread_core_info()
1679 fill_note(&t->notes[i], "LINUX", in fill_thread_core_info()
1684 fill_note(&t->notes[i], "CORE", in fill_thread_core_info()
1687 *total += notesize(&t->notes[i]); in fill_thread_core_info()
1746 notes[info->thread_notes]), in fill_note_info()
1808 if (!writenote(&t->notes[0], cprm)) in write_note_info()
1822 if (t->notes[i].data && in write_note_info()
1823 !writenote(&t->notes[i], cprm)) in write_note_info()
[all …]
Dbinfmt_elf_fdpic.c1455 struct memelfnote notes[3]; member
1474 fill_note(&t->notes[0], "CORE", NT_PRSTATUS, sizeof(t->prstatus), in elf_dump_thread_status()
1477 sz += notesize(&t->notes[0]); in elf_dump_thread_status()
1481 fill_note(&t->notes[1], "CORE", NT_PRFPREG, sizeof(t->fpu), in elf_dump_thread_status()
1484 sz += notesize(&t->notes[1]); in elf_dump_thread_status()
1489 fill_note(&t->notes[2], "LINUX", ELF_CORE_XFPREG_TYPE, in elf_dump_thread_status()
1492 sz += notesize(&t->notes[2]); in elf_dump_thread_status()
1581 struct memelfnote *notes = NULL; in elf_fdpic_core_dump() local
1621 notes = kmalloc(NUM_NOTES * sizeof(struct memelfnote), GFP_KERNEL); in elf_fdpic_core_dump()
1622 if (!notes) in elf_fdpic_core_dump()
[all …]
/linux-4.4.14/Documentation/blackfin/
D00-INDEX5 bfin-gpio-notes.txt
7 bfin-spi-notes.txt
Dbfin-gpio-notes.txt2 * File: Documentation/blackfin/bfin-gpio-notes.txt
7 * Description: This file contains the notes in developing/using bfin-gpio.
/linux-4.4.14/tools/perf/
Dbuiltin-top.c93 struct annotation *notes; in perf_top__parse_source() local
114 notes = symbol__annotation(sym); in perf_top__parse_source()
115 if (notes->src != NULL) { in perf_top__parse_source()
116 pthread_mutex_lock(&notes->lock); in perf_top__parse_source()
120 pthread_mutex_lock(&notes->lock); in perf_top__parse_source()
123 pthread_mutex_unlock(&notes->lock); in perf_top__parse_source()
136 pthread_mutex_unlock(&notes->lock); in perf_top__parse_source()
177 struct annotation *notes; in perf_top__record_precise_ip() local
187 notes = symbol__annotation(sym); in perf_top__record_precise_ip()
189 if (pthread_mutex_trylock(&notes->lock)) in perf_top__record_precise_ip()
[all …]
Dbuiltin-annotate.c130 struct annotation *notes; in hists__find_annotations() local
135 notes = symbol__annotation(he->ms.sym); in hists__find_annotations()
136 if (notes->src == NULL) { in hists__find_annotations()
191 zfree(&notes->src->cycles_hist); in hists__find_annotations()
192 zfree(&notes->src); in hists__find_annotations()
/linux-4.4.14/Documentation/devicetree/bindings/pci/
Dv3-v360epc-pci.txt5 Integrator-specific notes:
11 V360 EPC specific notes:
D83xx-512x-pci.txt5 83xx/512x specific notes:
/linux-4.4.14/Documentation/ioctl/
Dcdrom.txt140 notes:
164 notes:
207 notes:
227 notes:
245 notes:
265 notes:
284 notes:
342 notes:
369 notes:
385 notes:
[all …]
Dhdio.txt110 notes:
202 notes:
253 notes:
276 notes:
315 notes:
362 notes:
389 notes:
427 notes:
514 notes:
579 notes:
[all …]
/linux-4.4.14/Documentation/virtual/kvm/
D00-INDEX12 - notes on KVM locks.
18 - notes on nested virtualization for Intel x86 processors.
/linux-4.4.14/Documentation/timers/
D00-INDEX4 - High resolution timers and dynamic ticks design notes
16 - Clock sources, clock events, sched_clock() and delay timer notes
Dhighres.txt1 High resolution timers and dynamic ticks design notes
/linux-4.4.14/tools/perf/ui/gtk/
Dannotate.c93 struct annotation *notes; in perf_gtk__annotate_symbol() local
101 notes = symbol__annotation(sym); in perf_gtk__annotate_symbol()
120 list_for_each_entry(pos, &notes->src->source, node) { in perf_gtk__annotate_symbol()
149 list_for_each_entry_safe(pos, n, &notes->src->source, node) { in perf_gtk__annotate_symbol()
/linux-4.4.14/arch/arm/mach-pxa/
Dsleep.S65 @ Intel PXA270 Specification Update notes problems sleeping
102 @ Intel PXA255 Specification Update notes problems
158 @ Intel PXA270 Specification Update notes problems performing
/linux-4.4.14/arch/powerpc/kernel/
Dvmlinux.lds.S15 notes PT_NOTE FLAGS(0);
77 NOTES :kernel :notes
/linux-4.4.14/arch/m68k/hp300/
DREADME.hp3001 HP300 notes
/linux-4.4.14/Documentation/blockdev/
D00-INDEX10 - notes and driver options for the floppy disk driver.
Dparide.txt345 to each of the high-level drivers. Please see the notes above, or
/linux-4.4.14/Documentation/video4linux/
Dcx18.txt1 Some notes regarding the cx18 driver for the Conexant CX23418 MPEG
DREADME.cx881 cx8800 release notes
DZoran280 based on a different chipset. Here's some notes from Andrew Stevens:
330 Additional notes for software developers:
459 notes given in question 3 and try lowering quality/buffersize/capturesize
DREADME.ivtv2 ivtv release notes
Duvcvideo.txt5 driver-specific ioctls and implementation notes.
/linux-4.4.14/Documentation/i2c/busses/
Dscx200_acb23 Device-specific notes
/linux-4.4.14/Documentation/ia64/
DREADME3 These are the release notes for Linux version 2.4 for IA-64
Dmca.txt1 An ad-hoc collection of notes on IA64 MCA and INIT processing. Feel
2 free to update it with notes about any area that is not clear.
/linux-4.4.14/Documentation/arm/VFP/
Drelease-notes.txt1 Release notes for Linux Kernel VFP support code
/linux-4.4.14/Documentation/power/regulator/
Ddesign.txt1 Regulator API design notes
/linux-4.4.14/Documentation/devicetree/bindings/mmc/
Dexynos-dw-mshc.txt32 data rate mode operation. Refer notes below for the order of the cells and the
37 data rate mode operation. Refer notes below for the order of the cells and the
/linux-4.4.14/Documentation/arm/
D00-INDEX28 - Release notes for Linux Kernel Vector Floating Point support code
/linux-4.4.14/Documentation/hwmon/
Dibmpowernv24 Usage notes
Dmax665043 Usage notes
/linux-4.4.14/Documentation/devicetree/bindings/sound/
Dfsl,ssi.txt25 design. See the notes below.
28 by SOC design. See the notes below.
/linux-4.4.14/Documentation/scsi/
Dscsi-generic.txt47 A changelog with brief notes can be found in the
50 in /usr/include/scsi/sg.h . Driver debugging information and other notes
D00-INDEX74 - LPFC driver release notes
Dlpfc.txt68 This source package is targeted for the upstream kernel only. (See notes
Dlibsas.txt146 These must be set. See more notes below.
Dscsi_mid_low_api.txt453 * Defined in: drivers/scsi/scsi.c [see source code for more notes]
/linux-4.4.14/Documentation/filesystems/nfs/
Dnfsd-admin-interfaces.txt36 Implementation notes
Dnfs41-server.txt140 Implementation notes:
/linux-4.4.14/Documentation/parisc/
Dregisters89 Register usage notes, originally from John Marvin, with some additional
90 notes from Randolph Chung.
/linux-4.4.14/Documentation/laptops/
Dthinkpad-acpi.txt219 procfs notes:
239 sysfs notes:
351 input layer notes:
561 Brightness hotkey notes:
587 Procfs notes:
594 Sysfs notes:
666 procfs notes:
675 sysfs notes:
747 procfs notes:
775 sysfs notes:
[all …]
/linux-4.4.14/Documentation/networking/
D00-INDEX84 - Level Compressed Trie (LC-trie) notes: a structure for routing.
144 - The network console module netconsole.ko: configuration and notes.
188 - Release notes for Neterion Xframe I/II 10GbE driver.
D3c509.txt16 The following are notes and information on using the 3Com EtherLink III series
32 copy of that document, which contains notes on older versions of the driver,
Ds2io.txt1 Release notes for Neterion's (Formerly S2io) Xframe I/II PCI-X 10GbE driver.
Dfib_trie.txt1 LC-trie implementation notes.
Dnetconsole.txt168 Miscellaneous notes:
Daltera_tse.txt63 4) Driver information and notes
Dstmmac.txt45 4) Driver information and notes
Dvortex.txt309 Autonegotiation notes
/linux-4.4.14/Documentation/fb/
Dcmap_xfbdev.txt4 These notes explain how X's dix layer uses fbdev's cmap structures.
/linux-4.4.14/Documentation/arm64/
Dlegacy_instructions.txt36 individual instruction notes for further information.
Dbooting.txt87 Header notes:
/linux-4.4.14/Documentation/sound/oss/
DIntroduction7 This document provides some general notes on the modular
28 1.1.0 6/30/1999 Second version, added notes on making the drivers,
32 1.1.1 19991031 Added notes on sound-slot- and sound-service.
35 1.1.3 20010214 Minor notes and corrections (Wade Hampton)
100 kernel, etc. The notes below apply only to making the kernel
DPSS-updates1 This file contains notes for users of PSS sound cards who wish to use the
DREADME.OSS22 OSS/Free version 3.8 release notes
538 (number of concurrently playing notes). It's also possible to
/linux-4.4.14/Documentation/
Dsgi-ioc4.txt1 The SGI IOC4 PCI device is a bit of a strange beast, so some notes on
Deisa.txt3 This document groups random notes about porting EISA drivers to the
178 ** Random notes :
Dhw_random.txt62 Intel RNG Driver notes:
D00-INDEX147 - some notes on debugging modules after Linux 2.6.3.
207 - notes on the change from 16 bit to 32 bit user/group IDs.
397 - notes on how to use the Real Time Clock (aka CMOS clock) driver.
Diostats.txt149 Additional notes
Ddma-buf-sharing.txt383 3. Implementation notes for exporters
425 Miscellaneous notes
Dkernel-doc-nano-HOWTO.txt109 source files" for more details and notes on how to format kernel-doc
DDMA-API.txt274 API for mapping and unmapping for pages. All the notes and warnings
/linux-4.4.14/kernel/
Dmodule.c1561 unsigned int notes; member
1590 unsigned int notes, loaded, i; in add_notes_attrs() local
1599 notes = 0; in add_notes_attrs()
1603 ++notes; in add_notes_attrs()
1605 if (notes == 0) in add_notes_attrs()
1609 + notes * sizeof(notes_attrs->attrs[0]), in add_notes_attrs()
1614 notes_attrs->notes = notes; in add_notes_attrs()
1635 for (i = 0; i < notes; ++i) in add_notes_attrs()
1650 free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes); in remove_notes_attrs()
/linux-4.4.14/include/asm-generic/
Dvmlinux.lds.h642 .notes : AT(ADDR(.notes) - LOAD_OFFSET) { \
/linux-4.4.14/Documentation/filesystems/
Dcramfs.txt76 See fs/cramfs/README for filesystem layout and implementation notes.
Dsysfs.txt205 Other notes:
/linux-4.4.14/Documentation/usb/
Diuu_phoenix.txt69 Last notes:
DWUSB-Design-overview.txt206 manually; see the release notes for documentation on the procedure.
Dusb-serial.txt233 Technical notes:
/linux-4.4.14/Documentation/security/
Dkeys-request-key.txt89 (b) An authorisation key V that refers to key U and notes that process A
103 search notes that the session keyring has auth key V in its bottom level.
/linux-4.4.14/Documentation/ide/
DChangeLog.ide-tape.1995-2002204 * Proposed changes to release-notes:
206 * release notes; I volunteer if you don't want to
209 * 6) release notes lines 331 and 362: explain what happens
/linux-4.4.14/Documentation/devicetree/
Doverlay-notes.txt7 Documentation/devicetree/dynamic-resolution-notes.txt[2]
/linux-4.4.14/Documentation/video4linux/bttv/
DREADME2 Release notes for bttv
/linux-4.4.14/Documentation/mtd/nand/
Dpxa3xx-nand.txt5 Some notes about Marvell's NAND controller available in PXA and Armada 370/XP
/linux-4.4.14/Documentation/firmware_class/
DREADME80 Random notes:
/linux-4.4.14/drivers/i2c/
DKconfig108 If you do build this module, be sure to read the notes and warnings
/linux-4.4.14/Documentation/arm/Samsung-S3C24XX/
DGPIO.txt45 out s3c2410 API, then here are some notes on the process.
/linux-4.4.14/tools/perf/Documentation/
Dperf-kvm.txt47 for use by perf report. As buildid is read from /sys/kernel/notes in os, then
/linux-4.4.14/sound/oss/
Dsequencer.c1557 static int notes[] = in note_to_freq() local
1568 note_freq = notes[note]; in note_to_freq()
/linux-4.4.14/Documentation/crypto/
Dapi-intro.txt109 as well as general application notes such as RFC2451 ("The ESP CBC-Mode
Ddescore-readme.txt169 porting notes
231 coding notes
/linux-4.4.14/Documentation/arm/nwfpe/
DREADME.FPE90 to the ARM manual. The manual notes these are defined only for single
/linux-4.4.14/fs/cramfs/
DREADME4 These notes describe what mkcramfs generates. Kernel requirements are
/linux-4.4.14/fs/jffs2/
DREADME.Locking45 including the linked list of node fragments (but see the notes below on
/linux-4.4.14/Documentation/vm/
Dpagemap.txt174 Other notes:
/linux-4.4.14/
DREPORTING-BUGS129 [X.] Other notes, patches, fixes, workarounds:
DREADME3 These are the release notes for Linux version 4. Read them carefully,
47 these typically contain kernel-specific installation notes for some
DMAINTAINERS7888 F: Documentation/devicetree/dynamic-resolution-notes.txt
7889 F: Documentation/devicetree/overlay-notes.txt
/linux-4.4.14/Documentation/arm/SA1100/
DAssabet7 Also some notes from John G Dorsey <jd5q@andrew.cmu.edu>:
/linux-4.4.14/arch/um/
DKconfig.net149 networking, and notes about the security of this approach.
/linux-4.4.14/Documentation/x86/
Dintel_mpx.txt47 succeed, and notes the location of the bounds directory. Userspace is
/linux-4.4.14/Documentation/arm/OMAP/
DDSS285 Misc notes
/linux-4.4.14/Documentation/gpio/
Ddriver.txt229 So, pay attention on above " RT_FULL:" notes, please.
/linux-4.4.14/Documentation/trace/
Dftrace-design.txt374 Quick notes:
/linux-4.4.14/Documentation/serial/
Ddriver423 Other notes
/linux-4.4.14/drivers/staging/unisys/Documentation/
Doverview.txt163 visor_device notes:
/linux-4.4.14/Documentation/video4linux/cx2341x/
Dfw-decoder-regs.txt307 edge. To avoid this read the notes for 2834 & 2838.
/linux-4.4.14/Documentation/dmaengine/
Dprovider.txt333 Misc notes (stuff that should be documented, but don't really know
/linux-4.4.14/Documentation/kdump/
Dkdump.txt303 dump-capture kernel config option notes above.
/linux-4.4.14/arch/m68k/fpsp040/
Dsetox.S194 | Notes: Refer to notes for 2.2 - 2.6.
/linux-4.4.14/Documentation/s390/
Dcds.txt403 Please have a look at the ccw_device_start() usage notes for more details on
/linux-4.4.14/arch/arm/
DKconfig2102 Please see <file:Documentation/arm/VFP/release-notes.txt> for
2103 release notes and additional status information.
/linux-4.4.14/Documentation/block/
Dbiodoc.txt14 These are some notes describing some aspects of the 2.5 block layer in the
/linux-4.4.14/Documentation/RCU/
DRTFP.txt2143 Manfred notes a fix required to my attempt to separate irq
/linux-4.4.14/arch/m68k/ifpsp060/src/
Dfpsp.S6996 # the comparisons, see the notes on Step 1 of setox. #
7007 # Notes: See the notes on Step 2 of setox. #
Dfplsp.S6855 # Notes: Refer to notes for 2.2 - 2.6. #