Home
last modified time | relevance | path

Searched refs:maxactive (Results 1 – 4 of 4) sorted by relevance

/linux-3.4.99/samples/kprobes/
Dkretprobe_example.c75 .maxactive = 20,
/linux-3.4.99/include/linux/
Dkprobes.h181 int maxactive; member
/linux-3.4.99/Documentation/
Dkprobes.txt51 a post_handler, and how to use the maxactive and nmissed fields of
124 register_kretprobe(), the user sets the maxactive field of the
130 spinlock held, maxactive = 1 should be enough. If the function is
132 or preemption), NR_CPUS should be enough. If maxactive <= 0, it is
136 It's not a disaster if you set maxactive too low; you'll just miss
408 You must set rp->maxactive appropriately before you call
/linux-3.4.99/kernel/
Dkprobes.c1723 if (rp->maxactive <= 0) { in register_kretprobe()
1725 rp->maxactive = max_t(unsigned int, 10, 2*num_possible_cpus()); in register_kretprobe()
1727 rp->maxactive = num_possible_cpus(); in register_kretprobe()
1732 for (i = 0; i < rp->maxactive; i++) { in register_kretprobe()