From: Íñigo Huguet Date: Mon, 21 Jun 2021 15:32:38 +0000 (+0200) Subject: sfc: avoid duplicated code in ef10_sriov X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3ddd6e2f71092766b6040b9c33cf9906577b4025;p=linux.git sfc: avoid duplicated code in ef10_sriov The fail path of efx_ef10_sriov_alloc_vf_vswitching is identical to the full content of efx_ef10_sriov_free_vf_vswitching, so replace it for a single call to efx_ef10_sriov_free_vf_vswitching. Signed-off-by: Íñigo Huguet Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/sfc/ef10_sriov.c b/drivers/net/ethernet/sfc/ef10_sriov.c index f8f8fbe51ef84..752d6406f07ed 100644 --- a/drivers/net/ethernet/sfc/ef10_sriov.c +++ b/drivers/net/ethernet/sfc/ef10_sriov.c @@ -206,9 +206,7 @@ static int efx_ef10_sriov_alloc_vf_vswitching(struct efx_nic *efx) return 0; fail: - efx_ef10_sriov_free_vf_vports(efx); - kfree(nic_data->vf); - nic_data->vf = NULL; + efx_ef10_sriov_free_vf_vswitching(efx); return rc; }