Lines Matching refs:mw
262 struct ib_mw *mw; member
472 struct ib_mw *mw; in ib_alloc_mw() local
477 mw = pd->device->alloc_mw(pd, type, NULL); in ib_alloc_mw()
478 if (!IS_ERR(mw)) { in ib_alloc_mw()
479 mw->device = pd->device; in ib_alloc_mw()
480 mw->pd = pd; in ib_alloc_mw()
481 mw->uobject = NULL; in ib_alloc_mw()
482 mw->type = type; in ib_alloc_mw()
485 return (mw); in ib_alloc_mw()
490 struct ib_mw *mw, in ib_bind_mw() argument
497 ib_dealloc_mw(struct ib_mw *mw) in ib_dealloc_mw() argument
502 pd = mw->pd; in ib_dealloc_mw()
503 ret = mw->device->dealloc_mw(mw); in ib_dealloc_mw()