valgrind: Adjust suppressions to handle glibc changes

Andres Freund <andres@anarazel.de>

Commit: fb9023533de4fb36d4fbed3b204a59b0cffba853
Author: Andres Freund <andres@anarazel.de>
Date: 2025-03-06T13:46:42Z
Releases: 13.21
valgrind: Adjust suppressions to handle glibc changes

In newer glibc versions two additional functions appear between
send() and socketcall.send(msg):
   fun:__internal_syscall_cancel
   fun:__syscall_cancel
Due to that our existing suppression do not work anymore.

Use '...', like aleady used in other suppressions, to make valgrind ignore
these interstitial frames.

The problematic suppressions are only in < 15, as they aren't needed after
5891c7a8ed8.

Discussion: https://postgr.es/m/d7pyc6wbo2rqhfk24lsgz37766n75vty4jxy5dnppny7ezd4qc@56juadvntebw
Backpatch-through: 13

Files

PathChange+/−
src/tools/valgrind.supp modified +2 −0

Discussion