Re: [dpdk-dev] [PATCH] net/mlx5: fix doorbell release on Rx queue release

2019-07-24 Thread Raslan Darawsheh
mlx5_rxq_ctrl { > struct mlx5_priv *priv; /* Back pointer to private data. */ > unsigned int socket; /* CPU socket ID for allocations. */ > unsigned int irq:1; /* Whether IRQ is enabled. */ > + unsigned int dbr_umem_id_valid:1; /* dbr_umem_id holds a valid > value. */ > uint32_t flow_mark_n; /* Number of Mark/Flag flows using this > Queue. */ > uint32_t flow_tunnels_n[MLX5_FLOW_TUNNEL]; /* Tunnels > counters. */ > uint32_t wqn; /* WQ number. */ > -- > 1.8.3.1 Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH v3] net/mlx5: fix Rx queue release of resources

2019-07-24 Thread Raslan Darawsheh
qes); > rxq_ctrl->rxq.wqes = NULL; > } > - if (rxq_ctrl->wq_umem) > + if (rxq_ctrl->wq_umem) { > mlx5_glue->devx_umem_dereg(rxq_ctrl->wq_umem); > + rxq_ctrl->wq_umem = NULL; > + } > } > > /** > -- > 1.8.3.1 Patch applied to dpdk-next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH v3] net/mlx5: fix doorbell release on Rx queue release

2019-07-24 Thread Raslan Darawsheh
> struct mlx5_priv *priv; /* Back pointer to private data. */ > unsigned int socket; /* CPU socket ID for allocations. */ > unsigned int irq:1; /* Whether IRQ is enabled. */ > + unsigned int dbr_umem_id_valid:1; /* dbr_umem_id holds a valid > value. > +*/ > uint32_t flow_mark_n; /* Number of Mark/Flag flows using this > Queue. */ > uint32_t flow_tunnels_n[MLX5_FLOW_TUNNEL]; /* Tunnels > counters. */ > uint32_t wqn; /* WQ number. */ > -- > 1.8.3.1 Patch applied to dpdk-next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH 00/11] net/mlx5: LRO fixes and enhancements

2019-07-29 Thread Raslan Darawsheh
x.h | 10 +- > drivers/net/mlx5/mlx5_rxtx_vec.c | 2 + > drivers/net/mlx5/mlx5_trigger.c| 10 +- > 12 files changed, 179 insertions(+), 148 deletions(-) > > -- > 1.8.3.1 Series applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH 0/3] net/mlx5: transmit datapath cumulative fix pack

2019-07-29 Thread Raslan Darawsheh
x5/mlx5.c | 7 +-- > drivers/net/mlx5/mlx5_defs.h | 9 +++- > drivers/net/mlx5/mlx5_prm.h | 17 --- drivers/net/mlx5/mlx5_rxtx.c | > 110 +-- > 4 files changed, 97 insertions(+), 46 deletions(-) > > -- > 1.8.3.1 Series applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH 2/2] net/mlx5: fix crash in dev_info_get in secondary process

2019-07-31 Thread Raslan Darawsheh
Hi Stephen, Can you please confirm that Slava's patch fixed your issue and this patch is not needed anymore for MLX5? So that I can take mlx4 patch only from this series? Kindest regards, Raslan Darawsheh > -Original Message- > From: dev On Behalf Of Stephen Hemminger >

Re: [dpdk-dev] [PATCH v3] net/mlx5: add workaround for VLAN in virtual machine

2019-07-31 Thread Raslan Darawsheh
| 33 + > drivers/net/mlx5/mlx5_flow.c | 22 +++ > drivers/net/mlx5/mlx5_flow.h | 5 + > drivers/net/mlx5/mlx5_flow_dv.c| 33 - > drivers/net/mlx5/mlx5_flow_verbs.c | 25 +++- > drivers/net/mlx5/mlx5_nl.c | 294 > + > 7 files changed, 414 insertions(+), 4 deletions(-) > Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH 1/2] net/mlx4: fix crash in dev_info_get in secondary process

2019-08-03 Thread Raslan Darawsheh
Hi Stephen, Wrong headline format: net/mlx4: fix crash in dev_info_get in secondary process can you please fix it? You shouldn't use the _ in the title format Kindest regards, Raslan Darawsheh > -Original Message- > From: dev On Behalf Of Stephen Hemminger > Sent

Re: [dpdk-dev] [PATCH v2] net/mlx5: fix limit on direct rules tables number

2019-08-04 Thread Raslan Darawsheh
NULL, "group must be smaller than " > - RTE_STR(MLX5_MAX_FDB_TABLES)); > + RTE_STR(MLX5_MAX_TABLES_FDB)); > } > if (!(attributes->egress ^ attributes->ingress)) > return rte_flow_error_set(error, ENOTSUP, > -- > 1.8.3.1 Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: txq_inline_min not set for ConnectX-5 adapters

2019-08-04 Thread Raslan Darawsheh
->txq_inline_min = MLX5_INLINE_HSIZE_NONE; > -- > 1.8.3.1 Patch applied to next-net-mlx after fixing the wrong headline format Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH 1/2] net/mlx4: fix crash in dev_info_get in secondary process

