Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 587731e6 authored by Alexander Duyck's avatar Alexander Duyck Committed by Jeff Kirsher
Browse files

fm10k: Cleanup MSI-X interrupts in case of failure



If the q_vector allocation fails we should free the resources associated
with the MSI-X vector table.

Signed-off-by: default avatarAlexander Duyck <aduyck@mirantis.com>
Reviewed-by: default avatarBruce Allan <bruce.w.allan@intel.com>
Tested-by: default avatarKrishneil Singh <Krishneil.k.singh@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 5682366c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1998,8 +1998,10 @@ int fm10k_init_queueing_scheme(struct fm10k_intfc *interface)

	/* Allocate memory for queues */
	err = fm10k_alloc_q_vectors(interface);
	if (err)
	if (err) {
		fm10k_reset_msix_capability(interface);
		return err;
	}

	/* Map rings to devices, and map devices to physical queues */
	fm10k_assign_rings(interface);