DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Ding, Xuan" <xuan.ding@intel.com>
To: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>,
	"thomas@monjalon.net" <thomas@monjalon.net>,
	"ferruh.yigit@xilinx.com" <ferruh.yigit@xilinx.com>,
	"viacheslavo@nvidia.com" <viacheslavo@nvidia.com>,
	"jerinj@marvell.com" <jerinj@marvell.com>,
	"Dumitrescu, Cristian" <cristian.dumitrescu@intel.com>,
	 "Singh, Aman Deep" <aman.deep.singh@intel.com>,
	"Zhang, Yuying" <yuying.zhang@intel.com>,
	"chas3@att.com" <chas3@att.com>,
	"humin29@huawei.com" <humin29@huawei.com>,
	"gakhil@marvell.com" <gakhil@marvell.com>,
	"Zhang, Qi Z" <qi.z.zhang@intel.com>,
	"Wang, Xiao W" <xiao.w.wang@intel.com>,
	"Yang, Qiming" <qiming.yang@intel.com>,
	"Wu, Wenjun1" <wenjun1.wu@intel.com>,
	"mdr@ashroe.eu" <mdr@ashroe.eu>,
	"ndabilpuram@marvell.com" <ndabilpuram@marvell.com>,
	"kirankumark@marvell.com" <kirankumark@marvell.com>,
	"skori@marvell.com" <skori@marvell.com>,
	"skoteshwar@marvell.com" <skoteshwar@marvell.com>,
	"grive@u256.net" <grive@u256.net>,
	"Xing, Beilei" <beilei.xing@intel.com>,
	"zr@semihalf.com" <zr@semihalf.com>,
	"lironh@marvell.com" <lironh@marvell.com>,
	"mczekaj@marvell.com" <mczekaj@marvell.com>,
	"Chautru, Nicolas" <nicolas.chautru@intel.com>,
	"orika@nvidia.com" <orika@nvidia.com>,
	"konstantin.v.ananyev@yandex.ru" <konstantin.v.ananyev@yandex.ru>,
	"Nicolau, Radu" <radu.nicolau@intel.com>,
	"Zhang, Roy Fan" <roy.fan.zhang@intel.com>,
	"pbhagavatula@marvell.com" <pbhagavatula@marvell.com>,
	"Richardson, Bruce" <bruce.richardson@intel.com>,
	"Burakov, Anatoly" <anatoly.burakov@intel.com>,
	 "Wu, Jingjing" <jingjing.wu@intel.com>,
	"Guo, Junfeng" <junfeng.guo@intel.com>,
	"Singh, Jasvinder" <jasvinder.singh@intel.com>,
	"maxime.coquelin@redhat.com" <maxime.coquelin@redhat.com>,
	"Xia, Chenbo" <chenbo.xia@intel.com>
Cc: "dev@dpdk.org" <dev@dpdk.org>
Subject: RE: [PATCH v2] ethdev: remove header split Rx offload
Date: Thu, 15 Sep 2022 08:12:26 +0000	[thread overview]
Message-ID: <BN9PR11MB55134834C5CEE7C029F45E0DE7499@BN9PR11MB5513.namprd11.prod.outlook.com> (raw)
In-Reply-To: <a7678a3c-04c0-ece6-4df0-69a9b9983f00@oktetlabs.ru>

Dear maintainers,

This patch series involves changes of examples/PMDs/docs to remove "HEADER_SPLIT".
Looking forward to your feedbacks regarding the modification.

Thanks,
Xuan

