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 05857A04B1; Mon, 23 Nov 2020 13:29:50 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 28FD2C8E6; Mon, 23 Nov 2020 13:29:48 +0100 (CET) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 0ACE0C8C6 for ; Mon, 23 Nov 2020 13:29:45 +0100 (CET) Received: from Internal Mail-Server by MTLPINE1 (envelope-from viacheslavo@nvidia.com) with SMTP; 23 Nov 2020 14:29:43 +0200 Received: from nvidia.com (pegasus12.mtr.labs.mlnx [10.210.17.40]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 0ANCTh9K029990; Mon, 23 Nov 2020 14:29:43 +0200 From: Viacheslav Ovsiienko To: dev@dpdk.org Cc: thomas@monjalon.net, ranish@nvidia.com, ferruh.yigit@intel.com, bingz@nvidia.com, stable@dpdk.org Date: Mon, 23 Nov 2020 12:29:41 +0000 Message-Id: <1606134581-10742-1-git-send-email-viacheslavo@nvidia.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dpdk-dev] [PATCH] ethdev: fix eCPRI header generic data field 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" There was a typo in eCPRI header definition. Fixes: d164c609e70b ("ethdev: add eCPRI key fields to flow API") Cc: stable@dpdk.org Reported-by: Rani Sharoni Signed-off-by: Viacheslav Ovsiienko --- lib/librte_net/rte_ecpri.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_net/rte_ecpri.h b/lib/librte_net/rte_ecpri.h index d1c4838..1cbd6d8 100644 --- a/lib/librte_net/rte_ecpri.h +++ b/lib/librte_net/rte_ecpri.h @@ -167,7 +167,7 @@ struct rte_ecpri_combined_msg_hdr { struct rte_ecpri_msg_iq_data type0; struct rte_ecpri_msg_bit_seq type1; struct rte_ecpri_msg_rtc_ctrl type2; - struct rte_ecpri_msg_bit_seq type3; + struct rte_ecpri_msg_gen_data type3; struct rte_ecpri_msg_rm_access type4; struct rte_ecpri_msg_delay_measure type5; struct rte_ecpri_msg_remote_reset type6; -- 1.8.3.1