2019-08-05 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Raslan Darawsheh > Sent: Sunday, August 4, 2019 9:58 AM > To: Stephen Hemminger ; Matan Azrad > ; Shahaf Shuler ; > Yongseok Koh ; Slava Ovsiienko > > Cc: dev@dpdk.org; s...@paloaltonetworks.com; sta...@dpdk.org > Subject: RE:

Re: [dpdk-dev] [PATCH] net/mlx5: fix validation of VLAN pcp item

2019-08-05 Thread Raslan Darawsheh
ype = RTE_BE16(0x), > + .tci = RTE_BE16(UINT16_MAX), > + .inner_type = RTE_BE16(UINT16_MAX), > }; > uint16_t vlan_tag = 0; > const int tunnel = !!(item_flags & MLX5_FLOW_LAYER_TUNNEL); > -- > 1.8.3.1 Patch applied to next-net-mlx, Kindest regards Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix redundant use of directive

2019-08-05 Thread Raslan Darawsheh
< > MLX5_MATCH_CRITERIA_ENABLE_MISC2_BIT; > -#ifdef HAVE_MLX5DV_DR > match_criteria_enable |= > (!HEADER_IS_ZERO(match_criteria, misc_parameters_3)) << > MLX5_MATCH_CRITERIA_ENABLE_MISC3_BIT; > -#endif > return match_criteria_enable; > } > > -- > 1.8.3.1 Patch applied to next-net-mlx, Kindest regards Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix VLAN inner type matching on DR/DV

2019-08-05 Thread Raslan Darawsheh
gt; 12); > MLX5_SET(fte_match_set_lyr_2_4, headers_m, first_prio, tci_m >> > 13); > MLX5_SET(fte_match_set_lyr_2_4, headers_v, first_prio, tci_v >> > 13); > + MLX5_SET(fte_match_set_lyr_2_4, headers_m, ethertype, > + rte_be_to_cpu_16(vlan

Re: [dpdk-dev] [PATCH v2 1/6] net/mlx5: fix default minimal data inline

2019-08-05 Thread Raslan Darawsheh
_inline_min = MLX5_INLINE_HSIZE_L2; > config->hw_vlan_insert = 0; > break; > case PCI_DEVICE_ID_MELLANOX_CONNECTX5: > -- > 1.8.3.1 Series applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix order of lines in loop

2019-08-05 Thread Raslan Darawsheh
f(struct rte_vlan_hdr); > } > > /* HW calculates IPv4 csum. no need to proceed */ > -- > 1.8.3.1 Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix link speed info when link is down

2019-08-05 Thread Raslan Darawsheh
ecmd->speed; > sc = ecmd->link_mode_masks[0] | > ((uint64_t)ecmd->link_mode_masks[1] << 32); > priv->link_speed_capa = 0; > -- > 2.21.0 Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

[dpdk-dev] [PATCH] doc: add tested platforms with Mellanox NICs

2019-08-06 Thread Raslan Darawsheh
Signed-off-by: Raslan Darawsheh --- doc/guides/rel_notes/release_19_08.rst | 164 + 1 file changed, 164 insertions(+) diff --git a/doc/guides/rel_notes/release_19_08.rst b/doc/guides/rel_notes/release_19_08.rst index 4b640bb..819e602 100644 --- a/doc/guides

Re: [dpdk-dev] [PATCH 0/5] improve mlx5 guide

2019-08-06 Thread Raslan Darawsheh
deletions(-) > > -- > 2.21.0 For the series, Acked-by: Raslan Darawsheh Kindest regards Raslan Darawsheh

Re: [dpdk-dev] [PATCH 0/5] improve mlx5 guide

2019-08-06 Thread Raslan Darawsheh
6 deletions(-) > > -- > 2.21.0 Series applied to next-net-mlx, Kindest regards Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix RSS expand for IP-in-IP

2019-08-06 Thread Raslan Darawsheh
s/net/mlx5/mlx5_flow_dv.c | 79 - > 2 files changed, 53 insertions(+), 34 deletions(-) > Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix memory event callback list

2019-08-06 Thread Raslan Darawsheh
Fixes: ccb3815346e6 ("net/mlx5: update memory event callback for shared > context") > Cc: sta...@dpdk.org > > Signed-off-by: Viacheslav Ovsiienko > --- > drivers/net/mlx5/mlx5.c | 21 +++-- > 1 file changed, 11 insertions(+), 10 deletions(-) > Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] doc: update inline settings in mlx5 guide

2019-08-07 Thread Raslan Darawsheh
dates mlx5 documentation in parts: > > - txq_inline_min parameter is described in more details, > values are fixed > > - maximal amount of segments in multi-segment packets. > > Signed-off-by: Viacheslav Ovsiienko Acked-by: Raslan Darawsheh Applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix completion request for multi-segment packets

