Re: netinet6 - bcopy -> memcpy

2018-03-14 Thread Florian Obser
OK florian@ for after unlock On Tue, Mar 13, 2018 at 05:40:24PM -0400, David Hill wrote: > Hello - > > A few bcopy to memcpy conversions where the memory does not overlap. > > OK? > > Index: netinet6/icmp6.c > === > RCS file:

netinet6 - bcopy -> memcpy

2018-03-13 Thread David Hill
Hello - A few bcopy to memcpy conversions where the memory does not overlap. OK? Index: netinet6/icmp6.c === RCS file: /cvs/src/sys/netinet6/icmp6.c,v retrieving revision 1.221 diff -u -p -r1.221 icmp6.c --- netinet6/icmp6.c14

Re: my final netinet6 bcopy->memcpy

2016-09-30 Thread David Hill
Ping. On Mon, Sep 19, 2016 at 09:22:50PM -0400, David Hill wrote: > Hello - > > Here are the final bcopy->memcpy conversions in netinet6 that I am > comfortable with. There is also one (bcmp()) to (memcmp() != 0) > conversion since the memory is not overlapping. > > This, with the last

my final netinet6 bcopy->memcpy

2016-09-19 Thread David Hill
Hello - Here are the final bcopy->memcpy conversions in netinet6 that I am comfortable with. There is also one (bcmp()) to (memcmp() != 0) conversion since the memory is not overlapping. This, with the last netinet6 diff, has dropped the number of bcopy() calls from 62 to 29 in netinet6/

Re: netinet6 bcopy->memcpy

2016-09-13 Thread Jeremie Courreges-Anglas
David Hill writes: > Hello - > > Here is a diff to switch some bcopy's to memcpy's. > > Most bcopy's are on freshly alloc'd memory. Looks fine to me, ok jca@ -- jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF DDCC 0DFA 74AE 1524 E7EE

netinet6 - bcopy -> memcpy

2015-12-02 Thread David Hill
Hello - Here are a few bcopy -> memcpy conversions for buffers that do not overlap. Index: sys/netinet6/ip6_forward.c === RCS file: /cvs/src/sys/netinet6/ip6_forward.c,v retrieving revision 1.86 diff -u -p -r1.86 ip6_forward.c ---