From 3d785eabbe256bfec3454fadce0273f551e97704 Mon Sep 17 00:00:00 2001 From: Stefan Reiter Date: Thu, 10 Dec 2020 16:23:38 +0100 Subject: [PATCH] disable jemalloc jemalloc does not play nice with our Rust library (proxmox-backup-qemu), specifically it never releases memory allocated from Rust to the OS. This leads to a problem with larger caches (e.g. for the PBS block driver). It appears to be related to this GitHub issue: https://github.com/jemalloc/jemalloc/issues/1398 The background_thread solution seems weirdly hacky, so let's disable jemalloc entirely for now. Signed-off-by: Stefan Reiter --- debian/rules | 1 - 1 file changed, 1 deletion(-) diff --git a/debian/rules b/debian/rules index c73d6a1..57e1c91 100755 --- a/debian/rules +++ b/debian/rules @@ -60,7 +60,6 @@ config.status: configure --enable-docs \ --enable-glusterfs \ --enable-gnutls \ - --enable-jemalloc \ --enable-libiscsi \ --enable-libusb \ --enable-linux-aio \