Re: [RFC v3 5/5] eal: provide option to use compiler memcpy instead of RTE

2024-06-03 Thread Mattias Rönnblom
On 2024-06-02 22:58, Morten Brørup wrote: From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com] Sent: Sunday, 2 June 2024 14.39 Provide build option to have functions in delegate to the standard compiler/libc memcpy(), instead of using the various custom DPDK, handcrafted, per-architect

RE: [RFC v3 5/5] eal: provide option to use compiler memcpy instead of RTE

2024-06-02 Thread Morten Brørup
> From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com] > Sent: Sunday, 2 June 2024 14.39 > > 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() > implementatio

[RFC v3 5/5] eal: provide option to use compiler memcpy instead of RTE

2024-06-02 Thread Mattias Rönnblom
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_memcpy' is added. By default, the compiler/libc memcpy() is used. The