Home
last modified time | relevance | path

Searched refs:probes (Results 1 - 25 of 86) sorted by relevance

1234

/kernel/linux/linux-6.6/sound/soc/sof/
H A DMakefile30 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
/kernel/linux/linux-6.6/drivers/base/
H A Dmap.c28 } *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()
/kernel/linux/linux-5.10/drivers/base/
H A Dmap.c28 } *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()
109 for (s = &domain->probes[index % 255]; *s; s = &(*s)->next) { in kobj_delete()
131 for (p = domain->probes[MAJOR(dev) % 255]; p; p = p->next) { in kobj_lookup()
179 p->probes[i] = base; in kobj_map_init()
/kernel/linux/linux-5.10/kernel/
H A Dtracepoint.c93 * It is used to delay the free of multiple probes array until a quiescent
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()
149 * We can't free probes if SRCU is not initialized yet. in release_probes()
159 * Tracepoint probes are protected by both sched RCU and SRCU, in release_probes()
194 /* (N -> N+1), (N != 0, 1) probes */ in func_add()
196 /* Insert before probes of lower priority */ in func_add()
213 int probes in func_add() local
[all...]
/kernel/linux/linux-5.10/arch/s390/lib/
H A DMakefile8 lib-$(CONFIG_KPROBES) += probes.o
9 lib-$(CONFIG_UPROBES) += probes.o
/kernel/linux/linux-6.6/arch/s390/lib/
H A DMakefile8 lib-$(CONFIG_KPROBES) += probes.o
9 lib-$(CONFIG_UPROBES) += probes.o
/kernel/linux/linux-6.6/drivers/bcma/
H A Ddriver_chipcommon_nflash.c25 static const char *probes[] = { "bcm47xxpart", NULL }; variable
51 cc->nflash.brcmnand_info.part_probe_types = probes; in bcma_nflash_init()
/kernel/linux/linux-5.10/drivers/mtd/maps/
H A Dsolutionengine.c34 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 Dpxa2xx-flash.c44 static const char * const probes[] = { "RedBoot", "cmdlinepart", NULL }; variable
96 mtd_device_parse_register(info->mtd, probes, NULL, flash->parts, in pxa2xx_flash_probe()
H A Ddc21285.c147 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 Dpcmciamtd.c468 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()
/kernel/linux/linux-5.10/drivers/mtd/nand/raw/bcm47xxnflash/
H A Dmain.c20 static const char *probes[] = { "bcm47xxpart", NULL }; variable
51 err = mtd_device_parse_register(mtd, probes, NULL, NULL, 0); in bcm47xxnflash_probe()
/kernel/linux/linux-6.6/drivers/mtd/maps/
H A Dsolutionengine.c34 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 Dpxa2xx-flash.c42 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 Ddc21285.c147 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 Dpcmciamtd.c468 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()
/kernel/linux/linux-6.6/drivers/mtd/nand/raw/bcm47xxnflash/
H A Dmain.c20 static const char *probes[] = { "bcm47xxpart", NULL }; variable
51 err = mtd_device_parse_register(mtd, probes, NULL, NULL, 0); in bcm47xxnflash_probe()
/kernel/linux/linux-5.10/include/linux/mtd/
H A Dplat-ram.h20 const char * const *probes; member
/kernel/linux/linux-6.6/include/linux/mtd/
H A Dplat-ram.h20 const char * const *probes; member
/kernel/linux/linux-5.10/arch/powerpc/include/asm/
H A Duprobes.h13 #include <asm/probes.h>
/kernel/linux/linux-6.6/arch/powerpc/include/asm/
H A Duprobes.h13 #include <asm/probes.h>
/kernel/linux/linux-5.10/arch/csky/include/asm/
H A Duprobes.h6 #include <asm/probes.h>
/kernel/linux/linux-5.10/arch/arm64/include/asm/
H A Duprobes.h11 #include <asm/probes.h>
/kernel/linux/linux-6.6/arch/csky/include/asm/
H A Duprobes.h6 #include <asm/probes.h>
/kernel/linux/linux-6.6/arch/arm64/include/asm/
H A Duprobes.h11 #include <asm/probes.h>

Completed in 10 milliseconds

1234