/Linux-v6.6/sound/soc/sof/ |
D | Makefile | 30 snd-sof-probes-objs := sof-client-probes.o 32 snd-sof-probes-objs += sof-client-probes-ipc3.o 35 snd-sof-probes-objs += sof-client-probes-ipc4.o 54 obj-$(CONFIG_SND_SOC_SOF_DEBUG_PROBES) += snd-sof-probes.o
|
/Linux-v6.6/tools/testing/ktest/examples/bootconfigs/ |
D | tracing.bconf | 14 probes = "vfs_read $arg2 $arg3"; 17 probes = "vfs_write $arg2 +0($arg2):ustring $arg3"; 20 probes = "initrd_load";
|
D | functiongraph.bconf | 6 probes = "pci_proc_init" 10 probes = "pci_proc_init%return"
|
D | boottrace.bconf | 7 probes = "vfs_read $arg1 $arg2"
|
/Linux-v6.6/drivers/base/ |
D | map.c | 28 } *probes[255]; member 58 struct probe **s = &domain->probes[index % 255]; in kobj_map() 81 for (s = &domain->probes[index % 255]; *s; s = &(*s)->next) { in kobj_unmap() 103 for (p = domain->probes[MAJOR(dev) % 255]; p; p = p->next) { in kobj_lookup() 151 p->probes[i] = base; in kobj_map_init()
|
/Linux-v6.6/Documentation/core-api/ |
D | tracepoint.rst | 13 a callback mechanism. The 'probes' are strictly typed functions that are 16 From this simple callback mechanism, 'probes' can be used to profile, 18 provide a framework for using 'probes'. These tools include Systemtap, 30 unregistering probes with these callback sites is covered in the
|
/Linux-v6.6/Documentation/trace/ |
D | kprobes.rst | 36 There are currently two types of probes: kprobes, and kretprobes 37 (also called return probes). A kprobe can be inserted on virtually 43 one or more probes, and the exit function unregisters them. A 48 There are also ``register_/unregister_*probes()`` functions for batch 49 registration/unregistration of a group of ``*probes``. These functions 51 a lot of probes at once. 54 probes work and how jump optimization works. They explain certain 137 some probes. In the kretprobe struct, the nmissed field is set to 312 Kprobes and return probes are implemented on the following 318 - ia64 (Does not support probes on instruction slot1.) [all …]
|
D | boottime-trace.rst | 114 ftrace.[instance.INSTANCE.]event.kprobes.EVENT.probes = PROBE[, PROBE2[...]] 116 multiple probes on one event, but those must have same type of 219 probes = "vfs_read $arg1 $arg2" 273 probes = "pci_proc_init" 277 probes = "pci_proc_init%return"
|
/Linux-v6.6/arch/s390/lib/ |
D | Makefile | 8 lib-$(CONFIG_KPROBES) += probes.o 9 lib-$(CONFIG_UPROBES) += probes.o
|
/Linux-v6.6/drivers/bcma/ |
D | driver_chipcommon_nflash.c | 25 static const char *probes[] = { "bcm47xxpart", NULL }; variable 51 cc->nflash.brcmnand_info.part_probe_types = probes; in bcma_nflash_init()
|
/Linux-v6.6/drivers/mtd/maps/ |
D | solutionengine.c | 34 static const char * const probes[] = { "RedBoot", "cmdlinepart", NULL }; variable 73 mtd_device_parse_register(flash_mtd, probes, NULL, NULL, 0); in init_soleng_maps()
|
D | pxa2xx-flash.c | 42 static const char * const probes[] = { "RedBoot", "cmdlinepart", NULL }; variable 94 mtd_device_parse_register(info->mtd, probes, NULL, flash->parts, in pxa2xx_flash_probe()
|
D | dc21285.c | 147 static const char * const probes[] = { "RedBoot", "cmdlinepart", NULL }; variable 198 mtd_device_parse_register(dc21285_mtd, probes, NULL, NULL, 0); in init_dc21285()
|
D | pcmciamtd.c | 468 static char *probes[] = { "jedec_probe", "cfi_probe" }; in pcmciamtd_config() local 571 for(i = 0; i < ARRAY_SIZE(probes); i++) { in pcmciamtd_config() 572 pr_debug("Trying %s\n", probes[i]); in pcmciamtd_config() 573 mtd = do_map_probe(probes[i], &dev->pcmcia_map); in pcmciamtd_config() 577 pr_debug("FAILED: %s\n", probes[i]); in pcmciamtd_config()
|
/Linux-v6.6/tools/perf/Documentation/ |
D | perf-probe.txt | 76 When this is used with --cache, perf shows all cached probes instead of 77 the live probes. 125 (With --add) Cache the probes. Any events which successfully added 127 (With --list) Show cached probes. 128 (With --del) Remove cached probes. 130 --max-probes=NUM:: 173 … omitted, it will be set the name of the probed function, and for return probes, a "\_\_return" su… 176 …lative-line number from function entry line, and '%return' means that it probes function return. A… 179 …which is defined by user SDT (Statically Defined Tracing) or the pre-cached probes with event name. 257 Add one or more probes which has the name start with "schedule". [all …]
|
/Linux-v6.6/drivers/mtd/nand/raw/bcm47xxnflash/ |
D | main.c | 20 static const char *probes[] = { "bcm47xxpart", NULL }; variable 51 err = mtd_device_parse_register(mtd, probes, NULL, NULL, 0); in bcm47xxnflash_probe()
|
/Linux-v6.6/include/linux/mtd/ |
D | plat-ram.h | 20 const char * const *probes; member
|
/Linux-v6.6/kernel/ |
D | tracepoint.c | 98 struct tracepoint_func probes[]; member 109 struct tp_probes *p = kmalloc(struct_size(p, probes, count), in allocate_probes() 111 return p == NULL ? NULL : p->probes; in allocate_probes() 146 struct tp_probes, probes[0]); in release_probes()
|
/Linux-v6.6/arch/arm/ |
D | Kbuild | 9 obj-y += probes/
|
/Linux-v6.6/Documentation/features/debug/kretprobes/ |
D | arch-support.txt | 4 # description: arch supports kernel function-return probes
|
/Linux-v6.6/Documentation/features/debug/uprobes/ |
D | arch-support.txt | 4 # description: arch supports live patched user probes
|
/Linux-v6.6/sound/soc/intel/avs/ |
D | Makefile | 13 snd-soc-avs-objs += probes.o debugfs.o
|
/Linux-v6.6/arch/csky/kernel/ |
D | Makefile | 7 obj-y += probes/
|
/Linux-v6.6/sound/soc/sof/amd/ |
D | Makefile | 8 snd-sof-amd-acp-$(CONFIG_SND_SOC_SOF_ACP_PROBES) = acp-probes.o
|
/Linux-v6.6/tools/bpf/bpftool/Documentation/ |
D | bpftool-feature.rst | 41 By default, bpftool **does not run probes** for 44 and run all probes, the **full** keyword should be used.
|