Re: [PATCH] ip_frag: replace the rte memcpy with memcpy

2022-06-27 Thread Liang Ma
On Fri, Jun 24, 2022 at 06:25:10PM +0100, Konstantin Ananyev wrote: > 23/06/2022 03:35, Stephen Hemminger пишет: > > On Wed, 22 Jun 2022 23:49:39 +0100 > > Konstantin Ananyev wrote: > > > > > > @@ -26,7 +25,7 @@ static inline void __fill_ipv4hdr_frag(struct > > > > rte_ipv4_hdr *dst, > > > >

Re: [PATCH] ip_frag: replace the rte memcpy with memcpy

2022-06-24 Thread Konstantin Ananyev
23/06/2022 03:35, Stephen Hemminger пишет: On Wed, 22 Jun 2022 23:49:39 +0100 Konstantin Ananyev wrote: @@ -26,7 +25,7 @@ static inline void __fill_ipv4hdr_frag(struct rte_ipv4_hdr *dst, const struct rte_ipv4_hdr *src, uint16_t header_len, uint16_t len, uint16_

Re: [PATCH] ip_frag: replace the rte memcpy with memcpy

2022-06-23 Thread David Marchand
On Sat, Jun 18, 2022 at 4:10 PM Huichao Cai wrote: > > To resolve the compilation warning,replace the rte_memcpy with memcpy. > Modify in file test_ipfrag.c and rte_ipv4_fragmentation.c. > These warnings appeared with: Fixes: b50a14a853aa ("ip_frag: add IPv4 options fragment") > Signed-off-by: H

Re: [PATCH] ip_frag: replace the rte memcpy with memcpy

2022-06-23 Thread David Marchand
On Thu, Jun 23, 2022 at 4:35 AM Stephen Hemminger wrote: > On Wed, 22 Jun 2022 23:49:39 +0100 > Konstantin Ananyev wrote: > > > > @@ -26,7 +25,7 @@ static inline void __fill_ipv4hdr_frag(struct > > > rte_ipv4_hdr *dst, > > > const struct rte_ipv4_hdr *src, uint16_t header_len, > > >

Re: [PATCH] ip_frag: replace the rte memcpy with memcpy

2022-06-22 Thread Stephen Hemminger
On Wed, 22 Jun 2022 23:49:39 +0100 Konstantin Ananyev wrote: > > @@ -26,7 +25,7 @@ static inline void __fill_ipv4hdr_frag(struct > > rte_ipv4_hdr *dst, > > const struct rte_ipv4_hdr *src, uint16_t header_len, > > uint16_t len, uint16_t fofs, uint16_t dofs, uint32_t mf) >

Re: [PATCH] ip_frag: replace the rte memcpy with memcpy

2022-06-22 Thread Konstantin Ananyev
18/06/2022 15:09, Huichao Cai пишет: To resolve the compilation warning,replace the rte_memcpy with memcpy. Modify in file test_ipfrag.c and rte_ipv4_fragmentation.c. Signed-off-by: Huichao Cai --- app/test/test_ipfrag.c | 13 ++--- lib/ip_frag/rte_ipv4_fragmentation.c

Re: [PATCH] ip_frag: replace the rte memcpy with memcpy

2022-06-21 Thread David Marchand
On Sat, Jun 18, 2022 at 4:10 PM Huichao Cai wrote: > > To resolve the compilation warning,replace the rte_memcpy with memcpy. > Modify in file test_ipfrag.c and rte_ipv4_fragmentation.c. > > Signed-off-by: Huichao Cai Fixed Konstantin mail address. > --- > app/test/test_ipfrag.c