Re: [PATCH] ethdev: introduce generic dummy packet burst function

2022-02-10 Thread Thomas Monjalon
10/02/2022 17:30, Stephen Hemminger: > On Thu, 10 Feb 2022 13:58:43 + > Ferruh Yigit wrote: > > On 2/8/2022 7:44 PM, Ferruh Yigit wrote: > > > --- a/drivers/net/mlx5/mlx5.c > > > +++ b/drivers/net/mlx5/mlx5.c > > > @@ -1559,8 +1559,8 @@ mlx5_dev_close(struct rte_eth_dev *dev) > > > m

Re: [PATCH] ethdev: introduce generic dummy packet burst function

2022-02-10 Thread Stephen Hemminger
On Thu, 10 Feb 2022 13:58:43 + Ferruh Yigit wrote: > On 2/8/2022 7:44 PM, Ferruh Yigit wrote: > > diff --git a/drivers/net/mlx5/linux/mlx5_os.c > > b/drivers/net/mlx5/linux/mlx5_os.c > > index aecdc5a68abb..bbe05bb837e0 100644 > > --- a/drivers/net/mlx5/linux/mlx5_os.c > > +++ b/drivers/net/

RE: [PATCH] ethdev: introduce generic dummy packet burst function

2022-02-10 Thread Slava Ovsiienko
Devendra Singh Rawat > ; NBU-Contact-Thomas Monjalon (EXTERNAL) > > Cc: dev@dpdk.org; Ciara Loftus > Subject: Re: [PATCH] ethdev: introduce generic dummy packet burst function > > On 2/10/22 14:47, Morten Brørup wrote: > >> From: Andrew Rybchenko [mailto:and

Re: [PATCH] ethdev: introduce generic dummy packet burst function

2022-02-10 Thread Ferruh Yigit
On 2/8/2022 7:44 PM, Ferruh Yigit wrote: diff --git a/drivers/net/mlx5/linux/mlx5_os.c b/drivers/net/mlx5/linux/mlx5_os.c index aecdc5a68abb..bbe05bb837e0 100644 --- a/drivers/net/mlx5/linux/mlx5_os.c +++ b/drivers/net/mlx5/linux/mlx5_os.c @@ -1623,8 +1623,8 @@ mlx5_dev_spawn(struct rte_device *d

Re: [PATCH] ethdev: introduce generic dummy packet burst function

2022-02-10 Thread Andrew Rybchenko
On 2/10/22 14:47, Morten Brørup wrote: From: Andrew Rybchenko [mailto:andrew.rybche...@oktetlabs.ru] Sent: Thursday, 10 February 2022 12.39 On 2/10/22 14:04, Morten Brørup wrote: From: Ferruh Yigit [mailto:ferruh.yi...@intel.com] Sent: Tuesday, 8 February 2022 20.45 Multiple PMDs have dummy/no

RE: [PATCH] ethdev: introduce generic dummy packet burst function

2022-02-10 Thread Morten Brørup
> From: Andrew Rybchenko [mailto:andrew.rybche...@oktetlabs.ru] > Sent: Thursday, 10 February 2022 12.39 > > On 2/10/22 14:04, Morten Brørup wrote: > >> From: Ferruh Yigit [mailto:ferruh.yi...@intel.com] > >> Sent: Tuesday, 8 February 2022 20.45 > >> > >> Multiple PMDs have dummy/noop Rx/Tx packet

Re: [PATCH] ethdev: introduce generic dummy packet burst function

2022-02-10 Thread Andrew Rybchenko
On 2/10/22 14:04, Morten Brørup wrote: From: Ferruh Yigit [mailto:ferruh.yi...@intel.com] Sent: Tuesday, 8 February 2022 20.45 Multiple PMDs have dummy/noop Rx/Tx packet burst functions. These dummy functions are very simple, introduce a common function in the ethdev and update drivers to use i

RE: [PATCH] ethdev: introduce generic dummy packet burst function

2022-02-10 Thread Morten Brørup
> From: Ferruh Yigit [mailto:ferruh.yi...@intel.com] > Sent: Tuesday, 8 February 2022 20.45 > > Multiple PMDs have dummy/noop Rx/Tx packet burst functions. > > These dummy functions are very simple, introduce a common function in > the ethdev and update drivers to use it instead of each driver ha

Re: [PATCH] ethdev: introduce generic dummy packet burst function

2022-02-10 Thread Ferruh Yigit
On 2/10/2022 7:38 AM, Loftus, Ciara wrote: Subject: [PATCH] ethdev: introduce generic dummy packet burst function Multiple PMDs have dummy/noop Rx/Tx packet burst functions. These dummy functions are very simple, introduce a common function in the ethdev and update drivers to use it instead of

RE: [PATCH] ethdev: introduce generic dummy packet burst function

2022-02-09 Thread Loftus, Ciara
> Subject: [PATCH] ethdev: introduce generic dummy packet burst function > > Multiple PMDs have dummy/noop Rx/Tx packet burst functions. > > These dummy functions are very simple, introduce a common function in > the ethdev and update drivers to use it instead of each drive

[PATCH] ethdev: introduce generic dummy packet burst function

2022-02-08 Thread Ferruh Yigit
Multiple PMDs have dummy/noop Rx/Tx packet burst functions. These dummy functions are very simple, introduce a common function in the ethdev and update drivers to use it instead of each driver having its own functions. Signed-off-by: Ferruh Yigit --- Cc: Ciara Loftus --- drivers/net/ark/ark_et