From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: [PATCH] net/i40e: remove invalid comment Date: Thu, 13 Sep 2018 12:21:01 +0100 Message-ID: <20180913112101.50271-1-ferruh.yigit@intel.com> Cc: dev@dpdk.org, Ferruh Yigit To: Beilei Xing , Qi Zhang Return-path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id F338158C4 for ; Thu, 13 Sep 2018 12:21:26 +0200 (CEST) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Comments says "no csum error report support" but there is no check related csum offloads. Removing the comment. Signed-off-by: Ferruh Yigit --- Patch can be other way around too, adding the csum check mentioned in the comment. Please comment if this is the correct thing to do. --- drivers/net/i40e/i40e_rxtx_vec_common.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/net/i40e/i40e_rxtx_vec_common.h b/drivers/net/i40e/i40e_rxtx_vec_common.h index 63cb17742..f00f6d648 100644 --- a/drivers/net/i40e/i40e_rxtx_vec_common.h +++ b/drivers/net/i40e/i40e_rxtx_vec_common.h @@ -199,9 +199,7 @@ i40e_rx_vec_dev_conf_condition_check_default(struct rte_eth_dev *dev) if (fconf->mode != RTE_FDIR_MODE_NONE) return -1; - /* - no csum error report support - * - no header split support - */ + /* no header split support */ if (rxmode->offloads & DEV_RX_OFFLOAD_HEADER_SPLIT) return -1; -- 2.17.1