static int usdf_domain_bind(struct fid *fid, struct fid *bfid, uint64_t flags) { struct usdf_domain *udp; USDF_TRACE_SYS(DOMAIN, "\n"); if (flags & FI_REG_MR) { USDF_WARN_SYS(DOMAIN, "FI_REG_MR for EQs is not supported by the usnic provider"); return -FI_EOPNOTSUPP; } udp = dom_fidtou(fid); switch (bfid->fclass) { case FI_CLASS_EQ: if (udp->dom_eq != NULL) { return -FI_EINVAL; } udp->dom_eq = eq_fidtou(bfid); ofi_atomic_inc32(&udp->dom_eq->eq_refcnt); break; default: return -FI_EINVAL; } return 0; }
static int usdf_domain_bind(struct fid *fid, struct fid *bfid, uint64_t flags) { struct usdf_domain *udp; udp = dom_fidtou(fid); switch (bfid->fclass) { case FI_CLASS_EQ: if (udp->dom_eq != NULL) { return -FI_EINVAL; } udp->dom_eq = eq_fidtou(bfid); atomic_inc(&udp->dom_eq->eq_refcnt); break; default: return -FI_EINVAL; } return 0; }