2019-08-07 Thread Raslan Darawsheh
++loc->pkts_sent; > --pkts_n; > /* Request CQE generation if limits are reached. */ > - mlx5_tx_request_completion(txq, loc, olx); > + mlx5_tx_request_completion(txq, loc, false, olx); > if (unlikely(!pkts_n || !loc->elts_free || !loc->wqe_free)) > return MLX5_TXCMP_CODE_EXIT; > loc->mbuf = *pkts++; > -- > 1.8.3.1 Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx4: remove dependency on libmnl in meson

2019-10-20 Thread Raslan Darawsheh
; > There is no dependency on this library for mlx4. > > Fixes: 1dd7c7e38c19 ("net/mlx4: support meson build") > Cc: sta...@dpdk.org > > Signed-off-by: David Marchand Acked-by: Raslan Darawsheh Patch applied to next-net-mlx, Kindest regards Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix transmitted packets statistics counter

2019-10-20 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Viacheslav Ovsiienko > Sent: Monday, October 14, 2019 6:39 PM > To: dev@dpdk.org > Cc: Matan Azrad ; Raslan Darawsheh > ; sta...@dpdk.org > Subject: [PATCH] net/mlx5: fix transmitted packets statistics counter > > The transmit

Re: [dpdk-dev] [PATCH] net/mlx5: fix build with strict alignment enabled

2019-10-20 Thread Raslan Darawsheh
;) > > Reported-by: Jeremy Plsek > Signed-off-by: Ali Alnubani Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH v2] net/mlx5: retry when link update fails

2019-10-20 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Moti Haimovsky > Sent: Wednesday, October 16, 2019 10:34 AM > To: Slava Ovsiienko ; Raslan Darawsheh > > Cc: dev@dpdk.org > Subject: [PATCH v2] net/mlx5: retry when link update fails > > mlx5_link_update immediately retur

Re: [dpdk-dev] [PATCH 1/2] net/mlx5: query HCA for enabled FLEX parser protos

2019-10-20 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Moti Haimovsky > Sent: Wednesday, October 16, 2019 11:36 AM > To: Slava Ovsiienko ; Raslan Darawsheh > > Cc: dev@dpdk.org > Subject: [PATCH 1/2] net/mlx5: query HCA for enabled FLEX parser protos > > This commit add querying t

[dpdk-dev] [PATCH] doc: add missing info regard Geneve matching

2019-10-21 Thread Raslan Darawsheh
Fixes: 398b0cdcd ("net/mlx5: add flow match on GENEVE item") Signed-off-by: Raslan Darawsheh --- doc/guides/nics/mlx5.rst | 4 1 file changed, 4 insertions(+) diff --git a/doc/guides/nics/mlx5.rst b/doc/guides/nics/mlx5.rst index 08039bc..fc7de52 100644 --- a/doc/guides/nic

Re: [dpdk-dev] [PATCH] net/mlx5: fix segfault when create hash rxq of drop

2019-10-21 Thread Raslan Darawsheh
his patch also release other allocated resources by the correct order, which > is missing previously. > > Fixes: 78be885295b8 ("net/mlx5: handle drop queues as regular queues") > Cc: sta...@dpdk.org > > Reported-by: Zengmo Gao > Signed-off-by: Xiaoyu Min > --- Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix DevX event registration timing

2019-10-22 Thread Raslan Darawsheh
rupt unregistration\registration from the > stop\start operations. > > Now, the DevX interrupt should be installed in probe and uninstalled in > close. > > Cc: sta...@dpdk.org > Fixes: f15db67df09c ("net/mlx5: accelerate DV flow counter query") > > Signed-of

[dpdk-dev] [PATCH] net/mlx: remove pedantic definition for icc

2019-10-23 Thread Raslan Darawsheh
Signed-off-by: Raslan Darawsheh --- drivers/net/mlx4/Makefile | 5 - drivers/net/mlx5/Makefile | 5 - 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/drivers/net/mlx4/Makefile b/drivers/net/mlx4/Makefile index 25d7c75..0abdc8d 100644 --- a/drivers/net/mlx4/Makefile +++ b

Re: [dpdk-dev] [PATCH v10] ethdev: add HIGIG2 key field to flow API

2019-10-23 Thread Raslan Darawsheh
or=pedantic] uint16_t hdr_ext_len:3; and this is with gcc 4.8.5 Kindest regards, Raslan Darawsheh > -Original Message- > From: dev On Behalf Of Ferruh Yigit > Sent: Tuesday, October 22, 2019 12:20 PM > To: kirankum...@marvell.com; Adrien Mazarguil > ; Wenzhuo Lu ; > Ji

[dpdk-dev] [PATCH v2] net/mlx: remove pedantic definition for icc

