| /linux-6.15/sound/soc/sof/ |
| H A D | Makefile | 31 snd-sof-probes-y := sof-client-probes.o 33 snd-sof-probes-y += sof-client-probes-ipc3.o 36 snd-sof-probes-y += sof-client-probes-ipc4.o 55 obj-$(CONFIG_SND_SOC_SOF_DEBUG_PROBES) += snd-sof-probes.o
|
| /linux-6.15/tools/testing/ktest/examples/bootconfigs/ |
| H A D | tracing.bconf | 14 probes = "vfs_read $arg2 $arg3"; 17 probes = "vfs_write $arg2 +0($arg2):ustring $arg3"; 20 probes = "initrd_load";
|
| H A D | functiongraph.bconf | 6 probes = "pci_proc_init" 10 probes = "pci_proc_init%return"
|
| /linux-6.15/drivers/base/ |
| H A 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-6.15/Documentation/core-api/ |
| H A 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-6.15/Documentation/trace/ |
| H A D | kprobes.rst | 43 one or more probes, and the exit function unregisters them. A 51 a lot of probes at once. 318 - sparc64 (Return probes not yet implemented.) 352 and "unregister_*probes" functions for (un)registering arrays of probes. 471 register_*probes 493 unregister_*probes 508 incorrect probes. However, other probes in the array are 538 Kprobes allows multiple probes at the same address. Also, 685 b. Kernel return probes for sparc64. 687 d. User-space probes. [all …]
|
| H A 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-6.15/Documentation/devicetree/bindings/devfreq/event/ |
| H A D | samsung,exynos-nocp.yaml | 16 that the Network on Chip (NoC) probes detects are transported over the 17 network infrastructure to observer units. You can configure probes to capture 19 traffic debug or statistic collectors. Exynos542x bus has multiple NoC probes
|
| /linux-6.15/Documentation/netlink/specs/ |
| H A D | rt_neigh.yaml | 164 name: rcv-probes-mcast 167 name: rcv-probes-ucast 200 name: probes 303 name: app-probes 306 name: ucast-probes 309 name: mcast-probes 350 - probes
|
| /linux-6.15/drivers/bcma/ |
| H A 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-6.15/arch/s390/lib/ |
| H A D | Makefile | 9 lib-$(CONFIG_KPROBES) += probes.o 10 lib-$(CONFIG_UPROBES) += probes.o
|
| /linux-6.15/drivers/mtd/maps/ |
| H A 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()
|
| H A 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()
|
| H A 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()
|
| H A 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-6.15/tools/perf/Documentation/ |
| H A 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:: 257 Add one or more probes which has the name start with "schedule". 263 Add probes on lines in schedule() function which calls update_rq_clock(). 269 Delete all probes on schedule(). 273 Add probes at zfree() function on /bin/zsh [all …]
|
| /linux-6.15/drivers/mtd/nand/raw/bcm47xxnflash/ |
| H A 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-6.15/include/linux/mtd/ |
| H A D | plat-ram.h | 20 const char * const *probes; member
|
| /linux-6.15/arch/arm/ |
| H A D | Kbuild | 9 obj-y += probes/
|
| /linux-6.15/Documentation/features/debug/kretprobes/ |
| H A D | arch-support.txt | 4 # description: arch supports kernel function-return probes
|
| /linux-6.15/Documentation/features/debug/uprobes/ |
| H A D | arch-support.txt | 4 # description: arch supports live patched user probes
|
| /linux-6.15/kernel/ |
| H A D | tracepoint.c | 88 struct tracepoint_func probes[]; member 99 struct tp_probes *p = kmalloc(struct_size(p, probes, count), in allocate_probes() 101 return p == NULL ? NULL : p->probes; in allocate_probes() 113 struct tp_probes, probes[0]); in release_probes()
|
| /linux-6.15/Documentation/dev-tools/ |
| H A D | gpio-sloppy-logic-analyzer.rst | 19 connected to these GPIO lines with wires (i.e. digital probes), acting as a 43 Tell the kernel which GPIOs are used as probes. For a Device Tree based system, 54 maximum of 8 probes are supported. 32 are likely possible but are not
|
| /linux-6.15/sound/soc/intel/avs/ |
| H A D | Makefile | 14 snd-soc-avs-y += probes.o debugfs.o
|
| /linux-6.15/arch/csky/kernel/ |
| H A D | Makefile | 7 obj-y += probes/
|