Lines Matching refs:rss_rings
1247 u32 i, rss_rings; in mlx4_en_get_rxfh() local
1249 rss_rings = priv->prof->rss_rings ?: n; in mlx4_en_get_rxfh()
1250 rss_rings = rounddown_pow_of_two(rss_rings); in mlx4_en_get_rxfh()
1255 rxfh->indir[i] = i % rss_rings; in mlx4_en_get_rxfh()
1273 int rss_rings = 0; in mlx4_en_set_rxfh() local
1281 if (i > 0 && !rxfh->indir[i] && !rss_rings) in mlx4_en_set_rxfh()
1282 rss_rings = i; in mlx4_en_set_rxfh()
1284 if (rxfh->indir[i] != (i % (rss_rings ?: n))) in mlx4_en_set_rxfh()
1288 if (!rss_rings) in mlx4_en_set_rxfh()
1289 rss_rings = n; in mlx4_en_set_rxfh()
1292 if (!is_power_of_2(rss_rings)) in mlx4_en_set_rxfh()
1308 priv->prof->rss_rings = rss_rings; in mlx4_en_set_rxfh()