Lines Matching refs:mw
909 struct ib_mw *mw; in ib_uverbs_alloc_mw() local
932 mw = rdma_zalloc_drv_obj(ib_dev, ib_mw); in ib_uverbs_alloc_mw()
933 if (!mw) { in ib_uverbs_alloc_mw()
938 mw->device = ib_dev; in ib_uverbs_alloc_mw()
939 mw->pd = pd; in ib_uverbs_alloc_mw()
940 mw->uobject = uobj; in ib_uverbs_alloc_mw()
941 mw->type = cmd.mw_type; in ib_uverbs_alloc_mw()
943 ret = pd->device->ops.alloc_mw(mw, &attrs->driver_udata); in ib_uverbs_alloc_mw()
949 uobj->object = mw; in ib_uverbs_alloc_mw()
953 resp.rkey = mw->rkey; in ib_uverbs_alloc_mw()
958 kfree(mw); in ib_uverbs_alloc_mw()