From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id D42EFA0543; Tue, 4 Oct 2022 11:21:23 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BA8BA40DDC; Tue, 4 Oct 2022 11:21:23 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id E25DD40A87 for ; Tue, 4 Oct 2022 11:21:21 +0200 (CEST) Received: from [192.168.38.17] (aros.oktetlabs.ru [192.168.38.17]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id 541805D; Tue, 4 Oct 2022 12:21:21 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 541805D DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1664875281; bh=+B7bQ8dVxstUXpRB5D2C7+WyAPbiBvzE1WApLT7FM+0=; h=Date:Subject:From:To:Cc:References:In-Reply-To:From; b=QNGL9fhSCYx6B2cF9flstVBVnUeMKByKwXJnN4VtM9FeeyGoJ2ZJXwo/V5Kkpy9Hc 57SJwhKQu0aXkm5vRXBbC5kTcRgXZcPE3g2ujAsb1HrGmxbOTkPrqQvGg5+DVL7dEp 9uUKme0Ed3mwD0KRJ5ozADwZE8N1Yrrk20OIBSvo= Message-ID: Date: Tue, 4 Oct 2022 12:21:21 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.3.0 Subject: Re: [PATCH v2] ethdev: remove header split Rx offload Content-Language: en-US From: Andrew Rybchenko To: xuan.ding@intel.com, thomas@monjalon.net, viacheslavo@nvidia.com, jerinj@marvell.com, cristian.dumitrescu@intel.com, aman.deep.singh@intel.com, yuying.zhang@intel.com, chas3@att.com, humin29@huawei.com, gakhil@marvell.com, qi.z.zhang@intel.com, xiao.w.wang@intel.com, qiming.yang@intel.com, wenjun1.wu@intel.com, mdr@ashroe.eu, ndabilpuram@marvell.com, kirankumark@marvell.com, skori@marvell.com, skoteshwar@marvell.com, grive@u256.net, beilei.xing@intel.com, zr@semihalf.com, lironh@marvell.com, mczekaj@marvell.com, nicolas.chautru@intel.com, orika@nvidia.com, konstantin.v.ananyev@yandex.ru, radu.nicolau@intel.com, roy.fan.zhang@intel.com, pbhagavatula@marvell.com, bruce.richardson@intel.com, anatoly.burakov@intel.com, jingjing.wu@intel.com, junfeng.guo@intel.com, jasvinder.singh@intel.com, maxime.coquelin@redhat.com, chenbo.xia@intel.com, Ferruh Yigit Cc: dev@dpdk.org References: <20220811092028.99919-1-xuan.ding@intel.com> <20220812031313.87385-1-xuan.ding@intel.com> Organization: OKTET Labs In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On 9/13/22 10:38, Andrew Rybchenko wrote: > On 8/12/22 06:13, xuan.ding@intel.com wrote: >> From: Xuan Ding >> >> As announced in the deprecation note, this patch removes the Rx offload >> flag 'RTE_ETH_RX_OFFLOAD_HEADER_SPLIT' and 'split_hdr_size' field from >> the structure 'rte_eth_rxmode'. Meanwhile, the place where the examples >> and apps initialize the 'split_hdr_size' field, and where the drivers >> check if the 'split_hdr_size' value is 0 are also removed. >> >> User can still use `RTE_ETH_RX_OFFLOAD_BUFFER_SPLIT` for per-queue packet >> split offload, which is configured by 'rte_eth_rxseg_split'. >> >> Signed-off-by: Xuan Ding >> --- >> v2: >> * fix CI build error >> --- > > Acked-by: Andrew Rybchenko > Rebased and applied to dpdk-next-net/main, thanks.