Lines Matching defs:rx_ctx
3564 struct i40e_hmc_obj_rxq rx_ctx;
3571 memset(&rx_ctx, 0, sizeof(rx_ctx));
3618 rx_ctx.dbuff = DIV_ROUND_UP(ring->rx_buf_len,
3621 rx_ctx.base = (ring->dma / 128);
3622 rx_ctx.qlen = ring->count;
3625 rx_ctx.dsize = 0;
3628 * rx_ctx.dtype = 0;
3630 rx_ctx.hsplit_0 = 0;
3632 rx_ctx.rxmax = min_t(u16, vsi->max_frame, chain_len * ring->rx_buf_len);
3634 rx_ctx.lrxqthresh = 0;
3636 rx_ctx.lrxqthresh = 1;
3637 rx_ctx.crcstrip = 1;
3638 rx_ctx.l2tsel = 1;
3640 rx_ctx.showiv = 0;
3642 rx_ctx.prefena = 1;
3654 err = i40e_set_lan_rx_queue_context(hw, pf_q, &rx_ctx);