RE: [EXT] Re: [PATCH v5 0/4] add support for self monitoring

2023-01-14 Thread Morten Brørup
> From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > Sent: Friday, 13 January 2023 20.22 > > On Fri, Jan 13, 2023 at 07:44:57AM +, Tomasz Duszynski wrote: > > > > >From: Tyler Retzlaff > > >Sent: Wednesday, January 11, 2023 10:06 PM > > > > > >On Wed, Jan 11, 2023 at 09:39:35AM +0

RE: [PATCH 0/7] replace zero length arrays

2023-01-14 Thread Morten Brørup
> From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Friday, 13 January 2023 22.52 > > Zero length arrays are a GNU extension that has been > superseded by flex arrays. > > https://gcc.gnu.org/onlinedocs/gcc/Zero-Length.html > > These are places found by cocci/zero_length_array.

[PATCH v12 6/6] test/memarea: support dump API test

2023-01-14 Thread Chengwen Feng
This patch supports rte_memarea_dump() API test. Signed-off-by: Chengwen Feng Reviewed-by: Dongdong Liu --- app/test/test_memarea.c | 34 ++ 1 file changed, 34 insertions(+) diff --git a/app/test/test_memarea.c b/app/test/test_memarea.c index efabc594b7..f8c32ca

[PATCH v12 0/6] introduce memarea library

2023-01-14 Thread Chengwen Feng
The memarea library is an allocator of variable-size object which based on a memory region. The main features are as follows: - The memory region can be initialized from the following memory sources: 1. HEAP: e.g. invoke rte_malloc_socket. 2. LIBC: e.g. invoke posix_memalign. 3. Another me

[PATCH v12 3/6] memarea: support alloc and free API

2023-01-14 Thread Chengwen Feng
This patch supports rte_memarea_alloc() and rte_memarea_free() API. Signed-off-by: Chengwen Feng Reviewed-by: Dongdong Liu --- doc/guides/prog_guide/memarea_lib.rst | 6 ++ lib/memarea/memarea_private.h | 3 + lib/memarea/rte_memarea.c | 146 ++ l

[PATCH v12 4/6] test/memarea: support alloc and free API test

2023-01-14 Thread Chengwen Feng
This patch supports rte_memarea_alloc() and rte_memarea_free() API test. Signed-off-by: Chengwen Feng Reviewed-by: Dongdong Liu --- app/test/test_memarea.c | 135 +++- 1 file changed, 134 insertions(+), 1 deletion(-) diff --git a/app/test/test_memarea.c b/ap

[PATCH v12 1/6] memarea: introduce memarea library

2023-01-14 Thread Chengwen Feng
The memarea library is an allocator of variable-size object which based on a memory region. This patch provides rte_memarea_create() and rte_memarea_destroy() API. Signed-off-by: Chengwen Feng Reviewed-by: Dongdong Liu --- MAINTAINERS| 5 + doc/api/doxy-api-index.

[PATCH v12 2/6] test/memarea: support memarea test

2023-01-14 Thread Chengwen Feng
This patch supports memarea test of rte_memarea_create() and rte_memarea_destroy() API. Signed-off-by: Chengwen Feng Reviewed-by: Dongdong Liu --- MAINTAINERS | 1 + app/test/meson.build| 2 + app/test/test_memarea.c | 130 3 files ch

[PATCH v12 5/6] memarea: support dump API

2023-01-14 Thread Chengwen Feng
This patch supports rte_memarea_dump() API which could be used for debug. Signed-off-by: Chengwen Feng Reviewed-by: Dongdong Liu --- doc/guides/prog_guide/memarea_lib.rst | 3 + lib/memarea/rte_memarea.c | 116 ++ lib/memarea/rte_memarea.h | 21

Re: [PATCH 4/7] mlx5: replace zero length array with flex array

2023-01-14 Thread Stephen Hemminger
On Fri, 13 Jan 2023 13:52:02 -0800 Stephen Hemminger wrote: > Zero length arrays are GNU extension. Replace with > standard flex array. > > Signed-off-by: Stephen Hemminger > --- Since Mlx driver enables pedantic checking, this causes build failure on some versions of gcc. In file included f

Re: [RFC] Remove Kernel Network Interface (KNI)

2023-01-14 Thread Tyler Retzlaff
On Fri, Jan 13, 2023 at 03:25:30PM -0800, Stephen Hemminger wrote: > On Fri, 13 Jan 2023 19:34:24 +0100 > Thomas Monjalon wrote: > > > 13/01/2023 18:13, Stephen Hemminger: > > > On Fri, 13 Jan 2023 09:12:16 +0100 > > > Thomas Monjalon wrote: > > > > > > > 13/01/2023 06:03, Stephen Hemminger:

[PATCH] doc: add capability to access physical addresses

2023-01-14 Thread Dmitry Kozlyuk
CAP_DAC_OVERRIDE capability is required to access /proc/self/pagemap, but it was missing from the Linux guide, causing issues for users. Fixes: 979bb5d493fb ("doc: add more instructions for running as non-root") Cc: sta...@dpdk.org Signed-off-by: Dmitry Kozlyuk Reported-by: Boris Ouretskey Repo

Re: [PATCH] doc: add capability to access physical addresses

2023-01-14 Thread Isaac Boukris
On Sun, Jan 15, 2023 at 4:27 AM Stephen Hemminger wrote: > > On Sun, 15 Jan 2023 01:58:02 +0300 > Dmitry Kozlyuk wrote: > > > CAP_DAC_OVERRIDE capability is required to access /proc/self/pagemap, > > but it was missing from the Linux guide, causing issues for users. > > > > Fixes: 979bb5d493fb ("

RE: [PATCH v12 1/6] memarea: introduce memarea library

2023-01-14 Thread Morten Brørup
> From: Chengwen Feng [mailto:fengcheng...@huawei.com] > Sent: Saturday, 14 January 2023 12.50 > > The memarea library is an allocator of variable-size object which based > on a memory region. > > This patch provides rte_memarea_create() and rte_memarea_destroy() API. > > Signed-off-by: Chengwen