]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commit
qa: suppress false positive delete map mismatch errors 67230/head
authorNitzanMordhai <nmordech@ibm.com>
Thu, 5 Feb 2026 11:48:39 +0000 (11:48 +0000)
committerNitzan Mordechai <nmordech@ibm.com>
Sun, 8 Mar 2026 09:15:54 +0000 (09:15 +0000)
commitae9ae0353e68543b4d6beace2767fb7ba046aa1b
tree13596c56e38a1fb8889dfc723af1137a73f1351c
parent6b396c8cc554f0306c1fa990b7599b8cb91fb643
qa: suppress false positive delete map mismatch errors

Valgrind reports "Mismatched free() / delete / delete []" errors during
OSD startup.

Standard library containers (like std::map) correctly call delete, but
Valgrind falsely interprets this as a call to delete[] because GCC 14
folds the identical aligned delete operators into a single symbol. This
causes Valgrind to flag a mismatch against the non-array allocation.

Fixes: https://tracker.ceph.com/issues/74604
Signed-off-by: Nitzan Mordechai <nmordech@ibm.com>
qa/valgrind.supp