Lines Matching full:rtp
246 struct radix_tree_preload *rtp; in radix_tree_node_alloc() local
263 rtp = this_cpu_ptr(&radix_tree_preloads); in radix_tree_node_alloc()
264 if (rtp->nr) { in radix_tree_node_alloc()
265 ret = rtp->nodes; in radix_tree_node_alloc()
266 rtp->nodes = ret->parent; in radix_tree_node_alloc()
267 rtp->nr--; in radix_tree_node_alloc()
324 struct radix_tree_preload *rtp; in __radix_tree_preload() local
335 rtp = this_cpu_ptr(&radix_tree_preloads); in __radix_tree_preload()
336 while (rtp->nr < nr) { in __radix_tree_preload()
342 rtp = this_cpu_ptr(&radix_tree_preloads); in __radix_tree_preload()
343 if (rtp->nr < nr) { in __radix_tree_preload()
344 node->parent = rtp->nodes; in __radix_tree_preload()
345 rtp->nodes = node; in __radix_tree_preload()
346 rtp->nr++; in __radix_tree_preload()
1580 struct radix_tree_preload *rtp; in radix_tree_cpu_dead() local
1584 rtp = &per_cpu(radix_tree_preloads, cpu); in radix_tree_cpu_dead()
1585 while (rtp->nr) { in radix_tree_cpu_dead()
1586 node = rtp->nodes; in radix_tree_cpu_dead()
1587 rtp->nodes = node->parent; in radix_tree_cpu_dead()
1589 rtp->nr--; in radix_tree_cpu_dead()