diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2017-05-12 18:13:31 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2017-05-12 18:13:31 +0200 |
commit | f232545c215022de5be5e0b37e0c7130962cc5d0 (patch) | |
tree | e4756d11b0402cb8153bc90f48fe2e1e49839031 /csum.h | |
parent | b25a51fa5915df87f31a0cc0459cd9f05e17f540 (diff) |
built_in: don't redefine memcpy/memset
Redefining memset/memcpy causes problems when building with fortified
headers on Alpine Linux. Instead of uncoditionally defining these,
explicitely use fmemcpy/fmemset in performance critical paths and
otherwise let the compiler decide about optimizations.
Fixes #173
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'csum.h')
-rw-r--r-- | csum.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -182,10 +182,10 @@ static inline uint16_t p6_csum(const struct ip6_hdr *ip6, const uint8_t *data, uint8_t proto; } __packed ph; - memcpy(&ph.src, ip6->ip6_src.s6_addr, sizeof(ph.src)); - memcpy(&ph.dst, ip6->ip6_dst.s6_addr, sizeof(ph.dst)); + fmemcpy(&ph.src, ip6->ip6_src.s6_addr, sizeof(ph.src)); + fmemcpy(&ph.dst, ip6->ip6_dst.s6_addr, sizeof(ph.dst)); ph.len = htons(len); - memset(&ph.mbz, 0, sizeof(ph.mbz)); + fmemset(&ph.mbz, 0, sizeof(ph.mbz)); ph.proto = next_proto; vec[0].ptr = (const uint8_t *) (void *) &ph; |