Lines Matching refs:op
94 struct tmem_op op; in xen_tmem_op() local
97 op.cmd = tmem_cmd; in xen_tmem_op()
98 op.pool_id = tmem_pool; in xen_tmem_op()
99 op.u.gen.oid[0] = oid.oid[0]; in xen_tmem_op()
100 op.u.gen.oid[1] = oid.oid[1]; in xen_tmem_op()
101 op.u.gen.oid[2] = oid.oid[2]; in xen_tmem_op()
102 op.u.gen.index = index; in xen_tmem_op()
103 op.u.gen.tmem_offset = tmem_offset; in xen_tmem_op()
104 op.u.gen.pfn_offset = pfn_offset; in xen_tmem_op()
105 op.u.gen.len = len; in xen_tmem_op()
106 set_xen_guest_handle(op.u.gen.gmfn, (void *)gmfn); in xen_tmem_op()
107 rc = HYPERVISOR_tmem_op(&op); in xen_tmem_op()
114 struct tmem_op op; in xen_tmem_new_pool() local
121 op.cmd = TMEM_NEW_POOL; in xen_tmem_new_pool()
122 op.u.new.uuid[0] = uuid.uuid_lo; in xen_tmem_new_pool()
123 op.u.new.uuid[1] = uuid.uuid_hi; in xen_tmem_new_pool()
124 op.u.new.flags = flags; in xen_tmem_new_pool()
125 rc = HYPERVISOR_tmem_op(&op); in xen_tmem_new_pool()