Re: [PATCH v6 5/7] eal: provide option to use compiler memcpy instead of RTE

2024-10-04 Thread Thomas Monjalon
04/10/2024 11:54, David Marchand: > On Fri, Oct 4, 2024 at 11:21 AM Mattias Rönnblom > wrote: > > > - Now, looking at what was available for arches so far in DPDK: > > > * ARM was relying by default on compiler implementation, with specific > > > implementations for ARM32 and ARM64 available (see

Re: [PATCH v6 5/7] eal: provide option to use compiler memcpy instead of RTE

2024-10-04 Thread David Marchand
On Fri, Oct 4, 2024 at 11:21 AM Mattias Rönnblom wrote: > > - Now, looking at what was available for arches so far in DPDK: > > * ARM was relying by default on compiler implementation, with specific > > implementations for ARM32 and ARM64 available (see for more details > > below) => possible valu

Re: [PATCH v6 5/7] eal: provide option to use compiler memcpy instead of RTE

2024-10-04 Thread Mattias Rönnblom
On 2024-10-04 09:52, David Marchand wrote: On Fri, Sep 20, 2024 at 12:36 PM Mattias Rönnblom wrote: Provide build option to have functions in delegate to the standard compiler/libc memcpy(), instead of using the various custom DPDK, handcrafted, per-architecture rte_memcpy() implementations.

Re: [PATCH v6 5/7] eal: provide option to use compiler memcpy instead of RTE

2024-10-04 Thread Mattias Rönnblom
On 2024-10-04 09:52, David Marchand wrote: On Fri, Sep 20, 2024 at 12:36 PM Mattias Rönnblom wrote: Provide build option to have functions in delegate to the standard compiler/libc memcpy(), instead of using the various custom DPDK, handcrafted, per-architecture rte_memcpy() implementations.

Re: [PATCH v6 5/7] eal: provide option to use compiler memcpy instead of RTE

2024-10-04 Thread David Marchand
On Fri, Sep 20, 2024 at 12:36 PM Mattias Rönnblom wrote: > > Provide build option to have functions in delegate to > the standard compiler/libc memcpy(), instead of using the various > custom DPDK, handcrafted, per-architecture rte_memcpy() > implementations. > > A new meson build option 'use_cc_