From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id E5677B8F58 for ; Tue, 12 Mar 2024 11:12:52 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id C80B31574F for ; Tue, 12 Mar 2024 11:12:52 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Tue, 12 Mar 2024 11:12:52 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 01F6143DAB for ; Tue, 12 Mar 2024 11:12:52 +0100 (CET) Date: Tue, 12 Mar 2024 11:12:51 +0100 (CET) From: Dietmar Maurer To: Proxmox Backup Server development discussion , Christian Ebner Message-ID: <511106584.11215.1710238371340@webmail.proxmox.com> In-Reply-To: <20240228140226.1251979-7-c.ebner@proxmox.com> References: <20240228140226.1251979-1-c.ebner@proxmox.com> <20240228140226.1251979-7-c.ebner@proxmox.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Priority: 3 Importance: Normal X-Mailer: Open-Xchange Mailer v7.10.6-Rev59 X-Originating-Client: open-xchange-appsuite X-SPAM-LEVEL: Spam detection results: 0 AWL 0.352 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record T_SCC_BODY_TEXT_LINE -0.01 - Subject: Re: [pbs-devel] [RFC pxar 06/36] encoder: move to stack based state tracking X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2024 10:12:52 -0000 Seems the check for self.finished is now missing? Sure, we have not done anything, but we should. > -impl<'a, T: SeqWrite + 'a> Drop for EncoderImpl<'a, T> { > - fn drop(&mut self) { > - if let Some(ref mut parent) = self.parent { > - // propagate errors: > - parent.merge_error(self.state.encode_error); > - if !self.finished { > - parent.add_error(EncodeError::IncompleteDirectory); > - } > - } else if !self.finished { > - // FIXME: how do we deal with this? > - // eprintln!("Encoder dropped without finishing!"); > - } > - } > -}