Lines Matching refs:rtp
244 struct radix_tree_preload *rtp; in radix_tree_node_alloc() local
261 rtp = this_cpu_ptr(&radix_tree_preloads); in radix_tree_node_alloc()
262 if (rtp->nr) { in radix_tree_node_alloc()
263 ret = rtp->nodes; in radix_tree_node_alloc()
264 rtp->nodes = ret->parent; in radix_tree_node_alloc()
265 rtp->nr--; in radix_tree_node_alloc()
322 struct radix_tree_preload *rtp; in __radix_tree_preload() local
333 rtp = this_cpu_ptr(&radix_tree_preloads); in __radix_tree_preload()
334 while (rtp->nr < nr) { in __radix_tree_preload()
340 rtp = this_cpu_ptr(&radix_tree_preloads); in __radix_tree_preload()
341 if (rtp->nr < nr) { in __radix_tree_preload()
342 node->parent = rtp->nodes; in __radix_tree_preload()
343 rtp->nodes = node; in __radix_tree_preload()
344 rtp->nr++; in __radix_tree_preload()
1579 struct radix_tree_preload *rtp; in radix_tree_cpu_dead() local
1583 rtp = &per_cpu(radix_tree_preloads, cpu); in radix_tree_cpu_dead()
1584 while (rtp->nr) { in radix_tree_cpu_dead()
1585 node = rtp->nodes; in radix_tree_cpu_dead()
1586 rtp->nodes = node->parent; in radix_tree_cpu_dead()
1588 rtp->nr--; in radix_tree_cpu_dead()