Lines Matching refs:pool_id
98 op.pool_id = tmem_pool; in xen_tmem_op()
131 static int xen_tmem_put_page(u32 pool_id, struct tmem_oid oid, in xen_tmem_put_page() argument
134 return xen_tmem_op(TMEM_PUT_PAGE, pool_id, oid, index, in xen_tmem_put_page()
138 static int xen_tmem_get_page(u32 pool_id, struct tmem_oid oid, in xen_tmem_get_page() argument
141 return xen_tmem_op(TMEM_GET_PAGE, pool_id, oid, index, in xen_tmem_get_page()
145 static int xen_tmem_flush_page(u32 pool_id, struct tmem_oid oid, u32 index) in xen_tmem_flush_page() argument
147 return xen_tmem_op(TMEM_FLUSH_PAGE, pool_id, oid, index, in xen_tmem_flush_page()
151 static int xen_tmem_flush_object(u32 pool_id, struct tmem_oid oid) in xen_tmem_flush_object() argument
153 return xen_tmem_op(TMEM_FLUSH_OBJECT, pool_id, oid, 0, 0, 0, 0, 0); in xen_tmem_flush_object()
158 static int xen_tmem_destroy_pool(u32 pool_id) in xen_tmem_destroy_pool() argument
162 return xen_tmem_op(TMEM_DESTROY_POOL, pool_id, oid, 0, 0, 0, 0, 0); in xen_tmem_destroy_pool()