2019-10-23 Thread Raslan Darawsheh
Trying to compile mlx5 pmd in debug mode with icc will lead to compilation failures due to the fact that icc doesn't have support for the pragma of pedantic. Signed-off-by: Raslan Darawsheh Acked-by: Viacheslav Ovsiienko --- v2: add commit description --- --- drivers/net/mlx4/Mak

[dpdk-dev] [PATCH] ethdev: fix compilation with gcc 4.8

2019-10-23 Thread Raslan Darawsheh
gcc 4.8 is considering bit filed as extention rather than c11 std with pedantic, which cause compilation failure. This adds extention keyword exceplicitly to the struct to avoid compilation issue on gcc 4.8 Fixes: a7658a86 ("ethdev: add HIGIG2 key field to flow API") Signed-off-

Re: [dpdk-dev] [PATCH v2] net/mlx5: add support for vectorized code on Power systems

2019-10-23 Thread Raslan Darawsheh
t; Signed-off-by: David Christensen > --- > Changelog since v1: > - Resovled meson build issue Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH v2] net/mlx: remove pedantic definition for icc

2019-10-23 Thread Raslan Darawsheh
Patch applied to next-net-mlx, > -Original Message- > From: dev On Behalf Of Raslan Darawsheh > Sent: Wednesday, October 23, 2019 2:32 PM > To: Slava Ovsiienko > Cc: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v2] net/mlx: remove pedantic definition for icc > > Tr

Re: [dpdk-dev] [PATCH v2] net/mlx5: add support for vectorized code on Power systems

2019-10-23 Thread Raslan Darawsheh
Added, Acked-by: Viacheslav Ovsiienko Tested-by: Raslan Darawsheh Kindest regards, Raslan Darawsheh > -Original Message- > From: Raslan Darawsheh > Sent: Wednesday, October 23, 2019 5:33 PM > To: David Christensen ; Shahaf Shuler > ; Yongseok Koh ; Slava > Ov

[dpdk-dev] [PATCH v3] net/mlx: fix icc build

2019-10-24 Thread Raslan Darawsheh
Trying to compile mlx5 pmd in debug mode with icc will lead to compilation failures due to the fact that icc doesn't have support for the pragma of pedantic. Cc: sta...@dpdk.org Signed-off-by: Raslan Darawsheh Acked-by: Viacheslav Ovsiienko --- drivers/net/mlx4/Makefile | 5 - driver

Re: [dpdk-dev] [PATCH] net/mlx5: fix use of wrong compilation directive

2019-10-29 Thread Raslan Darawsheh
Cc: sta...@dpdk.org > > Signed-off-by: Dekel Peled > --- Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix LRO dependency to include DV flow

2019-10-29 Thread Raslan Darawsheh
1c21d033 ("net/mlx5: check conditions to enable LRO") > Cc: sta...@dpdk.org > > Signed-off-by: Dekel Peled Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: remove redundant new line char in logs

2019-11-03 Thread Raslan Darawsheh
aracter where it is redundant. > > Signed-off-by: Dekel Peled > --- Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix set VLAN id/pcp in new VLAN header

2019-11-03 Thread Raslan Darawsheh
/ ... > > Fixes: a5f2da0b816b ("net/mlx5: support modify VLAN ID on new VLAN > header") > Fixes: 68fad3635042 ("net/mlx5: support modifying VLAN priority on VLAN > header") > Cc: mo...@mellanox.com > > Signed-off-by: Xiaoyu Min > --- Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH v2] net/mlx5: port id action must be after VLAN actions

2019-11-04 Thread Raslan Darawsheh
; Fixes: 5f163d520cff ("net/mlx5: support modify VLAN ID on existing VLAN > header") > Cc: mo...@mellanox.com > > Signed-off-by: Xiaoyu Min > Acked-by: Matan Azrad > --- > v2: > * rebased > Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: introduce mlx5 hash list

2019-11-05 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Bing Zhao > Sent: Tuesday, November 5, 2019 5:28 PM > To: Ori Kam ; Slava Ovsiienko > ; Raslan Darawsheh ; > dev@dpdk.org > Subject: [PATCH] net/mlx5: introduce mlx5 hash list > > Introduce simple hash list to the mlx5 utiliti

Re: [dpdk-dev] [PATCH] net/mlx5: introduce mlx5 hash list

2019-11-06 Thread Raslan Darawsheh
Hi Stephen, You are totally right about it, but, I needed this patch for some testing. So Will remove it from next-net-mlx for now, and will be waiting for some final version to be sent. Kindest regards, Raslan Darawsheh > -Original Message- > From: Stephen Hemminger > Sent

Re: [dpdk-dev] [Suspected-Phishing][PATCH v6 0/2] net/mlx5: remove TCF support from PMD

2019-07-01 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Moti Haimovsky > Sent: Monday, July 1, 2019 12:34 PM > To: Raslan Darawsheh ; Slava Ovsiienko > > Cc: dev@dpdk.org > Subject: [Suspected-Phishing][PATCH v6 0/2] net/mlx5: remove TCF support > from PMD > > Today, it is po

