Lines Matching defs:inl

248 	struct mlx4_wqe_inline_seg *inl;
265 inl = wqe + s;
266 inl->byte_count = cpu_to_be32(1U << 31 | (size - s - sizeof *inl));
2355 struct mlx4_wqe_inline_seg *inl = wqe + sizeof *mlx;
2422 ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
2424 inl->byte_count = cpu_to_be32(1U << 31 | header_size);
2425 memcpy(inl + 1, sqp->header_buf, header_size);
2428 inl->byte_count = cpu_to_be32(1U << 31 | spc);
2429 memcpy(inl + 1, sqp->header_buf, spc);
2431 inl = (void *) (inl + 1) + spc;
2432 memcpy(inl + 1, sqp->header_buf + spc, header_size - spc);
2447 inl->byte_count = cpu_to_be32(1U << 31 | (header_size - spc));
2462 struct mlx4_wqe_inline_seg *inl = wqe + sizeof *mlx;
2629 ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
2631 inl->byte_count = cpu_to_be32(1U << 31 | header_size);
2632 memcpy(inl + 1, sqp->header_buf, header_size);
2635 inl->byte_count = cpu_to_be32(1U << 31 | spc);
2636 memcpy(inl + 1, sqp->header_buf, spc);
2638 inl = (void *) (inl + 1) + spc;
2639 memcpy(inl + 1, sqp->header_buf + spc, header_size - spc);
2654 inl->byte_count = cpu_to_be32(1U << 31 | (header_size - spc));
2785 struct mlx4_wqe_inline_seg *inl = wqe;
2797 ((unsigned long) (inl + 1) & (MLX4_INLINE_ALIGN - 1));
2799 memcpy(inl + 1, &hdr, sizeof (hdr));
2801 inl->byte_count = cpu_to_be32(1U << 31 | sizeof (hdr));
2804 memcpy(inl + 1, &hdr, spc);
2806 inl->byte_count = cpu_to_be32(1U << 31 | spc);
2808 inl = (void *) (inl + 1) + spc;
2809 memcpy(inl + 1, (void *) &hdr + spc, sizeof (hdr) - spc);
2811 inl->byte_count = cpu_to_be32(1U << 31 | (sizeof (hdr) - spc));
2902 struct mlx4_wqe_inline_seg *inl = wqe;
2904 inl->byte_count = cpu_to_be32(1U << 31);
2916 int inl = 0;
2927 inl += len;
2929 if (inl > qp->max_inline_data) {
2930 inl = 0;
2973 *sz = (inl + num_seg * sizeof *seg + 15) / 16;
3008 int inl = 0;
3222 inl = 1;
3277 if (nreq == 1 && inl && size > 1 && size < qp->bf.buf_size / 16) {