> -----Original Message-----
> From: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
> Sent: Tuesday, September 13, 2022 3:38 PM
> To: Ding, Xuan <xuan.ding@intel.com>; thomas@monjalon.net;
> ferruh.yigit@xilinx.com; viacheslavo@nvidia.com; jerinj@marvell.com;
> Dumitrescu, Cristian <cristian.dumitrescu@intel.com>; Singh, Aman Deep
> <aman.deep.singh@intel.com>; Zhang, Yuying <yuying.zhang@intel.com>;
> chas3@att.com; humin29@huawei.com; gakhil@marvell.com; Zhang, Qi Z
> <qi.z.zhang@intel.com>; Wang, Xiao W <xiao.w.wang@intel.com>; Yang,
> Qiming <qiming.yang@intel.com>; Wu, Wenjun1 <wenjun1.wu@intel.com>;
> mdr@ashroe.eu; ndabilpuram@marvell.com; kirankumark@marvell.com;
> skori@marvell.com; skoteshwar@marvell.com; grive@u256.net; Xing, Beilei
> <beilei.xing@intel.com>; zr@semihalf.com; lironh@marvell.com;
> mczekaj@marvell.com; Chautru, Nicolas <nicolas.chautru@intel.com>;
> orika@nvidia.com; konstantin.v.ananyev@yandex.ru; Nicolau, Radu
> <radu.nicolau@intel.com>; Zhang, Roy Fan <roy.fan.zhang@intel.com>;
> pbhagavatula@marvell.com; Richardson, Bruce
> <bruce.richardson@intel.com>; Burakov, Anatoly
> <anatoly.burakov@intel.com>; Wu, Jingjing <jingjing.wu@intel.com>; Guo,
> Junfeng <junfeng.guo@intel.com>; Singh, Jasvinder
> <jasvinder.singh@intel.com>; maxime.coquelin@redhat.com; Xia, Chenbo
> <chenbo.xia@intel.com>
> Cc: dev@dpdk.org
> Subject: Re: [PATCH v2] ethdev: remove header split Rx offload
> 
> On 8/12/22 06:13, xuan.ding@intel.com wrote:
> > From: Xuan Ding <xuan.ding@intel.com>
> >
> > 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 <xuan.ding@intel.com>
> > ---
> > v2:
> > * fix CI build error
> > ---
> 
> Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>


  reply	other threads:[~2022-09-15  8:12 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-11  9:20 [PATCH] " xuan.ding
2022-08-12  3:13 ` [PATCH v2] " xuan.ding
2022-09-13  7:38   ` Andrew Rybchenko
2022-09-15  8:12     ` Ding, Xuan [this message]
2022-10-04  9:21     ` Andrew Rybchenko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=BN9PR11MB55134834C5CEE7C029F45E0DE7499@BN9PR11MB5513.namprd11.prod.outlook.com \
    --to=xuan.ding@intel.com \
    --cc=aman.deep.singh@intel.com \
    --cc=anatoly.burakov@intel.com \
    --cc=andrew.rybchenko@oktetlabs.ru \
    --cc=beilei.xing@intel.com \
    --cc=bruce.richardson@intel.com \
    --cc=chas3@att.com \
    --cc=chenbo.xia@intel.com \
    --cc=cristian.dumitrescu@intel.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@xilinx.com \
    --cc=gakhil@marvell.com \
    --cc=grive@u256.net \
    --cc=humin29@huawei.com \
    --cc=jasvinder.singh@intel.com \
    --cc=jerinj@marvell.com \
    --cc=jingjing.wu@intel.com \
    --cc=junfeng.guo@intel.com \
    --cc=kirankumark@marvell.com \
    --cc=konstantin.v.ananyev@yandex.ru \
    --cc=lironh@marvell.com \
    --cc=maxime.coquelin@redhat.com \
    --cc=mczekaj@marvell.com \
    --cc=mdr@ashroe.eu \
    --cc=ndabilpuram@marvell.com \
    --cc=nicolas.chautru@intel.com \
    --cc=orika@nvidia.com \
    --cc=pbhagavatula@marvell.com \
    --cc=qi.z.zhang@intel.com \
    --cc=qiming.yang@intel.com \
    --cc=radu.nicolau@intel.com \
    --cc=roy.fan.zhang@intel.com \
    --cc=skori@marvell.com \
    --cc=skoteshwar@marvell.com \
    --cc=thomas@monjalon.net \
    --cc=viacheslavo@nvidia.com \
    --cc=wenjun1.wu@intel.com \
    --cc=xiao.w.wang@intel.com \
    --cc=yuying.zhang@intel.com \
    --cc=zr@semihalf.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).