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 E9F4FA00C3; Tue, 13 Sep 2022 09:38:21 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B3E6840156; Tue, 13 Sep 2022 09:38:21 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id CF42540151 for ; Tue, 13 Sep 2022 09:38:19 +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 E084A7B; Tue, 13 Sep 2022 10:38:18 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru E084A7B DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1663054699; bh=GPCTu1kkbc5YkZkUTy98JwEH2Pve37N24DOwXAvqAE4=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=wOjUAuJp/KIxfqcJZUgwHAKb7uZwpke+fds727ga9b1GwW27icP2Q50VIWmgpump7 8iBcFqy5XX4zSNfu2ma/JicjP8Id6aeywkuZCYQQrxJw/sj5unOZwWWDV5GXl9Wkmc WRqgnYHVLKSdtNYfOCeaPyPhaTOSx8ycFLC6s1mg= Message-ID: Date: Tue, 13 Sep 2022 10:38:17 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.13.0 Subject: Re: [PATCH v2] ethdev: remove header split Rx offload Content-Language: en-US To: xuan.ding@intel.com, thomas@monjalon.net, ferruh.yigit@xilinx.com, 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 Cc: dev@dpdk.org References: <20220811092028.99919-1-xuan.ding@intel.com> <20220812031313.87385-1-xuan.ding@intel.com> From: Andrew Rybchenko Organization: OKTET Labs In-Reply-To: <20220812031313.87385-1-xuan.ding@intel.com> 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 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