Lines Matching refs:op
500 int tmem_control(struct xen_sysctl_tmem_op *op) in tmem_control() argument
503 uint32_t cmd = op->cmd; in tmem_control()
505 if ( op->pad != 0 ) in tmem_control()
515 ret = tmemc_freeze_pools(op->cli_id, cmd); in tmem_control()
518 ret = tmemc_flush_mem(op->cli_id, op->arg); in tmem_control()
521 ret = tmemc_list(op->cli_id, in tmem_control()
522 guest_handle_cast(op->u.buf, char), op->len, op->arg); in tmem_control()
525 ret = tmemc_set_client_info(op->cli_id, op->u.client); in tmem_control()
531 ret = tmemc_get_client_info(op->cli_id, op->u.client); in tmem_control()
534 ret = tmemc_get_pool(op->cli_id, op->u.pool, op->len); in tmem_control()
537 ret = tmemc_set_pools(op->cli_id, op->u.pool, op->len); in tmem_control()
540 ret = tmemc_auth_pools(op->cli_id, op->u.pool, op->len); in tmem_control()
543 ret = do_tmem_control(op); in tmem_control()