Re: [dpdk-dev] [PATCH] net/mlx5: fix check for rte calloc return value

2019-07-02 Thread Raslan Darawsheh
ow_list_create. > > Fixes: 84c406e7 ("net/mlx5: add flow translate function") > Cc: sta...@dpdk.org > > Signed-off-by: Asaf Penso > Patch applied to next-net-mlx Kindest regards Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix condition for calling mlx5_link_update_unlocked_gset

2019-07-02 Thread Raslan Darawsheh
+ if (ret == -ENOTSUP) > ret = mlx5_link_update_unlocked_gset(dev, > &dev_link); > if (ret == 0) > break; > -- > 1.8.3.1 Patch applied to next-net-mlx Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH v2] net/mlx5: adjust inline setting for large Tx queue sizes

2019-10-08 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Viacheslav Ovsiienko > Sent: Tuesday, October 1, 2019 9:54 AM > To: dev@dpdk.org > Cc: Raslan Darawsheh ; Matan Azrad > > Subject: [PATCH v2] net/mlx5: adjust inline setting for large Tx queue sizes > > The hardware may

Re: [dpdk-dev] [PATCH] net/mlx5: fix port id action domain check

2019-10-08 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Viacheslav Ovsiienko > Sent: Monday, October 7, 2019 4:56 PM > To: dev@dpdk.org > Cc: Matan Azrad ; Raslan Darawsheh > > Subject: [PATCH] net/mlx5: fix port id action domain check > > The validating routines flow_dv_va

Re: [dpdk-dev] [PATCH] net/mlx5: fix device scan within switch domain

2019-10-08 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Viacheslav Ovsiienko > Sent: Monday, October 7, 2019 4:56 PM > To: dev@dpdk.org > Cc: Matan Azrad ; Raslan Darawsheh > > Subject: [PATCH] net/mlx5: fix device scan within switch domain > > In LAG configuration the devices in t

Re: [dpdk-dev] [PATCH] net/mlx5: fix vport id translation for LAG configuration

2019-10-08 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Viacheslav Ovsiienko > Sent: Monday, October 7, 2019 4:58 PM > To: dev@dpdk.org > Cc: Matan Azrad ; Raslan Darawsheh > > Subject: [PATCH] net/mlx5: fix vport id translation for LAG configuration > > The vport id value

Re: [dpdk-dev] [PATCH] net/mlx5: fix direct call to rdma-core library

2019-10-08 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Viacheslav Ovsiienko > Sent: Monday, October 7, 2019 4:58 PM > To: dev@dpdk.org > Cc: Matan Azrad ; Raslan Darawsheh > > Subject: [PATCH] net/mlx5: fix direct call to rdma-core library > > The routine mlx5dv_query_devx_port()

Re: [dpdk-dev] [PATCH] net/mlx5: fix the alloc size of rqt attribute

2019-10-08 Thread Raslan Darawsheh
enough, the issue couldn't be observed. > > Based on Bing fix. > > Fixes: dc9ceff73c99 ("net/mlx5: create advanced RxQ via DevX") > Cc: dek...@mellanox.com > > Signed-off-by: Ori Kam Added Cc: sta...@dpdk.org Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH v2] net/mlx5: improve validation of item order

2019-10-08 Thread Raslan Darawsheh
dedicated function") > Cc: sta...@dpdk.org > > Signed-off-by: Xiaoyu Min > --- Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix the alloc size of rqt attribute

2019-10-10 Thread Raslan Darawsheh
pad area for alignment. If the queue > > number is not large enough, the issue couldn't be observed. > > > > Based on Bing fix. > > > > Bing fix? I've simply removed this from the commit log after having a talk to Ori since he is on vacation. It's just something left which is not necessary Kindest regards, Raslan Darawsheh

[dpdk-dev] [PATCH] doc: add tested platforms with Mellanox NICs

2019-05-09 Thread Raslan Darawsheh
Signed-off-by: Raslan Darawsheh --- doc/guides/rel_notes/release_19_05.rst | 188 + 1 file changed, 188 insertions(+) diff --git a/doc/guides/rel_notes/release_19_05.rst b/doc/guides/rel_notes/release_19_05.rst index 5044ac7..25fe88d 100644 --- a/doc/guides

Re: [dpdk-dev] [dpdk-announce] release candidate 19.05-rc4

2019-05-13 Thread Raslan Darawsheh
Hi Thomas, We've tested rc4 in Mellanox and we are only missing one patch: http://patches.dpdk.org/patch/53382/ which is a major blocking for running MLX5 with failsafe PMD. Kindest regards, Raslan Darawsheh > -Original Message- > From: announce On Behalf Of Thomas > M

[dpdk-dev] [PATCH] net/mlx5: support adding a new UDP tunnel

