Browse Source

sfc: Fix calculation of vf_i in map_vi_index()

This was broken during refactoring to use efx_vf_size().

[bwh: Keep using efx_vf_size()]
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Robert Stonehouse 13 years ago
parent
commit
2c61c8a787
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/net/ethernet/sfc/siena_sriov.c

+ 1 - 1
drivers/net/ethernet/sfc/siena_sriov.c

@@ -514,7 +514,7 @@ static bool map_vi_index(struct efx_nic *efx, unsigned abs_index,
 
 	if (abs_index < EFX_VI_BASE)
 		return true;
-	vf_i = (abs_index - EFX_VI_BASE) * efx_vf_size(efx);
+	vf_i = (abs_index - EFX_VI_BASE) / efx_vf_size(efx);
 	if (vf_i >= efx->vf_init_count)
 		return true;