Lines Matching refs:xlt
185 MLX5_SET(mkc, mkc, translations_octword_size, ent->xlt); in alloc_cache_mr()
763 ent->xlt = (1 << ent->order) * sizeof(struct mlx5_mtt) / in mlx5_mr_cache_init()
1026 void *xlt; in mlx5_ib_update_xlt() local
1062 xlt = (void *)__get_free_pages(gfp, get_order(size)); in mlx5_ib_update_xlt()
1063 if (!xlt && size > MLX5_SPARE_UMR_CHUNK) { in mlx5_ib_update_xlt()
1068 xlt = (void *)__get_free_pages(gfp, get_order(size)); in mlx5_ib_update_xlt()
1071 if (!xlt) { in mlx5_ib_update_xlt()
1073 xlt = (void *)mlx5_ib_get_xlt_emergency_page(); in mlx5_ib_update_xlt()
1075 memset(xlt, 0, size); in mlx5_ib_update_xlt()
1079 dma = dma_map_single(ddev, xlt, size, DMA_TO_DEVICE); in mlx5_ib_update_xlt()
1120 mlx5_odp_populate_xlt(xlt, idx, npages, mr, flags); in mlx5_ib_update_xlt()
1123 npages, xlt, in mlx5_ib_update_xlt()
1128 memset(xlt + size_to_map, 0, size - size_to_map); in mlx5_ib_update_xlt()
1160 free_pages((unsigned long)xlt, get_order(size)); in mlx5_ib_update_xlt()