2019-08-22 Thread Raslan Darawsheh
This adds support for adding a new udp tunnel port on a specific vxlan types. currently we only support vxlan, vxlan-gpe on ports 4789, 4790 respectivly. without having to configure anything in the NIC. Signed-off-by: Raslan Darawsheh --- drivers/net/mlx5/mlx5.c | 26

Re: [dpdk-dev] [PATCH] net/mlx5: raw encap data cannot be empty

2019-08-22 Thread Raslan Darawsheh
ot;) > Cc: dek...@mellanox.com > > Signed-off-by: Xiaoyu Min > --- Patch applied to next-net-mlx, Kindest regards Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix TSO flag check

2019-08-22 Thread Raslan Darawsheh
s in Tx bursts in regard to TSO flag check. > > Fixes: 18a1c20044c0 ("net/mlx5: implement Tx burst template") > Cc: viachesl...@mellanox.com > Cc: sta...@dpdk.org > > Signed-off-by: Yongseok Koh > --- Patch applied to next-net-mlx, Kindest regards Raslan Darawsheh

Re: [dpdk-dev] [PATCH 1/1] net/mlx4: fix build on PPC64

2019-09-02 Thread Raslan Darawsheh
next-net-mlx after small change in the commit log: 1- removed Change ID. 2- replaced related to link with the SHA of the commit only Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix missing ptype for IP-in-IP

2019-09-05 Thread Raslan Darawsheh
ptype information is missed for IP-in-IP tunnel. > It should be RTE_PTYPE_TUNNEL_IP ptype. > > Fixes: 5e33bebdd8d3 ("net/mlx5: support IP-in-IP tunnel") > > Signed-off-by: Xiaoyu Min Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix location of comment line

2019-09-05 Thread Raslan Darawsheh
/mlx5: add drop action to Direct Verbs E-Switch") > Cc: sta...@dpdk.org > > Signed-off-by: Dekel Peled Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix validation of drop action

2019-09-05 Thread Raslan Darawsheh
ke sure all relevant fate > actions are checked. > > Fixes: 23c1d42c7138 ("net/mlx5: split flow validation to dedicated function") > Cc: sta...@dpdk.org > > Signed-off-by: Dekel Peled > --- Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix validation of jump action

2019-09-05 Thread Raslan Darawsheh
pdk.org > > Signed-off-by: Dekel Peled Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix typo in error message

2019-09-05 Thread Raslan Darawsheh
ssage > > This patch fixes a typing mistake in an error message. > > Fixes: 2e4c987aad91 ("net/mlx5: validate Direct Rule E-Switch") > Cc: sta...@dpdk.org > > Signed-off-by: Dekel Peled Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: support adding a new UDP tunnel

2019-09-05 Thread Raslan Darawsheh
Hi, > -Original Message- > From: dev On Behalf Of Raslan Darawsheh > Sent: Thursday, August 22, 2019 1:16 PM > To: Slava Ovsiienko ; mat...@mellanox.com > Cc: Asaf Penso ; dev@dpdk.org > Subject: [dpdk-dev] [PATCH] net/mlx5: support adding a new UDP tunnel > &g

Re: [dpdk-dev] [PATCH] net/mlx5: remove unneeded constant definition

2019-09-05 Thread Raslan Darawsheh
constant > definition > > Constant MLX5_GROUP_FACTOR is defined with value 1, and used to > multiply group value in two places. > > This patch removes the unneeded constant definition and use. > > Cc: sta...@dpdk.org > > Signed-off-by: Dekel Peled Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix netlink rdma socket callback routine

2019-09-10 Thread Raslan Darawsheh
e505508a3858 ("net/mlx5: modify get ifindex routine for multiport IB") > Cc: sta...@dpdk.org > > Signed-off-by: Viacheslav Ovsiienko Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix transmit descriptor with VLAN insertions

2019-09-10 Thread Raslan Darawsheh
8a1c20044c0 ("net/mlx5: implement Tx burst template") > Cc: sta...@dpdk.org > > Signed-off-by: Viacheslav Ovsiienko Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH v5 0/7] net/mlx5: support for flow action on VLAN header

2019-09-10 Thread Raslan Darawsheh
Hi, Series applied to next-net-mlx, Kindest regards, Raslan Darawsheh > -Original Message- > From: Moti Haimovsky > Sent: Monday, September 9, 2019 6:57 PM > To: Slava Ovsiienko ; Raslan Darawsheh > > Cc: dev@dpdk.org > Subject: [PATCH v5 0/7] net/mlx5: support fo

Re: [dpdk-dev] [PATCH] net/mlx5: support reading module EEPROM data

2019-09-10 Thread Raslan Darawsheh
gned-off-by: Dekel Peled > --- Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH v2] net/mlx5: fix netlink rdma socket callback routine

2019-09-10 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Viacheslav Ovsiienko > Sent: Tuesday, September 10, 2019 4:52 PM > To: dev@dpdk.org > Cc: Raslan Darawsheh ; sta...@dpdk.org > Subject: [PATCH v2] net/mlx5: fix netlink rdma socket callback routine > > The mlx5 PMD uses Netlink so

