]> git.ipfire.org Git - thirdparty/samba.git/commit
ctdb-common: Avoid aliasing errors during code optimization
authorAmitay Isaacs <amitay@gmail.com>
Mon, 27 Jul 2020 02:51:41 +0000 (12:51 +1000)
committerKarolin Seeger <kseeger@samba.org>
Tue, 3 Nov 2020 10:17:20 +0000 (10:17 +0000)
commit4352c99b18ff4d89de53927a8f07634f3abd94cf
treeec913d2c77f697ce8c80cc498217833dcab4b4bc
parent34af9efc6ba1dd41ce5a1f4eedcb12208f471f4d
ctdb-common: Avoid aliasing errors during code optimization

When compiling with GCC 10.x and -O3 optimization, the IP checksum
calculation code generates wrong checksum.  The function uint16_checksum
gets inlined during optimization and ip4pkt->tcp data gets wrongly
aliased.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14537

Signed-off-by: Amitay Isaacs <amitay@gmail.com>
Reviewed-by: Martin Schwenke <martin@meltin.net>
Autobuild-User(master): Martin Schwenke <martins@samba.org>
Autobuild-Date(master): Wed Oct 21 05:52:28 UTC 2020 on sn-devel-184

(cherry picked from commit 6aa396b0cd1f83f45cb76a4f3123d99135e8dd8c)
ctdb/common/system_socket.c