Lines Matching refs:rtp
192 struct radix_tree_preload *rtp; in radix_tree_node_alloc() local
199 rtp = this_cpu_ptr(&radix_tree_preloads); in radix_tree_node_alloc()
200 if (rtp->nr) { in radix_tree_node_alloc()
201 ret = rtp->nodes; in radix_tree_node_alloc()
202 rtp->nodes = ret->private_data; in radix_tree_node_alloc()
204 rtp->nr--; in radix_tree_node_alloc()
256 struct radix_tree_preload *rtp; in __radix_tree_preload() local
261 rtp = this_cpu_ptr(&radix_tree_preloads); in __radix_tree_preload()
262 while (rtp->nr < RADIX_TREE_PRELOAD_SIZE) { in __radix_tree_preload()
268 rtp = this_cpu_ptr(&radix_tree_preloads); in __radix_tree_preload()
269 if (rtp->nr < RADIX_TREE_PRELOAD_SIZE) { in __radix_tree_preload()
270 node->private_data = rtp->nodes; in __radix_tree_preload()
271 rtp->nodes = node; in __radix_tree_preload()
272 rtp->nr++; in __radix_tree_preload()
1478 struct radix_tree_preload *rtp; in radix_tree_callback() local
1483 rtp = &per_cpu(radix_tree_preloads, cpu); in radix_tree_callback()
1484 while (rtp->nr) { in radix_tree_callback()
1485 node = rtp->nodes; in radix_tree_callback()
1486 rtp->nodes = node->private_data; in radix_tree_callback()
1488 rtp->nr--; in radix_tree_callback()