From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCH 1/4] ethdev: add SCTP Rx checksum offload support Date: Mon, 1 Oct 2018 14:45:29 +0100 Message-ID: References: <20180913134707.23698-1-jerin.jacob@caviumnetworks.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org To: Jerin Jacob , Wenzhuo Lu , Jingjing Wu , Bernard Iremonger , John McNamara , Marko Kovacevic , Thomas Monjalon , Andrew Rybchenko Return-path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 121401B1FE for ; Mon, 1 Oct 2018 15:45:35 +0200 (CEST) In-Reply-To: <20180913134707.23698-1-jerin.jacob@caviumnetworks.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 9/13/2018 2:47 PM, Jerin Jacob wrote: > Signed-off-by: Jerin Jacob > --- > app/test-pmd/config.c | 9 +++++++++ > doc/guides/nics/features.rst | 4 ++-- > lib/librte_ethdev/rte_ethdev.c | 1 + > lib/librte_ethdev/rte_ethdev.h | 1 + > 4 files changed, 13 insertions(+), 2 deletions(-) > > diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c > index 14ccd6864..c4ed8d474 100644 > --- a/app/test-pmd/config.c > +++ b/app/test-pmd/config.c > @@ -576,6 +576,15 @@ port_offload_cap_display(portid_t port_id) > printf("off\n"); > } > > + if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_SCTP_CKSUM) { > + printf("RX SCTP checksum: "); There is extra space in log, it doesn't align with other logs.