/* * Copyright (c) 2016 Intel Corporation, Inc. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include "udpx.h" static struct fi_ops_fabric udpx_fabric_ops = { .size = sizeof(struct fi_ops_fabric), .domain = udpx_domain_open, .passive_ep = fi_no_passive_ep, .eq_open = ofi_eq_create, .wait_open = ofi_wait_fd_open, .trywait = ofi_trywait }; static int udpx_fabric_close(fid_t fid) { int ret; struct util_fabric *fabric; fabric = container_of(fid, struct util_fabric, fabric_fid.fid); ret = ofi_fabric_close(fabric); if (ret) return ret; free(fabric); return 0; } static struct fi_ops udpx_fabric_fi_ops = { .size = sizeof(struct fi_ops), .close = udpx_fabric_close, .bind = fi_no_bind, .control = fi_no_control, .ops_open = fi_no_ops_open, }; int udpx_fabric(struct fi_fabric_attr *attr, struct fid_fabric **fabric, void *context) { int ret; struct util_fabric *util_fabric; util_fabric = calloc(1, sizeof(*util_fabric)); if (!util_fabric) return -FI_ENOMEM; ret = ofi_fabric_init(&udpx_prov, udpx_info.fabric_attr, attr, util_fabric, context); if (ret) return ret; *fabric = &util_fabric->fabric_fid; (*fabric)->fid.ops = &udpx_fabric_fi_ops; (*fabric)->ops = &udpx_fabric_ops; return 0; }