Lines Matching refs:rtp
255 struct radix_tree_preload *rtp; in radix_tree_node_alloc() local
272 rtp = this_cpu_ptr(&radix_tree_preloads); in radix_tree_node_alloc()
273 if (rtp->nr) { in radix_tree_node_alloc()
274 ret = rtp->nodes; in radix_tree_node_alloc()
275 rtp->nodes = ret->parent; in radix_tree_node_alloc()
276 rtp->nr--; in radix_tree_node_alloc()
333 struct radix_tree_preload *rtp; in __radix_tree_preload() local
344 rtp = this_cpu_ptr(&radix_tree_preloads); in __radix_tree_preload()
345 while (rtp->nr < nr) { in __radix_tree_preload()
351 rtp = this_cpu_ptr(&radix_tree_preloads); in __radix_tree_preload()
352 if (rtp->nr < nr) { in __radix_tree_preload()
353 node->parent = rtp->nodes; in __radix_tree_preload()
354 rtp->nodes = node; in __radix_tree_preload()
355 rtp->nr++; in __radix_tree_preload()
1589 struct radix_tree_preload *rtp; in radix_tree_cpu_dead() local
1593 rtp = &per_cpu(radix_tree_preloads, cpu); in radix_tree_cpu_dead()
1594 while (rtp->nr) { in radix_tree_cpu_dead()
1595 node = rtp->nodes; in radix_tree_cpu_dead()
1596 rtp->nodes = node->parent; in radix_tree_cpu_dead()
1598 rtp->nr--; in radix_tree_cpu_dead()