Re: [dpdk-dev] [PATCH v2] net/mlx5: skip table zero to improve insertion rate

2019-09-11 Thread Raslan Darawsheh
HW table value, and is called by PMD flow > engine on flow rule validation and creation. > > Signed-off-by: Dekel Peled > Acked-by: Matan Azrad > Acked-by: Viacheslav Ovsiienko > --- Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH 1/2] net/mlx5: fix Rx CQ doorbell synchronization on aarch64

2019-09-12 Thread Raslan Darawsheh
ta...@dpdk.org > > Suggested-by: Gavin Hu > Signed-off-by: Phil Yang > Reviewed-by: Gavin Hu > --- Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix UAR remap initialization for 32-bit systems

2019-09-29 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Viacheslav Ovsiienko > Sent: Wednesday, September 18, 2019 9:54 AM > To: dev@dpdk.org > Cc: Matan Azrad ; Raslan Darawsheh > > Subject: [PATCH] net/mlx5: fix UAR remap initialization for 32-bit systems > > The txq_

Re: [dpdk-dev] [PATCH] net/mlx5: fix vectorized Rx burst error handling

2019-09-29 Thread Raslan Darawsheh
atch fixes the initialization of mbuf data length during > recovery from error CQE, when using vectorized Rx burst, > > Fixes: 88c0733535d6 ("net/mlx5: extend Rx completion with error handling") > Cc: sta...@dpdk.org > > Signed-off-by: Dekel Peled Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix Bluefield VF type recognition

2019-09-29 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Viacheslav Ovsiienko > Sent: Wednesday, September 25, 2019 10:31 AM > To: dev@dpdk.org > Cc: Matan Azrad ; Raslan Darawsheh > ; sta...@dpdk.org > Subject: [PATCH] net/mlx5: fix Bluefield VF type recognition > > The PCI virtual f

Re: [dpdk-dev] [PATCH] net/mlx5: fix ConnectX-6 VF type recognition

2019-09-29 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Viacheslav Ovsiienko > Sent: Wednesday, September 25, 2019 10:32 AM > To: dev@dpdk.org > Cc: Matan Azrad ; Raslan Darawsheh > ; sta...@dpdk.org > Subject: [PATCH] net/mlx5: fix ConnectX-6 VF type recognition > > The PCI vi

Re: [dpdk-dev] [PATCH 00/12] net/mlx5: add bonding configuration support

2019-09-29 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Viacheslav Ovsiienko > Sent: Wednesday, September 25, 2019 10:53 AM > To: dev@dpdk.org > Cc: Matan Azrad ; Raslan Darawsheh > > Subject: [PATCH 00/12] net/mlx5: add bonding configuration support > > Multiport Mellanox N

Re: [dpdk-dev] [PATCH v5 00/32] mlx5 Windows support - part #5

2020-12-30 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Tal Shnaiderman > Sent: Monday, December 28, 2020 11:54 AM > To: dev@dpdk.org > Cc: NBU-Contact-Thomas Monjalon ; Matan Azrad > ; Raslan Darawsheh ; Ophir > Munk > Subject: [PATCH v5 00/32] mlx5 Windows support - part #5 > >

Re: [dpdk-dev] [PATCH v2 00/35] mlx5 Windows support - part #6

2021-01-02 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Tal Shnaiderman > Sent: Monday, December 28, 2020 2:32 PM > To: dev@dpdk.org > Cc: NBU-Contact-Thomas Monjalon ; Matan Azrad > ; Raslan Darawsheh ; Ophir > Munk > Subject: [PATCH v2 00/35] mlx5 Windows support - part #6 > >

Re: [dpdk-dev] [PATCH v3 0/4] Add RSS action support in the sample sub-actions list

2021-01-18 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Jiawei Wang > Sent: Thursday, January 14, 2021 9:25 AM > To: ferruh.yi...@intel.com; Slava Ovsiienko ; > Matan Azrad ; Ori Kam > Cc: dev@dpdk.org; Raslan Darawsheh > Subject: [PATCH v3 0/4] Add RSS action support in the sa

Re: [dpdk-dev] [PATCH v1] net/mlx5: fix rxq object allocation with MPRQ

2020-11-05 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Ophir Munk > Sent: Wednesday, November 4, 2020 9:55 AM > To: dev@dpdk.org; Raslan Darawsheh ; Matan Azrad > ; Slava Ovsiienko > Cc: Ophir Munk > Subject: [PATCH v1] net/mlx5: fix rxq object allocation with MPRQ > > The spac

Re: [dpdk-dev] [PATCH] mlx5/net: fix release of SQ resources in error flow

