Re: [dpdk-dev] [PATCH] net/mlx5: fix transmit doorbell register write barrier

2019-09-21 Thread Matan Azrad
Hi Slava Questions inline. From: Viacheslav Ovsiienko > The rdma core library can map doorbell register in two ways, depending on > the environment variable "MLX5_SHUT_UP_BF": > > - as regular cached memory, the variable is either missing or > set to zero. This type of mapping may cause th

[dpdk-dev] [PATCH] app/test-eventdev: add options to set mbuf and pkt size

2019-09-21 Thread pbhagavatula
From: Pavan Nikhilesh Add options to set mbuf size and max packet size which allow the user to enable jumbo frames and Rx/Tx scatter gather. Packet mbuf size can be modified by using `--mbuf_sz=N`. Max packet size can be modified by using `--max_pkt_sz=N`. These options are only applicable `pipel

[dpdk-dev] [PATCH] usertools: enhance device bind script module detection

2019-09-21 Thread pbhagavatula
From: Pavan Nikhilesh Some kernel modules have '-' in their name when populated in '/sys/bus/pci/drivers/' where as the kernel always populates '/sys/modules/' with '_'. Replace '-' in module name with '_' to avoid script complaining that module not loaded. Signed-off-by: Phanendra Vukkisala Si

[dpdk-dev] [PATCH v2] doc: add oss-security to the security process

2019-09-21 Thread luca . boccassi
From: Luca Boccassi The OSS-security project functions as a single point of contact for pre-release, embargoed security notifications. Distributions and major vendors are subscribed to this private list, so that they can be warned in advance and schedule the work required to fix the vulnerability

[dpdk-dev] [PATCH] doc: add oss-security to the security process

2019-09-21 Thread luca . boccassi
From: Luca Boccassi The OSS-security project functions as a single point of contact for pre-release, embargoed security notifications. Distributions and major vendors are subscribed to this private list, so that they can be warned in advance and schedule the work required to fix the vulnerability

Re: [dpdk-dev] [PATCH] mbuf: support dynamic fields and flags

2019-09-21 Thread Wiles, Keith
> On Sep 18, 2019, at 6:54 PM, Olivier Matz wrote: > > Many features require to store data inside the mbuf. As the room in mbuf > structure is limited, it is not possible to have a field for each > feature. Also, changing fields in the mbuf structure can break the API > or ABI. > > This commit