Lines Matching refs:probe
20 struct probe {
21 struct probe *next;
33 struct module *module, kobj_probe_t *probe,
39 struct probe *p;
44 p = kmalloc_array(n, sizeof(struct probe), GFP_KERNEL);
50 p->get = probe;
58 struct probe **s = &domain->probes[index % 255];
73 struct probe *found = NULL;
80 struct probe **s;
82 struct probe *p = *s;
96 kobj_probe_t *probe)
101 struct probe *found = NULL;
108 struct probe **s;
110 struct probe *p = *s;
111 if (p->dev == dev && p->range == range && p->get == probe) {
126 struct probe *p;
132 struct kobject *(*probe)(dev_t, int *, void *);
144 probe = p->get;
152 kobj = probe(dev, index, data);
153 /* Currently ->owner protects _only_ ->probe() itself. */
166 struct probe *base = kzalloc(sizeof(*base), GFP_KERNEL);