Lines Matching full:rtp
391 struct radix_tree_preload *rtp; in radix_tree_node_alloc() local
408 rtp = this_cpu_ptr(&radix_tree_preloads); in radix_tree_node_alloc()
409 if (rtp->nr) { in radix_tree_node_alloc()
410 ret = rtp->nodes; in radix_tree_node_alloc()
411 rtp->nodes = ret->parent; in radix_tree_node_alloc()
412 rtp->nr--; in radix_tree_node_alloc()
469 struct radix_tree_preload *rtp; in __radix_tree_preload() local
480 rtp = this_cpu_ptr(&radix_tree_preloads); in __radix_tree_preload()
481 while (rtp->nr < nr) { in __radix_tree_preload()
487 rtp = this_cpu_ptr(&radix_tree_preloads); in __radix_tree_preload()
488 if (rtp->nr < nr) { in __radix_tree_preload()
489 node->parent = rtp->nodes; in __radix_tree_preload()
490 rtp->nodes = node; in __radix_tree_preload()
491 rtp->nr++; in __radix_tree_preload()
2258 struct radix_tree_preload *rtp; in radix_tree_cpu_dead() local
2262 rtp = &per_cpu(radix_tree_preloads, cpu); in radix_tree_cpu_dead()
2263 while (rtp->nr) { in radix_tree_cpu_dead()
2264 node = rtp->nodes; in radix_tree_cpu_dead()
2265 rtp->nodes = node->parent; in radix_tree_cpu_dead()
2267 rtp->nr--; in radix_tree_cpu_dead()