Lines Matching refs:ops
21 struct hyp_mgt_allocator_ops *ops; in hyp_alloc_mgt_refill() local
28 ops = registered_allocators[id]; in hyp_alloc_mgt_refill()
30 return ops->refill ? ops->refill(host_mc) : 0; in hyp_alloc_mgt_refill()
35 struct hyp_mgt_allocator_ops *ops; in hyp_alloc_mgt_reclaimable() local
40 ops = registered_allocators[i]; in hyp_alloc_mgt_reclaimable()
41 if (ops->reclaimable) in hyp_alloc_mgt_reclaimable()
42 reclaimable += ops->reclaimable(); in hyp_alloc_mgt_reclaimable()
49 struct hyp_mgt_allocator_ops *ops; in hyp_alloc_mgt_reclaim() local
53 ops = registered_allocators[i]; in hyp_alloc_mgt_reclaim()
55 if (ops->reclaim) in hyp_alloc_mgt_reclaim()
56 ops->reclaim(host_mc, target); in hyp_alloc_mgt_reclaim()