Lines Matching defs:access
1179 * @attr: access attributes
1536 * @attr: access attributes
1803 * @work: provides access to the cq buffer to free
2240 * irdma_get_mr_access - get hw MR access permissions from IB access flags
2241 * @access: IB access flags
2243 static inline u16 irdma_get_mr_access(int access)
2247 hw_access |= (access & IB_ACCESS_LOCAL_WRITE) ?
2249 hw_access |= (access & IB_ACCESS_REMOTE_WRITE) ?
2251 hw_access |= (access & IB_ACCESS_REMOTE_READ) ?
2253 hw_access |= (access & IB_ACCESS_MW_BIND) ?
2255 hw_access |= (access & IB_ZERO_BASED) ?
2732 * @ibmr: ib mem to access iwarp mr pointer
2761 * @ibmr: ib mem to access iwarp mr pointer
2780 * @access: access for MR
2783 u16 access)
2805 stag_info->access_rights = irdma_get_mr_access(access);
2836 static int irdma_reg_user_mr_type_mem(struct irdma_mr *iwmr, int access)
2868 err = irdma_hwreg_mr(iwdev, iwmr, access);
3003 * @access: access of mr
3007 u64 virt, int access,
3023 region = ib_umem_get(pd->device, start, len, access);
3055 err = irdma_reg_user_mr_type_mem(iwmr, access);
3075 int fd, int access,
3086 umem_dmabuf = ib_umem_dmabuf_get_pinned(pd->device, start, len, fd, access);
3099 err = irdma_reg_user_mr_type_mem(iwmr, access);
3119 * @access: Access rights
3122 struct ib_mr *irdma_reg_phys_mr(struct ib_pd *pd, u64 addr, u64 size, int access,
3155 ret = irdma_hwreg_mr(iwdev, iwmr, access);
3172 * @acc: access for memory
3403 stag_info.access_rights = irdma_get_mr_access(reg_wr(ib_wr)->access);