Most of them are coming from the messenger code paths, and the changes to
fix them have only just reached master, and will likely not be backported
to cuttlefish. Any substantial (non-shutdown) leak we encounter will need
to be identified and backported manually.
continue
(file, kind) = line.split(':')
log.debug('file %s kind %s', file, kind)
- if file.find('mds') >= 0 and kind.find('Lost') > 0:
+ if kind.find('Lost') > 0:
continue
log.error('saw valgrind issue %s in %s', kind, file)
valgrind_exception = Exception('saw valgrind issues')