From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id E1B47A04F2; Tue, 9 Jun 2020 04:43:08 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id AB0BB2B93; Tue, 9 Jun 2020 04:43:08 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 302392B91; Tue, 9 Jun 2020 04:43:07 +0200 (CEST) IronPort-SDR: m28Z1BItVJYMQQg5T1Xoay90pYtbLA8qLOJLQ9s0coFhA7Qp1wqWSeofjOS+u6pWWMNRYmXL1d UOkXTiZH/6hQ== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Jun 2020 19:43:06 -0700 IronPort-SDR: Qk/ml9sxf+a7Rq1QrkFdw59dgvDRn8qeD8gEQbNInFQLl81efluqt/TXJrUGf66ajZ8/78dCu5 MzrICdprOGKA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,490,1583222400"; d="scan'208";a="288678704" Received: from jm-optiplex-5060.sh.intel.com ([10.240.182.61]) by orsmga002.jf.intel.com with ESMTP; 08 Jun 2020 19:43:04 -0700 From: Jiang Mao To: xiaolong.ye@intel.com Cc: dev@dpdk.org, stable@dpdk.org, Jiang Mao Date: Tue, 9 Jun 2020 10:25:38 +0800 Message-Id: <20200609022538.27665-2-maox.jiang@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200609022538.27665-1-maox.jiang@intel.com> References: <20200609022538.27665-1-maox.jiang@intel.com> Subject: [dpdk-dev] [PATCH 2/2] net/i40e: fix fdir allocating msix resource error X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Fdir allocating msix resource is not strictly necessary, if no resource left, print a warning message. Fixes: 4861cde461 (i40e: new poll mode driver) Cc: stable@dpdk.org Signed-off-by: Jiang Mao --- drivers/net/i40e/i40e_ethdev.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c index 33ed556c8..acc43077d 100644 --- a/drivers/net/i40e/i40e_ethdev.c +++ b/drivers/net/i40e/i40e_ethdev.c @@ -5744,6 +5744,17 @@ i40e_vsi_setup(struct i40e_pf *pf, vsi->nb_msix = RTE_MIN(vsi->nb_qps, RTE_MAX_RXTX_INTR_VEC_ID); } + } else if (type == I40E_VSI_FDIR) { + ret = i40e_res_pool_alloc(&pf->msix_pool, 1); + if (ret < 0) { + PMD_DRV_LOG(WARNING, "MSIX vectors used up, FDIR can`t bind interrupt"); + vsi->msix_intr = 0; + vsi->nb_msix = 0; + } else { + vsi->msix_intr = ret; + vsi->nb_msix = 1; + } + } else if (type != I40E_VSI_SRIOV) { ret = i40e_res_pool_alloc(&pf->msix_pool, 1); if (ret < 0) { -- 2.17.1