From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 4BE0C37B2 for ; Thu, 19 Jan 2017 11:56:56 +0100 (CET) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga102.jf.intel.com with ESMTP; 19 Jan 2017 02:56:55 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,253,1477983600"; d="scan'208";a="55107852" Received: from jeffguo-s2600wt2.sh.intel.com ([10.239.129.150]) by fmsmga005.fm.intel.com with ESMTP; 19 Jan 2017 02:56:53 -0800 From: Jeff Guo To: helin.zhang@intel.com, jingjing.wu@intel.com Cc: dev@dpdk.org, jia.guo@intel.com, Guo Date: Thu, 19 Jan 2017 18:56:43 +0800 Message-Id: <1484823403-24868-1-git-send-email-jia.guo@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1484191665-12402-1-git-send-email-jia.guo@intel.com> References: <1484191665-12402-1-git-send-email-jia.guo@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v3] doc: add known uio_pci_generic issue for i40e 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: , X-List-Received-Date: Thu, 19 Jan 2017 10:56:56 -0000 From: "Guo, Jia" When bind with the "uio_pci_generic" module in X710/XL710/XXV710, the result is failed. The "uio_pci_generic" module is not supported by X710/XL710/XXV710. Signed-off-by: Guo, Jia Acked-by: Jingjing Wu --- v3: add related linux kernel commit info and fix some syntax issues v2: add X710/XXV710 limitation case --- doc/guides/rel_notes/known_issues.rst | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/doc/guides/rel_notes/known_issues.rst b/doc/guides/rel_notes/known_issues.rst index 3cd4237..8b083a0 100644 --- a/doc/guides/rel_notes/known_issues.rst +++ b/doc/guides/rel_notes/known_issues.rst @@ -640,3 +640,29 @@ I40e VF may not receive packets in the promiscuous mode **Driver/Module**: Poll Mode Driver (PMD). + + +The uio_pci_generic module bind failed in X710/XL710/XXV710 +----------------------------------------------------------- + +**Description**: + The “uio_pci_generic” module is not supported by XL710, since the errata of XL710 + states that the Interrupt Status bit is not implemented. The errata is the item #71 + from the `xl710 controller spec + `_. + The hw limitation is the same as other X710/XXV710 NICs. + +**Implication**: + When bind the “uio_pci_generic” module, it probe device and check the Interrupt Status + bit. Since it is not supported by X710/XL710/XXV710, it return a *failed* value. The statement + that these products don’t support INTx masking, is indicated in the related `linux kernel commit + < https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/drivers/pci/quirks.c?id=8bcf4525c5d43306c5fd07e132bc8650e3491aec>`_. + +**Resolution/Workaround**: + Do not bind to use the “uio_pci_generic” module in X710/XL710/XXV710 NICs. + +**Affected Environment/Platform**: + All. + +**Driver/Module**: + Poll Mode Driver (PMD). -- 2.7.4