2020-11-05 Thread Raslan Darawsheh
xes: 86d259cec852 ("net/mlx5: separate Tx queue object creations") > Cc: sta...@dpdk.org > > Signed-off-by: Tal Shnaiderman > Acked-by: Matan Azrad > --- > drivers/net/mlx5/mlx5_devx.c | 16 > 1 file changed, 12 insertions(+), 4 deletions(-) > Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH v2] common/mlx5: free MR resource while device DMA unmap

2020-11-05 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Jiawei Wang > Sent: Monday, November 2, 2020 4:22 AM > To: Slava Ovsiienko ; Matan Azrad > ; Shahaf Shuler ; Ori Kam > > Cc: dev@dpdk.org; Raslan Darawsheh ; > sta...@dpdk.org > Subject: [PATCH v2] common/mlx5: free MR resour

Re: [dpdk-dev] [PATCH] net/mlx5: fix the eCPRI common header endianness

2020-11-05 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Bing Zhao > Sent: Tuesday, November 3, 2020 7:42 AM > To: Slava Ovsiienko ; Matan Azrad > > Cc: dev@dpdk.org; Ori Kam ; Raslan Darawsheh > ; sta...@dpdk.org > Subject: [PATCH] net/mlx5: fix the eCPRI common header endianness >

Re: [dpdk-dev] [PATCH] net/mlx5: fix eCPRI previous layer checking

2020-11-05 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Bing Zhao > Sent: Tuesday, November 3, 2020 7:43 AM > To: Slava Ovsiienko ; Matan Azrad > > Cc: dev@dpdk.org; Ori Kam ; Raslan Darawsheh > ; sta...@dpdk.org > Subject: [PATCH] net/mlx5: fix eCPRI previous layer checking > &

Re: [dpdk-dev] [PATCH] net/mlx5: fix atomic API update

2020-11-05 Thread Raslan Darawsheh
use C11 atomics for RxQ/TxQ refcounts") > > Signed-off-by: Matan Azrad > --- > drivers/net/mlx5/mlx5_txq.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix Tx queue stop state

2020-11-05 Thread Raslan Darawsheh
x5_verbs.c | 1 + > drivers/net/mlx5/mlx5_devx.c| 1 + > drivers/net/mlx5/mlx5_rxq.c | 4 +++- > drivers/net/mlx5/mlx5_trigger.c | 1 + > drivers/net/mlx5/mlx5_txq.c | 3 +-- > 5 files changed, 7 insertions(+), 3 deletions(-) Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix aging queue doorbell ringing

2020-11-08 Thread Raslan Darawsheh
+-- > drivers/net/mlx5/mlx5.h | 3 ++- > drivers/net/mlx5/mlx5_flow_age.c | 36 ++------ > 3 files changed, 37 insertions(+), 23 deletions(-) > Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix switch port id when representor in bonding

2020-11-08 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Bill Zhou > Sent: Wednesday, November 4, 2020 8:05 AM > To: Slava Ovsiienko ; Matan Azrad > > Cc: sta...@dpdk.org; dev@dpdk.org; Raslan Darawsheh > ; Bill Zhou > Subject: [PATCH] net/mlx5: fix switch port id when representor in

Re: [dpdk-dev] [PATCH v4] net/mlx5: fix incorrect group value of sample suffix flow

2020-11-08 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Jiawei Wang > Sent: Wednesday, November 4, 2020 3:30 PM > To: Slava Ovsiienko ; Matan Azrad > ; Ori Kam > Cc: dev@dpdk.org; Raslan Darawsheh > Subject: [PATCH v4] net/mlx5: fix incorrect group value of sample suffix flow >

Re: [dpdk-dev] [PATCH] net/mlx5: fix use of local array for global error

2020-11-09 Thread Raslan Darawsheh
hanged, 8 insertions(+), 8 deletions(-) > Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh

Re: [dpdk-dev] [PATCH] net/mlx5: fix invalid entry assert

2020-11-09 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Suanming Mou > Sent: Friday, November 6, 2020 5:02 AM > To: Slava Ovsiienko ; Matan Azrad > > Cc: Raslan Darawsheh ; dev@dpdk.org > Subject: [PATCH] net/mlx5: fix invalid entry assert > > The entry variable assert in the mlx

Re: [dpdk-dev] [PATCH] net/mlx5: fix shared RSS action release

2020-11-09 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Suanming Mou > Sent: Friday, November 6, 2020 5:08 AM > To: Slava Ovsiienko ; Matan Azrad > > Cc: Raslan Darawsheh ; dev@dpdk.org > Subject: [PATCH] net/mlx5: fix shared RSS action release > > As shared RSS action is global st

Re: [dpdk-dev] [PATCH] net/mlx5: fix Rx queues completion index consistency

2020-11-09 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Viacheslav Ovsiienko > Sent: Friday, November 6, 2020 7:16 PM > To: dev@dpdk.org > Cc: Raslan Darawsheh ; Alexander Kozyrev > ; Matan Azrad ; > sta...@dpdk.org > Subject: [PATCH] net/mlx5: fix Rx queues completion index consi

<    8   9   10   11   12   13   14   15   16   >