Re: [dpdk-dev] [PATCH] eal/ppc: ignore gcc 10 stringop-overflow warnings

2021-09-13 Thread David Marchand
On Fri, Sep 3, 2021 at 12:15 AM David Christensen wrote: > > Suppress gcc warning "warning: writing 16 bytes into a region of > size 0" for users of the POWER rte_memcpy() function. Existing > rte_memcpy() code takes different code paths based on the actual > size of the move so the warning is al

Re: [dpdk-dev] [PATCH] eal/ppc: ignore gcc 10 stringop-overflow warnings

2021-09-08 Thread David Christensen
Suppress gcc warning "warning: writing 16 bytes into a region of size 0" for users of the POWER rte_memcpy() function. Existing rte_memcpy() code takes different code paths based on the actual size of the move so the warning is already addressed. See also commit b5b3ea803e47 ("eal/x86: ignore gcc

[dpdk-dev] [PATCH] eal/ppc: ignore gcc 10 stringop-overflow warnings

2021-09-02 Thread David Christensen
Suppress gcc warning "warning: writing 16 bytes into a region of size 0" for users of the POWER rte_memcpy() function. Existing rte_memcpy() code takes different code paths based on the actual size of the move so the warning is already addressed. See also commit b5b3ea803e47 ("eal/x86: ignore gcc

Re: [dpdk-dev] [PATCH] eal/ppc: ignore gcc 10 stringop-overflow warnings

2021-07-12 Thread David Christensen
On 7/5/21 2:28 AM, David Marchand wrote: On Wed, Jun 23, 2021 at 6:13 PM David Christensen wrote: Suppress gcc warning "warning: writing 16 bytes into a region of size 0" for users of the POWER rte_memcpy() function. Existing rte_memcpy() code takes different code paths based on the actual

Re: [dpdk-dev] [PATCH] eal/ppc: ignore gcc 10 stringop-overflow warnings

2021-07-05 Thread David Marchand
On Wed, Jun 23, 2021 at 6:13 PM David Christensen wrote: > > Suppress gcc warning "warning: writing 16 bytes into a region of > size 0" for users of the POWER rte_memcpy() function. Existing > rte_memcpy() code takes different code paths based on the actual > size of the move so the warning is al

[dpdk-dev] [PATCH] eal/ppc: ignore gcc 10 stringop-overflow warnings

2021-06-23 Thread David Christensen
Suppress gcc warning "warning: writing 16 bytes into a region of size 0" for users of the POWER rte_memcpy() function. Existing rte_memcpy() code takes different code paths based on the actual size of the move so the warning is already addressed. See also commit b5b3ea803e47 ("eal/x86: ignore gcc