From a7317e07b648e06377f18e7b4ac110d3a64b17b2 Mon Sep 17 00:00:00 2001 From: NitzanMordhai Date: Thu, 27 Oct 2022 11:42:15 +0000 Subject: [PATCH] src/valgrind.supp: Adding know leaks unrelated to ceph During teuthology test we can hit few valgrind errors that stop the tests, one of them is Rocksdb version info and the other one is dl-init. Adding them to the valgrinf suppression file. Fixes: https://tracker.ceph.com/issues/52136 https://tracker.ceph.com/issues/57751 https://tracker.ceph.com/issues/53575 Signed-off-by: Nitzan Mordechai (cherry picked from commit 43c94e14a553b96466c85c05849d3205babb18d4) --- qa/valgrind.supp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/qa/valgrind.supp b/qa/valgrind.supp index fa3375b0fa2d..ab33ab54245c 100644 --- a/qa/valgrind.supp +++ b/qa/valgrind.supp @@ -289,6 +289,15 @@ fun:_dl_lookup_symbol_x ... } +{ + dl-init.c possible lost init + Memcheck:Leak + ... + fun:__trans_list_add + fun:call_init.part.0 + fun:call_init + ... +} { weird thing from libc Memcheck:Leak @@ -394,6 +403,13 @@ fun:*BGThreadWrapper* ... } +{ + rocksdb VersionStorageInfo + Memcheck:Leak + ... + fun:*VersionStorageInfo + ... +} { libstdc++ leak on xenial Memcheck:Leak -- 2.47.3