From 18e8b6868780869e9d46292b73a56687ca44483b Mon Sep 17 00:00:00 2001 From: Christian Ebner Date: Fri, 31 May 2024 13:07:52 +0200 Subject: [PATCH proxmox-backup] client: pxar: conditional flushing of cached entries Entries with unchanged metadata are placed on the lookahead cache in order to postpone a decition whether to reuse or reencode the entries. In case of a non-reusable entry, the cached entries must be reencoded if their padding exceeds the threshold, they should however be reused otherwise. This patch adds the missing check to allow the reuse of cached entries in such a case. Signed-off-by: Christian Ebner --- pbs-client/src/pxar/create.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pbs-client/src/pxar/create.rs b/pbs-client/src/pxar/create.rs index c30ba340f..da7807b49 100644 --- a/pbs-client/src/pxar/create.rs +++ b/pbs-client/src/pxar/create.rs @@ -791,6 +791,9 @@ impl Archiver { self.cache .insert(fd, c_file_name.into(), *stat, metadata.clone(), offset); return Ok(()); + } else { + self.flush_cached_reusing_if_below_threshold(encoder, false) + .await?; } } else if self.cache.caching_enabled() { self.cache.insert( -- 2.39.2